mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
[ScribbleHubBridge] Get author feed title regardless of CloudFlare (#3892)
This commit is contained in:
parent
d9ac019550
commit
d5175aebcc
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user