mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[TheFarSideBridge] Remove hotlink protection bypass
This commit is contained in:
parent
38bb5115c9
commit
80d4a545e9
@ -26,21 +26,16 @@ class TheFarSideBridge extends BridgeAbstract
|
|||||||
$image = $card->find('img', 0);
|
$image = $card->find('img', 0);
|
||||||
$imageUrl = $image->attr['data-src'];
|
$imageUrl = $image->attr['data-src'];
|
||||||
|
|
||||||
// Images are downloaded to bypass the hotlink protection.
|
|
||||||
$image = getContents($imageUrl, ['Referer: ' . self::URI]);
|
|
||||||
|
|
||||||
// Encode image as base64
|
|
||||||
$imageBase64 = base64_encode($image);
|
|
||||||
|
|
||||||
$caption = '';
|
$caption = '';
|
||||||
|
|
||||||
if ($card->find('figcaption', 0)) {
|
if ($card->find('figcaption', 0)) {
|
||||||
$caption = $card->find('figcaption', 0)->innertext;
|
$caption = $card->find('figcaption', 0)->innertext;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$item['enclosures'][] = $imageUrl;
|
||||||
$item['content'] .= <<<EOD
|
$item['content'] .= <<<EOD
|
||||||
<figure>
|
<figure>
|
||||||
<img title="{$caption}" src="data:image/jpeg;base64,{$imageBase64}"/>
|
<img title="{$caption}" src="{$imageUrl}"/>
|
||||||
<figcaption>{$caption}</figcaption>
|
<figcaption>{$caption}</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
<br/>
|
<br/>
|
||||||
|
Loading…
Reference in New Issue
Block a user