-
Notifications
You must be signed in to change notification settings - Fork 12
/
GoogleNaturalLanguage.php
261 lines (231 loc) · 6.18 KB
/
GoogleNaturalLanguage.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<?php
namespace DarrynTen\GoogleNaturalLanguagePhp;
use Google\Cloud\Language\LanguageClient;
use DarrynTen\AnyCache\AnyCache;
/**
* Google Natural Language Client
*
* @category Library
* @package GoogleNaturalLanguagePhp
* @author Darryn Ten <[email protected]>
* @author Dmitry Semenov <[email protected]>
* @author Bradley Weston <[email protected]>
* @license MIT <https://github.com/darrynten/google-natural-language-php/LICENSE>
* @link https://github.com/darrynten/google-natural-language-php
*/
class GoogleNaturalLanguage
{
/**
* Hold the config option
*
* @var Config $config
*/
public $config;
/**
* Keeps a copy of the language client
*
* @var object $languageClient
*/
private $languageClient;
/**
* The local cache
*
* @var AnyCache $cache
*/
private $cache;
/**
* The text to perform actions on
*
* @var string $originalText
*/
public $originalText;
/**
* Construct
*
* Bootstraps the config and the cache, then loads the client
*
* @param array $config Configuration options
* @throws CustomException
*/
public function __construct($config)
{
$this->config = new Config($config);
$this->cache = new AnyCache();
$this->languageClient = new LanguageClient(
$this->config->getNaturalLanguageConfig()
);
}
/**
* Set the desired text
*
* @param string $text The text to be analysed
*
* @return void
* @throws CustomException
*/
public function setText($text)
{
$this->originalText = $text;
$this->checkCheapskate();
}
/**
* Get the entity analysis
*
* @return mixed
*/
public function getEntities()
{
$cacheKey = '__google_natural_language__entities_' .
md5($this->originalText) . '_';
if (!$result = unserialize($this->cache->get($cacheKey))) {
$result = $this->languageClient->analyzeEntities($this->originalText);
$this->cache->put($cacheKey, serialize($result), 9999999);
}
return $result;
}
/**
* Get the sentiment analysis
*
* @return mixed
*/
public function getSentiment()
{
$cacheKey = '__google_natural_language__sentiment_' .
md5($this->originalText) . '_';
if (!$result = unserialize($this->cache->get($cacheKey))) {
$result = $this->languageClient->analyzeSentiment($this->originalText);
$this->cache->put($cacheKey, serialize($result), 9999999);
}
return $result;
}
/**
* Get the sentiment analysis
*
* @return mixed
*/
public function getEntitySentiment()
{
$cacheKey = '__google_natural_language__sentiment_entities_' .
md5($this->originalText) . '_';
if (!$result = unserialize($this->cache->get($cacheKey))) {
$result = $this->languageClient->analyzeEntitySentiment($this->originalText);
$this->cache->put($cacheKey, serialize($result), 9999999);
}
return $result;
}
/**
* Get the syntax analysis
*
* @return mixed
*/
public function getSyntax()
{
$cacheKey = '__google_natural_language__syntax_' .
md5($this->originalText) . '_';
if (!$result = unserialize($this->cache->get($cacheKey))) {
$result = $this->languageClient->analyzeSyntax($this->originalText);
$this->cache->put($cacheKey, serialize($result), 9999999);
}
return $result;
}
/**
* Get all analysis
*
* @return mixed
*/
public function getAll()
{
$cacheKey = '__google_natural_language__all_' .
md5($this->originalText) . '_';
if (!$result = unserialize($this->cache->get($cacheKey))) {
$result = $this->languageClient->annotateText($this->originalText);
$this->cache->put($cacheKey, serialize($result), 9999999);
}
return $result;
}
/**
* After 1000 characters google charges for a new evaluation
*
* Set `cheapskate` in your config to false to turn this off
*
* Default is on to save cash
*
* @throws CustomException
* @return void
*/
private function checkCheapskate()
{
if ($this->config->cheapskate === false) {
return;
}
if (strlen($this->originalText) > 999) {
throw new CustomException(
'Text too long. 1000+
Characters incurrs additional charges. You can set
`cheapskate` to false in config to disable this
guard. Additional charges per 1000 Characters.'
);
}
}
/**
* Sets the document type
*
* @param string $type Either `HTML` or `PLAIN_TEXT`
*
* @return void
*/
public function setType($type)
{
if (Validation::isValidType($type)) {
$this->config->type = $type;
}
}
/**
* Sets the encoding
*
* @param string $encoding Must be UTF8, UTF16, UTF32 or NONE
*
* @return void
*/
public function setEncoding($encoding)
{
if (Validation::isValidEncoding($encoding)) {
$this->config->encoding = $encoding;
}
}
/**
* Set the language. Either `en` `es` (ISO) or `en-ZA` `en-GB`
*
* @param string $language The desired language
*
* @return void
*/
public function setLanguage($language)
{
if (Validation::isValidLanguageRegex($language)) {
$this->config->language = $language;
}
}
/**
* Enable and disable cheapskate mode (trimming @ 1000 chars)
*
* @param boolean $value The state
*
* @return void
*/
public function setCheapskate($value)
{
$this->config->cheapskate = (bool)$value;
}
/**
* Enable and disable internal cache
*
* @param boolean $value The state
*
* @return void
*/
public function setCache($value)
{
$this->config->cache = (bool)$value;
}
}