-
Notifications
You must be signed in to change notification settings - Fork 0
/
PicusCloudApiClient.class.php
217 lines (195 loc) · 5.64 KB
/
PicusCloudApiClient.class.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
<?php
/**
* Libreria Client PHP per utilizzare le API di Picus Cloud - https://www.picus.cloud
* @license GPL v3.0 <http://www.gnu.org/licenses/gpl.html>
* @author Itala Tecnologia Informatica S.r.l. - www.itala.it
* @version 1.0
*/
class PicusCloudApiClient
{
function __construct($instance, $username, $password)
{
$this->instance = $instance;
$this->username = $username;
$this->password = $password;
}
/**
* Comando SELECT
* @param string $table Il nome della tabella
* @param string $keyName (opz.) Il nome del campo sul quale effettuare il filtro
* @param string $keyValue (opz.) Il valore del campo sul quale effettuare il filtro
* @param array $arrConditions (opz.) Array contenente condizioni di filtraggio. Es:
* [
* ['id_cliente', 'eq', '15'],
* ['data', 'lt', '2010-02-01 00:00:00'],
* ['data', 'gte', '2010-01-01 00:00:00'],
* ['esito', 'in', 'OK,KO,ERR,10'],
* ]
* // tutti gli operatori: eq, neq, gt, gte, lt, lte, in, nin
* @param array $arrFields (opz.) Lista di campi da estrarre. Default: tutti
* @return array ['ack' => 'OK'|'KO', 'data' => [...], 'error' => 'xxxx']
*/
function select($table, $keyName = NULL, $keyValue = NULL, $arrConditions = NULL, $arrFields = NULL)
{
if (!$this->ensureAuthentication()) {
return array(
'ack' => 'KO',
'error' => $this->authError
);
}
$data = array(
'action' => 'SELECT',
'token' => $this->authToken,
'table' => $table
);
if ($keyName !== NULL && $keyValue !== NULL) {
$data['keyname'] = $keyName;
$data['keyvalue'] = $keyValue;
}
if ($arrConditions !== NULL) {
$arr = [];
foreach ($arrConditions as $arrCondition) {
$arr[] = implode(',', $arrCondition);
}
$data['conditions'] = implode(';', $arr);
}
if ($arrFields !== NULL) {
$data['fields'] = implode(',', $arrFields);
}
return $this->sendToEndpoint($data);
}
/**
* Inserisce un record
* @param string $table Il nome della tabella
* @param array $arrValues Array con coppie nomeCampo => valoreCampo. Es: ['nomeCampo' => 'valoreCampo', 'nomeCampo2' => 'valoreCampo2']
* @return array|NULL ['ack' => 'OK'|'KO', 'insertId' => 'nnnn', 'error' => 'xxxx']
*/
function insert($table, $arrValues)
{
if (!$this->ensureAuthentication()) {
return array(
'ack' => 'KO',
'error' => $this->authError
);
}
$data = array(
'action' => 'INSERT',
'token' => $this->authToken,
'table' => $table
);
$arr = [];
foreach ($arrValues as $fieldName => $fieldValue) {
$arr[] = $fieldName . '=' . urlencode($fieldValue);
}
$data['values'] = implode('&', $arr);
return $this->sendToEndpoint($data);
}
/**
* Aggiorna un record
* @param string $table Il nome della tabella
* @param integer $idValue Il valore ID del record da aggiornare
* @param array $arrValues Array con coppie nomeCampo => valoreCampo. Es: ['nomeCampo' => 'valoreCampo', 'nomeCampo2' => 'valoreCampo2']
* @return array|NULL ['ack' => 'OK'|'KO', 'affectedRows' => 'nnnn', 'error' => 'xxxx']
*/
function update($table, $idValue, $arrValues)
{
if (!$this->ensureAuthentication()) {
return array(
'ack' => 'KO',
'error' => $this->authError
);
}
$data = array(
'action' => 'UPDATE',
'token' => $this->authToken,
'table' => $table,
'idvalue' => $idValue
);
$arr = [];
foreach ($arrValues as $fieldName => $fieldValue) {
$arr[] = $fieldName . '=' . urlencode($fieldValue);
}
$data['values'] = implode('&', $arr);
return $this->sendToEndpoint($data);
}
/**
* Elimina un record
* @param string $table Il nome della tabella
* @param integer $idValue Il valore ID del record da aggiornare
* @return array|NULL ['ack' => 'OK'|'KO', 'affectedRows' => 'nnnn', 'error' => 'xxxx']
*/
function delete($table, $idValue)
{
if (!$this->ensureAuthentication()) {
return array(
'ack' => 'KO',
'error' => $this->authError
);
}
$data = array(
'action' => 'DELETE',
'token' => $this->authToken,
'table' => $table,
'idvalue' => $idValue
);
return $this->sendToEndpoint($data);
}
/**
* Assicura che si disponga del token di autenticazione
* Ritorna true se siamo autenticati, false se non siam riusciti ad autenticarci
* Come side-effect valorizza $this->authError in caso di errore e $this->authToken in caso di autenticazione avvenuta con successo
* @return boolean
*/
private function ensureAuthentication()
{
if ($this->isAuthenticated) {
return true;
} else {
$data = array(
'action' => 'AUTH',
'instance' => $this->instance,
'username' => $this->username,
'password' => $this->password
);
$result = $this->sendToEndpoint($data);
if ($result['ack'] == 'OK') {
$this->isAuthenticated = true;
$this->authToken = $result['token'];
return true;
} else {
$this->authError = $result['error'];
return false;
}
}
}
/**
* Invia i dati all'endpoint del servizio API Picus Cloud
* @param array $data
* @return array|NULL
*/
private function sendToEndpoint($data)
{
$ch = curl_init($this->endpoint);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
$res = json_decode($result, true);
if ($res === NULL) {
return array(
'ack' => 'KO',
'error' => 'Errore output dal server: ' . $result
);
} else {
return $res;
}
}
private $endpoint = 'https://picus.cloud/web-api/';
private $instance;
private $username;
private $password;
private $isAuthenticated = false;
private $authToken = '';
private $authError = '';
}