2015-02-06 05:39:07 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-21 15:24:29 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-06-17 16:03:14 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
2014-06-28 19:35:30 +00:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
using System.Collections.Generic;
|
2016-10-12 18:23:09 +00:00
|
|
|
|
using System.Globalization;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
{
|
2016-09-29 12:55:49 +00:00
|
|
|
|
public class LiveTvChannel : BaseItem, IHasMediaSources, IHasProgramAttributes
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
2016-04-30 23:05:21 +00:00
|
|
|
|
public override List<string> GetUserDataKeys()
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
2016-04-30 23:05:21 +00:00
|
|
|
|
var list = base.GetUserDataKeys();
|
|
|
|
|
|
2017-04-22 19:32:24 +00:00
|
|
|
|
if (!ConfigurationManager.Configuration.DisableLiveTvChannelUserDataName)
|
|
|
|
|
{
|
|
|
|
|
list.Insert(0, GetClientTypeName() + "-" + Name);
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-30 23:05:21 +00:00
|
|
|
|
return list;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-06 15:02:22 +00:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
2014-02-21 15:24:29 +00:00
|
|
|
|
{
|
2015-11-06 15:02:22 +00:00
|
|
|
|
return UnratedItem.LiveTvChannel;
|
2014-02-21 15:24:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
/// <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 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-12 05:49:19 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPositionTicksResume
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 05:04:38 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override SourceType SourceType
|
|
|
|
|
{
|
|
|
|
|
get { return SourceType.LiveTV; }
|
|
|
|
|
set { }
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-27 18:44:08 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool EnableRememberingTrackSelections
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-23 18:05:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the number.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The number.</value>
|
|
|
|
|
public string Number { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type of the channel.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the channel.</value>
|
2014-06-01 04:11:04 +00:00
|
|
|
|
public ChannelType ChannelType { get; set; }
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
2015-10-04 18:20:56 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-03-29 18:16:40 +00:00
|
|
|
|
public override LocationType LocationType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// TODO: This should be removed
|
|
|
|
|
return LocationType.Remote;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-30 00:44:48 +00:00
|
|
|
|
protected override string CreateSortNameInternal()
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
2014-01-23 18:05:41 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(Number))
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
2016-10-17 16:35:29 +00:00
|
|
|
|
double number = 0;
|
|
|
|
|
|
|
|
|
|
if (double.TryParse(Number, NumberStyles.Any, CultureInfo.InvariantCulture, out number))
|
|
|
|
|
{
|
2017-03-02 19:05:43 +00:00
|
|
|
|
return string.Format("{0:00000.0}", number) + "-" + (Name ?? string.Empty);
|
2016-10-17 16:35:29 +00:00
|
|
|
|
}
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-31 19:21:32 +00:00
|
|
|
|
return (Number ?? string.Empty) + "-" + (Name ?? string.Empty);
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-19 21:51:32 +00:00
|
|
|
|
public override string MediaType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-06-01 04:11:04 +00:00
|
|
|
|
return ChannelType == ChannelType.Radio ? Model.Entities.MediaType.Audio : Model.Entities.MediaType.Video;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string GetClientTypeName()
|
|
|
|
|
{
|
2014-03-18 01:45:41 +00:00
|
|
|
|
return "TvChannel";
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
2014-03-09 22:14:44 +00:00
|
|
|
|
|
|
|
|
|
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
|
|
|
|
|
{
|
|
|
|
|
return new List<BaseItem>();
|
|
|
|
|
}
|
2014-06-17 01:56:23 +00:00
|
|
|
|
|
2014-06-17 16:03:14 +00:00
|
|
|
|
public IEnumerable<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
|
2014-06-17 01:56:23 +00:00
|
|
|
|
{
|
2014-06-17 16:03:14 +00:00
|
|
|
|
var list = new List<MediaSourceInfo>();
|
|
|
|
|
|
|
|
|
|
var locationType = LocationType;
|
|
|
|
|
|
|
|
|
|
var info = new MediaSourceInfo
|
|
|
|
|
{
|
|
|
|
|
Id = Id.ToString("N"),
|
|
|
|
|
Protocol = locationType == LocationType.Remote ? MediaProtocol.Http : MediaProtocol.File,
|
|
|
|
|
MediaStreams = new List<MediaStream>(),
|
|
|
|
|
Name = Name,
|
|
|
|
|
Path = Path,
|
|
|
|
|
RunTimeTicks = RunTimeTicks,
|
2015-03-28 20:22:27 +00:00
|
|
|
|
Type = MediaSourceType.Placeholder
|
2014-06-17 16:03:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
list.Add(info);
|
|
|
|
|
|
|
|
|
|
return list;
|
2014-06-17 01:56:23 +00:00
|
|
|
|
}
|
2015-01-13 03:46:44 +00:00
|
|
|
|
|
|
|
|
|
protected override string GetInternalMetadataPath(string basePath)
|
|
|
|
|
{
|
|
|
|
|
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"), "metadata");
|
|
|
|
|
}
|
2015-02-06 05:39:07 +00:00
|
|
|
|
|
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2016-09-29 12:55:49 +00:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
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>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
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>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
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>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
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>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
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>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsKids { get; set; }
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsPremiere { get; set; }
|
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public bool IsRepeat { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the episode title.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The episode title.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public string EpisodeTitle { get; set; }
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|