[ScribbleHubBridge] Get author feed title regardless of CloudFlare (#3892)

This commit is contained in:
July 2024-01-11 14:09:45 -05:00 committed by GitHub
parent d9ac019550
commit d5175aebcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,16 +12,16 @@ class ScribbleHubBridge extends FeedExpander
'uid' => [ 'uid' => [
'name' => 'uid', 'name' => 'uid',
'required' => true, 'required' => true,
// Example: Alyson Greaves's stories // Example: miriamrobern's stories
'exampleValue' => '76208', 'exampleValue' => '149271',
], ],
], ],
'Series' => [ 'Series' => [
'sid' => [ 'sid' => [
'name' => 'sid', 'name' => 'sid',
'required' => true, 'required' => true,
// Example: latest chapters from The Sisters of Dorley by Alyson Greaves // Example: latest chapters from Uskweirs
'exampleValue' => '421879', 'exampleValue' => '965299',
], ],
] ]
]; ];
@ -52,6 +52,10 @@ class ScribbleHubBridge extends FeedExpander
return []; return [];
} }
if ($this->queriedContext === 'Author') {
$this->author = $item['author'];
}
$item['comments'] = $item['uri'] . '#comments'; $item['comments'] = $item['uri'] . '#comments';
try { try {
@ -90,16 +94,7 @@ class ScribbleHubBridge extends FeedExpander
$name = parent::getName() . " $this->queriedContext"; $name = parent::getName() . " $this->queriedContext";
switch ($this->queriedContext) { switch ($this->queriedContext) {
case 'Author': case 'Author':
try { $title = $this->author;
$page = getSimpleHTMLDOMCached(self::URI . 'profile/' . $this->getInput('uid'));
} catch (HttpException $e) {
// 403 Forbidden, This means we got anti-bot response
if ($e->getCode() === 403) {
return $name;
}
throw $e;
}
$title = html_entity_decode($page->find('.p_m_username.fp_authorname', 0)->plaintext);
break; break;
case 'Series': case 'Series':
try { try {