2015-02-06 00:39:07 -05:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-21 10:24:29 -05:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2014-06-17 12:03:14 -04:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-12-19 16:51:32 -05:00
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
2014-06-28 15:35:30 -04:00
|
|
|
|
using MediaBrowser.Model.MediaInfo;
|
2015-01-17 13:15:09 -05:00
|
|
|
|
using MediaBrowser.Model.Users;
|
2013-12-19 16:51:32 -05:00
|
|
|
|
using System.Collections.Generic;
|
2014-02-21 10:24:29 -05:00
|
|
|
|
using System.Linq;
|
2015-02-06 00:39:07 -05:00
|
|
|
|
using System.Runtime.Serialization;
|
2013-12-19 16:51:32 -05:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
|
{
|
2015-03-12 11:51:48 -04:00
|
|
|
|
public class LiveTvChannel : BaseItem, IHasMediaSources, ILiveTvItem
|
2013-12-19 16:51:32 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the user data key.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>System.String.</returns>
|
2015-01-24 17:33:26 -05:00
|
|
|
|
protected override string CreateUserDataKey()
|
2013-12-19 16:51:32 -05:00
|
|
|
|
{
|
|
|
|
|
|
return GetClientTypeName() + "-" + Name;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-12-20 01:06:27 -05:00
|
|
|
|
protected override bool GetBlockUnratedValue(UserPolicy config)
|
2014-02-21 10:24:29 -05:00
|
|
|
|
{
|
|
|
|
|
|
return config.BlockUnratedItems.Contains(UnratedItem.LiveTvChannel);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-02-07 17:40:03 -05: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 17:47:16 -05:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 17:40:03 -05:00
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2014-01-23 13:05:41 -05: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 00:11:04 -04:00
|
|
|
|
public ChannelType ChannelType { get; set; }
|
2013-12-19 16:51:32 -05:00
|
|
|
|
|
2015-03-12 11:51:48 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the name of the service.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The name of the service.</value>
|
2013-12-19 16:51:32 -05:00
|
|
|
|
public string ServiceName { get; set; }
|
|
|
|
|
|
|
2015-03-29 14:16:40 -04:00
|
|
|
|
public override LocationType LocationType
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
|
|
|
|
|
// TODO: This should be removed
|
|
|
|
|
|
return LocationType.Remote;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2013-12-19 16:51:32 -05:00
|
|
|
|
protected override string CreateSortName()
|
|
|
|
|
|
{
|
|
|
|
|
|
double number = 0;
|
|
|
|
|
|
|
2014-01-23 13:05:41 -05:00
|
|
|
|
if (!string.IsNullOrEmpty(Number))
|
2013-12-19 16:51:32 -05:00
|
|
|
|
{
|
2014-01-23 13:05:41 -05:00
|
|
|
|
double.TryParse(Number, out number);
|
2013-12-19 16:51:32 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return number.ToString("000-") + (Name ?? string.Empty);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2015-01-26 17:47:16 -05:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-19 16:51:32 -05:00
|
|
|
|
public override string MediaType
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
2014-06-01 00:11:04 -04:00
|
|
|
|
return ChannelType == ChannelType.Radio ? Model.Entities.MediaType.Audio : Model.Entities.MediaType.Video;
|
2013-12-19 16:51:32 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override string GetClientTypeName()
|
|
|
|
|
|
{
|
2014-03-17 21:45:41 -04:00
|
|
|
|
return "TvChannel";
|
2013-12-19 16:51:32 -05:00
|
|
|
|
}
|
2014-03-09 18:14:44 -04:00
|
|
|
|
|
|
|
|
|
|
public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems)
|
|
|
|
|
|
{
|
|
|
|
|
|
return new List<BaseItem>();
|
|
|
|
|
|
}
|
2014-06-16 21:56:23 -04:00
|
|
|
|
|
2014-06-17 12:03:14 -04:00
|
|
|
|
public IEnumerable<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
|
2014-06-16 21:56:23 -04:00
|
|
|
|
{
|
2014-06-17 12:03:14 -04: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 16:22:27 -04:00
|
|
|
|
Type = MediaSourceType.Placeholder
|
2014-06-17 12:03:14 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
list.Add(info);
|
|
|
|
|
|
|
|
|
|
|
|
return list;
|
2014-06-16 21:56:23 -04:00
|
|
|
|
}
|
2015-01-12 22:46:44 -05:00
|
|
|
|
|
|
|
|
|
|
protected override string GetInternalMetadataPath(string basePath)
|
|
|
|
|
|
{
|
|
|
|
|
|
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"), "metadata");
|
|
|
|
|
|
}
|
2015-02-06 00:39:07 -05:00
|
|
|
|
|
|
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
2013-12-19 16:51:32 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|