-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.php
127 lines (92 loc) · 3.07 KB
/
client.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
<?php
namespace Gerp\Core;
class ApiClient
{
private $username;
private $password;
private $host;
public $verify = true;
/**
* Inizializza l'oggetto per l'API con le credenziali e l'host
*
* @param string $username il nome utente.
* @param string $password la password.
* @param string $host l'host al quale verranno effettuate le
* richieste.
*/
public function __construct($username, $password, $host)
{
$this->username = $username;
$this->password = $password;
$this->host = rtrim($host, '/') . '/';
}
/**
* Effettua una richiesta di tipo GET
*
* @param string $url l'URL al quale effettuare la richiesta.
*/
public function get($url, $return_value = false)
{
if ( $return_value ) {
return $this->request('get', $url);
}
echo $this->request('get', $url);
die;
}
/**
*
* @param $url l'URL al quale effettuare la richiesta.
* @param array $options i parametri da passare tramite POST.
* @param false $return_value
* @return bool|string
* @throws \Exception
*/
public function post($url, $options = [], $return_value = false )
{
if ( $return_value ) {
return $this->request('post', $url, $options);
}
echo $this->request('post', $url, $options);
die;
}
private function request($type, $url, $options = [])
{
$type = strtolower($type);
if ( $type !== 'get' && $type !== 'post' ) {
throw new \Exception('Il tipo di richiesta deve essere o "get" o "post", "' . $type . '" fornito.');
}
$params = [];
$url_components = parse_url($url);
if ( ! isset($url_components['query']) ) {
throw new \Exception('I parametri nell\'URL devono iniziare con il punto di domanda ("?"). Es.: "?manage=ricerca".');
}
parse_str($url_components['query'], $params);
if ( ! isset($params['view']) || $params['view'] !== 'json' ) {
$params['view'] = 'json';
}
$url = $this->host . 'index.php?' . http_build_query($params);
$data = [
'auth_username' => $this->username,
'auth_secret' => $this->password
];
if ( ! empty($options) ) {
$data = array_merge($data, $options);
}
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, $this->verify);
if ( ! $response = curl_exec($curl) ) {
$error_msg = "";
if ( curl_errno($curl) ) {
$error_msg = curl_error($curl);
}
throw new \Exception($error_msg . "\n" . 'Errore nella comunicazione con "' . $url . '".');
}
curl_close ($curl);
return $response;
}
}