You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
using System.Linq;
|
|
using MediaBrowser.Controller.Providers;
|
|
using MediaBrowser.Model.Configuration;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public class Book : BaseItem, IHasTags, IHasPreferredMetadataLanguage, IHasLookupInfo<BookInfo>, IHasSeries
|
|
{
|
|
public override string MediaType
|
|
{
|
|
get
|
|
{
|
|
return Model.Entities.MediaType.Book;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the tags.
|
|
/// </summary>
|
|
/// <value>The tags.</value>
|
|
public List<string> Tags { get; set; }
|
|
|
|
public string SeriesName { get; set; }
|
|
|
|
public string PreferredMetadataLanguage { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the preferred metadata country code.
|
|
/// </summary>
|
|
/// <value>The preferred metadata country code.</value>
|
|
public string PreferredMetadataCountryCode { get; set; }
|
|
|
|
public Book()
|
|
{
|
|
Tags = new List<string>();
|
|
}
|
|
|
|
protected override bool GetBlockUnratedValue(UserConfiguration config)
|
|
{
|
|
return config.BlockUnratedBooks;
|
|
}
|
|
|
|
public BookInfo GetLookupInfo()
|
|
{
|
|
var info = GetItemLookupInfo<BookInfo>();
|
|
|
|
if (string.IsNullOrEmpty(SeriesName))
|
|
{
|
|
info.SeriesName = Parents.Select(i => i.Name).FirstOrDefault();
|
|
}
|
|
else
|
|
{
|
|
info.SeriesName = SeriesName;
|
|
}
|
|
|
|
return info;
|
|
}
|
|
}
|
|
}
|