jellyfin/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs

162 lines
5 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
2019-10-15 17:49:49 +02:00
using System.Text.Json.Serialization;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Enums;
2021-12-20 13:31:07 +01:00
using Jellyfin.Extensions;
using MediaBrowser.Controller.Entities;
2018-12-28 00:27:57 +01:00
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.MediaInfo;
namespace MediaBrowser.Controller.LiveTv
{
public class LiveTvChannel : BaseItem, IHasMediaSources, IHasProgramAttributes
{
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool SupportsPositionTicksResume => false;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override SourceType SourceType => SourceType.LiveTV;
2018-12-28 00:27:57 +01:00
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override bool EnableRememberingTrackSelections => false;
2018-12-28 00:27:57 +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; }
2019-10-15 17:49:49 +02:00
[JsonIgnore]
public override LocationType LocationType => LocationType.Remote;
2018-12-28 00:27:57 +01:00
[JsonIgnore]
public override MediaType MediaType => ChannelType == ChannelType.Radio ? MediaType.Audio : MediaType.Video;
[JsonIgnore]
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>
[JsonIgnore]
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>
[JsonIgnore]
public bool IsSeries { 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>
[JsonIgnore]
public bool IsNews { get; set; }
/// <summary>
/// Gets a value indicating whether this instance is kids.
/// </summary>
/// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value>
[JsonIgnore]
2021-12-20 13:31:07 +01:00
public bool IsKids => Tags.Contains("Kids", StringComparison.OrdinalIgnoreCase);
[JsonIgnore]
public bool IsRepeat { get; set; }
/// <summary>
/// Gets or sets the episode title.
/// </summary>
/// <value>The episode title.</value>
[JsonIgnore]
public string EpisodeTitle { get; set; }
public override List<string> GetUserDataKeys()
{
var list = base.GetUserDataKeys();
if (!ConfigurationManager.Configuration.DisableLiveTvChannelUserDataName)
{
list.Insert(0, GetClientTypeName() + "-" + Name);
}
return list;
}
public override UnratedItem GetBlockUnratedType()
{
return UnratedItem.LiveTvChannel;
}
2018-12-28 00:27:57 +01:00
protected override string CreateSortName()
{
if (double.TryParse(Number, CultureInfo.InvariantCulture, out double number))
2018-12-28 00:27:57 +01:00
{
return string.Format(CultureInfo.InvariantCulture, "{0:00000.0}", number) + "-" + (Name ?? string.Empty);
2018-12-28 00:27:57 +01:00
}
return (Number ?? string.Empty) + "-" + (Name ?? string.Empty);
}
public override string GetClientTypeName()
{
return "TvChannel";
}
public IEnumerable<BaseItem> GetTaggedItems()
=> Enumerable.Empty<BaseItem>();
2018-12-28 00:27:57 +01:00
public override List<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
{
var list = new List<MediaSourceInfo>();
var info = new MediaSourceInfo
{
Id = Id.ToString("N", CultureInfo.InvariantCulture),
2018-12-28 00:27:57 +01:00
Protocol = PathProtocol ?? MediaProtocol.File,
2022-01-22 15:40:05 +01:00
MediaStreams = Array.Empty<MediaStream>(),
2018-12-28 00:27:57 +01:00
Name = Name,
Path = Path,
RunTimeTicks = RunTimeTicks,
Type = MediaSourceType.Placeholder,
2022-12-05 15:00:20 +01:00
IsInfiniteStream = RunTimeTicks is null
2018-12-28 00:27:57 +01:00
};
list.Add(info);
return list;
}
public override List<MediaStream> GetMediaStreams()
{
return new List<MediaStream>();
}
protected override string GetInternalMetadataPath(string basePath)
{
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture), "metadata");
2018-12-28 00:27:57 +01:00
}
public override bool CanDelete()
{
return false;
}
}
}