2016-10-30 09:48:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Wallabag\CoreBundle\Helper;
|
|
|
|
|
2019-01-28 05:10:26 +00:00
|
|
|
use GuzzleHttp\Psr7\Response;
|
2017-10-24 20:55:40 +00:00
|
|
|
use Http\Mock\Client as HttpMockClient;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Monolog\Handler\TestHandler;
|
|
|
|
use Monolog\Logger;
|
2017-12-16 21:17:42 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Wallabag\CoreBundle\Helper\DownloadImages;
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-12-16 21:17:42 +00:00
|
|
|
class DownloadImagesTest extends TestCase
|
2016-10-30 09:48:29 +00:00
|
|
|
{
|
2017-06-01 20:50:33 +00:00
|
|
|
public function dataForSuccessImage()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'imgur' => [
|
|
|
|
'<div><img src="http://i.imgur.com/T9qgcHc.jpg" /></div>',
|
|
|
|
'http://imgur.com/gallery/WxtWY',
|
|
|
|
],
|
|
|
|
'image with &' => [
|
|
|
|
'<div><img src="https://i2.wp.com/www.tvaddons.ag/wp-content/uploads/2017/01/Screen-Shot-2017-01-07-at-10.17.40-PM.jpg?w=640&ssl=1" /></div>',
|
|
|
|
'https://www.tvaddons.ag/realdebrid-kodi-jarvis/',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForSuccessImage
|
|
|
|
*/
|
|
|
|
public function testProcessHtml($html, $url)
|
2016-10-30 09:48:29 +00:00
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/png'], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2016-10-30 18:50:00 +00:00
|
|
|
|
2017-06-01 20:50:33 +00:00
|
|
|
$res = $download->processHtml(123, $html, $url);
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-06-01 20:50:33 +00:00
|
|
|
// this the base path of all image (since it's calculated using the entry id: 123)
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('http://wallabag.io/assets/images/9/b/9b0ead26/', $res);
|
2016-10-30 09:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testProcessHtmlWithBadImage()
|
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'application/json'], ''));
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2016-11-01 13:49:02 +00:00
|
|
|
$res = $download->processHtml(123, '<div><img src="http://i.imgur.com/T9qgcHc.jpg" /></div>', 'http://imgur.com/gallery/WxtWY');
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('http://i.imgur.com/T9qgcHc.jpg', $res, 'Image were not replace because of content-type');
|
2016-10-30 09:48:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function singleImage()
|
|
|
|
{
|
|
|
|
return [
|
2023-12-24 23:12:54 +00:00
|
|
|
['image/pjpeg', 'jpg'],
|
|
|
|
['image/jpeg', 'jpg'],
|
2016-10-30 09:48:29 +00:00
|
|
|
['image/png', 'png'],
|
|
|
|
['image/gif', 'gif'],
|
2022-03-21 20:26:30 +00:00
|
|
|
['image/webp', 'webp'],
|
2016-10-30 09:48:29 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider singleImage
|
|
|
|
*/
|
|
|
|
public function testProcessSingleImage($header, $extension)
|
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => $header], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2016-11-01 13:49:02 +00:00
|
|
|
$res = $download->processSingleImage(123, 'T9qgcHc.jpg', 'http://imgur.com/gallery/WxtWY');
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('/assets/images/9/b/9b0ead26/ebe60399.' . $extension, $res);
|
2016-10-30 09:48:29 +00:00
|
|
|
}
|
|
|
|
|
2016-10-30 10:27:09 +00:00
|
|
|
public function testProcessSingleImageWithBadUrl()
|
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(404, []));
|
2016-10-30 10:27:09 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2016-10-30 10:27:09 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2016-11-01 13:49:02 +00:00
|
|
|
$res = $download->processSingleImage(123, 'T9qgcHc.jpg', 'http://imgur.com/gallery/WxtWY');
|
2016-10-30 10:27:09 +00:00
|
|
|
|
|
|
|
$this->assertFalse($res, 'Image can not be found, so it will not be replaced');
|
|
|
|
}
|
|
|
|
|
2016-10-30 09:48:29 +00:00
|
|
|
public function testProcessSingleImageWithBadImage()
|
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/png'], ''));
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2016-11-01 13:49:02 +00:00
|
|
|
$res = $download->processSingleImage(123, 'http://i.imgur.com/T9qgcHc.jpg', 'http://imgur.com/gallery/WxtWY');
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$this->assertFalse($res, 'Image can not be loaded, so it will not be replaced');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testProcessSingleImageFailAbsolute()
|
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/png'], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2016-10-30 09:48:29 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2016-11-01 13:49:02 +00:00
|
|
|
$res = $download->processSingleImage(123, '/i.imgur.com/T9qgcHc.jpg', 'imgur.com/gallery/WxtWY');
|
2016-10-30 09:48:29 +00:00
|
|
|
|
|
|
|
$this->assertFalse($res, 'Absolute image can not be determined, so it will not be replaced');
|
|
|
|
}
|
2017-06-05 20:54:02 +00:00
|
|
|
|
|
|
|
public function testProcessRealImage()
|
|
|
|
{
|
2017-10-24 20:55:40 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
2017-06-05 20:54:02 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
2017-07-01 07:52:38 +00:00
|
|
|
$logger = new Logger('test', [$logHandler]);
|
2017-06-05 20:54:02 +00:00
|
|
|
|
2017-10-24 20:55:40 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2017-06-05 20:54:02 +00:00
|
|
|
|
|
|
|
$res = $download->processSingleImage(
|
|
|
|
123,
|
|
|
|
'https://cdn.theconversation.com/files/157200/article/width926/gsj2rjp2-1487348607.jpg',
|
|
|
|
'https://theconversation.com/conversation-avec-gerald-bronner-ce-nest-pas-la-post-verite-qui-nous-menace-mais-lextension-de-notre-credulite-73089'
|
|
|
|
);
|
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('http://wallabag.io/assets/images/9/b/9b0ead26/', $res, 'Content-Type was empty but data is ok for an image');
|
|
|
|
$this->assertStringContainsString('DownloadImages: Checking extension (alternative)', $logHandler->getRecords()[3]['message']);
|
2017-06-05 20:54:02 +00:00
|
|
|
}
|
2018-05-31 21:42:06 +00:00
|
|
|
|
|
|
|
public function testProcessImageWithSrcset()
|
|
|
|
{
|
2019-02-07 16:56:05 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
2018-05-31 21:42:06 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
2019-02-07 16:56:05 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2018-05-31 21:42:06 +00:00
|
|
|
$res = $download->processHtml(123, '<p><img class="alignnone wp-image-1153" src="http://piketty.blog.lemonde.fr/files/2017/10/F1FR-530x375.jpg" alt="" width="628" height="444" srcset="http://piketty.blog.lemonde.fr/files/2017/10/F1FR-530x375.jpg 530w, http://piketty.blog.lemonde.fr/files/2017/10/F1FR-768x543.jpg 768w, http://piketty.blog.lemonde.fr/files/2017/10/F1FR-900x636.jpg 900w" sizes="(max-width: 628px) 100vw, 628px" /></p>', 'http://piketty.blog.lemonde.fr/2017/10/12/budget-2018-la-jeunesse-sacrifiee/');
|
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringNotContainsString('http://piketty.blog.lemonde.fr/', $res, 'Image srcset attribute were not replaced');
|
2018-05-31 21:42:06 +00:00
|
|
|
}
|
2018-06-03 20:52:48 +00:00
|
|
|
|
2018-07-11 17:57:34 +00:00
|
|
|
public function testProcessImageWithTrickySrcset()
|
|
|
|
{
|
2019-02-07 16:56:05 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
2018-07-11 17:57:34 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
2019-02-07 16:56:05 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2018-07-11 17:57:34 +00:00
|
|
|
$res = $download->processHtml(123, '<figure id="post-257260" class="align-none media-257260"><img src="https://cdn.css-tricks.com/wp-content/uploads/2017/08/the-critical-request.png" srcset="https://res.cloudinary.com/css-tricks/image/upload/c_scale,w_1000,f_auto,q_auto/v1501594717/the-critical-request_bqdfaa.png 1000w, https://res.cloudinary.com/css-tricks/image/upload/c_scale,w_200,f_auto,q_auto/v1501594717/the-critical-request_bqdfaa.png 200w" sizes="(min-width: 1850px) calc( (100vw - 555px) / 3 )
|
|
|
|
(min-width: 1251px) calc( (100vw - 530px) / 2 )
|
|
|
|
(min-width: 1086px) calc(100vw - 480px)
|
|
|
|
(min-width: 626px) calc(100vw - 335px)
|
|
|
|
calc(100vw - 30px)" alt="" /></figure>', 'https://css-tricks.com/the-critical-request/');
|
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringNotContainsString('f_auto,q_auto', $res, 'Image srcset attribute were not replaced');
|
2018-07-11 17:57:34 +00:00
|
|
|
}
|
|
|
|
|
2023-05-29 13:12:04 +00:00
|
|
|
public function testProcessImageWithNumericHtmlEntitySeparator()
|
|
|
|
{
|
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/jpeg'], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/jpeg'], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/jpeg'], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
|
|
|
// wordpress.com sites using & as an & alternative
|
|
|
|
$res = $download->processHtml(123, '<img srcset="https://example.com/20191204_133626-scaled.jpg?strip=info&w=600&ssl=1 600w,https://example.com/20191204_133626-scaled.jpg?strip=info&w=900&ssl=1 900w" src="https://example.com/20191204_133626-scaled.jpg?ssl=1"/>', 'https://example.com/about/');
|
|
|
|
|
|
|
|
$this->assertStringNotContainsString('https://example.com', $res, 'Image srcset attribute were not replaced');
|
|
|
|
}
|
|
|
|
|
2018-06-03 20:52:48 +00:00
|
|
|
public function testProcessImageWithNullPath()
|
|
|
|
{
|
2019-02-07 16:56:05 +00:00
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => null], file_get_contents(__DIR__ . '/../fixtures/image-no-content-type.jpg')));
|
2018-06-03 20:52:48 +00:00
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
2019-02-07 16:56:05 +00:00
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
2018-06-03 20:52:48 +00:00
|
|
|
|
|
|
|
$res = $download->processSingleImage(
|
|
|
|
123,
|
|
|
|
null,
|
|
|
|
'https://framablog.org/2018/06/30/engagement-atypique/'
|
|
|
|
);
|
|
|
|
$this->assertFalse($res);
|
|
|
|
}
|
2022-02-03 12:29:40 +00:00
|
|
|
|
2022-10-04 00:31:43 +00:00
|
|
|
public function testEnsureOnlyFirstOccurrenceIsReplaced()
|
2022-02-03 12:29:40 +00:00
|
|
|
{
|
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/png'], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/png'], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
|
|
|
|
|
|
|
$html = '<img src="https://images.wsj.net/im-410981?width=860&height=573" srcset="https://images.wsj.net/im-410981?width=860&height=573&pixel_ratio=1.5 1290w" height="573" width="860" alt="" referrerpolicy="no-referrer">';
|
|
|
|
$url = 'https://www.wsj.com/articles/5-interior-design-tips-to-max-out-your-basement-space-11633435201';
|
|
|
|
|
|
|
|
$res = $download->processHtml(123, $html, $url);
|
|
|
|
|
|
|
|
$this->assertSame('<img src="http://wallabag.io/assets/images/9/b/9b0ead26/6bef06fe.png" srcset="http://wallabag.io/assets/images/9/b/9b0ead26/43cc0123.png 1290w" height="573" width="860" alt="" referrerpolicy="no-referrer">', $res);
|
|
|
|
}
|
2022-09-27 13:39:39 +00:00
|
|
|
|
|
|
|
public function testProcessSingleImageWithSvg()
|
|
|
|
{
|
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/svg+xml'], file_get_contents(__DIR__ . '/../fixtures/modal-content.svg')));
|
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
|
|
|
$res = $download->processSingleImage(123, 'modal-content.svg', 'http://imgur.com/gallery/WxtWY');
|
|
|
|
|
|
|
|
$this->assertStringContainsString('/assets/images/9/b/9b0ead26/400e29f9.svg', $res);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testProcessSingleImageWithBadSvg()
|
|
|
|
{
|
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/svg+xml'], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
|
|
|
$res = $download->processSingleImage(123, 'modal-content.svg', 'http://imgur.com/gallery/WxtWY');
|
|
|
|
|
|
|
|
$this->assertFalse($res);
|
|
|
|
}
|
2023-05-29 11:34:29 +00:00
|
|
|
|
|
|
|
public function testFollowRedirection()
|
|
|
|
{
|
|
|
|
$httpMockClient = new HttpMockClient();
|
|
|
|
$httpMockClient->addResponse(new Response(301, ['content-type' => 'image/png', 'location' => '/final-path.png']));
|
|
|
|
$httpMockClient->addResponse(new Response(200, ['content-type' => 'image/png'], file_get_contents(__DIR__ . '/../fixtures/unnamed.png')));
|
|
|
|
|
|
|
|
$logHandler = new TestHandler();
|
|
|
|
$logger = new Logger('test', [$logHandler]);
|
|
|
|
|
|
|
|
$download = new DownloadImages($httpMockClient, sys_get_temp_dir() . '/wallabag_test', 'http://wallabag.io/', $logger);
|
|
|
|
$res = $download->processSingleImage(123, '', 'https://example.com/unnamed.png');
|
|
|
|
|
|
|
|
$this->assertStringContainsString('/assets/images/9/b/9b0ead26/66953334.png', $res, "Fetch client didn't follow the HTTP redirection");
|
|
|
|
}
|
2016-10-30 09:48:29 +00:00
|
|
|
}
|