-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgong.php
More file actions
278 lines (180 loc) · 5.58 KB
/
gong.php
File metadata and controls
278 lines (180 loc) · 5.58 KB
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?php
/**
* Integration class to send data to gong log system
*
* This class provide e easy-to-use set of function for sending data to gong's server
*
* @category Gong SDK
* @package gong-php-sdk
* @author Pasqui Andrea <a.pasqui@holocron.it>
* @copyright 2017-2018 Holocron
* @version 1.0
* @link http://holocron.it/gong/sdk/
*/
class Gong
{
/**
* Contain the host url without port
* @var string
*/
private $host = 'http://gong.holocron.it';
/**
* Contain the port of the server
* @var integer
*/
private $port = 1977; // Il numero della porta risale all'anno di uscita del primo film di Star Wars
/**
* Contain the apikey for grant access to the server
* @var boolean
*/
private $apikey = '';
/**
* Contain a list of avalable crawler. If false the apikey is invalid or no crawler are connected to it
* @var boolean/array
*/
private $avalableCrawler = FALSE;
/**
* Contain data read to send over http to the server
* @var boolean/object
*/
private $dataReadyToSend = array();
/**
* check variable
* @var boolean
*/
private $ready = FALSE;
/**
* @param Apikey - the apikey of your user. Required
* @param
* @param boolean
*/
function __construct( $apikey , $host = FALSE , $port = FALSE ) {
if(empty($apikey) || !is_string($apikey) ){
return FALSE;
}
if ( $host !== FALSE && !empty($host) && filter_var($host, FILTER_VALIDATE_URL) ) {
$this->host = trim($host);
}
if ( $port !== FALSE && !empty($port) && is_int($port) ) {
$this->port = intval($port);
}
$this->apikey = trim($apikey);
$this->ready = TRUE;
$this->getAvalableCrawler();
}
/*---------- START PUBLIC FUNCTIONS ----------*/
/**
* @return Return TRUE if the class is ready to send data to server
*/
public function isReady(){
return $this->ready && $this->avalableCrawler ? TRUE : FALSE;
}
public function getAvalableCrawler(){
if(!$this->ready) return FALSE;
$endpointUrl = $this->getApikeyCheckendpoint();
$r = $this->doRequest( $endpointUrl );
if( $r = json_decode($r, TRUE) ){
$this->avalableCrawler = $r;
return $r;
}else return FALSE;
}
/**
* @param $crawler : The server side crawler name
* @param $logName : your 'friendly' log name
* @param $packet : an associative array containing data
* @return booloean
*/
public function pushData( $crawler , $logName , $packet ){
if( empty($crawler) || empty($logName) || empty($packet) ) return FALSE;
if( !is_string($crawler) || !is_string($logName) ) return FALSE;
if(!$this->isAssoc($packet)) return FALSE;
$crawlerOk = FALSE;
foreach ($this->avalableCrawler as $k => $c) {
if($c['name'] == $crawler) $crawlerOk = TRUE;
}
if( !$crawlerOk ) return FALSE;
if(empty($packet['date'])) $packet['date'] = date(DATE_ISO8601);
$dataPushed = FALSE;
foreach ($this->dataReadyToSend as $k => $wrapper) {
if( $wrapper['cn'] == $crawler && $wrapper['ln'] == $logName ){
if(!isset($wrapper['rows'])){
$wrapper['rows'] = array();
}
$this->dataReadyToSend[$k]['rows'][] = $packet;
$dataPushed = TRUE;
}
}
if( !$dataPushed ){
$this->dataReadyToSend[] = array(
'cn' => $crawler,
'ln' => $logName,
'rows' => array( $packet )
);
}
}
/**
* @return bool on fail, array on success
*/
public function send(){
if(empty($this->dataReadyToSend) || count($this->dataReadyToSend) == 0 ) return FALSE;
$endpointUrl = $this->getLogCheckendpoint();
$r = $this->doRequest( $endpointUrl , TRUE , $this->dataReadyToSend , TRUE );
if( $r = json_decode($r, TRUE) ){
if( $r['status'] === TRUE ){
return $r['data'];
}else return FALSE;
}
return $r;
}
/*---------- START PRIVATE FUNCTIONS ----------*/
/**
* Function for building check api endopoint url
*/
private function getApikeyCheckendpoint(){
return $this->host.'/check/'.$this->apikey.'/';
}
/**
* Function for building log api endopoint url
*/
private function getLogCheckendpoint(){
return $this->host.'/log/'.$this->apikey.'/';
}
/**
* @param $url : URL of the request to do
* @param $isPost : true for POST HTTP request
* @param $payload : data to send inside POST HTTP request
* @param $jsonPayload : true if $payload must be converted in JSON
* @return Request Response
*/
private function doRequest( $url , $isPost = FALSE , $payload = FALSE , $jsonPayload = FALSE ){
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt($ch, CURLOPT_PORT, $this->port );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
if( !empty($payload) && $jsonPayload === TRUE ){
curl_setopt( $ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json'
));
}
if( $isPost === TRUE ){
curl_setopt($ch, CURLOPT_POST, 1);
}
if( !empty($payload) && $isPost === TRUE ){
if( $jsonPayload === TRUE ) $payload = json_encode($payload);
curl_setopt($ch, CURLOPT_POSTFIELDS,$payload);
}
$r = curl_exec( $ch );
curl_close($ch);
return $r;
}
/**
* @param Array to test to check that is associative
* @return boolean
*/
private function isAssoc(array $arr)
{
if (array() === $arr) return false;
return array_keys($arr) !== range(0, count($arr) - 1);
}
}
?>