| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591, SA1306 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.Linq; |
| | 9 | | using System.Text.Json.Serialization; |
| | 10 | | using Jellyfin.Data.Enums; |
| | 11 | | using Jellyfin.Extensions; |
| | 12 | | using MediaBrowser.Common.Configuration; |
| | 13 | | using MediaBrowser.Controller.Entities; |
| | 14 | | using MediaBrowser.Controller.Providers; |
| | 15 | | using MediaBrowser.Model.Entities; |
| | 16 | | using MediaBrowser.Model.LiveTv; |
| | 17 | | using MediaBrowser.Model.Providers; |
| | 18 | |
|
| | 19 | | namespace MediaBrowser.Controller.LiveTv |
| | 20 | | { |
| | 21 | | [Common.RequiresSourceSerialisation] |
| | 22 | | public class LiveTvProgram : BaseItem, IHasLookupInfo<ItemLookupInfo>, IHasStartDate, IHasProgramAttributes |
| | 23 | | { |
| | 24 | | private const string EmbyServiceName = "Emby"; |
| | 25 | |
|
| 1 | 26 | | public LiveTvProgram() |
| | 27 | | { |
| 1 | 28 | | IsVirtualItem = true; |
| 1 | 29 | | } |
| | 30 | |
|
| | 31 | | public string SeriesName { get; set; } |
| | 32 | |
|
| | 33 | | [JsonIgnore] |
| 0 | 34 | | public override SourceType SourceType => SourceType.LiveTV; |
| | 35 | |
|
| | 36 | | /// <summary> |
| | 37 | | /// Gets or sets start date of the program, in UTC. |
| | 38 | | /// </summary> |
| | 39 | | [JsonIgnore] |
| | 40 | | public DateTime StartDate { get; set; } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Gets or sets a value indicating whether this instance is repeat. |
| | 44 | | /// </summary> |
| | 45 | | /// <value><c>true</c> if this instance is repeat; otherwise, <c>false</c>.</value> |
| | 46 | | [JsonIgnore] |
| | 47 | | public bool IsRepeat { get; set; } |
| | 48 | |
|
| | 49 | | /// <summary> |
| | 50 | | /// Gets or sets the episode title. |
| | 51 | | /// </summary> |
| | 52 | | /// <value>The episode title.</value> |
| | 53 | | [JsonIgnore] |
| | 54 | | public string EpisodeTitle { get; set; } |
| | 55 | |
|
| | 56 | | [JsonIgnore] |
| | 57 | | public string ShowId { get; set; } |
| | 58 | |
|
| | 59 | | /// <summary> |
| | 60 | | /// Gets or sets a value indicating whether this instance is movie. |
| | 61 | | /// </summary> |
| | 62 | | /// <value><c>true</c> if this instance is movie; otherwise, <c>false</c>.</value> |
| | 63 | | [JsonIgnore] |
| | 64 | | public bool IsMovie { get; set; } |
| | 65 | |
|
| | 66 | | /// <summary> |
| | 67 | | /// Gets a value indicating whether this instance is sports. |
| | 68 | | /// </summary> |
| | 69 | | /// <value><c>true</c> if this instance is sports; otherwise, <c>false</c>.</value> |
| | 70 | | [JsonIgnore] |
| 0 | 71 | | public bool IsSports => Tags.Contains("Sports", StringComparison.OrdinalIgnoreCase); |
| | 72 | |
|
| | 73 | | /// <summary> |
| | 74 | | /// Gets or sets a value indicating whether this instance is series. |
| | 75 | | /// </summary> |
| | 76 | | /// <value><c>true</c> if this instance is series; otherwise, <c>false</c>.</value> |
| | 77 | | [JsonIgnore] |
| | 78 | | public bool IsSeries { get; set; } |
| | 79 | |
|
| | 80 | | /// <summary> |
| | 81 | | /// Gets a value indicating whether this instance is live. |
| | 82 | | /// </summary> |
| | 83 | | /// <value><c>true</c> if this instance is live; otherwise, <c>false</c>.</value> |
| | 84 | | [JsonIgnore] |
| 0 | 85 | | public bool IsLive => Tags.Contains("Live", StringComparison.OrdinalIgnoreCase); |
| | 86 | |
|
| | 87 | | /// <summary> |
| | 88 | | /// Gets a value indicating whether this instance is news. |
| | 89 | | /// </summary> |
| | 90 | | /// <value><c>true</c> if this instance is news; otherwise, <c>false</c>.</value> |
| | 91 | | [JsonIgnore] |
| 0 | 92 | | public bool IsNews => Tags.Contains("News", StringComparison.OrdinalIgnoreCase); |
| | 93 | |
|
| | 94 | | /// <summary> |
| | 95 | | /// Gets a value indicating whether this instance is kids. |
| | 96 | | /// </summary> |
| | 97 | | /// <value><c>true</c> if this instance is kids; otherwise, <c>false</c>.</value> |
| | 98 | | [JsonIgnore] |
| 0 | 99 | | public bool IsKids => Tags.Contains("Kids", StringComparison.OrdinalIgnoreCase); |
| | 100 | |
|
| | 101 | | /// <summary> |
| | 102 | | /// Gets a value indicating whether this instance is premiere. |
| | 103 | | /// </summary> |
| | 104 | | /// <value><c>true</c> if this instance is premiere; otherwise, <c>false</c>.</value> |
| | 105 | | [JsonIgnore] |
| 0 | 106 | | public bool IsPremiere => Tags.Contains("Premiere", StringComparison.OrdinalIgnoreCase); |
| | 107 | |
|
| | 108 | | /// <summary> |
| | 109 | | /// Gets the folder containing the item. |
| | 110 | | /// If the item is a folder, it returns the folder itself. |
| | 111 | | /// </summary> |
| | 112 | | /// <value>The containing folder path.</value> |
| | 113 | | [JsonIgnore] |
| 0 | 114 | | public override string ContainingFolderPath => Path; |
| | 115 | |
|
| | 116 | | // [JsonIgnore] |
| | 117 | | // public override string MediaType |
| | 118 | | // { |
| | 119 | | // get |
| | 120 | | // { |
| | 121 | | // return ChannelType == ChannelType.TV ? Model.Entities.MediaType.Video : Model.Entities.MediaType.Audio |
| | 122 | | // } |
| | 123 | | // } |
| | 124 | |
|
| | 125 | | [JsonIgnore] |
| | 126 | | public bool IsAiring |
| | 127 | | { |
| | 128 | | get |
| | 129 | | { |
| 0 | 130 | | var now = DateTime.UtcNow; |
| | 131 | |
|
| 0 | 132 | | return now >= StartDate && now < EndDate; |
| | 133 | | } |
| | 134 | | } |
| | 135 | |
|
| | 136 | | [JsonIgnore] |
| | 137 | | public bool HasAired |
| | 138 | | { |
| | 139 | | get |
| | 140 | | { |
| 0 | 141 | | var now = DateTime.UtcNow; |
| | 142 | |
|
| 0 | 143 | | return now >= EndDate; |
| | 144 | | } |
| | 145 | | } |
| | 146 | |
|
| | 147 | | [JsonIgnore] |
| | 148 | | public override bool SupportsPeople |
| | 149 | | { |
| | 150 | | get |
| | 151 | | { |
| | 152 | | // Optimization |
| 0 | 153 | | if (IsNews || IsSports) |
| | 154 | | { |
| 0 | 155 | | return false; |
| | 156 | | } |
| | 157 | |
|
| 0 | 158 | | return base.SupportsPeople; |
| | 159 | | } |
| | 160 | | } |
| | 161 | |
|
| | 162 | | [JsonIgnore] |
| 0 | 163 | | public override bool SupportsAncestors => false; |
| | 164 | |
|
| | 165 | | public override List<string> GetUserDataKeys() |
| | 166 | | { |
| 0 | 167 | | var list = base.GetUserDataKeys(); |
| | 168 | |
|
| 0 | 169 | | if (!IsSeries) |
| | 170 | | { |
| 0 | 171 | | var key = this.GetProviderId(MetadataProvider.Imdb); |
| 0 | 172 | | if (!string.IsNullOrEmpty(key)) |
| | 173 | | { |
| 0 | 174 | | list.Insert(0, key); |
| | 175 | | } |
| | 176 | |
|
| 0 | 177 | | key = this.GetProviderId(MetadataProvider.Tmdb); |
| 0 | 178 | | if (!string.IsNullOrEmpty(key)) |
| | 179 | | { |
| 0 | 180 | | list.Insert(0, key); |
| | 181 | | } |
| | 182 | | } |
| 0 | 183 | | else if (!string.IsNullOrEmpty(EpisodeTitle)) |
| | 184 | | { |
| 0 | 185 | | var name = GetClientTypeName(); |
| | 186 | |
|
| 0 | 187 | | list.Insert(0, name + "-" + Name + (EpisodeTitle ?? string.Empty)); |
| | 188 | | } |
| | 189 | |
|
| 0 | 190 | | return list; |
| | 191 | | } |
| | 192 | |
|
| | 193 | | public override double GetDefaultPrimaryImageAspectRatio() |
| | 194 | | { |
| 0 | 195 | | var serviceName = ServiceName; |
| | 196 | |
|
| 0 | 197 | | if (string.Equals(serviceName, EmbyServiceName, StringComparison.OrdinalIgnoreCase) || string.Equals(service |
| | 198 | | { |
| 0 | 199 | | return 2.0 / 3; |
| | 200 | | } |
| | 201 | |
|
| 0 | 202 | | return 16.0 / 9; |
| | 203 | | } |
| | 204 | |
|
| | 205 | | public override string GetClientTypeName() |
| | 206 | | { |
| 1 | 207 | | return "Program"; |
| | 208 | | } |
| | 209 | |
|
| | 210 | | public override UnratedItem GetBlockUnratedType() |
| | 211 | | { |
| 0 | 212 | | return UnratedItem.LiveTvProgram; |
| | 213 | | } |
| | 214 | |
|
| | 215 | | protected override string GetInternalMetadataPath(string basePath) |
| | 216 | | { |
| 0 | 217 | | return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture)); |
| | 218 | | } |
| | 219 | |
|
| | 220 | | public override bool CanDelete() |
| | 221 | | { |
| 0 | 222 | | return false; |
| | 223 | | } |
| | 224 | |
|
| | 225 | | private LiveTvOptions GetConfiguration() |
| | 226 | | { |
| 0 | 227 | | return ConfigurationManager.GetConfiguration<LiveTvOptions>("livetv"); |
| | 228 | | } |
| | 229 | |
|
| | 230 | | private ListingsProviderInfo GetListingsProviderInfo() |
| | 231 | | { |
| 0 | 232 | | if (string.Equals(ServiceName, "Emby", StringComparison.OrdinalIgnoreCase)) |
| | 233 | | { |
| 0 | 234 | | var config = GetConfiguration(); |
| | 235 | |
|
| 0 | 236 | | return config.ListingProviders.FirstOrDefault(i => !string.IsNullOrEmpty(i.MoviePrefix)); |
| | 237 | | } |
| | 238 | |
|
| 0 | 239 | | return null; |
| | 240 | | } |
| | 241 | |
|
| | 242 | | protected override string GetNameForMetadataLookup() |
| | 243 | | { |
| 0 | 244 | | var name = base.GetNameForMetadataLookup(); |
| | 245 | |
|
| 0 | 246 | | var listings = GetListingsProviderInfo(); |
| | 247 | |
|
| 0 | 248 | | if (listings is not null) |
| | 249 | | { |
| 0 | 250 | | if (!string.IsNullOrEmpty(listings.MoviePrefix) && name.StartsWith(listings.MoviePrefix, StringCompariso |
| | 251 | | { |
| 0 | 252 | | name = name.Substring(listings.MoviePrefix.Length).Trim(); |
| | 253 | | } |
| | 254 | | } |
| | 255 | |
|
| 0 | 256 | | return name; |
| | 257 | | } |
| | 258 | | } |
| | 259 | | } |