From a19b63e8408210fe3d0cb59f830d6ac5173ccafa Mon Sep 17 00:00:00 2001 From: July Date: Tue, 1 Apr 2025 22:09:28 -0400 Subject: [PATCH] [AO3Bridge] Add option to make one entry per fic (#4508) --- bridges/AO3Bridge.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bridges/AO3Bridge.php b/bridges/AO3Bridge.php index 7e18b657..2697dbc7 100644 --- a/bridges/AO3Bridge.php +++ b/bridges/AO3Bridge.php @@ -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)) {