2015-02-05 22:39:07 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2015-08-20 16:55:23 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
2015-03-14 13:00:32 -07:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-21 08:24:29 -07:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-12-22 11:58:51 -07:00
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
2014-01-12 08:58:47 -07:00
|
|
|
|
using System;
|
2016-04-30 16:05:21 -07:00
|
|
|
|
using System.Collections.Generic;
|
2015-02-05 22:39:07 -07:00
|
|
|
|
using System.Runtime.Serialization;
|
2016-04-30 16:05:21 -07:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2016-05-28 23:03:09 -07:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2013-12-19 14:51:32 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
{
|
2016-03-19 14:17:08 -07:00
|
|
|
|
public class LiveTvProgram : BaseItem, IHasLookupInfo<LiveTvProgramLookupInfo>, IHasStartDate, IHasProgramAttributes
|
2013-12-19 14:51:32 -07:00
|
|
|
|
{
|
2016-04-30 16:05:21 -07:00
|
|
|
|
public override List<string> GetUserDataKeys()
|
2013-12-19 14:51:32 -07:00
|
|
|
|
{
|
2016-04-30 16:05:21 -07:00
|
|
|
|
var list = base.GetUserDataKeys();
|
|
|
|
|
|
|
|
|
|
if (!IsSeries)
|
2015-08-20 16:55:23 -07:00
|
|
|
|
{
|
2016-04-30 16:05:21 -07:00
|
|
|
|
var key = this.GetProviderId(MetadataProviders.Imdb);
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
|
|
|
{
|
|
|
|
|
list.Insert(0, key);
|
|
|
|
|
}
|
2015-08-20 16:55:23 -07:00
|
|
|
|
|
2016-04-30 16:05:21 -07:00
|
|
|
|
key = this.GetProviderId(MetadataProviders.Tmdb);
|
2015-08-20 16:55:23 -07:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
|
|
|
{
|
2016-04-30 16:05:21 -07:00
|
|
|
|
list.Insert(0, key);
|
2015-08-20 16:55:23 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-30 16:05:21 -07:00
|
|
|
|
else if (!string.IsNullOrWhiteSpace(EpisodeTitle))
|
2015-11-26 17:36:57 -07:00
|
|
|
|
{
|
|
|
|
|
var name = GetClientTypeName();
|
|
|
|
|
|
2016-04-30 16:05:21 -07:00
|
|
|
|
list.Insert(0, name + "-" + Name + (EpisodeTitle ?? string.Empty));
|
2015-11-26 17:36:57 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 16:05:21 -07:00
|
|
|
|
return list;
|
2013-12-19 14:51:32 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-18 22:04:38 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override SourceType SourceType
|
|
|
|
|
{
|
|
|
|
|
get { return SourceType.LiveTV; }
|
|
|
|
|
set { }
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-23 11:05:41 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The start date of the program, in UTC.
|
|
|
|
|
/// </summary>
|
2015-09-10 11:28:22 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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 09:29:06 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07:00
|
|
|
|
public bool IsRepeat { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the episode title.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The episode title.</value>
|
2015-09-29 09:29:06 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-09 20:22:52 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-09 20:22:52 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-19 19:06:56 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-19 19:06:56 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-19 19:06:56 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-09 20:22:52 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07: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-19 19:06:56 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-23 11:05:41 -07:00
|
|
|
|
public bool IsPremiere { get; set; }
|
|
|
|
|
|
2014-02-07 15:40:03 -07:00
|
|
|
|
/// <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 15:47:16 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 15:40:03 -07:00
|
|
|
|
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 15:47:16 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 15:40:03 -07:00
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-28 12:40:38 -07:00
|
|
|
|
//[IgnoreDataMember]
|
|
|
|
|
//public override string MediaType
|
|
|
|
|
//{
|
|
|
|
|
// get
|
|
|
|
|
// {
|
|
|
|
|
// return ChannelType == ChannelType.TV ? Model.Entities.MediaType.Video : Model.Entities.MediaType.Audio;
|
|
|
|
|
// }
|
|
|
|
|
//}
|
2013-12-19 14:51:32 -07:00
|
|
|
|
|
2015-01-26 15:47:16 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-12 08:58:47 -07:00
|
|
|
|
public bool IsAiring
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
|
|
2014-01-23 11:05:41 -07:00
|
|
|
|
return now >= StartDate && now < EndDate;
|
2014-01-12 08:58:47 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 15:47:16 -07:00
|
|
|
|
[IgnoreDataMember]
|
2014-01-12 08:58:47 -07:00
|
|
|
|
public bool HasAired
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
var now = DateTime.UtcNow;
|
|
|
|
|
|
2014-01-23 11:05:41 -07:00
|
|
|
|
return now >= EndDate;
|
2014-01-12 08:58:47 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 14:51:32 -07:00
|
|
|
|
public override string GetClientTypeName()
|
|
|
|
|
{
|
|
|
|
|
return "Program";
|
|
|
|
|
}
|
2014-02-08 21:52:52 -07:00
|
|
|
|
|
2015-11-06 08:02:22 -07:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
2014-02-21 08:24:29 -07:00
|
|
|
|
{
|
2015-11-06 08:02:22 -07:00
|
|
|
|
return UnratedItem.LiveTvProgram;
|
2014-02-21 08:24:29 -07:00
|
|
|
|
}
|
2015-01-12 20:46:44 -07:00
|
|
|
|
|
|
|
|
|
protected override string GetInternalMetadataPath(string basePath)
|
|
|
|
|
{
|
|
|
|
|
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"));
|
|
|
|
|
}
|
2015-02-05 22:39:07 -07:00
|
|
|
|
|
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-03-14 13:00:32 -07: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 12:42:24 -07:00
|
|
|
|
|
2015-09-19 19:06:56 -07:00
|
|
|
|
[IgnoreDataMember]
|
2015-07-28 12:42:24 -07:00
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// Optimization
|
|
|
|
|
if (IsNews || IsSports)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.SupportsPeople;
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-29 06:28:05 -07:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsAncestors
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-28 23:03:09 -07: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 14:51:32 -07:00
|
|
|
|
}
|
|
|
|
|
}
|