mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Added User-Agent to UrlValidator, so that remote servers don't consider Shlink a bot
This commit is contained in:
parent
81eb2684bf
commit
8ad34357d3
@ -20,6 +20,8 @@ use const Shlinkio\Shlink\Core\TITLE_TAG_VALUE;
|
|||||||
class UrlValidator implements UrlValidatorInterface, RequestMethodInterface
|
class UrlValidator implements UrlValidatorInterface, RequestMethodInterface
|
||||||
{
|
{
|
||||||
private const MAX_REDIRECTS = 15;
|
private const MAX_REDIRECTS = 15;
|
||||||
|
private const CHROME_USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) '
|
||||||
|
. 'Chrome/51.0.2704.103 Safari/537.36';
|
||||||
|
|
||||||
private ClientInterface $httpClient;
|
private ClientInterface $httpClient;
|
||||||
private UrlShortenerOptions $options;
|
private UrlShortenerOptions $options;
|
||||||
@ -67,6 +69,8 @@ class UrlValidator implements UrlValidatorInterface, RequestMethodInterface
|
|||||||
return $this->httpClient->request(self::METHOD_GET, $url, [
|
return $this->httpClient->request(self::METHOD_GET, $url, [
|
||||||
RequestOptions::ALLOW_REDIRECTS => ['max' => self::MAX_REDIRECTS],
|
RequestOptions::ALLOW_REDIRECTS => ['max' => self::MAX_REDIRECTS],
|
||||||
RequestOptions::IDN_CONVERSION => true,
|
RequestOptions::IDN_CONVERSION => true,
|
||||||
|
// Making the request with a browser's user agent makes the validation closer to a real user
|
||||||
|
RequestOptions::HEADERS => ['User-Agent' => self::CHROME_USER_AGENT],
|
||||||
]);
|
]);
|
||||||
} catch (GuzzleException $e) {
|
} catch (GuzzleException $e) {
|
||||||
if ($throwOnError) {
|
if ($throwOnError) {
|
||||||
|
@ -10,6 +10,7 @@ use GuzzleHttp\Exception\ClientException;
|
|||||||
use GuzzleHttp\RequestOptions;
|
use GuzzleHttp\RequestOptions;
|
||||||
use Laminas\Diactoros\Response;
|
use Laminas\Diactoros\Response;
|
||||||
use Laminas\Diactoros\Stream;
|
use Laminas\Diactoros\Stream;
|
||||||
|
use PHPUnit\Framework\Assert;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Prophecy\Argument;
|
use Prophecy\Argument;
|
||||||
use Prophecy\PhpUnit\ProphecyTrait;
|
use Prophecy\PhpUnit\ProphecyTrait;
|
||||||
@ -52,10 +53,16 @@ class UrlValidatorTest extends TestCase
|
|||||||
$request = $this->httpClient->request(
|
$request = $this->httpClient->request(
|
||||||
RequestMethodInterface::METHOD_GET,
|
RequestMethodInterface::METHOD_GET,
|
||||||
$expectedUrl,
|
$expectedUrl,
|
||||||
[
|
Argument::that(function (array $options) {
|
||||||
RequestOptions::ALLOW_REDIRECTS => ['max' => 15],
|
Assert::assertArrayHasKey(RequestOptions::ALLOW_REDIRECTS, $options);
|
||||||
RequestOptions::IDN_CONVERSION => true,
|
Assert::assertEquals(['max' => 15], $options[RequestOptions::ALLOW_REDIRECTS]);
|
||||||
],
|
Assert::assertArrayHasKey(RequestOptions::IDN_CONVERSION, $options);
|
||||||
|
Assert::assertTrue($options[RequestOptions::IDN_CONVERSION]);
|
||||||
|
Assert::assertArrayHasKey(RequestOptions::HEADERS, $options);
|
||||||
|
Assert::assertArrayHasKey('User-Agent', $options[RequestOptions::HEADERS]);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}),
|
||||||
)->willReturn(new Response());
|
)->willReturn(new Response());
|
||||||
|
|
||||||
$this->urlValidator->validateUrl($expectedUrl, null);
|
$this->urlValidator->validateUrl($expectedUrl, null);
|
||||||
|
Loading…
Reference in New Issue
Block a user