]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/GuzzleSiteAuthenticator/GrabySiteConfigBuilder.php
Add ability to match many domains for credentials
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / GuzzleSiteAuthenticator / GrabySiteConfigBuilder.php
CommitLineData
7aab0ecf
BD
1<?php
2
3namespace Wallabag\CoreBundle\GuzzleSiteAuthenticator;
4
5use BD\GuzzleSiteAuthenticator\SiteConfig\SiteConfig;
6use BD\GuzzleSiteAuthenticator\SiteConfig\SiteConfigBuilder;
7use Graby\SiteConfig\ConfigBuilder;
94b232bb 8use Psr\Log\LoggerInterface;
b8427f22 9use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
f808b016 10use Wallabag\CoreBundle\Repository\SiteCredentialRepository;
52b84c11 11use Wallabag\UserBundle\Entity\User;
7aab0ecf
BD
12
13class GrabySiteConfigBuilder implements SiteConfigBuilder
14{
15 /**
94b232bb 16 * @var ConfigBuilder
7aab0ecf
BD
17 */
18 private $grabyConfigBuilder;
5a9bc007 19
7aab0ecf 20 /**
5a9bc007 21 * @var SiteCredentialRepository
7aab0ecf 22 */
5a9bc007
JB
23 private $credentialRepository;
24
94b232bb
JB
25 /**
26 * @var LoggerInterface
27 */
28 private $logger;
7aab0ecf 29
5a9bc007 30 /**
52b84c11 31 * @var User|null
5a9bc007
JB
32 */
33 private $currentUser;
34
7aab0ecf
BD
35 /**
36 * GrabySiteConfigBuilder constructor.
37 *
5a9bc007 38 * @param ConfigBuilder $grabyConfigBuilder
9de9f1e5 39 * @param TokenStorage $token
5a9bc007 40 * @param SiteCredentialRepository $credentialRepository
9de9f1e5 41 * @param LoggerInterface $logger
7aab0ecf 42 */
b8427f22 43 public function __construct(ConfigBuilder $grabyConfigBuilder, TokenStorage $token, SiteCredentialRepository $credentialRepository, LoggerInterface $logger)
7aab0ecf
BD
44 {
45 $this->grabyConfigBuilder = $grabyConfigBuilder;
5a9bc007 46 $this->credentialRepository = $credentialRepository;
94b232bb 47 $this->logger = $logger;
b8427f22
JB
48
49 if ($token->getToken()) {
50 $this->currentUser = $token->getToken()->getUser();
51 }
7aab0ecf
BD
52 }
53
54 /**
5fe65bae 55 * {@inheritdoc}
7aab0ecf
BD
56 */
57 public function buildForHost($host)
58 {
59 // required by credentials below
60 $host = strtolower($host);
3ef055ce 61 if ('www.' === substr($host, 0, 4)) {
7aab0ecf
BD
62 $host = substr($host, 4);
63 }
64
b8427f22
JB
65 $credentials = null;
66 if ($this->currentUser) {
f4549633
JB
67 $hosts = [$host];
68 // will try to see for a host without the first subdomain (fr.example.org & .example.org)
69 $split = explode('.', $host);
70
71 if (\count($split) > 1) {
72 // remove first subdomain
73 array_shift($split);
74 $hosts[] = '.' . implode('.', $split);
75 }
76
77 $credentials = $this->credentialRepository->findOneByHostsAndUser($hosts, $this->currentUser->getId());
b8427f22 78 }
5a9bc007
JB
79
80 if (null === $credentials) {
94b232bb
JB
81 $this->logger->debug('Auth: no credentials available for host.', ['host' => $host]);
82
83 return false;
84 }
85
7aab0ecf
BD
86 $config = $this->grabyConfigBuilder->buildForHost($host);
87 $parameters = [
88 'host' => $host,
89 'requiresLogin' => $config->requires_login ?: false,
90 'loginUri' => $config->login_uri ?: null,
91 'usernameField' => $config->login_username_field ?: null,
92 'passwordField' => $config->login_password_field ?: null,
662db41b 93 'extraFields' => $this->processExtraFields($config->login_extra_fields),
7aab0ecf 94 'notLoggedInXpath' => $config->not_logged_in_xpath ?: null,
5a9bc007
JB
95 'username' => $credentials['username'],
96 'password' => $credentials['password'],
7aab0ecf
BD
97 ];
98
94b232bb
JB
99 $config = new SiteConfig($parameters);
100
bead8b42
TC
101 // do not leak usernames and passwords in log
102 $parameters['username'] = '**masked**';
94b232bb 103 $parameters['password'] = '**masked**';
7aab0ecf 104
94b232bb
JB
105 $this->logger->debug('Auth: add parameters.', ['host' => $host, 'parameters' => $parameters]);
106
107 return $config;
7aab0ecf 108 }
662db41b
BD
109
110 /**
111 * Processes login_extra_fields config, transforming an '=' separated array of strings
112 * into a key/value array.
113 *
114 * @param array|mixed $extraFieldsStrings
115 *
116 * @return array
117 */
118 protected function processExtraFields($extraFieldsStrings)
119 {
2a1ceb67 120 if (!\is_array($extraFieldsStrings)) {
662db41b
BD
121 return [];
122 }
123
124 $extraFields = [];
125 foreach ($extraFieldsStrings as $extraField) {
3ef055ce 126 if (false === strpos($extraField, '=')) {
662db41b
BD
127 continue;
128 }
94b232bb 129
662db41b
BD
130 list($fieldName, $fieldValue) = explode('=', $extraField, 2);
131 $extraFields[$fieldName] = $fieldValue;
132 }
133
134 return $extraFields;
135 }
7aab0ecf 136}