2014-02-23 05:52:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-26 16:53:23 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-02-23 05:52:30 +00:00
|
|
|
|
using System.Linq;
|
2015-02-06 05:39:07 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-12-20 06:06:27 +00:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-12-06 03:39:44 +00:00
|
|
|
|
|
2013-08-30 23:54:49 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
|
|
|
{
|
2015-09-29 17:35:23 +00:00
|
|
|
|
public class Book : BaseItem, IHasTags, IHasLookupInfo<BookInfo>, IHasSeries
|
2013-08-30 23:54:49 +00:00
|
|
|
|
{
|
|
|
|
|
public override string MediaType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Model.Entities.MediaType.Book;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-12-27 00:23:58 +00:00
|
|
|
|
|
2013-12-06 03:39:44 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the tags.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tags.</value>
|
|
|
|
|
public List<string> Tags { get; set; }
|
2013-08-30 23:54:49 +00:00
|
|
|
|
|
|
|
|
|
public string SeriesName { get; set; }
|
|
|
|
|
|
2013-12-06 03:39:44 +00:00
|
|
|
|
public Book()
|
|
|
|
|
{
|
|
|
|
|
Tags = new List<string>();
|
|
|
|
|
}
|
2013-12-26 16:53:23 +00:00
|
|
|
|
|
2015-02-06 05:39:07 +00:00
|
|
|
|
public override bool CanDownload()
|
|
|
|
|
{
|
|
|
|
|
var locationType = LocationType;
|
|
|
|
|
return locationType != LocationType.Remote &&
|
|
|
|
|
locationType != LocationType.Virtual;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-20 06:06:27 +00:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2013-12-26 16:53:23 +00:00
|
|
|
|
{
|
2014-02-21 15:24:29 +00:00
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.Book);
|
2013-12-26 16:53:23 +00:00
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
|
|
|
|
public BookInfo GetLookupInfo()
|
|
|
|
|
{
|
2014-02-09 04:52:52 +00:00
|
|
|
|
var info = GetItemLookupInfo<BookInfo>();
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(SeriesName))
|
|
|
|
|
{
|
|
|
|
|
info.SeriesName = Parents.Select(i => i.Name).FirstOrDefault();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
info.SeriesName = SeriesName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return info;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
}
|
2013-08-30 23:54:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|