mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 18:47:05 -04:00 
			
		
		
		
	* v0.4.5 Release (#539) * Bump versions by dotnet-bump-version. * Versioning Fix & Improvement (#553) * Fix UpdaterService versioning (#544) * Add "Available" to newer, non-installed updates * Add if...else logic to Available/Installed badge * Change substring to account for bigger versions (#544) * Cache BuildInfo.version into local variable (#544) * Cache BuildInfo.Version.ToString() into local variable (#544) Co-authored-by: Yovarni Yearwood <yovarni@hawser.org> * Bump versions by dotnet-bump-version. * Incognito Reader (#560) * Hooked in incognito mode into the manga reader * Bump versions by dotnet-bump-version. * Reading Lists & More (#564) * Added continous reading to the book reader. Clicking on the max pages to right of progress bar will now go to last page. * Forgot a file for continous book reading * Fixed up some code regarding transitioning between chapters. Arrows now show to represent a chapter transition. * Laid the foundation for reading lists * All foundation is laid out. Actions are wired in the UI. Backend repository is setup. Redid the migration to have ReadingList track modification so we can order them for the user. * Updated add modal to have basic skeleton * Hooked up ability to fetch reading lists from backend * Made a huge performance improvement to GetChapterIdsForSeriesAsync() by reducing a JOIN and an iteration loop. Improvement went from 2 seconds -> 200 ms. * Implemented the ability to add all chapters in a series to a reading list. * Fixed issue with adding new items to reading list not being in a logical order. Lots of work on getting all the information around the reading list view. Added some foreign keys back to chapter so delete should clean up after itself. * Added ability to open directly the series * Reading List Items now have progress attached * Hooked up list deletion and added a case where if doesn't exist on load, then redirect to library. * Lots of changes. Introduced a dashboard component for the main app. This will sit on libraries route for now and will have 3 tabs to show different sections. Moved libraries reel down to bottom as people are more likely to access recently added or in progress than explore their whole library. Note: Bundles are messed up, they need to be reoptimized and routes need to be updated. * Added pagination to the reading lists api and implemented a page to show all lists * Cleaned up old code from all-collections component so now it only handles all collections and doesn't have the old code for an individual collection * Hooked in actions and navigation on reading lists * When the user re-arranges items, they are now persisted * Implemented remove read, but performance is pretty poor. Needs to be optimized. * Lots of API fixes for adding items to a series, returning items, etc. Committing before fixing incorrect fetches of items for a readingListId. * Rewrote the joins for GetReadingListItemDtosByIdAsync() to not return extra records. * Remove bug marker now that it is fixed * Refactor update-by-series to move more of the code to a re-usable function for update-by-volume/chapter APIs * Implemented the ability to add via series, volume or chapter. * Added OPDS support for reading lists. This included adding VolumeId to the ReadingListDto. * Fixed a bug with deleting items * After we create a library inform user that a scan has started * Added some extra help information for users on directory picker, since linux users were getting confused. * Setup for the reading functionality * Fixed an issue where opening the edit series modal and pressing save without doing anything would empty collection tags. Would happen often when editing cover images. * Fixed get-next-chapter for reading list. Refactored all methods to use the new GetUserIdByUsernameAsync(), which is much faster and uses less memory. * Hooked in prev chapter for continuous reading with reading list * Hooked up the read code for manga reader and book reader to have list id passed * Manga reader now functions completely with reading lists * Implemented reading list and incognito mode into book reader * Refactored some common reading code into reader service * Added support for "Series - - Vol. 03 Ch. 023.5 - Volume 3 Extras.cbz" format that can occur with FMD2. * Implemented continuous reading with a reading list between different readers. This incurs a 3x performance hit on the book info api. * style changes. Don't emit an event if position of draggable item hasn't changed * Styling and added the edit reading list flow. * Cleaned up some extra spaces when actionables isn't shown. Lots of cleanup for promoted lists. * Refactored some filter code to a common service * Added an RBS check in getting Items for a given user. * Code smells * More smells * Bump versions by dotnet-bump-version. * Cleanup bookmarks and Reading List Items (#567) * Removed directives, ensured we delete bookmarks and reading list items when chapters are deleted. * Added parsing support for "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo Chapter 11-10" * Bump versions by dotnet-bump-version. * Performance Improvements (#568) * Refactored the performance of GetChapter/BookInfo API to have a 10x speed improvement and to use common code, rather than duplicating code. Removed an api param that is no longer needed. * Book reader now has dedicated buttons to jump to next/prev chapter as well as through page buttons * Bump versions by dotnet-bump-version. * Fixed an issue from perf tuning where I forgot to send Pages to frontend, breaking reader. (#569) * Bump versions by dotnet-bump-version. * Fixed scaling issue (#573) * Bump versions by dotnet-bump-version. * Continuous Reading for Webtoons & I Just Couldn't Stop Coding (#574) * Fixed an issue from perf tuning where I forgot to send Pages to frontend, breaking reader. * Built out continuous reading for webtoon reader. Still has some issues with triggering. * Refactored GetUserByUsernameAsync to have a new flavor and allow the caller to pass in bitwise flags for what to include. This has a get by username or id variant. Code is much cleaner and snappier as we avoid many extra joins when not needed. * Cleanup old code from UserRepository.cs * Refactored OPDS to use faster API lookups for User * Refactored more code to be cleaner and faster. * Refactored GetNext/Prev ChapterIds to ReaderService. * Refactored Repository methods to their correct entity repos. * Refactored DTOs and overall cleanup of the code. * Added ability to press 'b' to bookmark a page * On hitting last page, save progress forcing last page to be read. Adjusted logic for the top and bottom spacers for triggering next/prev chapter load * When at top or moving between chapters, scrolling down then up will now trigger page load. Show a toastr to inform the user of a change in chapter (it can be really fast to switch) * Cleaned up scroll code * Fixed an issue where loading a chapter with last page bookmarked, we'd load lastpage - 1 * Fixed last page of webtoon reader not being resumed on loading said chapter due to a difference in how max page is handled between infinite scroller and manga reader. * Removed some comments * Book reader shouldn't look at left/right tap to paginate elems for position bookmarking. Missed a few areas for saving while in incognito mode * Added a benchmark to test out a sort code * Updated the read status on reading list to use same style as other places * Refactored GetNextChapterId to bring the average response time from 1.2 seconds to 400ms. * Added a filter to add to list when there are more than 5 reading lists * Added download reading list (will be removed, just saving for later). Fixes around styling on reading lists * Removed ability to download reading lists * Tweaked the logic for infinite scroller to be much smoother loading next/prev chapter. Added a bug marker for a concurrency bug. * Updated the top spacer so that when you hit the top, you stay at the page height and can now just scroll up. * Got the logic for scrolling up. Now just need the CSS then cont infinite scroller will be working * More polishing on infinite scroller * Removed IsSpecial on volumeDto, which is not used anywhere. * Cont Reading inf scroller edition is done. * Code smells and fixed package.json explore script * Bump versions by dotnet-bump-version. * Bump versions by dotnet-bump-version. * Bugfix/scanner issue (#576) * Refactored the scanner to hopefully fix a hard to reproduce KeyNotFoundException from GetInfosByName. * Added parsing support for "A Compendium of Ghosts - 031 - The Third Story_ Part 12 (Digital) (Cobalt001)" * Bump versions by dotnet-bump-version. * Bugs, Enhancements, and Performance (#580) * Added parser case for "The Duke of Death and His Black Maid - Ch. 177 - The Ball (3).cbz" * Removed a file that is created and modified every test run. * Fixed a bad parser case for "Batman Beyond 02 (of 6) (1999)" which was consuming too many characters * Removed a lot of "Volume" parsing for Comics that don't make sense. This is prep work for the upcoming Comic Rework release. * Reworked a lot of parsing cases for comics based on naming conventions observed from releases found online. * Added a way for external scripts to use a user api key to authenticate * Fixed an issue if the manga only had one page, the bottom menu would be missing page and chapter controls. * Fixed a bug where on small phones, nav bar could overflow due to scroll to top * Tweaked a lot of regex for manga parsing to handle some cases where poorly named files, like "Vol. 03 Ch. 21" would end up parsing as Series "Vol. 03". * Even more handling of parser cases. Manga parser should be as it was but more robust to handle bad naming. * Fixed: Don't force metadata refresh on Scan Series, only on refresh metadata * Implemented the ability to automatically refresh after a series scan based on when server finishes. Remove a duplicate API call from series detail. * Removed another API call for series metadata that isn't needed. * Refactored Message creation to a factory, hardcoded strings are centralized, and RefreshSeriesMetadata sends an event and is refactored to be async. * Fixed a bug when really poorly named files are within a folder that contains the series name, fallback couldn't occur due to it being taken as root folder. Now we detect said condition and will go one level higher, resulting in potentially more I/O, but the series will not be deleted. * Added the Read in Incognito context item for Chapter cards * Skip an additional check for series summary for series that aren't EPUB or Archive formats. * Fixed an issue where cover image generation could occur due to a bad check on LastWriteTime on the underlying file. * Added some extra comic parser tests * Added a ScanLibrary event (not hooked up in UI) * Performance improvement on metadata service. Now when we scan for cover image changes, we emit when a change occurs and only then do we update parent entities (array copy). * Removed an hr from series detail and ensure we update the cover image for series when scan series finishes. * Updated the infinite scroller to use a Flags pattern for the debug mode. Updated a few logical conditions for mobile. * Removed the concurrency check on row progress as if too many calls hit the DB, it will throw, but it doesn't matter. Fixed a bad logic code which could cause scrolling after hitting the bottom of the chapter. * Ensure prefetching uses totalPages + 1 since we pass in totalPages as - 1 from manga reader * Fixed issue where last page of webtoon wouldn't be prefetched due to a < instead of <= on prefetching code * Implemented ability to send images from archives to the UI without incurring any extra memory pressure. * Dropdown menus now have a darker background * Webtoon reader now works on mobile. * Fixed how keyboard presses for up/down/left/right work with MANGA_UD reading mode. See issue #579 * Fixed cont reader for webtoons on mobile * Fixed a small issue where top spacer would too quickly switch to prev chapter * Updated user preferences to use same slider style. Removed some css that is not used. * Added comic parser case for "Saga 001 (2012) (Digital) (Empire-Zone)" * Added accessibility toggle to reading list order and aligned sliders to all use the same style. * Removed a todo for checking on new image serving code. It works great. * Fixed a missing await * Auth guard will now check if an existing toast is present giving same message before poping the toast. * Fixed alignment on phones for reading lists * Moved sorters so they aren't resused between multiple threads. Slightly higher memory footprint. * Fixed a broken unit test * Code smells * More unit test fixing * Bump versions by dotnet-bump-version. * WebP Support (#581) * Added trackby so when series scan event comes through, cards can update too * Added chapter boundary toasts on book reader * Handle closing the reader when in a reading list * Somehow the trackby save didn't happen * Fixed an issue where after opening a chapter info modal, then trying to open another in specials tab it would fail due to a pass by reference issue with our factory. * When a series update occurs, if we loose specials tab, but we were on it, reselect volumes/chapters tab * Fixed an issue where older releases would show as available, even though they were already installed. * Converted tabs within modals to use vertical orientation (except on mobile) * Implemented webp support. Only Safari does not support this format natively. MacOS users can use an alternative browser. * Refactored ScannerService and MetadataService to be fully async * Bump versions by dotnet-bump-version. * Bugfix/manga reader (#582) * Fixed an issue where you could change paging direction then switch to Up/Down mode and paging direction would still be present * Removed some code for a feature I'm not implementing anymore * Bump versions by dotnet-bump-version. * High Res images breaking due to Canvas limits (#587) * Fixed an issue where on Safari with high resolution images, the canvas wouldn't be able to render them. Now we detect high res that might break canvas on different browsers and scale them. * Removed some code no longer needed * Bump versions by dotnet-bump-version. * Foundational Cover Image Rework (#584) * Updating wording on card item when total pages is 0, to be just "Cannot Read" since it could be a non-archive file * Refactored cover images to be stored on disk. This first commit has the extraction to disk and the metadata service to handle updating when applicable. * Refactored code to have the actual save to cover image directory done by ImageService. * Implemented the ability to override cover images. * Some cleanup on Image service * Implemented the ability to cleanup old covers nightly * Added a migration to migrate existing covers to new cover image format (files). * Refactored all CoverImages to just be the filename, leaving the Join with Cover directory to higher level code. * Ensure when getting user progress, we pick the first. * Added cleanup cover images for deleted tags. Don't pull any cover images that are blank. * After series update, clear out cover image. No change on UI, but just keeps things clear before metadata refresh hits * Refactored image formats for covers to ImageService. * Fixed an issue where after refactoring how images were stored, the cleanup service was deleting them after each scan. * Changed how ShouldUpdateCoverImage works to check if file exists or not even if cover image is locked. * Fixed unit tests * Added caching back to cover images. * Caching on series as well * Code Cleanup items * Ensure when checking if a file exists in MetadataService, that we join for cover image directory. After we scan library, do one last filter to delete any series that have 0 pages total. * Catch exceptions so we don't run cover migration if this is first time run. * After a scan, only clear out the cache directory and not do a deep clean. * Implemented the ability to backup custom locked covers only. * Fixed unit tests * Trying to figure out why GA crashes when running MetadataServiceTests.cs * Some debugging on GA tests not running * Commented out tests that were causing issues in GA. * Fixed an issue where series cover images wouldn't migrate * Fixed the updating of links to actually do all series and not just locked * Bump versions by dotnet-bump-version. * Feature/image rework cleanup (#589) * Added volume migrations. Added parser case for "Chapter 63 - The Promise Made for 520 Cenz.cbr" * Added some info statements for when full library scans occur. For image apis, return the name of the file to aid in caching. * When managing users, show the current logged in user at the top of the list. Added a message when no libraries have been setup but you are trying to add a user to a library. * Bump versions by dotnet-bump-version. * Additional Memory Pressure Enhancements (#590) * Added volume migrations. Added parser case for "Chapter 63 - The Promise Made for 520 Cenz.cbr" * Added some info statements for when full library scans occur. For image apis, return the name of the file to aid in caching. * When managing users, show the current logged in user at the top of the list. Added a message when no libraries have been setup but you are trying to add a user to a library. * Removed an extra stream operation from SharpCompress cover image work. Removed an extra ToArray() from Book Reader for extracting PDF pages. * Removed the left over comment * Added parsing case for "Batman Beyond 04 (of 6) (1999)" * Removed dead code * Bump versions by dotnet-bump-version. * Added ios detection (#591) https://stackoverflow.com/questions/9038625/detect-if-device-is-ios/9039885#9039885 *Note* navigator.platform is deprecated but still seems to work for now. * Bump versions by dotnet-bump-version. * Added entry for persistent covers folder * Bump versions by dotnet-bump-version. * Bulk Operations (#596) * Implemented the ability to perform multi-selections on cards. Basic selection code is done, CSS needed and exposing actions. * Implemented a bulk selection bar. Added logic to the card on when to force show checkboxes. * Fixed some bad parsing groups and cases for Comic Chapters. * Hooked up some bulk actions on series detail page. Not hooked up to backend yet. * Fixes #593. URI Enocde library names as sometimes they can have & in them. * Implemented the ability to mark volume/chapters as read/unread. * Hooked up mark as unread with specials as well. * Add to reading list hooked up for Series Detail * Implemented ability to add multiple series to a reading list. * Implemented bulk selection for series cards * Added comments to the new code in ReaderService.cs * Implemented proper styling on bulk operation bar and integrated for collections. * Fixed an issue with shift clicking * Cleaned up css of bulk operations bar * Code cleanup * Bump versions by dotnet-bump-version. * Feature/release cleanup (#597) * Deselect all after bulk operations complete. * Implemented a way to trigger selection code on mobile. * When selection mode is active, make the clickable area the whole image. * Series detail shouldn't use gutters for card layout as it can cause skewing on mobile * Long press on card items to trigger the selection on mobile * Code cleanup * One more * Misread the code issue * Bump versions by dotnet-bump-version. * v0.4.6 Release (#598) * Bump versions by dotnet-bump-version. * Bump versions by dotnet-bump-version. Co-authored-by: Yovarni Yearwood <yyearwood@endlessgalaxy.dev> Co-authored-by: Yovarni Yearwood <yovarni@hawser.org> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com> Co-authored-by: Chris Plaatjes <kizaing@gmail.com>
		
			
				
	
	
		
			1098 lines
		
	
	
		
			45 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			1098 lines
		
	
	
		
			45 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.IO;
 | |
| using System.Linq;
 | |
| using System.Text.RegularExpressions;
 | |
| using API.Entities.Enums;
 | |
| using API.Services;
 | |
| 
 | |
| namespace API.Parser
 | |
| {
 | |
|     public static class Parser
 | |
|     {
 | |
|         public const string DefaultChapter = "0";
 | |
|         public const string DefaultVolume = "0";
 | |
|         private static readonly TimeSpan RegexTimeout = TimeSpan.FromMilliseconds(500);
 | |
| 
 | |
|         public const string ImageFileExtensions = @"^(\.png|\.jpeg|\.jpg|\.webp)";
 | |
|         public const string ArchiveFileExtensions = @"\.cbz|\.zip|\.rar|\.cbr|\.tar.gz|\.7zip|\.7z|\.cb7|\.cbt";
 | |
|         public const string BookFileExtensions = @"\.epub|\.pdf";
 | |
|         public const string MacOsMetadataFileStartsWith = @"._";
 | |
| 
 | |
|         public const string SupportedExtensions =
 | |
|             ArchiveFileExtensions + "|" + ImageFileExtensions + "|" + BookFileExtensions;
 | |
| 
 | |
|         public static readonly Regex FontSrcUrlRegex = new Regex(@"(src:url\(.{1})" + "([^\"']*)" + @"(.{1}\))",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
|         public static readonly Regex CssImportUrlRegex = new Regex("(@import\\s[\"|'])(?<Filename>[\\w\\d/\\._-]+)([\"|'];?)",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
| 
 | |
|         private static readonly string XmlRegexExtensions = @"\.xml";
 | |
|         private static readonly Regex ImageRegex = new Regex(ImageFileExtensions,
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
|         private static readonly Regex ArchiveFileRegex = new Regex(ArchiveFileExtensions,
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
|         private static readonly Regex XmlRegex = new Regex(XmlRegexExtensions,
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
|         private static readonly Regex BookFileRegex = new Regex(BookFileExtensions,
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
|         private static readonly Regex CoverImageRegex = new Regex(@"(?<![[a-z]\d])(?:!?)(cover|folder)(?![\w\d])",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout);
 | |
| 
 | |
| 
 | |
|         private static readonly Regex[] MangaVolumeRegex = new[]
 | |
|         {
 | |
|             // Dance in the Vampire Bund v16-17
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_)v(?<Volume>\d+-?\d+)( |_)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // NEEDLESS_Vol.4_-Simeon_6_v2[SugoiSugoi].rar
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_)(?!\[)(vol\.?)(?<Volume>\d+(-\d+)?)(?!\])",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Historys Strongest Disciple Kenichi_v11_c90-98.zip or Dance in the Vampire Bund v16-17
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_)(?!\[)v(?<Volume>\d+(-\d+)?)(?!\])",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Kodomo no Jikan vol. 10
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_)(vol\.? ?)(?<Volume>\d+(-\d+)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Killing Bites Vol. 0001 Ch. 0001 - Galactica Scanlations (gb)
 | |
|             new Regex(
 | |
|                 @"(vol\.? ?)(?<Volume>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Tonikaku Cawaii [Volume 11].cbz
 | |
|             new Regex(
 | |
|                 @"(volume )(?<Volume>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Tower Of God S01 014 (CBT) (digital).cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_|)(S(?<Volume>\d+))",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // vol_001-1.cbz for MangaPy default naming convention
 | |
|             new Regex(
 | |
|                 @"(vol_)(?<Volume>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] MangaSeriesRegex = new[]
 | |
|         {
 | |
|             // Grand Blue Dreaming - SP02
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_|-|\s)(?:sp)\d",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [SugoiSugoi]_NEEDLESS_Vol.2_-_Disk_The_Informant_5_[ENG].rar, Yuusha Ga Shinda! - Vol.tbd Chapter 27.001 V2 Infection ①.cbz
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)( |_)Vol\.?(\d+|tbd)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Mad Chimera World - Volume 005 - Chapter 026.cbz (couldn't figure out how to get Volume negative lookaround working on below regex),
 | |
|             // The Duke of Death and His Black Maid - Vol. 04 Ch. 054.5 - V4 Omake
 | |
|             new Regex(
 | |
|                 @"(?<Series>.+?)(\s|_|-)+(?:Vol(ume|\.)?(\s|_|-)+\d+)(\s|_|-)+(?:(Ch|Chapter|Ch)\.?)(\s|_|-)+(?<Chapter>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|                 RegexTimeout),
 | |
|             // Ichiban_Ushiro_no_Daimaou_v04_ch34_[VISCANS].zip, VanDread-v01-c01.zip
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_)v(?<Volume>\d+-?\d*)(\s|_|-)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|                 RegexTimeout),
 | |
|             // Gokukoku no Brynhildr - c001-008 (v01) [TrinityBAKumA], Black Bullet - v4 c17 [batoto]
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)( - )(?:v|vo|c)\d",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Kedouin Makoto - Corpse Party Musume, Chapter 19 [Dametrans].zip
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(?:, Chapter )(?<Chapter>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Please Go Home, Akutsu-San! - Chapter 038.5 - Volume Announcement.cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\s|_|-)(?!Vol)(\s|_|-)(?:Chapter)(\s|_|-)(?<Chapter>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [dmntsf.net] One Piece - Digital Colored Comics Vol. 20 Ch. 177 - 30 Million vs 81 Million.cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*) (\b|_|-)(vol)\.?(\s|-|_)?\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [xPearse] Kyochuu Rettou Volume 1 [English] [Manga] [Volume Scans]
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*) (\b|_|-)(vol)(ume)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|                 RegexTimeout),
 | |
|             //Knights of Sidonia c000 (S2 LE BD Omake - BLAME!) [Habanero Scans]
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\bc\d+\b)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             //Tonikaku Cawaii [Volume 11], Darling in the FranXX - Volume 01.cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(?: _|-|\[|\()\s?vol(ume)?",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Momo The Blood Taker - Chapter 027 Violent Emotion.cbz, Grand Blue Dreaming - SP02 Extra (2019) (Digital) (danke-Empire).cbz
 | |
|             new Regex(
 | |
|                 @"^(?<Series>(?!Vol).+?)(?:(ch(apter|\.)(\b|_|-|\s))|sp)\d",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Historys Strongest Disciple Kenichi_v11_c90-98.zip, Killing Bites Vol. 0001 Ch. 0001 - Galactica Scanlations (gb)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*) (\b|_|-)(v|ch\.?|c)\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             //Ichinensei_ni_Nacchattara_v01_ch01_[Taruby]_v1.1.zip must be before [Suihei Kiki]_Kasumi_Otoko_no_Ko_[Taruby]_v1.1.zip
 | |
|             // due to duplicate version identifiers in file.
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(v|s)\d+(-\d+)?(_|\s)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             //[Suihei Kiki]_Kasumi_Otoko_no_Ko_[Taruby]_v1.1.zip
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(v|s)\d+(-\d+)?",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Hinowa ga CRUSH! 018 (2019) (Digital) (LuCaZ).cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*) (?<Chapter>\d+) (?:\(\d{4}\)) ",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Goblin Slayer - Brand New Day 006.5 (2019) (Digital) (danke-Empire)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*) (?<Chapter>\d+(?:.\d+|-\d+)?) \(\d{4}\)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Noblesse - Episode 429 (74 Pages).7z
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\s|_)(?:Episode|Ep\.?)(\s|_)(?<Chapter>\d+(?:.\d+|-\d+)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Akame ga KILL! ZERO (2016-2019) (Digital) (LuCaZ)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)\(\d",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Tonikaku Kawaii (Ch 59-67) (Ongoing)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\s|_)\((c\s|ch\s|chapter\s)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Black Bullet (This is very loose, keep towards bottom)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(_)(v|vo|c|volume)( |_)\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [Hidoi]_Amaenaideyo_MS_vol01_chp02.rar
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)( |_)(vol\d+)?( |_)(?:Chp\.? ?\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Mahoutsukai to Deshi no Futekisetsu na Kankei Chp. 1
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)( |_)(?:Chp.? ?\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Corpse Party -The Anthology- Sachikos game of love Hysteric Birthday 2U Chapter 01
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.*)( |_)Chapter( |_)(\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
| 
 | |
|             // Fullmetal Alchemist chapters 101-108.cbz
 | |
|             new Regex(
 | |
|                 @"^(?!vol)(?<Series>.*)( |_)(chapters( |_)?)\d+-?\d*",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Umineko no Naku Koro ni - Episode 1 - Legend of the Golden Witch #1
 | |
|             new Regex(
 | |
|                 @"^(?!Vol\.?)(?<Series>.*)( |_|-)(?<!-)(episode|chapter|(ch\.?) ?)\d+-?\d*",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
| 
 | |
|             // Baketeriya ch01-05.zip
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.*)ch\d+-?\d?",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Magi - Ch.252-005.cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)( ?- ?)Ch\.\d+-?\d*",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [BAA]_Darker_than_Black_Omake-1.zip
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.*)(-)\d+-?\d*", // This catches a lot of stuff ^(?!Vol)(?<Series>.*)( |_)(\d+)
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Kodoja #001 (March 2016)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\s|_|-)#",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Baketeriya ch01-05.zip, Akiiro Bousou Biyori - 01.jpg, Beelzebub_172_RHS.zip, Cynthia the Mission 29.rar, A Compendium of Ghosts - 031 - The Third Story_ Part 12 (Digital) (Cobalt001)
 | |
|             new Regex(
 | |
|                 @"^(?!Vol\.?)(?<Series>.+?)( |_|-)(?<!-)(ch)?\d+-?\d*",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [BAA]_Darker_than_Black_c1 (This is very greedy, make sure it's close to last)
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.*)( |_|-)(ch?)\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] ComicSeriesRegex = new[]
 | |
|         {
 | |
|             // Invincible Vol 01 Family matters (2005) (Digital)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\b|_)(vol\.?)( |_)(?<Volume>\d+(-\d+)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // 04 - Asterix the Gladiator (1964) (Digital-Empire) (WebP by Doc MaKS)
 | |
|             new Regex(
 | |
|             @"^(?<Volume>\d+) (- |_)?(?<Series>.*(\d{4})?)( |_)(\(|\d+)",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // 01 Spider-Man & Wolverine 01.cbr
 | |
|             new Regex(
 | |
|             @"^(?<Volume>\d+) (?:- )?(?<Series>.*) (\d+)?",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Batman & Wildcat (1 of 3)
 | |
|             new Regex(
 | |
|             @"(?<Series>.*(\d{4})?)( |_)(?:\((?<Volume>\d+) of \d+)",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Teen Titans v1 001 (1966-02) (digital) (OkC.O.M.P.U.T.O.-Novus)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)v\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Amazing Man Comics chapter 25
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)c(hapter) \d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Amazing Man Comics issue #25
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)i(ssue) #\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Batman Wayne Family Adventures - Ep. 001 - Moving In
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.+?)(\s|_|-)?(?:Ep\.?)(\s|_|-)+\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|                 RegexTimeout),
 | |
|             // Batman & Catwoman - Trail of the Gun 01, Batman & Grendel (1996) 01 - Devil's Bones, Teen Titans v1 001 (1966-02) (digital) (OkC.O.M.P.U.T.O.-Novus)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.+?)(?: \d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Batman & Robin the Teen Wonder #0
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)#\d+",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Scott Pilgrim 02 - Scott Pilgrim vs. The World (2005)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)(?<Volume>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // The First Asterix Frieze (WebP by Doc MaKS)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)(?!\(\d{4}|\d{4}-\d{2}\))\(",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // MUST BE LAST: Batman & Daredevil - King of New York
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] ComicVolumeRegex = new[]
 | |
|         {
 | |
|             // // 04 - Asterix the Gladiator (1964) (Digital-Empire) (WebP by Doc MaKS)
 | |
|             // new Regex(
 | |
|             //     @"^(?<Volume>\d+) (- |_)?(?<Series>.*(\d{4})?)( |_)(\(|\d+)",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             // RegexTimeout),
 | |
|             // // 01 Spider-Man & Wolverine 01.cbr
 | |
|             // new Regex(
 | |
|             //     @"^(?<Volume>\d+) (?:- )?(?<Series>.*) (\d+)?",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             // RegexTimeout),
 | |
|             // // Batman & Wildcat (1 of 3)
 | |
|             // new Regex(
 | |
|             //     @"(?<Series>.*(\d{4})?)( |_)(?:\((?<Chapter>\d+) of \d+)",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             // RegexTimeout),
 | |
|             // Teen Titans v1 001 (1966-02) (digital) (OkC.O.M.P.U.T.O.-Novus)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)v(?<Volume>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Scott Pilgrim 02 - Scott Pilgrim vs. The World (2005)
 | |
|             // BUG: Negative lookbehind has to be fixed width
 | |
|             // NOTE: The case this is built for does not make much sense.
 | |
|             // new Regex(
 | |
|             //     @"^(?<Series>.+?)(?<!c(hapter)|i(ssue))(?<!of)(?: |_)(?<!of )(?<Volume>\d+)",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             // RegexTimeout),
 | |
| 
 | |
|             // Batman & Catwoman - Trail of the Gun 01, Batman & Grendel (1996) 01 - Devil's Bones, Teen Titans v1 001 (1966-02) (digital) (OkC.O.M.P.U.T.O.-Novus)
 | |
|             // new Regex(
 | |
|             //     @"^(?<Series>.+?)(?<!c(hapter)|i(ssue))(?<!of)(?: (?<Volume>\d+))",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             // RegexTimeout),
 | |
|             // // Batman & Robin the Teen Wonder #0
 | |
|             // new Regex(
 | |
|             //     @"^(?<Series>.*)(?: |_)#(?<Volume>\d+)",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             // RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] ComicChapterRegex = new[]
 | |
|         {
 | |
|             // Batman & Wildcat (1 of 3)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*(\d{4})?)( |_)(?:\((?<Chapter>\d+) of \d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Batman Beyond 04 (of 6) (1999)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.+?)(?<Chapter>\d+)(\s|_|-)?\(of",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Teen Titans v1 001 (1966-02) (digital) (OkC.O.M.P.U.T.O.-Novus)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.+?)(?: |_)v(?<Volume>\d+)(?: |_)(c? ?)(?<Chapter>(\d+(\.\d)?)-?(\d+(\.\d)?)?)(c? ?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Invincible 070.5 - Invincible Returns 1 (2010) (digital) (Minutemen-InnerDemons).cbr
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.+?)(?: |_)(c? ?)(?<Chapter>(\d+(\.\d)?)-?(\d+(\.\d)?)?)(c? ?)-",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|                 RegexTimeout),
 | |
|             // Batman & Catwoman - Trail of the Gun 01, Batman & Grendel (1996) 01 - Devil's Bones, Teen Titans v1 001 (1966-02) (digital) (OkC.O.M.P.U.T.O.-Novus)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.+?)(?: (?<Chapter>\d+))",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Batman & Robin the Teen Wonder #0
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.+?)(?:\s|_)#(?<Chapter>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Saga 001 (2012) (Digital) (Empire-Zone)
 | |
|             new Regex(
 | |
|                 @"(?<Series>.+?)(?: |_)(c? ?)(?<Chapter>(\d+(\.\d)?)-?(\d+(\.\d)?)?)\s\(\d{4}",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Amazing Man Comics chapter 25
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.+?)( |_)c(hapter)( |_)(?<Chapter>\d*)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Amazing Man Comics issue #25
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.+?)( |_)i(ssue)( |_) #(?<Chapter>\d*)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] ReleaseGroupRegex = new[]
 | |
