jellyfin/MediaBrowser.Controller/LiveTv/LiveTvProgram.cs

261 lines
7.5 KiB
C#
Raw Normal View History

2015-02-06 06:39:07 +01:00
using MediaBrowser.Controller.Entities;
2015-08-21 01:55:23 +02:00
using MediaBrowser.Controller.Entities.Movies;
2015-03-14 21:00:32 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
2013-12-22 19:58:51 +01:00
using MediaBrowser.Model.LiveTv;
2014-01-12 16:58:47 +01:00
using System;
2016-05-01 01:05:21 +02:00
using System.Collections.Generic;
2015-02-06 06:39:07 +01:00
using System.Runtime.Serialization;
2016-05-01 01:05:21 +02:00
using MediaBrowser.Model.Entities;
2016-05-29 08:03:09 +02:00
using MediaBrowser.Model.Providers;
2013-12-19 22:51:32 +01:00
namespace MediaBrowser.Controller.LiveTv
{
2016-03-19 22:17:08 +01:00
public class LiveTvProgram : BaseItem, IHasLookupInfo<LiveTvProgramLookupInfo>, IHasStartDate, IHasProgramAttributes
2013-12-19 22:51:32 +01:00
{
2016-05-01 01:05:21 +02:00
public override List<string> GetUserDataKeys()
2013-12-19 22:51:32 +01:00
{
2016-05-01 01:05:21 +02:00
var list = base.GetUserDataKeys();
if (!IsSeries)
2015-08-21 01:55:23 +02:00
{
2016-05-01 01:05:21 +02:00
var key = this.GetProviderId(MetadataProviders.Imdb);
if (!string.IsNullOrWhiteSpace(key))
{
list.Insert(0, key);
}
2015-08-21 01:55:23 +02:00
2016-05-01 01:05:21 +02:00
key = this.GetProviderId(MetadataProviders.Tmdb);
2015-08-21 01:55:23 +02:00
if (!string.IsNullOrWhiteSpace(key))
{
2016-05-01 01:05:21 +02:00
list.Insert(0, key);
2015-08-21 01:55:23 +02:00
}
}
2016-05-01 01:05:21 +02:00
else if (!string.IsNullOrWhiteSpace(EpisodeTitle))
2015-11-27 01:36:57 +01:00
{
var name = GetClientTypeName();
2016-05-01 01:05:21 +02:00
list.Insert(0, name + "-" + Name + (EpisodeTitle ?? string.Empty));
2015-11-27 01:36:57 +01:00
}
2016-05-01 01:05:21 +02:00
return list;
2013-12-19 22:51:32 +01:00
}
2016-03-19 06:04:38 +01:00
[IgnoreDataMember]
public override SourceType SourceType
{
get { return SourceType.LiveTV; }
set { }
}
2014-01-23 19:05:41 +01:00
/// <summary>
/// The start date of the program, in UTC.
/// </summary>
2015-09-10 20:28:22 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public DateTime StartDate { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is repeat.
/// </summary>
/// <value><c>true</c> if this instance is repeat; otherwise, <c>false</c>.</value>
2015-09-29 18:29:06 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsRepeat { get; set; }
/// <summary>
/// Gets or sets the episode title.
/// </summary>
/// <value>The episode title.</value>
2015-09-29 18:29:06 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public string EpisodeTitle { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is movie.
/// </summary>
/// <value><c>true</c> if this instance is movie; otherwise, <c>false</c>.</value>
2015-09-10 05:22:52 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsMovie { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is sports.
/// </summary>
/// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value>
2015-09-10 05:22:52 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsSports { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is series.
/// </summary>
/// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value>
2015-09-20 04:06:56 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsSeries { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is live.
/// </summary>
/// <value><c>true</c> if this instance is live; otherwise, <c>false</c>.</value>
2015-09-20 04:06:56 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsLive { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is news.
/// </summary>
/// <value><c>true</c> if this instance is news; otherwise, <c>false</c>.</value>
2015-09-20 04:06:56 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsNews { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is kids.
/// </summary>
/// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value>
2015-09-10 05:22:52 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsKids { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is premiere.
/// </summary>
/// <value><c>true</c> if this instance is premiere; otherwise, <c>false</c>.</value>
2015-09-20 04:06:56 +02:00
[IgnoreDataMember]
2014-01-23 19:05:41 +01:00
public bool IsPremiere { get; set; }
/// <summary>
/// Returns the folder containing the item.
/// If the item is a folder, it returns the folder itself
/// </summary>
/// <value>The containing folder path.</value>
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
public override string ContainingFolderPath
{
get
{
return Path;
}
}
/// <summary>
/// Gets a value indicating whether this instance is owned item.
/// </summary>
/// <value><c>true</c> if this instance is owned item; otherwise, <c>false</c>.</value>
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
public override bool IsOwnedItem
{
get
{
return false;
}
}
2015-10-28 20:40:38 +01:00
//[IgnoreDataMember]
//public override string MediaType
//{
// get
// {
// return ChannelType == ChannelType.TV ? Model.Entities.MediaType.Video : Model.Entities.MediaType.Audio;
// }
//}
2013-12-19 22:51:32 +01:00
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
2014-01-12 16:58:47 +01:00
public bool IsAiring
{
get
{
var now = DateTime.UtcNow;
2014-01-23 19:05:41 +01:00
return now >= StartDate && now < EndDate;
2014-01-12 16:58:47 +01:00
}
}
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
2014-01-12 16:58:47 +01:00
public bool HasAired
{
get
{
var now = DateTime.UtcNow;
2014-01-23 19:05:41 +01:00
return now >= EndDate;
2014-01-12 16:58:47 +01:00
}
}
2013-12-19 22:51:32 +01:00
public override string GetClientTypeName()
{
return "Program";
}
2014-02-09 05:52:52 +01:00
2015-11-06 16:02:22 +01:00
public override UnratedItem GetBlockUnratedType()
{
2015-11-06 16:02:22 +01:00
return UnratedItem.LiveTvProgram;
}
protected override string GetInternalMetadataPath(string basePath)
{
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"));
}
2015-02-06 06:39:07 +01:00
public override bool CanDelete()
{
return false;
}
2015-03-14 21:00:32 +01:00
public override bool IsInternetMetadataEnabled()
{
if (IsMovie)
{
var options = (LiveTvOptions)ConfigurationManager.GetConfiguration("livetv");
return options.EnableMovieProviders;
}
return false;
}
public LiveTvProgramLookupInfo GetLookupInfo()
{
var info = GetItemLookupInfo<LiveTvProgramLookupInfo>();
info.IsMovie = IsMovie;
return info;
}
2015-07-28 21:42:24 +02:00
2015-09-20 04:06:56 +02:00
[IgnoreDataMember]
2015-07-28 21:42:24 +02:00
public override bool SupportsPeople
{
get
{
// Optimization
if (IsNews || IsSports)
{
return false;
}
return base.SupportsPeople;
}
}
2015-10-29 14:28:05 +01:00
[IgnoreDataMember]
public override bool SupportsAncestors
{
get
{
return false;
}
}
2016-05-29 08:03:09 +02:00
public override List<ExternalUrl> GetRelatedUrls()
{
var list = base.GetRelatedUrls();
var imdbId = this.GetProviderId(MetadataProviders.Imdb);
if (!string.IsNullOrWhiteSpace(imdbId))
{
if (IsMovie)
{
list.Add(new ExternalUrl
{
Name = "Trakt",
Url = string.Format("https://trakt.tv/movies/{0}", imdbId)
});
}
}
return list;
}
2013-12-19 22:51:32 +01:00
}
}