using System.Collections.Generic;
using System.Linq;
using API.Entities;
using API.Parser;
namespace API.Extensions;
public static class ChapterListExtensions
{
///
/// Returns first chapter in the list with at least one file
///
///
///
public static Chapter GetFirstChapterWithFiles(this IList chapters)
{
return chapters.FirstOrDefault(c => c.Files.Any());
}
///
/// Gets a single chapter (or null if doesn't exist) where Range matches the info.Chapters property. If the info
/// is then, the filename is used to search against Range or if filename exists within Files of said Chapter.
///
///
///
///
public static Chapter GetChapterByRange(this IList chapters, ParserInfo info)
{
var specialTreatment = info.IsSpecialInfo();
return specialTreatment
? chapters.FirstOrDefault(c => c.Range == info.Filename || (c.Files.Select(f => f.FilePath).Contains(info.FullFilePath)))
: chapters.FirstOrDefault(c => c.Range == info.Chapters);
}
///
/// Returns the minimum Release Year from all Chapters that meets the year requirement (>= 1000)
///
///
///
public static int MinimumReleaseYear(this IList chapters)
{
return chapters.Select(v => v.ReleaseDate.Year).Where(y => y >= 1000).DefaultIfEmpty().Min();
}
}