|         {
 | |
|             // [TrinityBAKumA Finella&anon], [BAA]_, [SlowManga&OverloadScans], [batoto]
 | |
|             new Regex(@"(?:\[(?<subgroup>(?!\s).+?(?<!\s))\](?:_|-|\s|\.)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // (Shadowcat-Empire),
 | |
|             // new Regex(@"(?:\[(?<subgroup>(?!\s).+?(?<!\s))\](?:_|-|\s|\.)?)",
 | |
|             //     RegexOptions.IgnoreCase | RegexOptions.Compiled),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] MangaChapterRegex = new[]
 | |
|         {
 | |
|             // Historys Strongest Disciple Kenichi_v11_c90-98.zip, ...c90.5-100.5
 | |
|             new Regex(
 | |
|                 @"(\b|_)(c|ch)(\.?\s?)(?<Chapter>(\d+(\.\d)?)-?(\d+(\.\d)?)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [Suihei Kiki]_Kasumi_Otoko_no_Ko_[Taruby]_v1.1.zip
 | |
|             new Regex(
 | |
|                 @"v\d+\.(?<Chapter>\d+(?:.\d+|-\d+)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Umineko no Naku Koro ni - Episode 3 - Banquet of the Golden Witch #02.cbz (Rare case, if causes issue remove)
 | |
|             new Regex(
 | |
|                 @"^(?<Series>.*)(?: |_)#(?<Chapter>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Green Worldz - Chapter 027, Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo Chapter 11-10
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.*)\s?(?<!vol\. )\sChapter\s(?<Chapter>\d+(?:\.?[\d-]+)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Hinowa ga CRUSH! 018 (2019) (Digital) (LuCaZ).cbz, Hinowa ga CRUSH! 018.5 (2019) (Digital) (LuCaZ).cbz
 | |
|             new Regex(
 | |
|                 @"^(?!Vol)(?<Series>.+?)\s(?<!vol\. )(?<Chapter>\d+(?:.\d+|-\d+)?)(?:\s\(\d{4}\))?(\b|_|-)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Tower Of God S01 014 (CBT) (digital).cbz
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)\sS(?<Volume>\d+)\s(?<Chapter>\d+(?:.\d+|-\d+)?)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Beelzebub_01_[Noodles].zip, Beelzebub_153b_RHS.zip
 | |
|             new Regex(
 | |
|                 @"^((?!v|vo|vol|Volume).)*(\s|_)(?<Chapter>\.?\d+(?:.\d+|-\d+)?)(?<ChapterPart>b)?(\s|_|\[|\()",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Yumekui-Merry_DKThias_Chapter21.zip
 | |
|             new Regex(
 | |
|                 @"Chapter(?<Chapter>\d+(-\d+)?)", //(?:.\d+|-\d+)?
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // [Hidoi]_Amaenaideyo_MS_vol01_chp02.rar
 | |
|             new Regex(
 | |
|                 @"(?<Series>.*)(\s|_)(vol\d+)?(\s|_)Chp\.? ?(?<Chapter>\d+)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Vol 1 Chapter 2
 | |
|             new Regex(
 | |
|               @"(?<Volume>((vol|volume|v))?(\s|_)?\.?\d+)(\s|_)(Chp|Chapter)\.?(\s|_)?(?<Chapter>\d+)",
 | |
|               RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
| 
 | |
|         };
 | |
|         private static readonly Regex[] MangaEditionRegex = {
 | |
|             // Tenjo Tenge {Full Contact Edition} v01 (2011) (Digital) (ASTC).cbz
 | |
|             new Regex(
 | |
|                 @"(?<Edition>({|\(|\[).* Edition(}|\)|\]))",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Tenjo Tenge {Full Contact Edition} v01 (2011) (Digital) (ASTC).cbz
 | |
|             new Regex(
 | |
|                 @"(\b|_)(?<Edition>Omnibus(( |_)?Edition)?)(\b|_)?",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // To Love Ru v01 Uncensored (Ch.001-007)
 | |
|             new Regex(
 | |
|                 @"(\b|_)(?<Edition>Uncensored)(\b|_)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // AKIRA - c003 (v01) [Full Color] [Darkhorse].cbz
 | |
|             new Regex(
 | |
|                 @"(\b|_)(?<Edition>Full(?: |_)Color)(\b|_)?",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] CleanupRegex =
 | |
|         {
 | |
|             // (), {}, []
 | |
|             new Regex(
 | |
|                 @"(?<Cleanup>(\{\}|\[\]|\(\)))",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // (Complete)
 | |
|             new Regex(
 | |
|                 @"(?<Cleanup>(\{Complete\}|\[Complete\]|\(Complete\)))",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|             // Anything in parenthesis
 | |
|             new Regex(
 | |
|                 @"\(.*\)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         private static readonly Regex[] MangaSpecialRegex =
 | |
|         {
 | |
|             // All Keywords, does not account for checking if contains volume/chapter identification. Parser.Parse() will handle.
 | |
|             new Regex(
 | |
|                 @"(?<Special>Specials?|OneShot|One\-Shot|Omake|Extra( Chapter)?|Art Collection|Side( |_)Stories|Bonus)",
 | |
|                 RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout),
 | |
|         };
 | |
| 
 | |
|         // If SP\d+ is in the filename, we force treat it as a special regardless if volume or chapter might have been found.
 | |
|         private static readonly Regex SpecialMarkerRegex = new Regex(
 | |
|             @"(?<Special>SP\d+)",
 | |
|             RegexOptions.IgnoreCase | RegexOptions.Compiled,
 | |
|             RegexTimeout
 | |
|         );
 | |
| 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Parses information out of a file path. Will fallback to using directory name if Series couldn't be parsed
 | |
|         /// from filename.
 | |
|         /// </summary>
 | |
|         /// <param name="filePath"></param>
 | |
|         /// <param name="rootPath">Root folder</param>
 | |
|         /// <param name="type">Defaults to Manga. Allows different Regex to be used for parsing.</param>
 | |
|         /// <returns><see cref="ParserInfo"/> or null if Series was empty</returns>
 | |
|         public static ParserInfo Parse(string filePath, string rootPath, LibraryType type = LibraryType.Manga)
 | |
|         {
 | |
|             var fileName = Path.GetFileName(filePath);
 | |
|             ParserInfo ret;
 | |
| 
 | |
|             if (IsEpub(filePath))
 | |
|             {
 | |
|                 ret = new ParserInfo()
 | |
|                 {
 | |
|                     Chapters = ParseChapter(fileName) ?? ParseComicChapter(fileName),
 | |
|                     Series = ParseSeries(fileName) ?? ParseComicSeries(fileName),
 | |
|                     Volumes = ParseVolume(fileName) ?? ParseComicVolume(fileName),
 | |
|                     Filename = fileName,
 | |
|                     Format = ParseFormat(filePath),
 | |
|                     FullFilePath = filePath
 | |
|                 };
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 ret = new ParserInfo()
 | |
|                 {
 | |
|                     Chapters = type == LibraryType.Manga ? ParseChapter(fileName) : ParseComicChapter(fileName),
 | |
|                     Series = type == LibraryType.Manga ? ParseSeries(fileName) : ParseComicSeries(fileName),
 | |
|                     Volumes = type == LibraryType.Manga ? ParseVolume(fileName) : ParseComicVolume(fileName),
 | |
|                     Filename = fileName,
 | |
|                     Format = ParseFormat(filePath),
 | |
|                     Title = Path.GetFileNameWithoutExtension(fileName),
 | |
|                     FullFilePath = filePath
 | |
|                 };
 | |
|             }
 | |
| 
 | |
|             if (IsImage(filePath) && IsCoverImage(fileName)) return null;
 | |
| 
 | |
|             if (IsImage(filePath))
 | |
|             {
 | |
|               // Reset Chapters, Volumes, and Series as images are not good to parse information out of. Better to use folders.
 | |
|               ret.Volumes = DefaultVolume;
 | |
|               ret.Chapters = DefaultChapter;
 | |
|               ret.Series = string.Empty;
 | |
|             }
 | |
| 
 | |
|             if (ret.Series == string.Empty || IsImage(filePath))
 | |
|             {
 | |
|                 // Try to parse information out of each folder all the way to rootPath
 | |
|                 ParseFromFallbackFolders(filePath, rootPath, type, ref ret);
 | |
|             }
 | |
| 
 | |
|             var edition = ParseEdition(fileName);
 | |
|             if (!string.IsNullOrEmpty(edition))
 | |
|             {
 | |
|                 ret.Series = CleanTitle(ret.Series.Replace(edition, ""));
 | |
|                 ret.Edition = edition;
 | |
|             }
 | |
| 
 | |
|             var isSpecial = ParseMangaSpecial(fileName);
 | |
|             // We must ensure that we can only parse a special out. As some files will have v20 c171-180+Omake and that
 | |
|             // could cause a problem as Omake is a special term, but there is valid volume/chapter information.
 | |
|             if (ret.Chapters == DefaultChapter && ret.Volumes == DefaultVolume && !string.IsNullOrEmpty(isSpecial))
 | |
|             {
 | |
|                 ret.IsSpecial = true;
 | |
|             }
 | |
| 
 | |
|             if (HasSpecialMarker(fileName))
 | |
|             {
 | |
|                 ret.IsSpecial = true;
 | |
|                 ret.Chapters = DefaultChapter;
 | |
|                 ret.Volumes = DefaultVolume;
 | |
| 
 | |
|                 ParseFromFallbackFolders(filePath, rootPath, type, ref ret);
 | |
|             }
 | |
|             // here is the issue. If we are a special with marker, we need to ensure we use the correct series name.
 | |
|             // we can do this by falling back
 | |
| 
 | |
|             if (string.IsNullOrEmpty(ret.Series))
 | |
|             {
 | |
|                 ret.Series = CleanTitle(fileName);
 | |
|             }
 | |
| 
 | |
|             // Pdfs may have .pdf in the series name, remove that
 | |
|             if (IsPdf(fileName) && ret.Series.ToLower().EndsWith(".pdf"))
 | |
|             {
 | |
|                 ret.Series = ret.Series.Substring(0, ret.Series.Length - ".pdf".Length);
 | |
|             }
 | |
| 
 | |
|             return ret.Series == string.Empty ? null : ret;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         ///
 | |
|         /// </summary>
 | |
|         /// <param name="filePath"></param>
 | |
|         /// <param name="rootPath"></param>
 | |
|         /// <param name="type"></param>
 | |
|         /// <param name="ret">Expects a non-null ParserInfo which this method will populate</param>
 | |
|         public static void ParseFromFallbackFolders(string filePath, string rootPath, LibraryType type, ref ParserInfo ret)
 | |
|         {
 | |
|           var fallbackFolders = DirectoryService.GetFoldersTillRoot(rootPath, filePath).ToList();
 | |
|             for (var i = 0; i < fallbackFolders.Count; i++)
 | |
|             {
 | |
|                 var folder = fallbackFolders[i];
 | |
|                 if (!string.IsNullOrEmpty(ParseMangaSpecial(folder))) continue;
 | |
| 
 | |
|                 var parsedVolume = type is LibraryType.Manga ? ParseVolume(folder) : ParseComicVolume(folder);
 | |
|                 var parsedChapter = type is LibraryType.Manga ? ParseChapter(folder) : ParseComicChapter(folder);
 | |
| 
 | |
|                 if (!parsedVolume.Equals(DefaultVolume) || !parsedChapter.Equals(DefaultChapter))
 | |
|                 {
 | |
|                   if ((ret.Volumes.Equals(DefaultVolume) || string.IsNullOrEmpty(ret.Volumes)) && !parsedVolume.Equals(DefaultVolume))
 | |
|                   {
 | |
|                     ret.Volumes = parsedVolume;
 | |
|                   }
 | |
|                   if ((ret.Chapters.Equals(DefaultChapter) || string.IsNullOrEmpty(ret.Chapters)) && !parsedChapter.Equals(DefaultChapter))
 | |
|                   {
 | |
|                     ret.Chapters = parsedChapter;
 | |
|                   }
 | |
| 
 | |
|                   continue;
 | |
|                 }
 | |
| 
 | |
|                 var series = ParseSeries(folder);
 | |
| 
 | |
|                 if ((string.IsNullOrEmpty(series) && i == fallbackFolders.Count - 1))
 | |
|                 {
 | |
|                     ret.Series = CleanTitle(folder);
 | |
|                     break;
 | |
|                 }
 | |
| 
 | |
|                 if (!string.IsNullOrEmpty(series))
 | |
|                 {
 | |
|                     ret.Series = series;
 | |
|                     break;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         public static MangaFormat ParseFormat(string filePath)
 | |
|         {
 | |
|             if (IsArchive(filePath)) return MangaFormat.Archive;
 | |
|             if (IsImage(filePath)) return MangaFormat.Image;
 | |
|             if (IsEpub(filePath)) return MangaFormat.Epub;
 | |
|             if (IsPdf(filePath)) return MangaFormat.Pdf;
 | |
|             return MangaFormat.Unknown;
 | |
|         }
 | |
| 
 | |
|         public static string ParseEdition(string filePath)
 | |
|         {
 | |
|             foreach (var regex in MangaEditionRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filePath);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Groups["Edition"].Success && match.Groups["Edition"].Value != string.Empty)
 | |
|                     {
 | |
|                         var edition = match.Groups["Edition"].Value.Replace("{", "").Replace("}", "")
 | |
|                             .Replace("[", "").Replace("]", "").Replace("(", "").Replace(")", "");
 | |
| 
 | |
|                         return edition;
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return string.Empty;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// If the file has SP marker.
 | |
|         /// </summary>
 | |
|         /// <param name="filePath"></param>
 | |
|         /// <returns></returns>
 | |
|         public static bool HasSpecialMarker(string filePath)
 | |
|         {
 | |
|             var matches = SpecialMarkerRegex.Matches(filePath);
 | |
|             foreach (Match match in matches)
 | |
|             {
 | |
|                 if (match.Groups["Special"].Success && match.Groups["Special"].Value != string.Empty)
 | |
|                 {
 | |
|                     return true;
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return false;
 | |
|         }
 | |
| 
 | |
|         public static string ParseMangaSpecial(string filePath)
 | |
|         {
 | |
|             foreach (var regex in MangaSpecialRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filePath);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Groups["Special"].Success && match.Groups["Special"].Value != string.Empty)
 | |
|                     {
 | |
|                         return match.Groups["Special"].Value;
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return string.Empty;
 | |
|         }
 | |
| 
 | |
|         public static string ParseSeries(string filename)
 | |
|         {
 | |
|             foreach (var regex in MangaSeriesRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filename);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Groups["Series"].Success && match.Groups["Series"].Value != string.Empty)
 | |
|                     {
 | |
|                         return CleanTitle(match.Groups["Series"].Value);
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return string.Empty;
 | |
|         }
 | |
|         public static string ParseComicSeries(string filename)
 | |
|         {
 | |
|             foreach (var regex in ComicSeriesRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filename);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Groups["Series"].Success && match.Groups["Series"].Value != string.Empty)
 | |
|                     {
 | |
|                         return CleanTitle(match.Groups["Series"].Value);
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return string.Empty;
 | |
|         }
 | |
| 
 | |
|         public static string ParseVolume(string filename)
 | |
|         {
 | |
|             foreach (var regex in MangaVolumeRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filename);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (!match.Groups["Volume"].Success || match.Groups["Volume"] == Match.Empty) continue;
 | |
| 
 | |
|                     var value = match.Groups["Volume"].Value;
 | |
|                     if (!value.Contains("-")) return RemoveLeadingZeroes(match.Groups["Volume"].Value);
 | |
|                     var tokens = value.Split("-");
 | |
|                     var from = RemoveLeadingZeroes(tokens[0]);
 | |
|                     var to = RemoveLeadingZeroes(tokens[1]);
 | |
|                     return $"{@from}-{to}";
 | |
| 
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return DefaultVolume;
 | |
|         }
 | |
| 
 | |
|         public static string ParseComicVolume(string filename)
 | |
|         {
 | |
|             foreach (var regex in ComicVolumeRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filename);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (!match.Groups["Volume"].Success || match.Groups["Volume"] == Match.Empty) continue;
 | |
| 
 | |
|                     var value = match.Groups["Volume"].Value;
 | |
|                     if (!value.Contains("-")) return RemoveLeadingZeroes(match.Groups["Volume"].Value);
 | |
|                     var tokens = value.Split("-");
 | |
|                     var from = RemoveLeadingZeroes(tokens[0]);
 | |
|                     var to = RemoveLeadingZeroes(tokens[1]);
 | |
|                     return $"{@from}-{to}";
 | |
| 
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return DefaultVolume;
 | |
|         }
 | |
| 
 | |
|         public static string ParseChapter(string filename)
 | |
|         {
 | |
|             foreach (var regex in MangaChapterRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filename);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (!match.Groups["Chapter"].Success || match.Groups["Chapter"] == Match.Empty) continue;
 | |
| 
 | |
|                     var value = match.Groups["Chapter"].Value;
 | |
|                     var hasChapterPart = match.Groups["ChapterPart"].Success;
 | |
| 
 | |
|                     if (!value.Contains("-"))
 | |
|                     {
 | |
|                         return RemoveLeadingZeroes(hasChapterPart ? AddChapterPart(value) : value);
 | |
|                     }
 | |
| 
 | |
|                     var tokens = value.Split("-");
 | |
|                     var from = RemoveLeadingZeroes(tokens[0]);
 | |
|                     if (tokens.Length == 2)
 | |
|                     {
 | |
|                         var to = RemoveLeadingZeroes(hasChapterPart ? AddChapterPart(tokens[1]) : tokens[1]);
 | |
|                         return $"{@from}-{to}";
 | |
|                     }
 | |
| 
 | |
|                     return from;
 | |
| 
 | |
| 
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return DefaultChapter;
 | |
|         }
 | |
| 
 | |
|         private static string AddChapterPart(string value)
 | |
|         {
 | |
|             if (value.Contains("."))
 | |
|             {
 | |
|                 return value;
 | |
|             }
 | |
| 
 | |
|             return $"{value}.5";
 | |
|         }
 | |
| 
 | |
|         public static string ParseComicChapter(string filename)
 | |
|         {
 | |
|             foreach (var regex in ComicChapterRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(filename);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Groups["Chapter"].Success && match.Groups["Chapter"] != Match.Empty)
 | |
|                     {
 | |
|                         var value = match.Groups["Chapter"].Value;
 | |
| 
 | |
|                         if (value.Contains("-"))
 | |
|                         {
 | |
|                             var tokens = value.Split("-");
 | |
|                             var from = RemoveLeadingZeroes(tokens[0]);
 | |
|                             var to = RemoveLeadingZeroes(tokens[1]);
 | |
|                             return $"{from}-{to}";
 | |
|                         }
 | |
| 
 | |
|                         return RemoveLeadingZeroes(match.Groups["Chapter"].Value);
 | |
|                     }
 | |
| 
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return DefaultChapter;
 | |
|         }
 | |
| 
 | |
|         private static string RemoveEditionTagHolders(string title)
 | |
|         {
 | |
|             foreach (var regex in CleanupRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(title);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Success)
 | |
|                     {
 | |
|                         title = title.Replace(match.Value, "").Trim();
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             foreach (var regex in MangaEditionRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(title);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Success)
 | |
|                     {
 | |
|                         title = title.Replace(match.Value, "").Trim();
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return title;
 | |
|         }
 | |
| 
 | |
|         private static string RemoveSpecialTags(string title)
 | |
|         {
 | |
|             foreach (var regex in MangaSpecialRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(title);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Success)
 | |
|                     {
 | |
|                         title = title.Replace(match.Value, "").Trim();
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return title;
 | |
|         }
 | |
| 
 | |
| 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Translates _ -> spaces, trims front and back of string, removes release groups
 | |
|         /// <example>
 | |
|         /// Hippos_the_Great [Digital], -> Hippos the Great
 | |
|         /// </example>
 | |
|         /// </summary>
 | |
|         /// <param name="title"></param>
 | |
|         /// <returns></returns>
 | |
|         public static string CleanTitle(string title)
 | |
|         {
 | |
|             title = RemoveReleaseGroup(title);
 | |
| 
 | |
|             title = RemoveEditionTagHolders(title);
 | |
| 
 | |
|             title = RemoveSpecialTags(title);
 | |
| 
 | |
|             title = title.Replace("_", " ").Trim();
 | |
|             if (title.EndsWith("-") || title.EndsWith(","))
 | |
|             {
 | |
|                 title = title.Substring(0, title.Length - 1);
 | |
|             }
 | |
| 
 | |
|             return title.Trim();
 | |
|         }
 | |
| 
 | |
|         private static string RemoveReleaseGroup(string title)
 | |
|         {
 | |
|             foreach (var regex in ReleaseGroupRegex)
 | |
|             {
 | |
|                 var matches = regex.Matches(title);
 | |
|                 foreach (Match match in matches)
 | |
|                 {
 | |
|                     if (match.Success)
 | |
|                     {
 | |
|                         title = title.Replace(match.Value, "");
 | |
|                     }
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             return title;
 | |
|         }
 | |
| 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Pads the start of a number string with 0's so ordering works fine if there are over 100 items.
 | |
|         /// Handles ranges (ie 4-8) -> (004-008).
 | |
|         /// </summary>
 | |
|         /// <param name="number"></param>
 | |
|         /// <returns>A zero padded number</returns>
 | |
|         public static string PadZeros(string number)
 | |
|         {
 | |
|             if (number.Contains("-"))
 | |
|             {
 | |
|                 var tokens = number.Split("-");
 | |
|                 return $"{PerformPadding(tokens[0])}-{PerformPadding(tokens[1])}";
 | |
|             }
 | |
| 
 | |
|             return PerformPadding(number);
 | |
|         }
 | |
| 
 | |
|         private static string PerformPadding(string number)
 | |
|         {
 | |
|             var num = Int32.Parse(number);
 | |
|             return num switch
 | |
|             {
 | |
|                 < 10 => "00" + num,
 | |
|                 < 100 => "0" + num,
 | |
|                 _ => number
 | |
|             };
 | |
|         }
 | |
| 
 | |
|         public static string RemoveLeadingZeroes(string title)
 | |
|         {
 | |
|             var ret = title.TrimStart(new[] { '0' });
 | |
|             return ret == string.Empty ? "0" : ret;
 | |
|         }
 | |
| 
 | |
|         public static bool IsArchive(string filePath)
 | |
|         {
 | |
|             return ArchiveFileRegex.IsMatch(Path.GetExtension(filePath));
 | |
|         }
 | |
|         public static bool IsBook(string filePath)
 | |
|         {
 | |
|             return BookFileRegex.IsMatch(Path.GetExtension(filePath));
 | |
|         }
 | |
| 
 | |
|         public static bool IsImage(string filePath, bool suppressExtraChecks = false)
 | |
|         {
 | |
|             if (filePath.StartsWith(".") || (!suppressExtraChecks && filePath.StartsWith("!"))) return false;
 | |
|             return ImageRegex.IsMatch(Path.GetExtension(filePath));
 | |
|         }
 | |
| 
 | |
|         public static bool IsXml(string filePath)
 | |
|         {
 | |
|             return XmlRegex.IsMatch(Path.GetExtension(filePath));
 | |
|         }
 | |
| 
 | |
|         public static float MinimumNumberFromRange(string range)
 | |
|         {
 | |
|             try
 | |
|             {
 | |
|                 if (!Regex.IsMatch(range, @"^[\d-.]+$"))
 | |
|                 {
 | |
|                     return (float) 0.0;
 | |
|                 }
 | |
| 
 | |
|                 var tokens = range.Replace("_", string.Empty).Split("-");
 | |
|                 return tokens.Min(float.Parse);
 | |
|             }
 | |
|             catch
 | |
|             {
 | |
|                 return (float) 0.0;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         public static string Normalize(string name)
 | |
|         {
 | |
|             return Regex.Replace(name.ToLower(), "[^a-zA-Z0-9]", string.Empty);
 | |
|         }
 | |
| 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Tests whether the file is a cover image such that: contains "cover", is named "folder", and is an image
 | |
|         /// </summary>
 | |
|         /// <param name="name"></param>
 | |
|         /// <returns></returns>
 | |
|         public static bool IsCoverImage(string name)
 | |
|         {
 | |
|             return IsImage(name, true) && (CoverImageRegex.IsMatch(name));
 | |
|         }
 | |
| 
 | |
|         public static bool HasBlacklistedFolderInPath(string path)
 | |
|         {
 | |
|             return path.Contains("__MACOSX");
 | |
|         }
 | |
| 
 | |
| 
 | |
|         public static bool IsEpub(string filePath)
 | |
|         {
 | |
|             return Path.GetExtension(filePath).ToLower() == ".epub";
 | |
|         }
 | |
| 
 | |
|         public static bool IsPdf(string filePath)
 | |
|         {
 | |
|            return Path.GetExtension(filePath).ToLower() == ".pdf";
 | |
|         }
 | |
|     }
 | |
| }
 |