-
Notifications
You must be signed in to change notification settings - Fork 5
/
torrent_api.php
660 lines (627 loc) · 23.3 KB
/
torrent_api.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
<?php
class Torrent
{
const timeout = 1; //orignal value was 30
protected static $_errors = [];
public function __construct($data = null, $meta = [], $piece_length = 256)
{
if (is_null($data)) {
return false;
}
if ($piece_length < 32 || $piece_length > 4096) {
return self::set_error(new Exception('Invalid piece length, must be between 32 and 4096'));
}
if (is_string($meta)) {
$meta = ['announce' => $meta];
}
if ($this->build($data, $piece_length * 1024)) {
$this->touch();
} else {
$meta = array_merge($meta, $this->decode($data));
}
foreach ($meta as $key => $value) {
$this->{trim($key)} = $value;
}
}
public function __toString()
{
return $this->encode($this);
}
public function error()
{
return empty(self::$_errors) ?
false :
self::$_errors[0]->getMessage();
}
public function errors()
{
return empty(self::$_errors) ?
false :
self::$_errors;
}
public function announce($announce = null)
{
if (is_null($announce)) {
return !isset($this->{'announce-list'}) ?
isset($this->announce) ? $this->announce : null :
$this->{'announce-list'};
}
$this->touch();
if (is_string($announce) && isset($this->announce)) {
return $this->{'announce-list'} = self::announce_list(isset($this->{'announce-list'}) ? $this->{'announce-list'} : $this->announce, $announce);
}
unset($this->{'announce-list'});
if (is_array($announce) || is_object($announce)) {
if (($this->announce = self::first_announce($announce)) && count($announce) > 1) {
return $this->{'announce-list'} = self::announce_list($announce);
} else {
return $this->announce;
}
}
if (!isset($this->announce) && $announce) {
return $this->announce = (string) $announce;
}
unset($this->announce);
}
public function creation_date($timestamp = null)
{
return is_null($timestamp) ?
isset($this->{'creation date'}) ? $this->{'creation date'} : null :
$this->touch($this->{'creation date'} = (int) $timestamp);
}
public function comment($comment = null)
{
return is_null($comment) ?
isset($this->comment) ? $this->comment : null :
$this->touch($this->comment = (string) $comment);
}
public function name($name = null)
{
return is_null($name) ?
isset($this->info['name']) ? $this->info['name'] : null :
$this->touch($this->info['name'] = (string) $name);
}
public function is_private($private = null)
{
return is_null($private) ?
!empty($this->info['private']) :
$this->touch($this->info['private'] = $private ? 1 : 0);
}
public function source($source = null)
{
return is_null($source) ?
isset($this->info['source']) ? $this->info['source'] : null :
$this->touch($this->info['source'] = (string) $source);
}
public function url_list($urls = null)
{
return is_null($urls) ?
isset($this->{'url-list'}) ? $this->{'url-list'} : null :
$this->touch($this->{'url-list'} = is_string($urls) ? $urls : (array) $urls);
}
public function httpseeds($urls = null)
{
return is_null($urls) ?
isset($this->httpseeds) ? $this->httpseeds : null :
$this->touch($this->httpseeds = (array) $urls);
}
public function piece_length()
{
return isset($this->info['piece length']) ?
$this->info['piece length'] :
null;
}
public function hash_info()
{
return isset($this->info) ?
sha1(self::encode($this->info)) :
null;
}
public function content($precision = null)
{
$files = [];
if (isset($this->info['files']) && is_array($this->info['files'])) {
foreach ($this->info['files'] as $file) {
$files[self::path($file['path'], $this->info['name'])] = $precision ?
self::format($file['length'], $precision) :
$file['length'];
}
} elseif (isset($this->info['name'])) {
$files[$this->info['name']] = $precision ?
self::format($this->info['length'], $precision) :
$this->info['length'];
}
return $files;
}
public function offset()
{
$files = [];
$size = 0;
if (isset($this->info['files']) && is_array($this->info['files'])) {
foreach ($this->info['files'] as $file) {
$files[self::path($file['path'], $this->info['name'])] = [
'startpiece' => floor($size / $this->info['piece length']),
'offset' => fmod($size, $this->info['piece length']),
'size' => $size += $file['length'],
'endpiece' => floor($size / $this->info['piece length']),
];
}
} elseif (isset($this->info['name'])) {
$files[$this->info['name']] = [
'startpiece' => 0,
'offset' => 0,
'size' => $this->info['length'],
'endpiece' => floor($this->info['length'] / $this->info['piece length']),
];
}
return $files;
}
public function size($precision = null)
{
$size = 0;
if (isset($this->info['files']) && is_array($this->info['files'])) {
foreach ($this->info['files'] as $file) {
$size += $file['length'];
}
} elseif (isset($this->info['name'])) {
$size = $this->info['length'];
}
return is_null($precision) ?
$size :
self::format($size, $precision);
}
public function scrape($announce = null, $hash_info = null, $timeout = self::timeout)
{
$packed_hash = urlencode(pack('H*', $hash_info ? $hash_info : $this->hash_info()));
$handles = $scrape = [];
if (!function_exists('curl_multi_init')) {
return self::set_error(new Exception('Install CURL with "curl_multi_init" enabled'));
}
$curl = curl_multi_init();
foreach ((array) ($announce ? $announce : $this->announce()) as $tier) {
foreach ((array) $tier as $tracker) {
$tracker = str_ireplace([
'udp://',
'/announce',
':80/',
], [
'http://',
'/scrape',
'/',
], $tracker);
if (isset($handles[$tracker])) {
continue;
}
$handles[$tracker] = curl_init($tracker . '?info_hash=' . $packed_hash);
curl_setopt($handles[$tracker], CURLOPT_RETURNTRANSFER, true);
curl_setopt($handles[$tracker], CURLOPT_TIMEOUT, $timeout);
curl_multi_add_handle($curl, $handles[$tracker]);
}
}
do {
while (CURLM_CALL_MULTI_PERFORM == ($state = curl_multi_exec($curl, $running)));
if (CURLM_OK != $state) {
continue;
}
while ($done = curl_multi_info_read($curl)) {
$info = curl_getinfo($done['handle']);
$tracker = explode('?', $info['url'], 2);
$tracker = array_shift($tracker);
if (empty($info['http_code'])) {
$scrape[$tracker] = self::set_error(new Exception('Tracker request timeout (' . $timeout . 's)'), true);
continue;
} elseif (200 != $info['http_code']) {
$scrape[$tracker] = self::set_error(new Exception('Tracker request failed (' . $info['http_code'] . ' code)'), true);
continue;
}
$data = curl_multi_getcontent($done['handle']);
$stats = self::decode_data($data);
curl_multi_remove_handle($curl, $done['handle']);
$scrape[$tracker] = empty($stats['files']) ?
self::set_error(new Exception('Empty scrape data'), true) :
array_shift($stats['files']) + (empty($stats['flags']) ? [] : $stats['flags']);
}
} while ($running);
curl_multi_close($curl);
return $scrape;
}
public function save($filename = null)
{
return file_put_contents(is_null($filename) ? $this->info['name'] . '.torrent' : $filename, $this->encode($this));
}
/** Send torrent file to client
*
* @param null|string name of the file (optional)
*/
public function send($filename = null)
{
$data = $this->encode($this);
header('Content-type: application/x-bittorrent');
header('Content-Length: ' . strlen($data));
header('Content-Disposition: attachment; filename="' . (is_null($filename) ? $this->info['name'] . '.torrent' : $filename) . '"');
exit($data);
}
public function magnet($html = true)
{
$ampersand = $html ? '&' : '&';
return sprintf('magnet:?xt=urn:btih:%2$s%1$sdn=%3$s%1$sxl=%4$d%1$str=%5$s', $ampersand, $this->hash_info(), urlencode($this->name()), $this->size(), implode($ampersand . 'tr=', self::untier($this->announce())));
}
public static function encode($mixed)
{
switch (gettype($mixed)) {
case 'integer':
case 'double':
return self::encode_integer($mixed);
case 'object':
$mixed = get_object_vars($mixed);
// no break
case 'array':
return self::encode_array($mixed);
default:
return self::encode_string((string) $mixed);
}
}
private static function encode_string($string)
{
return strlen($string) . ':' . $string;
}
private static function encode_integer($integer)
{
return 'i' . $integer . 'e';
}
private static function encode_array($array)
{
if (self::is_list($array)) {
$return = 'l';
foreach ($array as $value) {
$return .= self::encode($value);
}
} else {
ksort($array, SORT_STRING);
$return = 'd';
foreach ($array as $key => $value) {
$return .= self::encode(strval($key)) . self::encode($value);
}
}
return $return . 'e';
}
protected static function decode($string)
{
$data = is_file($string) || self::url_exists($string) ?
self::file_get_contents($string) :
$string;
return (array) self::decode_data($data);
}
private static function decode_data(&$data)
{
switch (self::char($data)) {
case 'i':
$data = substr($data, 1);
return self::decode_integer($data);
case 'l':
$data = substr($data, 1);
return self::decode_list($data);
case 'd':
$data = substr($data, 1);
return self::decode_dictionary($data);
default:
return self::decode_string($data);
}
}
private static function decode_dictionary(&$data)
{
$dictionary = [];
$previous = null;
while ('e' != ($char = self::char($data))) {
if (false === $char) {
return self::set_error(new Exception('Unterminated dictionary'));
}
if (!ctype_digit($char)) {
return self::set_error(new Exception('Invalid dictionary key'));
}
$key = self::decode_string($data);
if (isset($dictionary[$key])) {
return self::set_error(new Exception('Duplicate dictionary key'));
}
if ($key < $previous) {
self::set_error(new Exception('Missorted dictionary key'));
}
$dictionary[$key] = self::decode_data($data);
$previous = $key;
}
$data = substr($data, 1);
return $dictionary;
}
private static function decode_list(&$data)
{
$list = [];
while ('e' != ($char = self::char($data))) {
if (false === $char) {
return self::set_error(new Exception('Unterminated list'));
}
$list[] = self::decode_data($data);
}
$data = substr($data, 1);
return $list;
}
private static function decode_string(&$data)
{
if ('0' === self::char($data) && ':' != substr($data, 1, 1)) {
self::set_error(new Exception('Invalid string length, leading zero'));
}
if (!$colon = @strpos($data, ':')) {
return self::set_error(new Exception('Invalid string length, colon not found'));
}
$length = intval(substr($data, 0, $colon));
if ($length + $colon + 1 > strlen($data)) {
return self::set_error(new Exception('Invalid string, input too short for string length'));
}
$string = substr($data, $colon + 1, $length);
$data = substr($data, $colon + $length + 1);
return $string;
}
private static function decode_integer(&$data)
{
$start = 0;
$end = strpos($data, 'e');
if (0 === $end) {
self::set_error(new Exception('Empty integer'));
}
if ('-' == self::char($data)) {
++$start;
}
if ('0' == substr($data, $start, 1) && $end > $start + 1) {
self::set_error(new Exception('Leading zero in integer'));
}
if (!ctype_digit(substr($data, $start, $start ? $end - 1 : $end))) {
self::set_error(new Exception('Non-digit characters in integer'));
}
$integer = substr($data, 0, $end);
$data = substr($data, $end + 1);
return 0 + $integer;
}
protected function build($data, $piece_length)
{
if (is_null($data)) {
return false;
} elseif (is_array($data) && self::is_list($data)) {
return $this->info = $this->files($data, $piece_length);
} elseif (is_dir($data)) {
return $this->info = $this->folder($data, $piece_length);
} elseif ((is_file($data) || self::url_exists($data)) && !self::is_torrent($data)) {
return $this->info = $this->file($data, $piece_length);
} else {
return false;
}
}
protected function touch($void = null)
{
$this->{'created by'} = 'Torrent RW PHP Class - http://github.com/adriengibrat/torrent-rw';
$this->{'creation date'} = time();
return $void;
}
protected static function set_error($exception, $message = false)
{
return (array_unshift(self::$_errors, $exception) && $message) ? $exception->getMessage() : false;
}
protected static function announce_list($announce, $merge = [])
{
return array_map(function($a) {return (array) $a;}, array_merge((array) $announce, (array) $merge));
}
protected static function first_announce($announce)
{
while (is_array($announce)) {
$announce = reset($announce);
}
return $announce;
}
protected static function pack(&$data)
{
return pack('H*', sha1($data)) . ($data = null);
}
protected static function path($path, $folder)
{
array_unshift($path, $folder);
return join(DIRECTORY_SEPARATOR, $path);
}
protected static function path_explode($path)
{
return explode(DIRECTORY_SEPARATOR, $path);
}
protected static function is_list($array)
{
foreach (array_keys($array) as $key) {
if (!is_int($key)) {
return false;
}
}
return true;
}
private function pieces($handle, $piece_length, $last = true)
{
static $piece, $length;
if (empty($length)) {
$length = $piece_length;
}
$pieces = null;
while (!feof($handle)) {
if (($length = strlen($piece .= fread($handle, $length))) == $piece_length) {
$pieces .= self::pack($piece);
} elseif (($length = $piece_length - $length) < 0) {
return self::set_error(new Exception('Invalid piece length!'));
}
}
fclose($handle);
return $pieces . ($last && $piece ? self::pack($piece) : null);
}
private function file($file, $piece_length)
{
if (!$handle = self::fopen($file, $size = self::filesize($file))) {
return self::set_error(new Exception('Failed to open file: "' . $file . '"'));
}
if (self::is_url($file)) {
$this->url_list($file);
}
$path = self::path_explode($file);
return [
'length' => $size,
'name' => end($path),
'piece length' => $piece_length,
'pieces' => $this->pieces($handle, $piece_length),
];
}
private function files($files, $piece_length)
{
sort($files);
usort($files, function($a, $b) {
return strrpos($a,DIRECTORY_SEPARATOR)-strrpos($b,DIRECTORY_SEPARATOR);
});
$first = current($files);
if (!self::is_url($first)) {
$files = array_map('realpath', $files);
} else {
$this->url_list(dirname($first) . DIRECTORY_SEPARATOR);
}
$files_path = array_map('self::path_explode', $files);
$root = call_user_func_array('array_intersect_assoc', $files_path);
$pieces = null;
$info_files = [];
$count = count($files) - 1;
foreach ($files as $i => $file) {
if (!$handle = self::fopen($file, $filesize = self::filesize($file))) {
self::set_error(new Exception('Failed to open file: "' . $file . '" discarded'));
continue;
}
$pieces .= $this->pieces($handle, $piece_length, $count == $i);
$info_files[] = [
'length' => $filesize,
'path' => array_diff_assoc($files_path[$i], $root),
];
}
return [
'files' => $info_files,
'name' => end($root),
'piece length' => $piece_length,
'pieces' => $pieces,
];
}
private function folder($dir, $piece_length)
{
return $this->files(self::scandir($dir), $piece_length);
}
private static function char($data)
{
return empty($data) ?
false :
substr($data, 0, 1);
}
public static function format($size, $precision = 2)
{
$units = [
'octets',
'Ko',
'Mo',
'Go',
'To',
];
while (($next = next($units)) && $size > 1024) {
$size /= 1024;
}
return round($size, $precision) . ' ' . ($next ? prev($units) : end($units));
}
public static function filesize($file)
{
if (is_file($file)) {
return (float) sprintf('%u', @filesize($file));
} elseif ($content_length = preg_grep($pattern = '#^Content-Length:\s+(\d+)$#i', (array) @get_headers($file))) {
return (int) preg_replace($pattern, '$1', reset($content_length));
}
}
public static function fopen($file, $size = null)
{
if ((is_null($size) ? self::filesize($file) : $size) <= 2 * pow(1024, 3)) {
return fopen($file, 'r');
} elseif (PHP_OS != 'Linux') {
return self::set_error(new Exception('File size is greater than 2GB. This is only supported under Linux'));
} elseif (!is_readable($file)) {
return false;
} else {
return popen('cat ' . escapeshellarg(realpath($file)), 'r');
}
}
public static function scandir($dir)
{
$paths = [];
foreach (scandir($dir) as $item) {
if ('.' != $item && '..' != $item) {
if (is_dir($path = realpath($dir . DIRECTORY_SEPARATOR . $item))) {
$paths = array_merge(self::scandir($path), $paths);
} else {
$paths[] = $path;
}
}
}
return $paths;
}
public static function is_url($url)
{
return preg_match('#^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$#i', $url);
}
public static function url_exists($url)
{
return self::is_url($url) ?
(bool) self::filesize($url) :
false;
}
public static function is_torrent($file, $timeout = self::timeout)
{
return ($start = self::file_get_contents($file, $timeout, 0, 11))
&& 'd8:announce' === $start
|| 'd10:created' === $start
|| 'd13:creatio' === $start
|| 'd13:announc' === $start
|| 'd12:_info_l' === $start
|| 'd7:comment' === substr($start, 0, 10) // @see https://github.com/adriengibrat/torrent-rw/issues/32
|| 'd4:info' === substr($start, 0, 7)
|| 'd9:' === substr($start, 0, 3); // @see https://github.com/adriengibrat/torrent-rw/pull/17
}
public static function file_get_contents($file, $timeout = self::timeout, $offset = null, $length = null)
{
if (is_file($file) || ini_get('allow_url_fopen')) {
$context = !is_file($file) && $timeout ?
stream_context_create(['http' => ['timeout' => $timeout]]) :
null;
return !is_null($offset) ? $length ?
@file_get_contents($file, false, $context, $offset, $length) :
@file_get_contents($file, false, $context, $offset) :
@file_get_contents($file, false, $context);
} elseif (!function_exists('curl_init')) {
return self::set_error(new Exception('Install CURL or enable "allow_url_fopen"'));
}
$handle = curl_init($file);
if ($timeout) {
curl_setopt($handle, CURLOPT_TIMEOUT, $timeout);
}
if ($offset || $length) {
curl_setopt($handle, CURLOPT_RANGE, $offset . '-' . ($length ? $offset + $length - 1 : null));
}
curl_setopt($handle, CURLOPT_RETURNTRANSFER, 1);
$content = curl_exec($handle);
$size = curl_getinfo($handle, CURLINFO_CONTENT_LENGTH_DOWNLOAD);
curl_close($handle);
return ($offset && $size == -1) || ($length && $length != $size) ? $length ?
substr($content, $offset, $length) :
substr($content, $offset) :
$content;
}
public static function untier($announces)
{
$list = [];
foreach ((array) $announces as $tier) {
is_array($tier) ?
$list = array_merge($list, self::untier($tier)) :
array_push($list, $tier);
}
return $list;
}
}