mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-25 09:00:29 +00:00
Log restricted access value
It might help to figure out if we have enabled it or not
This commit is contained in:
parent
abba55cdd6
commit
7bf6b555f5
2 changed files with 9 additions and 2 deletions
|
@ -6,6 +6,7 @@ use Graby\Ring\Client\SafeCurlHandler;
|
||||||
use GuzzleHttp\Client;
|
use GuzzleHttp\Client;
|
||||||
use GuzzleHttp\Cookie\CookieJar;
|
use GuzzleHttp\Cookie\CookieJar;
|
||||||
use GuzzleHttp\Event\SubscriberInterface;
|
use GuzzleHttp\Event\SubscriberInterface;
|
||||||
|
use Psr\Log\LoggerInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Builds and configures the Guzzle HTTP client.
|
* Builds and configures the Guzzle HTTP client.
|
||||||
|
@ -19,6 +20,7 @@ class HttpClientFactory
|
||||||
private $cookieJar;
|
private $cookieJar;
|
||||||
|
|
||||||
private $restrictedAccess;
|
private $restrictedAccess;
|
||||||
|
private $logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* HttpClientFactory constructor.
|
* HttpClientFactory constructor.
|
||||||
|
@ -26,12 +28,14 @@ class HttpClientFactory
|
||||||
* @param \GuzzleHttp\Event\SubscriberInterface $authenticatorSubscriber
|
* @param \GuzzleHttp\Event\SubscriberInterface $authenticatorSubscriber
|
||||||
* @param \GuzzleHttp\Cookie\CookieJar $cookieJar
|
* @param \GuzzleHttp\Cookie\CookieJar $cookieJar
|
||||||
* @param string $restrictedAccess this param is a kind of boolean. Values: 0 or 1
|
* @param string $restrictedAccess this param is a kind of boolean. Values: 0 or 1
|
||||||
|
* @param LoggerInterface $logger
|
||||||
*/
|
*/
|
||||||
public function __construct(SubscriberInterface $authenticatorSubscriber, CookieJar $cookieJar, $restrictedAccess)
|
public function __construct(SubscriberInterface $authenticatorSubscriber, CookieJar $cookieJar, $restrictedAccess, LoggerInterface $logger)
|
||||||
{
|
{
|
||||||
$this->authenticatorSubscriber = $authenticatorSubscriber;
|
$this->authenticatorSubscriber = $authenticatorSubscriber;
|
||||||
$this->cookieJar = $cookieJar;
|
$this->cookieJar = $cookieJar;
|
||||||
$this->restrictedAccess = $restrictedAccess;
|
$this->restrictedAccess = $restrictedAccess;
|
||||||
|
$this->logger = $logger;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -39,8 +43,10 @@ class HttpClientFactory
|
||||||
*/
|
*/
|
||||||
public function buildHttpClient()
|
public function buildHttpClient()
|
||||||
{
|
{
|
||||||
|
$this->logger->log('debug', 'Restricted access config enabled?', array('enabled' => (int) $this->restrictedAccess));
|
||||||
|
|
||||||
if (0 === (int) $this->restrictedAccess) {
|
if (0 === (int) $this->restrictedAccess) {
|
||||||
return null;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// we clear the cookie to avoid websites who use cookies for analytics
|
// we clear the cookie to avoid websites who use cookies for analytics
|
||||||
|
|
|
@ -74,6 +74,7 @@ services:
|
||||||
- "@bd_guzzle_site_authenticator.authenticator_subscriber"
|
- "@bd_guzzle_site_authenticator.authenticator_subscriber"
|
||||||
- "@wallabag_core.guzzle.cookie_jar"
|
- "@wallabag_core.guzzle.cookie_jar"
|
||||||
- '@=service(''craue_config'').get(''restricted_access'')'
|
- '@=service(''craue_config'').get(''restricted_access'')'
|
||||||
|
- '@logger'
|
||||||
|
|
||||||
wallabag_core.guzzle.cookie_jar:
|
wallabag_core.guzzle.cookie_jar:
|
||||||
class: GuzzleHttp\Cookie\FileCookieJar
|
class: GuzzleHttp\Cookie\FileCookieJar
|
||||||
|
|
Loading…
Reference in a new issue