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-27 18:27:57 -05:00
using System.Linq;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Enums;
2018-12-27 18:27:57 -05: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 11:49:49 -04:00
[JsonIgnore]
public override MediaType MediaType => MediaType.Book;
2018-12-27 18:27:57 -05:00
public override bool SupportsPlayedStatus => true;
public override bool SupportsPositionTicksResume => true;
2023-10-07 19:08:03 -04:00
[JsonIgnore]
public override bool SupportsPeople => true;
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public string SeriesPresentationUniqueKey { get; set; }
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public string SeriesName { get; set; }
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public Guid SeriesId { get; set; }
public string FindSeriesSortName()
{
return SeriesName;
}
2018-12-27 18:27:57 -05:00
public string FindSeriesName()
{
return SeriesName;
}
2018-12-27 18:27:57 -05:00
public string FindSeriesPresentationUniqueKey()
{
return SeriesPresentationUniqueKey;
}
public Guid FindSeriesId()
{
return SeriesId;
}
/// <inheritdoc />
2018-12-27 18:27:57 -05:00
public override bool CanDownload()
{
return IsFileProtocol;
}
/// <inheritdoc />
2018-12-27 18:27:57 -05: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;
}
}
}