This repository was archived by the owner on Oct 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcRestClient.php
More file actions
142 lines (112 loc) · 3.15 KB
/
cRestClient.php
File metadata and controls
142 lines (112 loc) · 3.15 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
<?php
class cRestClient {
private $url;
private $headers = array(
'Content-Type' => 'text/html',
'User-Agent' => 'Simple PHP Rest Client',
);
private $method = 'GET';
private $basicAuth;
private $payload;
private $timeout = 30;
private $verbose = false;
private $showHeaders = false;
private $error = array();
function __construct($username = null, $password = null, $headers = array()) {
if (!empty($username)) {
$this->setBasicAuth($username, $password);
}
foreach ($headers as $name => $value) {
$this->addHeader($name, $value);
}
}
public function go() {
return $this->_doRequest();
}
public function get($url = null) {
$this->setUrl($url);
$this->setMethod('GET');
return $this->_doRequest();
}
public function post($url = null, $payload = null) {
$this->setUrl($url);
$this->setPayload($payload);
$this->setMethod('POST');
return $this->_doRequest();
}
public function put($url = null, $payload = null) {
$this->setUrl($url);
$this->setPayload($payload);
$this->setMethod('PUT');
return $this->_doRequest();
}
public function delete($url = null) {
$this->setUrl($url);
$this->setMethod('DELETE');
return $this->_doRequest();
}
public function setUrl($url = null) {
$this->url = $url;
}
public function setTimeout($timeout = null) {
if(!empty($timeout)) {
$this->timeout = $timeout;
}
}
public function setBasicAuth($username = null, $password = null) {
if (empty($username)) {
throw new Exception('Username cannot be blank.');
}
$this->basicAuth = "$username:$password";
}
public function setMethod($method = null) {
$this->method = strtoupper($method);
}
public function setPayload($payload = null) {
$this->payload = $payload;
}
public function setVerbose($verbose = false) {
$this->verbose = $verbose;
}
public function setShowHeaders($show = false) {
$this->showHeaders = $show;
}
public function addHeader($name = null, $value = null) {
if (empty($name)) {
throw new Exception('Header name cannot be blank.');
}
array_push($this->headers, "$name: $value");
}
public function getError() {
return $this->error;
}
private function setError($http_code, $body) {
$this->error['http_code'] = $http_code;
$this->error['body'] = $body;
}
private function _doRequest() {
$c = curl_init();
curl_setopt($c, CURLOPT_URL, $this->url);
curl_setopt($c, CURLOPT_HEADER, $this->showHeaders);
if ($this->method == 'POST' || $this->method == 'PUT') {
curl_setopt($c, CURLOPT_CUSTOMREQUEST, $this->method);
curl_setopt($c, CURLOPT_POSTFIELDS, $this->payload);
} elseif ($this->method == 'DELETE') {
curl_setopt($c, CURLOPT_CUSTOMREQUEST, $this->method);
}
curl_setopt($c, CURLOPT_USERPWD, $this->basicAuth);
curl_setopt($c, CURLOPT_TIMEOUT, $this->timeout);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_VERBOSE, $this->verbose);
curl_setopt($c, CURLOPT_HTTPHEADER, $this->headers);
$result = curl_exec($c);
$info = curl_getinfo($c);
curl_close($c);
if (preg_match("/^(20)[0-1]/", $info['http_code'])) {
return $result;
} else {
$this->setError($info['http_code'], $result);
return false;
}
}
}