[PepperBridgeAbstract] Fix deal image scraping (#3953)

Deal Image was moved to a vuejs element, the deal image scraping was
fixed.
This commit is contained in:
sysadminstory 2024-02-05 23:30:18 +01:00 committed by GitHub
parent d175bab58e
commit 7931f37a83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -437,37 +437,9 @@ HEREDOC;
*/
private function getImage($deal)
{
$selectorLazy = implode(
' ', /* Notice this is a space! */
[
'thread-image',
'width--all-auto',
'height--all-auto',
'imgFrame-img',
'img--dummy',
'js-lazy-img'
]
);
$selectorPlain = implode(
' ', /* Notice this is a space! */
[
'thread-image',
'width--all-auto',
'height--all-auto',
'imgFrame-img',
]
);
if ($deal->find('img[class=' . $selectorLazy . ']', 0) != null) {
return json_decode(
html_entity_decode(
$deal->find('img[class=' . $selectorLazy . ']', 0)
->getAttribute('data-lazy-img')
)
)->{'src'};
} else {
return $deal->find('img[class*=' . $selectorPlain . ']', 0)->src ?? '';
}
// Get thread Image JSON content
$content = Json::decode($deal->find('div[class*=threadGrid-image]', 0)->find('div[class=js-vue2]', 0)->getAttribute('data-vue2'));
return $content['props']['threadImageUrl'];
}
/**