using System.Collections.Generic; using API.Entities; using API.Entities.Enums; using API.Parser; using API.Services.Tasks.Scanner; namespace API.Helpers; public static class ParserInfoHelpers { /// /// Checks each parser info to see if there is a name match and if so, checks if the format matches the Series object. /// This accounts for if the Series has an Unknown type and if so, considers it matching. /// /// /// /// public static bool SeriesHasMatchingParserInfoFormat(Series series, Dictionary> parsedSeries) { var format = MangaFormat.Unknown; foreach (var pSeries in parsedSeries.Keys) { var name = pSeries.Name; var normalizedName = Parser.Parser.Normalize(name); //if (series.NameInParserInfo(pSeries.)) if (normalizedName == series.NormalizedName || normalizedName == Parser.Parser.Normalize(series.Name) || name == series.Name || name == series.LocalizedName || name == series.OriginalName || normalizedName == Parser.Parser.Normalize(series.OriginalName)) { format = pSeries.Format; if (format == series.Format) { return true; } } } if (series.Format == MangaFormat.Unknown && format != MangaFormat.Unknown) { return true; } return format == series.Format; } }