forked from wallabag/wallabag
Remove FixupMondeDiplomatiqueUriSubscriber
This commit is contained in:
@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\Guzzle;
|
||||
|
||||
use GuzzleHttp\Event\CompleteEvent;
|
||||
use GuzzleHttp\Event\SubscriberInterface;
|
||||
|
||||
/**
|
||||
* Fixes url encoding of a parameter guzzle fails with.
|
||||
*/
|
||||
class FixupMondeDiplomatiqueUriSubscriber implements SubscriberInterface
|
||||
{
|
||||
public function getEvents(): array
|
||||
{
|
||||
return ['complete' => [['fixUri', 500]]];
|
||||
}
|
||||
|
||||
public function fixUri(CompleteEvent $event)
|
||||
{
|
||||
$response = $event->getResponse();
|
||||
|
||||
if (!$response->hasHeader('Location')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$uri = $response->getHeader('Location');
|
||||
if (false === ($badParameter = strstr($uri, 'retour=http://'))) {
|
||||
return;
|
||||
}
|
||||
|
||||
$response->setHeader('Location', str_replace($badParameter, urlencode($badParameter), $uri));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user