2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Linq;
|
2019-10-15 15:49:49 +00:00
|
|
|
using System.Text.Json.Serialization;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2018-12-27 23:27:57 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
{
|
|
|
|
public class Book : BaseItem, IHasLookupInfo<BookInfo>, IHasSeries
|
|
|
|
{
|
2021-05-11 11:55:46 +00:00
|
|
|
public Book()
|
|
|
|
{
|
|
|
|
this.RunTimeTicks = TimeSpan.TicksPerSecond;
|
|
|
|
}
|
|
|
|
|
2019-10-15 15:49:49 +00:00
|
|
|
[JsonIgnore]
|
2023-05-13 18:44:31 +00:00
|
|
|
public override MediaType MediaType => MediaType.Book;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-06-06 08:49:12 +00:00
|
|
|
public override bool SupportsPlayedStatus => true;
|
|
|
|
|
|
|
|
public override bool SupportsPositionTicksResume => true;
|
|
|
|
|
2023-10-07 23:08:03 +00:00
|
|
|
[JsonIgnore]
|
|
|
|
public override bool SupportsPeople => true;
|
|
|
|
|
2019-10-15 15:49:49 +00:00
|
|
|
[JsonIgnore]
|
2018-12-27 23:27:57 +00:00
|
|
|
public string SeriesPresentationUniqueKey { get; set; }
|
2020-03-09 14:05:03 +00:00
|
|
|
|
2019-10-15 15:49:49 +00:00
|
|
|
[JsonIgnore]
|
2018-12-27 23:27:57 +00:00
|
|
|
public string SeriesName { get; set; }
|
2020-03-09 14:05:03 +00:00
|
|
|
|
2019-10-15 15:49:49 +00:00
|
|
|
[JsonIgnore]
|
2018-12-27 23:27:57 +00:00
|
|
|
public Guid SeriesId { get; set; }
|
|
|
|
|
|
|
|
public string FindSeriesSortName()
|
|
|
|
{
|
|
|
|
return SeriesName;
|
|
|
|
}
|
2020-03-09 14:05:03 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public string FindSeriesName()
|
|
|
|
{
|
|
|
|
return SeriesName;
|
|
|
|
}
|
2020-03-09 14:05:03 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
public string FindSeriesPresentationUniqueKey()
|
|
|
|
{
|
|
|
|
return SeriesPresentationUniqueKey;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Guid FindSeriesId()
|
|
|
|
{
|
|
|
|
return SeriesId;
|
|
|
|
}
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
/// <inheritdoc />
|
2018-12-27 23:27:57 +00:00
|
|
|
public override bool CanDownload()
|
|
|
|
{
|
|
|
|
return IsFileProtocol;
|
|
|
|
}
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
/// <inheritdoc />
|
2018-12-27 23:27:57 +00: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|