[AO3Bridge] Add option to make one entry per fic (#4508)

This commit is contained in:
July 2025-04-01 22:09:28 -04:00 committed by GitHub
parent 5365b57638
commit a19b63e840
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,13 @@ class AO3Bridge extends BridgeAbstract
'Entire work' => 'all',
],
],
'unique' => [
'name' => 'Make separate entries for new fic chapters',
'type' => 'checkbox',
'required' => false,
'title' => 'Make separate entries for new fic chapters',
'defaultValue' => 'checked',
],
'limit' => self::LIMIT,
],
'Bookmarks' => [
@ -118,7 +125,12 @@ class AO3Bridge extends BridgeAbstract
$chapters = $element->find('dl dd.chapters', 0);
// bookmarked series and external works do not have a chapters count
$chapters = (isset($chapters) ? $chapters->plaintext : 0);
$item['uid'] = $item['uri'] . "/$strdate/$chapters";
if ($this->getInput('unique')) {
$item['uid'] = $item['uri'] . "/$strdate/$chapters";
} else {
$item['uid'] = $item['uri'];
}
// Fetch workskin of desired chapter(s) in list
if ($this->getInput('range') && ($limit == 0 || $count++ < $limit)) {