mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
82 lines
2.2 KiB
PHP
82 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace Wallabag\ExpressionLanguage;
|
|
|
|
use Symfony\Component\DomCrawler\Crawler;
|
|
use Symfony\Component\ExpressionLanguage\ExpressionFunction;
|
|
use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
|
|
use Symfony\Contracts\HttpClient\HttpClientInterface;
|
|
|
|
class AuthenticatorProvider implements ExpressionFunctionProviderInterface
|
|
{
|
|
public function __construct(
|
|
private readonly HttpClientInterface $requestHtmlFunctionClient,
|
|
) {
|
|
}
|
|
|
|
public function getFunctions(): array
|
|
{
|
|
$result = [
|
|
$this->getRequestHtmlFunction(),
|
|
$this->getXpathFunction(),
|
|
$this->getPregMatchFunction(),
|
|
];
|
|
|
|
return $result;
|
|
}
|
|
|
|
private function getRequestHtmlFunction()
|
|
{
|
|
return new ExpressionFunction(
|
|
'request_html',
|
|
function (): void {
|
|
throw new \Exception('Not supported');
|
|
},
|
|
fn (array $arguments, $uri) => $this->requestHtmlFunctionClient->request('GET', $uri)->getContent()
|
|
);
|
|
}
|
|
|
|
private function getPregMatchFunction()
|
|
{
|
|
return new ExpressionFunction(
|
|
'preg_match',
|
|
function (): void {
|
|
throw new \Exception('Not supported');
|
|
},
|
|
function (array $arguments, $pattern, $html) {
|
|
preg_match($pattern, $html, $matches);
|
|
|
|
if (2 !== \count($matches)) {
|
|
return '';
|
|
}
|
|
|
|
return $matches[1];
|
|
}
|
|
);
|
|
}
|
|
|
|
private function getXpathFunction()
|
|
{
|
|
return new ExpressionFunction(
|
|
'xpath',
|
|
function (): void {
|
|
throw new \Exception('Not supported');
|
|
},
|
|
function (array $arguments, $xpathQuery, $html) {
|
|
try {
|
|
$crawler = new Crawler((string) $html);
|
|
|
|
$crawler = $crawler->filterXPath($xpathQuery);
|
|
} catch (\Throwable) {
|
|
return '';
|
|
}
|
|
|
|
if (0 === $crawler->count()) {
|
|
return '';
|
|
}
|
|
|
|
return (string) $crawler->first()->attr('value');
|
|
}
|
|
);
|
|
}
|
|
}
|