mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
NyaaTorrentsBridge: add torrent to enclosures and generate better feed name (#3996)
* NyaaTorrentsBridge: add torrent to enclosures and generate better feed name * NyaaTorrentsBridge: fix accidental () in bridge name
This commit is contained in:
parent
7a7f8d5050
commit
f7c1b71939
@ -66,22 +66,20 @@ class NyaaTorrentsBridge extends BridgeAbstract
|
|||||||
$feed = $feedParser->parseFeed(getContents($this->getURI()));
|
$feed = $feedParser->parseFeed(getContents($this->getURI()));
|
||||||
|
|
||||||
foreach ($feed['items'] as $item) {
|
foreach ($feed['items'] as $item) {
|
||||||
$item['id'] = str_replace(['https://nyaa.si/download/', '.torrent'], '', $item['uri']);
|
$item['enclosures'] = [$item['uri']];
|
||||||
$item['uri'] = str_replace('/download/', '/view/', $item['uri']);
|
|
||||||
$item['uri'] = str_replace('.torrent', '', $item['uri']);
|
$item['uri'] = str_replace('.torrent', '', $item['uri']);
|
||||||
|
$item['uri'] = str_replace('/download/', '/view/', $item['uri']);
|
||||||
|
$item['id'] = str_replace('https://nyaa.si/view/', '', $item['uri']);
|
||||||
$dom = getSimpleHTMLDOMCached($item['uri']);
|
$dom = getSimpleHTMLDOMCached($item['uri']);
|
||||||
if ($dom) {
|
if ($dom) {
|
||||||
$description = $dom->find('#torrent-description', 0)->innertext ?? '';
|
$description = $dom->find('#torrent-description', 0)->innertext ?? '';
|
||||||
$itemDom = str_get_html(markdownToHtml(html_entity_decode($description)));
|
$item['content'] = markdownToHtml(html_entity_decode($description));
|
||||||
$item_image = $this->getURI() . 'static/img/avatar/default.png';
|
|
||||||
foreach ($itemDom->find('img') as $img) {
|
$magnet = $dom->find('div.panel-footer.clearfix > a', 1)->href;
|
||||||
if (strpos($img->src, 'prez') === false) {
|
// can't put raw magnet link in enclosure, this gives information on
|
||||||
$item_image = $img->src;
|
// magnet contents and works a way to sent magnet value
|
||||||
break;
|
$magnet = 'https://torrent.parts/#' . html_entity_decode($magnet);
|
||||||
}
|
array_push($item['enclosures'], $magnet);
|
||||||
}
|
|
||||||
$item['enclosures'] = [$item_image];
|
|
||||||
$item['content'] = (string) $itemDom;
|
|
||||||
}
|
}
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
if (count($this->items) >= 10) {
|
if (count($this->items) >= 10) {
|
||||||
@ -90,6 +88,15 @@ class NyaaTorrentsBridge extends BridgeAbstract
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getName()
|
||||||
|
{
|
||||||
|
$name = parent::getName();
|
||||||
|
$name .= $this->getInput('u') ? ' - ' . $this->getInput('u') : '';
|
||||||
|
$name .= $this->getInput('q') ? ' - ' . $this->getInput('q') : '';
|
||||||
|
$name .= $this->getInput('c') ? ' (' . $this->getKey('c') . ')' : '';
|
||||||
|
return $name;
|
||||||
|
}
|
||||||
|
|
||||||
public function getIcon()
|
public function getIcon()
|
||||||
{
|
{
|
||||||
return self::URI . 'static/favicon.png';
|
return self::URI . 'static/favicon.png';
|
||||||
|
Loading…
Reference in New Issue
Block a user