| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Collections.Immutable; |
| | 8 | | using System.Globalization; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Text.Json.Serialization; |
| | 11 | | using Jellyfin.Data.Enums; |
| | 12 | | using Jellyfin.Extensions; |
| | 13 | | using MediaBrowser.Controller.Entities; |
| | 14 | | using MediaBrowser.Model.Dto; |
| | 15 | | using MediaBrowser.Model.Entities; |
| | 16 | | using MediaBrowser.Model.LiveTv; |
| | 17 | | using MediaBrowser.Model.MediaInfo; |
| | 18 | |
|
| | 19 | | namespace MediaBrowser.Controller.LiveTv |
| | 20 | | { |
| | 21 | | public class LiveTvChannel : BaseItem, IHasMediaSources, IHasProgramAttributes |
| | 22 | | { |
| | 23 | | [JsonIgnore] |
| 0 | 24 | | public override bool SupportsPositionTicksResume => false; |
| | 25 | |
|
| | 26 | | [JsonIgnore] |
| 0 | 27 | | public override SourceType SourceType => SourceType.LiveTV; |
| | 28 | |
|
| | 29 | | [JsonIgnore] |
| 0 | 30 | | public override bool EnableRememberingTrackSelections => false; |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// Gets or sets the number. |
| | 34 | | /// </summary> |
| | 35 | | /// <value>The number.</value> |
| | 36 | | public string Number { get; set; } |
| | 37 | |
|
| | 38 | | /// <summary> |
| | 39 | | /// Gets or sets the type of the channel. |
| | 40 | | /// </summary> |
| | 41 | | /// <value>The type of the channel.</value> |
| | 42 | | public ChannelType ChannelType { get; set; } |
| | 43 | |
|
| | 44 | | [JsonIgnore] |
| 0 | 45 | | public override LocationType LocationType => LocationType.Remote; |
| | 46 | |
|
| | 47 | | [JsonIgnore] |
| 0 | 48 | | public override MediaType MediaType => ChannelType == ChannelType.Radio ? MediaType.Audio : MediaType.Video; |
| | 49 | |
|
| | 50 | | [JsonIgnore] |
| | 51 | | public bool IsMovie { get; set; } |
| | 52 | |
|
| | 53 | | /// <summary> |
| | 54 | | /// Gets or sets a value indicating whether this instance is sports. |
| | 55 | | /// </summary> |
| | 56 | | /// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value> |
| | 57 | | [JsonIgnore] |
| | 58 | | public bool IsSports { get; set; } |
| | 59 | |
|
| | 60 | | /// <summary> |
| | 61 | | /// Gets or sets a value indicating whether this instance is series. |
| | 62 | | /// </summary> |
| | 63 | | /// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value> |
| | 64 | | [JsonIgnore] |
| | 65 | | public bool IsSeries { get; set; } |
| | 66 | |
|
| | 67 | | /// <summary> |
| | 68 | | /// Gets or sets a value indicating whether this instance is news. |
| | 69 | | /// </summary> |
| | 70 | | /// <value><c>true</c> if this instance is news; otherwise, <c>false</c>.</value> |
| | 71 | | [JsonIgnore] |
| | 72 | | public bool IsNews { get; set; } |
| | 73 | |
|
| | 74 | | /// <summary> |
| | 75 | | /// Gets a value indicating whether this instance is kids. |
| | 76 | | /// </summary> |
| | 77 | | /// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value> |
| | 78 | | [JsonIgnore] |
| 0 | 79 | | public bool IsKids => Tags.Contains("Kids", StringComparison.OrdinalIgnoreCase); |
| | 80 | |
|
| | 81 | | [JsonIgnore] |
| | 82 | | public bool IsRepeat { get; set; } |
| | 83 | |
|
| | 84 | | /// <summary> |
| | 85 | | /// Gets or sets the episode title. |
| | 86 | | /// </summary> |
| | 87 | | /// <value>The episode title.</value> |
| | 88 | | [JsonIgnore] |
| | 89 | | public string EpisodeTitle { get; set; } |
| | 90 | |
|
| | 91 | | public override List<string> GetUserDataKeys() |
| | 92 | | { |
| 0 | 93 | | var list = base.GetUserDataKeys(); |
| | 94 | |
|
| 0 | 95 | | if (!ConfigurationManager.Configuration.DisableLiveTvChannelUserDataName) |
| | 96 | | { |
| 0 | 97 | | list.Insert(0, GetClientTypeName() + "-" + Name); |
| | 98 | | } |
| | 99 | |
|
| 0 | 100 | | return list; |
| | 101 | | } |
| | 102 | |
|
| | 103 | | public override UnratedItem GetBlockUnratedType() |
| | 104 | | { |
| 0 | 105 | | return UnratedItem.LiveTvChannel; |
| | 106 | | } |
| | 107 | |
|
| | 108 | | protected override string CreateSortName() |
| | 109 | | { |
| 0 | 110 | | if (double.TryParse(Number, CultureInfo.InvariantCulture, out double number)) |
| | 111 | | { |
| 0 | 112 | | return string.Format(CultureInfo.InvariantCulture, "{0:00000.0}", number) + "-" + (Name ?? string.Empty) |
| | 113 | | } |
| | 114 | |
|
| 0 | 115 | | return (Number ?? string.Empty) + "-" + (Name ?? string.Empty); |
| | 116 | | } |
| | 117 | |
|
| | 118 | | public override string GetClientTypeName() |
| | 119 | | { |
| 1 | 120 | | return "TvChannel"; |
| | 121 | | } |
| | 122 | |
|
| 0 | 123 | | public IEnumerable<BaseItem> GetTaggedItems() => []; |
| | 124 | |
|
| | 125 | | public override IReadOnlyList<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution) |
| | 126 | | { |
| 0 | 127 | | var info = new MediaSourceInfo |
| 0 | 128 | | { |
| 0 | 129 | | Id = Id.ToString("N", CultureInfo.InvariantCulture), |
| 0 | 130 | | Protocol = PathProtocol ?? MediaProtocol.File, |
| 0 | 131 | | MediaStreams = Array.Empty<MediaStream>(), |
| 0 | 132 | | Name = Name, |
| 0 | 133 | | Path = Path, |
| 0 | 134 | | RunTimeTicks = RunTimeTicks, |
| 0 | 135 | | Type = MediaSourceType.Placeholder, |
| 0 | 136 | | IsInfiniteStream = RunTimeTicks is null |
| 0 | 137 | | }; |
| | 138 | |
|
| 0 | 139 | | return [info]; |
| | 140 | | } |
| | 141 | |
|
| | 142 | | public override IReadOnlyList<MediaStream> GetMediaStreams() |
| | 143 | | { |
| 0 | 144 | | return []; |
| | 145 | | } |
| | 146 | |
|
| | 147 | | protected override string GetInternalMetadataPath(string basePath) |
| | 148 | | { |
| 0 | 149 | | return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture), "metadata" |
| | 150 | | } |
| | 151 | |
|
| | 152 | | public override bool CanDelete() |
| | 153 | | { |
| 0 | 154 | | return false; |
| | 155 | | } |
| | 156 | | } |
| | 157 | | } |