-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSimpleRequests.php
249 lines (222 loc) · 7.5 KB
/
SimpleRequests.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
<?php
/**
* Project codeigniter-basic-helper
* Created by PhpStorm
* User: 713uk13m <dev@nguyenanhung.com>
* Copyright: 713uk13m <dev@nguyenanhung.com>
* Date: 22/03/2023
* Time: 13:13
*/
namespace nguyenanhung\CodeIgniter\BasicHelper;
use Exception;
use Monolog\Logger;
use Monolog\Handler\StreamHandler;
use Monolog\Formatter\LineFormatter;
/**
* SimpleRequests Class
*
* This class provides basic functionalities for sending HTTP requests.
* Refactored for better structure, readability, and PHP > 5.6 compatibility.
*
* @package nguyenanhung\CodeIgniter\BasicHelper
* @author 713uk13m <dev@nguyenanhung.com>
* @copyright 713uk13m <dev@nguyenanhung.com>
*/
class SimpleRequests
{
protected $DEBUG = false;
protected $logger = null;
protected $logger_path = null;
protected $timeout = 60;
protected $header = array();
/**
* SimpleRequests constructor.
*
* @param $options
* @copyright: 713uk13m <dev@nguyenanhung.com>
* @author : 713uk13m <dev@nguyenanhung.com>
*/
public function __construct($options = [])
{
$monolog = array(
'dateFormat' => "Y-m-d H:i:s u",
'outputFormat' => "[%datetime%] %channel%.%level_name%: %message% %context% %extra%\n",
'monoBubble' => true,
'monoFilePermission' => 0777
);
if (isset($options['logger_path'])) {
$this->logger_path = $options['logger_path'];
}
if (isset($options['debug_status'])) {
$this->DEBUG = $options['debug_status'];
}
// create a log channel
$formatter = new LineFormatter($monolog['outputFormat'], $monolog['dateFormat']);
$stream = new StreamHandler(
$this->logger_path . 'Simple-Requests/Log-' . date('Y-m-d') . '.log',
Logger::INFO,
$monolog['monoBubble'],
$monolog['monoFilePermission']
);
$stream->setFormatter($formatter);
$this->logger = new Logger('SimpleRequests');
$this->logger->pushHandler($stream);
}
/**
* Function setTimeout
*
* @param $timeout
*
* @return $this
* @author : 713uk13m <dev@nguyenanhung.com>
* @copyright: 713uk13m <dev@nguyenanhung.com>
* @time : 07/27/2021 31:11z
*/
public function setTimeout($timeout)
{
$this->timeout = $timeout;
return $this;
}
/**
* Function setHeader
*
* @param array $header
*
* @return $this
* @author : 713uk13m <dev@nguyenanhung.com>
* @copyright: 713uk13m <dev@nguyenanhung.com>
* @time : 07/27/2021 31:22
*/
public function setHeader($header = array())
{
$this->header = $header;
return $this;
}
/**
* Function sendRequest
*
* @param string $url
* @param array $data
* @param string $method
*
* @return string|null
* @author : 713uk13m <dev@nguyenanhung.com>
* @copyright: 713uk13m <dev@nguyenanhung.com>
* @time : 09/18/2021 54:32
*/
public function sendRequest($url = '', $data = array(), $method = 'GET')
{
try {
$getMethod = mb_strtoupper((string) $method);
if ($this->DEBUG === true) {
$this->logger->info('||=========== Logger Send Requests ===========||');
$this->logger->info('Send ' . $getMethod . ' Request to URL: ' . $url, $data);
}
$curl = new BasicCurl();
$curl->setOpt(CURLOPT_RETURNTRANSFER, true);
$curl->setOpt(CURLOPT_SSL_VERIFYPEER, false);
$curl->setOpt(CURLOPT_ENCODING, "utf-8");
$curl->setOpt(CURLOPT_MAXREDIRS, 10);
$curl->setOpt(CURLOPT_TIMEOUT, 300);
if ('POST' === $getMethod) {
$curl->post($url, $data);
} else {
$curl->get($url, $data);
}
if ($curl->error) {
$response = "cURL Error: " . $curl->error_message;
} else {
$response = $curl->response;
}
$curl->close();
if ($this->DEBUG === true) {
if (is_array($response) || is_object($response)) {
$this->logger->info('Response: ' . json_encode($response));
} else {
$this->logger->info('Response: ' . $response);
}
if (isset($curl->request_headers)) {
if (is_array($curl->request_headers)) {
$this->logger->info('Request Header: ', $curl->request_headers);
} else {
$this->logger->info('Request Header: ' . json_encode($curl->request_headers));
}
}
if (isset($curl->response_headers)) {
if (is_array($curl->response_headers)) {
$this->logger->info('Response Header: ', $curl->response_headers);
} else {
$this->logger->info('Response Header: ' . json_encode($curl->response_headers));
}
}
}
return $response;
} catch (Exception $e) {
log_message('error', __get_error_message__($e));
log_message('error', __get_error_trace__($e));
return null;
}
}
/**
* Function xmlRequest
*
* @param string $url
* @param string $data
* @param int $timeout
*
* @return bool|string|null
* @author : 713uk13m <dev@nguyenanhung.com>
* @copyright: 713uk13m <dev@nguyenanhung.com>
* @time : 07/27/2021 32:35
*/
public function xmlRequest($url = '', $data = '', $timeout = 60)
{
if (empty($url) || empty($data)) {
return null;
}
try {
if ($this->DEBUG === true) {
$this->logger->info('||=========== Logger xmlRequest ===========||');
$this->logger->info('Send POST XML Request to URL: ' . $url . ' with DATA: ' . $data);
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
$head[] = "Content-type: text/xml;charset=utf-8";
curl_setopt($ch, CURLOPT_HTTPHEADER, $head);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
curl_close($ch);
if ($this->DEBUG === true) {
$this->logger->info('Response from Request: ' . $response);
}
return $response;
} catch (Exception $e) {
log_message('error', __get_error_message__($e));
log_message('error', __get_error_trace__($e));
return null;
}
}
/**
* Function xmlGetValue
*
* @param $xml
* @param $openTag
* @param $closeTag
*
* @return string
* @author : 713uk13m <dev@nguyenanhung.com>
* @copyright: 713uk13m <dev@nguyenanhung.com>
* @time : 07/08/2023 49:39
*/
public function xmlGetValue($xml, $openTag, $closeTag)
{
$f = mb_strpos($xml, $openTag) + mb_strlen($openTag);
$l = mb_strpos($xml, $closeTag);
return ($f <= $l) ? mb_substr($xml, $f, $l - $f) : "";
}
}