jellyfin/MediaBrowser.Controller/Entities/Book.cs

88 lines
1.9 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
using System.Linq;
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Enums;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Controller.Providers;
namespace MediaBrowser.Controller.Entities
{
public class Book : BaseItem, IHasLookupInfo<BookInfo>, IHasSeries
{
public Book()
{
this.RunTimeTicks = TimeSpan.TicksPerSecond;
}
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override MediaType MediaType => MediaType.Book;
2018-12-28 00:27:57 +01:00
public override bool SupportsPlayedStatus => true;
public override bool SupportsPositionTicksResume => true;
2023-10-08 01:08:03 +02:00
[JsonIgnore]
public override bool SupportsPeople => true;
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public string SeriesPresentationUniqueKey { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public string SeriesName { get; set; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
2018-12-28 00:27:57 +01:00
public Guid SeriesId { get; set; }
public string FindSeriesSortName()
{
return SeriesName;
}
2018-12-28 00:27:57 +01:00
public string FindSeriesName()
{
return SeriesName;
}
2018-12-28 00:27:57 +01:00
public string FindSeriesPresentationUniqueKey()
{
return SeriesPresentationUniqueKey;
}
public Guid FindSeriesId()
{
return SeriesId;
}
/// <inheritdoc />
2018-12-28 00:27:57 +01:00
public override bool CanDownload()
{
return IsFileProtocol;
}
/// <inheritdoc />
2018-12-28 00:27:57 +01:00
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.Book;
}
public BookInfo GetLookupInfo()
{
var info = GetItemLookupInfo<BookInfo>();
if (string.IsNullOrEmpty(SeriesName))
{
info.SeriesName = GetParents().Select(i => i.Name).FirstOrDefault();
}
else
{
info.SeriesName = SeriesName;
}
return info;
}
}
}