[GoComicsBridge] New layout fix and added features (#4510)

* Updated to use the new layout launched April 1st
* Adds new title date/full name option
* Adds limit option for how many days of comics to get
This commit is contained in:
Jonathan Kay 2025-04-03 01:50:16 -04:00 committed by GitHub
parent a19b63e840
commit 85962e18d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,8 @@
class GoComicsBridge extends BridgeAbstract class GoComicsBridge extends BridgeAbstract
{ {
const MAINTAINER = 'sky'; const MAINTAINER = 'TReKiE';
//const MAINTAINER = 'sky';
const NAME = 'GoComics Unofficial RSS'; const NAME = 'GoComics Unofficial RSS';
const URI = 'https://www.gocomics.com/'; const URI = 'https://www.gocomics.com/';
const CACHE_TIMEOUT = 21600; // 6h const CACHE_TIMEOUT = 21600; // 6h
@ -13,32 +14,53 @@ class GoComicsBridge extends BridgeAbstract
'type' => 'text', 'type' => 'text',
'exampleValue' => 'heartofthecity', 'exampleValue' => 'heartofthecity',
'required' => true 'required' => true
],
'date-in-title' => [
'name' => 'Add date and full name to each day\'s title',
'type' => 'checkbox',
'title' => 'Adds the date and the full name into the title of each day\'s comic',
],
'limit' => [
'name' => 'Limit',
'type' => 'number',
'title' => 'The number of recent comics to get',
'defaultValue' => 5
] ]
]]; ]];
public function collectData() public function collectData()
{ {
$html = getSimpleHTMLDOM($this->getURI()); $link = $this->getURI();
//Get info from first page for ($i = 0; $i < $this->getInput('limit'); $i++) {
$author = preg_replace('/By /', '', $html->find('.media-subheading', 0)->plaintext); $html = getSimpleHTMLDOM($link);
// get json data from the first page
$json = $html->find('div.ComicViewer_comicViewer__comic__oftX6 script[type="application/ld+json"]', 0)->innertext;
$data = json_decode($json, false);
$link = self::URI . $html->find('.gc-deck--cta-0', 0)->find('a', 0)->href;
for ($i = 0; $i < 5; $i++) {
$item = []; $item = [];
$page = getSimpleHTMLDOM($link); $author = $data->author->name;
$imagelink = $page->find('.comic.container', 0)->getAttribute('data-image'); $imagelink = $data->contentUrl;
$date = explode('/', $link); $date = $data->datePublished;
$title = $data->name . ' - GoComics';
// get a permlink for this day's comic if there isn't one specified
if ($link === $this->getURI()) {
$link = $this->getURI() . '/' . DateTime::createFromFormat('F j, Y', $date)->format('Y/m/d');
}
$item['id'] = $imagelink; $item['id'] = $imagelink;
$item['uri'] = $link; $item['uri'] = $link;
$item['author'] = $author; $item['author'] = $author;
$item['title'] = 'GoComics ' . $this->getInput('comicname'); $item['title'] = 'GoComics ' . $this->getInput('comicname');
$item['timestamp'] = DateTime::createFromFormat('Ymd', $date[5] . $date[6] . $date[7])->getTimestamp(); if ($this->getInput('date-in-title') === true) {
$item['title'] = $title;
}
$item['timestamp'] = DateTime::createFromFormat('F j, Y', $date)->setTime(0, 0, 0)->getTimestamp();
$item['content'] = '<img src="' . $imagelink . '" />'; $item['content'] = '<img src="' . $imagelink . '" />';
$link = self::URI . $page->find('.js-previous-comic', 0)->href; $link = rtrim(self::URI, '/') . $html->find('.Controls_controls__button_previous__P4LhX', 0)->href;
$this->items[] = $item; $this->items[] = $item;
} }
} }