jellyfin/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs

206 lines
5.9 KiB
C#
Raw Normal View History

2015-02-06 06:39:07 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Configuration;
2014-06-17 18:03:14 +02:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
2013-12-19 22:51:32 +01:00
using MediaBrowser.Model.LiveTv;
2014-06-28 21:35:30 +02:00
using MediaBrowser.Model.MediaInfo;
2013-12-19 22:51:32 +01:00
using System.Collections.Generic;
2016-10-12 20:23:09 +02:00
using System.Globalization;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Serialization;
2013-12-19 22:51:32 +01:00
namespace MediaBrowser.Controller.LiveTv
{
2016-09-29 14:55:49 +02:00
public class LiveTvChannel : BaseItem, IHasMediaSources, 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();
list.Insert(0, GetClientTypeName() + "-" + Name);
return list;
2013-12-19 22:51:32 +01:00
}
2015-11-06 16:02:22 +01:00
public override UnratedItem GetBlockUnratedType()
{
2015-11-06 16:02:22 +01:00
return UnratedItem.LiveTvChannel;
}
/// <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;
}
}
2016-12-12 06:49:19 +01:00
[IgnoreDataMember]
public override bool SupportsPositionTicksResume
{
get
{
return false;
}
}
2016-03-19 06:04:38 +01:00
[IgnoreDataMember]
public override SourceType SourceType
{
get { return SourceType.LiveTV; }
set { }
}
[IgnoreDataMember]
public override bool EnableRememberingTrackSelections
{
get
{
return false;
}
}
2014-01-23 19:05:41 +01: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>
public ChannelType ChannelType { get; set; }
2013-12-19 22:51:32 +01:00
2015-10-04 20:20:56 +02:00
[IgnoreDataMember]
2015-03-29 20:16:40 +02:00
public override LocationType LocationType
{
get
{
// TODO: This should be removed
return LocationType.Remote;
}
}
2013-12-19 22:51:32 +01:00
protected override string CreateSortName()
{
2014-01-23 19:05:41 +01:00
if (!string.IsNullOrEmpty(Number))
2013-12-19 22:51:32 +01:00
{
2016-10-17 18:35:29 +02:00
double number = 0;
if (double.TryParse(Number, NumberStyles.Any, CultureInfo.InvariantCulture, out number))
{
return number.ToString("00000-") + (Name ?? string.Empty);
}
2013-12-19 22:51:32 +01:00
}
2016-10-17 18:35:29 +02:00
return Number + "-" + (Name ?? string.Empty);
2013-12-19 22:51:32 +01:00
}
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
2013-12-19 22:51:32 +01:00
public override string MediaType
{
get
{
return ChannelType == ChannelType.Radio ? Model.Entities.MediaType.Audio : Model.Entities.MediaType.Video;
2013-12-19 22:51:32 +01:00
}
}
public override string GetClientTypeName()
{
2014-03-18 02:45:41 +01:00
return "TvChannel";
2013-12-19 22:51:32 +01:00
}
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
{
return new List<BaseItem>();
}
2014-06-17 18:03:14 +02:00
public IEnumerable<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
{
2014-06-17 18:03:14 +02: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 21:22:27 +01:00
Type = MediaSourceType.Placeholder
2014-06-17 18:03:14 +02:00
};
list.Add(info);
return list;
}
protected override string GetInternalMetadataPath(string basePath)
{
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"), "metadata");
}
2015-02-06 06:39:07 +01:00
public override bool CanDelete()
{
return false;
}
2016-09-29 14:55:49 +02: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 22:51:32 +01:00
}
}