mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[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:
parent
d175bab58e
commit
7931f37a83
@ -437,37 +437,9 @@ HEREDOC;
|
|||||||
*/
|
*/
|
||||||
private function getImage($deal)
|
private function getImage($deal)
|
||||||
{
|
{
|
||||||
$selectorLazy = implode(
|
// Get thread Image JSON content
|
||||||
' ', /* Notice this is a space! */
|
$content = Json::decode($deal->find('div[class*=threadGrid-image]', 0)->find('div[class=js-vue2]', 0)->getAttribute('data-vue2'));
|
||||||
[
|
return $content['props']['threadImageUrl'];
|
||||||
'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 ?? '';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user