-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathHttp.php
273 lines (246 loc) · 7.36 KB
/
Http.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Filesystem\Driver;
use Magento\Framework\Exception\FileSystemException;
/**
* Origin filesystem driver. Allows interacting with http endpoint like with FileSystem
*/
class Http extends File
{
/**
* Scheme distinguisher
*
* @var string
*/
protected $scheme = 'http';
/**
* Checks if path exists
*
* @param string $path
* @return bool
*/
public function isExists($path)
{
$headers = array_change_key_case(get_headers($this->getScheme() . $path, 1), CASE_LOWER);
$status = $headers[0] ?? '';
/* Handling 301 or 302 redirection */
if (isset($headers[1]) && preg_match('/30[12]/', $status)) {
$status = $headers[1];
}
return !(strpos($status, '200 OK') === false);
}
/**
* Gathers the statistics of the given path
*
* @param string $path
* @return array
* @SuppressWarnings(PHPMD.NPathComplexity)
*/
public function stat($path)
{
$headers = array_change_key_case(get_headers($this->getScheme() . $path, 1), CASE_LOWER);
$result = [
'dev' => 0,
'ino' => 0,
'mode' => 0,
'nlink' => 0,
'uid' => 0,
'gid' => 0,
'rdev' => 0,
'atime' => 0,
'ctime' => 0,
'blksize' => 0,
'blocks' => 0,
'size' => isset($headers['content-length']) ? $headers['content-length'] : 0,
'type' => isset($headers['content-type']) ? $headers['content-type'] : '',
'mtime' => isset($headers['last-modified']) ? $headers['last-modified'] : 0,
'disposition' => isset($headers['content-disposition']) ? $headers['content-disposition'] : null,
];
return $result;
}
/**
* Retrieve file contents from given path
*
* @param string $path
* @param string|null $flags
* @param resource|null $context
* @return string
* @throws FileSystemException
*/
public function fileGetContents($path, $flags = null, $context = null)
{
$fullPath = $this->getScheme() . $path;
clearstatcache(false, $fullPath);
$result = @file_get_contents($fullPath, $flags ?? false, $context);
if (false === $result) {
throw new FileSystemException(
new \Magento\Framework\Phrase(
'The contents from the "%1" file can\'t be read. %2',
[$path, $this->getWarningMessage()]
)
);
}
return $result;
}
/**
* Open file in given path
*
* @param string $path
* @param string $content
* @param string|null $mode
* @param resource|null $context
* @return int The number of bytes that were written
* @throws FileSystemException
*/
public function filePutContents($path, $content, $mode = null, $context = null)
{
$result = @file_put_contents($this->getScheme() . $path, $content, $mode, $context);
if ($result === false) {
throw new FileSystemException(
new \Magento\Framework\Phrase(
'The specified "%1" file couldn\'t be written. %2',
[$path, $this->getWarningMessage()]
)
);
}
return $result;
}
/**
* Open file
*
* @param string $path
* @param string $mode
* @return resource file
* @throws FileSystemException
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function fileOpen($path, $mode)
{
$urlProp = $this->parseUrl($this->getScheme() . $path);
if (false === $urlProp) {
throw new FileSystemException(
new \Magento\Framework\Phrase('The download URL is incorrect. Verify and try again.')
);
}
$hostname = $urlProp['host'];
$port = 80;
if (isset($urlProp['port'])) {
$port = (int)$urlProp['port'];
}
$path = '/';
if (isset($urlProp['path'])) {
$path = $urlProp['path'];
}
$query = '';
if (isset($urlProp['query'])) {
$query = '?' . $urlProp['query'];
}
$result = $this->open($hostname, $port);
$headers = 'GET ' .
$path .
$query .
' HTTP/1.0' .
"\r\n" .
'Host: ' .
$hostname .
"\r\n" .
'User-Agent: Magento' .
"\r\n" .
'Connection: close' .
"\r\n" .
"\r\n";
fwrite($result, $headers);
// trim headers
while (!feof($result)) {
$str = fgets($result, 1024);
if ($str == "\r\n") {
break;
}
}
return $result;
}
/**
* Reads the line content from file pointer (with specified number of bytes from the current position).
*
* @param resource $resource
* @param int $length
* @param string $ending [optional]
* @return string
* @throws FileSystemException
*/
public function fileReadLine($resource, $length, $ending = null)
{
try {
$result = @stream_get_line($resource, $length, $ending);
} catch (\Exception $e) {
throw new FileSystemException(
new \Magento\Framework\Phrase('Stream get line failed %1', [$e->getMessage()])
);
}
return $result;
}
/**
* Get absolute path
*
* @param string $basePath
* @param string $path
* @param string|null $scheme
* @return string
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function getAbsolutePath($basePath, $path, $scheme = null)
{
// check if the path given is already an absolute path containing the
// basepath. so if the basepath starts at position 0 in the path, we
// must not concatinate them again because path is already absolute.
if (0 === strpos((string)$path, (string)$basePath)) {
return $this->getScheme() . $path;
}
return $this->getScheme() . $basePath . $path;
}
/**
* Return path with scheme
*
* @param null|string $scheme
* @return string
*/
protected function getScheme($scheme = null)
{
$scheme = $scheme ?: $this->scheme;
return $scheme ? $scheme . '://' : '';
}
/**
* Open a url
*
* @param string $hostname
* @param int $port
* @throws \Magento\Framework\Exception\FileSystemException
* @return resource|bool
*/
protected function open($hostname, $port)
{
$result = @fsockopen($hostname, $port, $errorNumber, $errorMessage);
if ($result === false) {
throw new FileSystemException(
new \Magento\Framework\Phrase(
'Something went wrong while connecting to the host. Error#%1 - %2.',
[$errorNumber, $errorMessage]
)
);
}
return $result;
}
/**
* Parse a http url
*
* @param string $path
* @return array
*/
protected function parseUrl($path)
{
return parse_url($path);
}
}