mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
9564e9291f
There are now two og:url values on the page, the first no longer contains the necessary date URL for the bridge to work. Finding the last og:url on the page restores the bridge to working order.
64 lines
1.8 KiB
PHP
64 lines
1.8 KiB
PHP
<?php
|
|
class ComicsKingdomBridge extends BridgeAbstract {
|
|
|
|
const MAINTAINER = 'stjohnjohnson';
|
|
const NAME = 'Comics Kingdom Unofficial RSS';
|
|
const URI = 'https://comicskingdom.com/';
|
|
const CACHE_TIMEOUT = 21600; // 6h
|
|
const DESCRIPTION = 'Comics Kingdom Unofficial RSS';
|
|
const PARAMETERS = array( array(
|
|
'comicname' => array(
|
|
'name' => 'comicname',
|
|
'type' => 'text',
|
|
'exampleValue' => 'mutts',
|
|
'title' => 'The name of the comic in the URL after https://comicskingdom.com/',
|
|
'required' => true
|
|
)
|
|
));
|
|
|
|
public function collectData(){
|
|
$html = getSimpleHTMLDOM($this->getURI(), array(), array(), true, false);
|
|
|
|
// Get author from first page
|
|
$author = $html->find('div.author p', 0);;
|
|
|
|
// Get current date/link
|
|
$link = $html->find('meta[property=og:url]', -1)->content;
|
|
for($i = 0; $i < 3; $i++) {
|
|
$item = array();
|
|
|
|
$page = getSimpleHTMLDOM($link);
|
|
|
|
$imagelink = $page->find('meta[property=og:image]', 0)->content;
|
|
|
|
$date = explode('/', $link);
|
|
|
|
$item['id'] = $imagelink;
|
|
$item['uri'] = $link;
|
|
$item['author'] = $author;
|
|
$item['title'] = 'Comics Kingdom ' . $this->getInput('comicname');
|
|
$item['timestamp'] = DateTime::createFromFormat('Y-m-d', $date[count($date) - 1])->getTimestamp();
|
|
$item['content'] = '<img src="' . $imagelink . '" />';
|
|
|
|
$this->items[] = $item;
|
|
$link = $page->find('div.comic-viewer-inline a', 0)->href;
|
|
if (empty($link)) break; // allow bridge to continue if there's less than 3 comics
|
|
}
|
|
}
|
|
|
|
public function getURI(){
|
|
if(!is_null($this->getInput('comicname'))) {
|
|
return self::URI . urlencode($this->getInput('comicname'));
|
|
}
|
|
|
|
return parent::getURI();
|
|
}
|
|
|
|
public function getName(){
|
|
if(!is_null($this->getInput('comicname'))) {
|
|
return $this->getInput('comicname') . ' - Comics Kingdom';
|
|
}
|
|
|
|
return parent::getName();
|
|
}
|
|
}
|