| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.Globalization; |
| | 8 | | using System.IO; |
| | 9 | | using System.Linq; |
| | 10 | | using System.Threading; |
| | 11 | | using System.Threading.Tasks; |
| | 12 | | using Jellyfin.Data.Enums; |
| | 13 | | using Jellyfin.Data.Events; |
| | 14 | | using Jellyfin.Database.Implementations.Enums; |
| | 15 | | using Jellyfin.Extensions; |
| | 16 | | using Jellyfin.LiveTv.Configuration; |
| | 17 | | using Jellyfin.LiveTv.Timers; |
| | 18 | | using MediaBrowser.Common.Extensions; |
| | 19 | | using MediaBrowser.Controller.Configuration; |
| | 20 | | using MediaBrowser.Controller.Dto; |
| | 21 | | using MediaBrowser.Controller.Entities; |
| | 22 | | using MediaBrowser.Controller.Library; |
| | 23 | | using MediaBrowser.Controller.LiveTv; |
| | 24 | | using MediaBrowser.Model.Dto; |
| | 25 | | using MediaBrowser.Model.LiveTv; |
| | 26 | | using Microsoft.Extensions.Logging; |
| | 27 | |
|
| | 28 | | namespace Jellyfin.LiveTv |
| | 29 | | { |
| | 30 | | public sealed class DefaultLiveTvService : ILiveTvService, ISupportsDirectStreamProvider, ISupportsNewTimerIds |
| | 31 | | { |
| | 32 | | public const string ServiceName = "Emby"; |
| | 33 | |
|
| | 34 | | private readonly ILogger<DefaultLiveTvService> _logger; |
| | 35 | | private readonly IServerConfigurationManager _config; |
| | 36 | | private readonly ITunerHostManager _tunerHostManager; |
| | 37 | | private readonly IListingsManager _listingsManager; |
| | 38 | | private readonly IRecordingsManager _recordingsManager; |
| | 39 | | private readonly ILibraryManager _libraryManager; |
| | 40 | | private readonly LiveTvDtoService _tvDtoService; |
| | 41 | | private readonly TimerManager _timerManager; |
| | 42 | | private readonly SeriesTimerManager _seriesTimerManager; |
| | 43 | |
|
| | 44 | | public DefaultLiveTvService( |
| | 45 | | ILogger<DefaultLiveTvService> logger, |
| | 46 | | IServerConfigurationManager config, |
| | 47 | | ITunerHostManager tunerHostManager, |
| | 48 | | IListingsManager listingsManager, |
| | 49 | | IRecordingsManager recordingsManager, |
| | 50 | | ILibraryManager libraryManager, |
| | 51 | | LiveTvDtoService tvDtoService, |
| | 52 | | TimerManager timerManager, |
| | 53 | | SeriesTimerManager seriesTimerManager) |
| | 54 | | { |
| 21 | 55 | | _logger = logger; |
| 21 | 56 | | _config = config; |
| 21 | 57 | | _libraryManager = libraryManager; |
| 21 | 58 | | _tunerHostManager = tunerHostManager; |
| 21 | 59 | | _listingsManager = listingsManager; |
| 21 | 60 | | _recordingsManager = recordingsManager; |
| 21 | 61 | | _tvDtoService = tvDtoService; |
| 21 | 62 | | _timerManager = timerManager; |
| 21 | 63 | | _seriesTimerManager = seriesTimerManager; |
| | 64 | |
|
| 21 | 65 | | _timerManager.TimerFired += OnTimerManagerTimerFired; |
| 21 | 66 | | } |
| | 67 | |
|
| | 68 | | public event EventHandler<GenericEventArgs<TimerInfo>> TimerCreated; |
| | 69 | |
|
| | 70 | | public event EventHandler<GenericEventArgs<string>> TimerCancelled; |
| | 71 | |
|
| | 72 | | /// <inheritdoc /> |
| 0 | 73 | | public string Name => ServiceName; |
| | 74 | |
|
| | 75 | | /// <inheritdoc /> |
| 0 | 76 | | public string HomePageUrl => "https://github.com/jellyfin/jellyfin"; |
| | 77 | |
|
| | 78 | | public async Task RefreshSeriesTimers(CancellationToken cancellationToken) |
| | 79 | | { |
| | 80 | | var seriesTimers = await GetSeriesTimersAsync(cancellationToken).ConfigureAwait(false); |
| | 81 | |
|
| | 82 | | foreach (var timer in seriesTimers) |
| | 83 | | { |
| | 84 | | UpdateTimersForSeriesTimer(timer, false, true); |
| | 85 | | } |
| | 86 | | } |
| | 87 | |
|
| | 88 | | public async Task RefreshTimers(CancellationToken cancellationToken) |
| | 89 | | { |
| | 90 | | var timers = await GetTimersAsync(cancellationToken).ConfigureAwait(false); |
| | 91 | |
|
| | 92 | | var tempChannelCache = new Dictionary<Guid, LiveTvChannel>(); |
| | 93 | |
|
| | 94 | | foreach (var timer in timers) |
| | 95 | | { |
| | 96 | | if (DateTime.UtcNow > timer.EndDate && _recordingsManager.GetActiveRecordingPath(timer.Id) is null) |
| | 97 | | { |
| | 98 | | _timerManager.Delete(timer); |
| | 99 | | continue; |
| | 100 | | } |
| | 101 | |
|
| | 102 | | if (string.IsNullOrWhiteSpace(timer.ProgramId) || string.IsNullOrWhiteSpace(timer.ChannelId)) |
| | 103 | | { |
| | 104 | | continue; |
| | 105 | | } |
| | 106 | |
|
| | 107 | | var program = GetProgramInfoFromCache(timer); |
| | 108 | | if (program is null) |
| | 109 | | { |
| | 110 | | _timerManager.Delete(timer); |
| | 111 | | continue; |
| | 112 | | } |
| | 113 | |
|
| | 114 | | CopyProgramInfoToTimerInfo(program, timer, tempChannelCache); |
| | 115 | | _timerManager.Update(timer); |
| | 116 | | } |
| | 117 | | } |
| | 118 | |
|
| | 119 | | private async Task<IEnumerable<ChannelInfo>> GetChannelsAsync(bool enableCache, CancellationToken cancellationTo |
| | 120 | | { |
| | 121 | | var channels = new List<ChannelInfo>(); |
| | 122 | |
|
| | 123 | | foreach (var hostInstance in _tunerHostManager.TunerHosts) |
| | 124 | | { |
| | 125 | | try |
| | 126 | | { |
| | 127 | | var tunerChannels = await hostInstance.GetChannels(enableCache, cancellationToken).ConfigureAwait(fa |
| | 128 | |
|
| | 129 | | channels.AddRange(tunerChannels); |
| | 130 | | } |
| | 131 | | catch (Exception ex) |
| | 132 | | { |
| | 133 | | _logger.LogError(ex, "Error getting channels"); |
| | 134 | | } |
| | 135 | | } |
| | 136 | |
|
| | 137 | | await _listingsManager.AddProviderMetadata(channels, enableCache, cancellationToken).ConfigureAwait(false); |
| | 138 | |
|
| | 139 | | return channels; |
| | 140 | | } |
| | 141 | |
|
| | 142 | | public Task<IEnumerable<ChannelInfo>> GetChannelsAsync(CancellationToken cancellationToken) |
| | 143 | | { |
| 0 | 144 | | return GetChannelsAsync(false, cancellationToken); |
| | 145 | | } |
| | 146 | |
|
| | 147 | | public Task CancelSeriesTimerAsync(string timerId, CancellationToken cancellationToken) |
| | 148 | | { |
| 0 | 149 | | var timers = _timerManager |
| 0 | 150 | | .GetAll() |
| 0 | 151 | | .Where(i => string.Equals(i.SeriesTimerId, timerId, StringComparison.OrdinalIgnoreCase)) |
| 0 | 152 | | .ToList(); |
| | 153 | |
|
| 0 | 154 | | foreach (var timer in timers) |
| | 155 | | { |
| 0 | 156 | | CancelTimerInternal(timer.Id, true, true); |
| | 157 | | } |
| | 158 | |
|
| 0 | 159 | | var remove = _seriesTimerManager.GetAll().FirstOrDefault(r => string.Equals(r.Id, timerId, StringComparison. |
| 0 | 160 | | if (remove is not null) |
| | 161 | | { |
| 0 | 162 | | _seriesTimerManager.Delete(remove); |
| | 163 | | } |
| | 164 | |
|
| 0 | 165 | | return Task.CompletedTask; |
| | 166 | | } |
| | 167 | |
|
| | 168 | | private void CancelTimerInternal(string timerId, bool isSeriesCancelled, bool isManualCancellation) |
| | 169 | | { |
| 0 | 170 | | var timer = _timerManager.GetTimer(timerId); |
| 0 | 171 | | if (timer is not null) |
| | 172 | | { |
| 0 | 173 | | var statusChanging = timer.Status != RecordingStatus.Cancelled; |
| 0 | 174 | | timer.Status = RecordingStatus.Cancelled; |
| | 175 | |
|
| 0 | 176 | | if (isManualCancellation) |
| | 177 | | { |
| 0 | 178 | | timer.IsManual = true; |
| | 179 | | } |
| | 180 | |
|
| 0 | 181 | | if (string.IsNullOrWhiteSpace(timer.SeriesTimerId) || isSeriesCancelled) |
| | 182 | | { |
| 0 | 183 | | _timerManager.Delete(timer); |
| | 184 | | } |
| | 185 | | else |
| | 186 | | { |
| 0 | 187 | | _timerManager.AddOrUpdate(timer, false); |
| | 188 | | } |
| | 189 | |
|
| 0 | 190 | | if (statusChanging && TimerCancelled is not null) |
| | 191 | | { |
| 0 | 192 | | TimerCancelled(this, new GenericEventArgs<string>(timerId)); |
| | 193 | | } |
| | 194 | | } |
| | 195 | |
|
| 0 | 196 | | _recordingsManager.CancelRecording(timerId, timer); |
| 0 | 197 | | } |
| | 198 | |
|
| | 199 | | public Task CancelTimerAsync(string timerId, CancellationToken cancellationToken) |
| | 200 | | { |
| 0 | 201 | | CancelTimerInternal(timerId, false, true); |
| 0 | 202 | | return Task.CompletedTask; |
| | 203 | | } |
| | 204 | |
|
| | 205 | | public Task CreateSeriesTimerAsync(SeriesTimerInfo info, CancellationToken cancellationToken) |
| | 206 | | { |
| 0 | 207 | | throw new NotImplementedException(); |
| | 208 | | } |
| | 209 | |
|
| | 210 | | public Task CreateTimerAsync(TimerInfo info, CancellationToken cancellationToken) |
| | 211 | | { |
| 0 | 212 | | throw new NotImplementedException(); |
| | 213 | | } |
| | 214 | |
|
| | 215 | | public Task<string> CreateTimer(TimerInfo info, CancellationToken cancellationToken) |
| | 216 | | { |
| 0 | 217 | | var existingTimer = string.IsNullOrWhiteSpace(info.ProgramId) ? |
| 0 | 218 | | null : |
| 0 | 219 | | _timerManager.GetTimerByProgramId(info.ProgramId); |
| | 220 | |
|
| 0 | 221 | | if (existingTimer is not null) |
| | 222 | | { |
| 0 | 223 | | if (existingTimer.Status == RecordingStatus.Cancelled |
| 0 | 224 | | || existingTimer.Status == RecordingStatus.Completed) |
| | 225 | | { |
| 0 | 226 | | existingTimer.Status = RecordingStatus.New; |
| 0 | 227 | | existingTimer.IsManual = true; |
| 0 | 228 | | _timerManager.Update(existingTimer); |
| 0 | 229 | | return Task.FromResult(existingTimer.Id); |
| | 230 | | } |
| | 231 | |
|
| 0 | 232 | | throw new ArgumentException("A scheduled recording already exists for this program."); |
| | 233 | | } |
| | 234 | |
|
| 0 | 235 | | info.Id = Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture); |
| | 236 | |
|
| 0 | 237 | | LiveTvProgram programInfo = null; |
| | 238 | |
|
| 0 | 239 | | if (!string.IsNullOrWhiteSpace(info.ProgramId)) |
| | 240 | | { |
| 0 | 241 | | programInfo = GetProgramInfoFromCache(info); |
| | 242 | | } |
| | 243 | |
|
| 0 | 244 | | if (programInfo is null) |
| | 245 | | { |
| 0 | 246 | | _logger.LogInformation("Unable to find program with Id {0}. Will search using start date", info.ProgramI |
| 0 | 247 | | programInfo = GetProgramInfoFromCache(info.ChannelId, info.StartDate); |
| | 248 | | } |
| | 249 | |
|
| 0 | 250 | | if (programInfo is not null) |
| | 251 | | { |
| 0 | 252 | | CopyProgramInfoToTimerInfo(programInfo, info); |
| | 253 | | } |
| | 254 | |
|
| 0 | 255 | | info.IsManual = true; |
| 0 | 256 | | _timerManager.Add(info); |
| | 257 | |
|
| 0 | 258 | | TimerCreated?.Invoke(this, new GenericEventArgs<TimerInfo>(info)); |
| | 259 | |
|
| 0 | 260 | | return Task.FromResult(info.Id); |
| | 261 | | } |
| | 262 | |
|
| | 263 | | public async Task<string> CreateSeriesTimer(SeriesTimerInfo info, CancellationToken cancellationToken) |
| | 264 | | { |
| | 265 | | info.Id = Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture); |
| | 266 | |
|
| | 267 | | // populate info.seriesID |
| | 268 | | var program = GetProgramInfoFromCache(info.ProgramId); |
| | 269 | |
|
| | 270 | | if (program is not null) |
| | 271 | | { |
| | 272 | | info.SeriesId = program.ExternalSeriesId; |
| | 273 | | } |
| | 274 | | else |
| | 275 | | { |
| | 276 | | throw new InvalidOperationException("SeriesId for program not found"); |
| | 277 | | } |
| | 278 | |
|
| | 279 | | // If any timers have already been manually created, make sure they don't get cancelled |
| | 280 | | var existingTimers = (await GetTimersAsync(CancellationToken.None).ConfigureAwait(false)) |
| | 281 | | .Where(i => |
| | 282 | | { |
| | 283 | | if (string.Equals(i.ProgramId, info.ProgramId, StringComparison.OrdinalIgnoreCase) && !string.IsNull |
| | 284 | | { |
| | 285 | | return true; |
| | 286 | | } |
| | 287 | |
|
| | 288 | | if (string.Equals(i.SeriesId, info.SeriesId, StringComparison.OrdinalIgnoreCase) && !string.IsNullOr |
| | 289 | | { |
| | 290 | | return true; |
| | 291 | | } |
| | 292 | |
|
| | 293 | | return false; |
| | 294 | | }) |
| | 295 | | .ToList(); |
| | 296 | |
|
| | 297 | | _seriesTimerManager.Add(info); |
| | 298 | |
|
| | 299 | | foreach (var timer in existingTimers) |
| | 300 | | { |
| | 301 | | timer.SeriesTimerId = info.Id; |
| | 302 | | timer.IsManual = true; |
| | 303 | |
|
| | 304 | | _timerManager.AddOrUpdate(timer, false); |
| | 305 | | } |
| | 306 | |
|
| | 307 | | UpdateTimersForSeriesTimer(info, true, false); |
| | 308 | |
|
| | 309 | | return info.Id; |
| | 310 | | } |
| | 311 | |
|
| | 312 | | public Task UpdateSeriesTimerAsync(SeriesTimerInfo info, CancellationToken cancellationToken) |
| | 313 | | { |
| 0 | 314 | | var instance = _seriesTimerManager.GetAll().FirstOrDefault(i => string.Equals(i.Id, info.Id, StringCompariso |
| | 315 | |
|
| 0 | 316 | | if (instance is not null) |
| | 317 | | { |
| 0 | 318 | | instance.ChannelId = info.ChannelId; |
| 0 | 319 | | instance.Days = info.Days; |
| 0 | 320 | | instance.EndDate = info.EndDate; |
| 0 | 321 | | instance.IsPostPaddingRequired = info.IsPostPaddingRequired; |
| 0 | 322 | | instance.IsPrePaddingRequired = info.IsPrePaddingRequired; |
| 0 | 323 | | instance.PostPaddingSeconds = info.PostPaddingSeconds; |
| 0 | 324 | | instance.PrePaddingSeconds = info.PrePaddingSeconds; |
| 0 | 325 | | instance.Priority = info.Priority; |
| 0 | 326 | | instance.RecordAnyChannel = info.RecordAnyChannel; |
| 0 | 327 | | instance.RecordAnyTime = info.RecordAnyTime; |
| 0 | 328 | | instance.RecordNewOnly = info.RecordNewOnly; |
| 0 | 329 | | instance.SkipEpisodesInLibrary = info.SkipEpisodesInLibrary; |
| 0 | 330 | | instance.KeepUpTo = info.KeepUpTo; |
| 0 | 331 | | instance.KeepUntil = info.KeepUntil; |
| 0 | 332 | | instance.StartDate = info.StartDate; |
| | 333 | |
|
| 0 | 334 | | _seriesTimerManager.Update(instance); |
| | 335 | |
|
| 0 | 336 | | UpdateTimersForSeriesTimer(instance, true, true); |
| | 337 | | } |
| | 338 | |
|
| 0 | 339 | | return Task.CompletedTask; |
| | 340 | | } |
| | 341 | |
|
| | 342 | | public Task UpdateTimerAsync(TimerInfo updatedTimer, CancellationToken cancellationToken) |
| | 343 | | { |
| 0 | 344 | | var existingTimer = _timerManager.GetTimer(updatedTimer.Id); |
| | 345 | |
|
| 0 | 346 | | if (existingTimer is null) |
| | 347 | | { |
| 0 | 348 | | throw new ResourceNotFoundException(); |
| | 349 | | } |
| | 350 | |
|
| | 351 | | // Only update if not currently active |
| 0 | 352 | | if (_recordingsManager.GetActiveRecordingPath(updatedTimer.Id) is null) |
| | 353 | | { |
| 0 | 354 | | existingTimer.PrePaddingSeconds = updatedTimer.PrePaddingSeconds; |
| 0 | 355 | | existingTimer.PostPaddingSeconds = updatedTimer.PostPaddingSeconds; |
| 0 | 356 | | existingTimer.IsPostPaddingRequired = updatedTimer.IsPostPaddingRequired; |
| 0 | 357 | | existingTimer.IsPrePaddingRequired = updatedTimer.IsPrePaddingRequired; |
| | 358 | |
|
| 0 | 359 | | _timerManager.Update(existingTimer); |
| | 360 | | } |
| | 361 | |
|
| 0 | 362 | | return Task.CompletedTask; |
| | 363 | | } |
| | 364 | |
|
| | 365 | | private static void UpdateExistingTimerWithNewMetadata(TimerInfo existingTimer, TimerInfo updatedTimer) |
| | 366 | | { |
| | 367 | | // Update the program info but retain the status |
| 0 | 368 | | existingTimer.ChannelId = updatedTimer.ChannelId; |
| 0 | 369 | | existingTimer.CommunityRating = updatedTimer.CommunityRating; |
| 0 | 370 | | existingTimer.EndDate = updatedTimer.EndDate; |
| 0 | 371 | | existingTimer.EpisodeNumber = updatedTimer.EpisodeNumber; |
| 0 | 372 | | existingTimer.EpisodeTitle = updatedTimer.EpisodeTitle; |
| 0 | 373 | | existingTimer.Genres = updatedTimer.Genres; |
| 0 | 374 | | existingTimer.IsMovie = updatedTimer.IsMovie; |
| 0 | 375 | | existingTimer.IsSeries = updatedTimer.IsSeries; |
| 0 | 376 | | existingTimer.Tags = updatedTimer.Tags; |
| 0 | 377 | | existingTimer.IsProgramSeries = updatedTimer.IsProgramSeries; |
| 0 | 378 | | existingTimer.IsRepeat = updatedTimer.IsRepeat; |
| 0 | 379 | | existingTimer.Name = updatedTimer.Name; |
| 0 | 380 | | existingTimer.OfficialRating = updatedTimer.OfficialRating; |
| 0 | 381 | | existingTimer.OriginalAirDate = updatedTimer.OriginalAirDate; |
| 0 | 382 | | existingTimer.Overview = updatedTimer.Overview; |
| 0 | 383 | | existingTimer.ProductionYear = updatedTimer.ProductionYear; |
| 0 | 384 | | existingTimer.ProgramId = updatedTimer.ProgramId; |
| 0 | 385 | | existingTimer.SeasonNumber = updatedTimer.SeasonNumber; |
| 0 | 386 | | existingTimer.StartDate = updatedTimer.StartDate; |
| 0 | 387 | | existingTimer.ShowId = updatedTimer.ShowId; |
| 0 | 388 | | existingTimer.ProviderIds = updatedTimer.ProviderIds; |
| 0 | 389 | | existingTimer.SeriesProviderIds = updatedTimer.SeriesProviderIds; |
| 0 | 390 | | } |
| | 391 | |
|
| | 392 | | public Task<IEnumerable<TimerInfo>> GetTimersAsync(CancellationToken cancellationToken) |
| | 393 | | { |
| 0 | 394 | | var excludeStatues = new List<RecordingStatus> |
| 0 | 395 | | { |
| 0 | 396 | | RecordingStatus.Completed |
| 0 | 397 | | }; |
| | 398 | |
|
| 0 | 399 | | var timers = _timerManager.GetAll() |
| 0 | 400 | | .Where(i => !excludeStatues.Contains(i.Status)); |
| | 401 | |
|
| 0 | 402 | | return Task.FromResult(timers); |
| | 403 | | } |
| | 404 | |
|
| | 405 | | public Task<SeriesTimerInfo> GetNewTimerDefaultsAsync(CancellationToken cancellationToken, ProgramInfo program = |
| | 406 | | { |
| 0 | 407 | | var config = _config.GetLiveTvConfiguration(); |
| | 408 | |
|
| 0 | 409 | | var defaults = new SeriesTimerInfo() |
| 0 | 410 | | { |
| 0 | 411 | | PostPaddingSeconds = Math.Max(config.PostPaddingSeconds, 0), |
| 0 | 412 | | PrePaddingSeconds = Math.Max(config.PrePaddingSeconds, 0), |
| 0 | 413 | | RecordAnyChannel = false, |
| 0 | 414 | | RecordAnyTime = true, |
| 0 | 415 | | RecordNewOnly = true, |
| 0 | 416 | |
|
| 0 | 417 | | Days = new List<DayOfWeek> |
| 0 | 418 | | { |
| 0 | 419 | | DayOfWeek.Sunday, |
| 0 | 420 | | DayOfWeek.Monday, |
| 0 | 421 | | DayOfWeek.Tuesday, |
| 0 | 422 | | DayOfWeek.Wednesday, |
| 0 | 423 | | DayOfWeek.Thursday, |
| 0 | 424 | | DayOfWeek.Friday, |
| 0 | 425 | | DayOfWeek.Saturday |
| 0 | 426 | | } |
| 0 | 427 | | }; |
| | 428 | |
|
| 0 | 429 | | if (program is not null) |
| | 430 | | { |
| 0 | 431 | | defaults.SeriesId = program.SeriesId; |
| 0 | 432 | | defaults.ProgramId = program.Id; |
| 0 | 433 | | defaults.RecordNewOnly = !program.IsRepeat; |
| 0 | 434 | | defaults.Name = program.Name; |
| | 435 | | } |
| | 436 | |
|
| 0 | 437 | | defaults.SkipEpisodesInLibrary = defaults.RecordNewOnly; |
| 0 | 438 | | defaults.KeepUntil = KeepUntil.UntilDeleted; |
| | 439 | |
|
| 0 | 440 | | return Task.FromResult(defaults); |
| | 441 | | } |
| | 442 | |
|
| | 443 | | public Task<IEnumerable<SeriesTimerInfo>> GetSeriesTimersAsync(CancellationToken cancellationToken) |
| | 444 | | { |
| 0 | 445 | | return Task.FromResult((IEnumerable<SeriesTimerInfo>)_seriesTimerManager.GetAll()); |
| | 446 | | } |
| | 447 | |
|
| | 448 | | public async Task<IEnumerable<ProgramInfo>> GetProgramsAsync(string channelId, DateTime startDateUtc, DateTime e |
| | 449 | | { |
| | 450 | | var channels = await GetChannelsAsync(true, cancellationToken).ConfigureAwait(false); |
| | 451 | | var channel = channels.First(i => string.Equals(i.Id, channelId, StringComparison.OrdinalIgnoreCase)); |
| | 452 | |
|
| | 453 | | return await _listingsManager.GetProgramsAsync(channel, startDateUtc, endDateUtc, cancellationToken) |
| | 454 | | .ConfigureAwait(false); |
| | 455 | | } |
| | 456 | |
|
| | 457 | | public Task<MediaSourceInfo> GetChannelStream(string channelId, string streamId, CancellationToken cancellationT |
| | 458 | | { |
| 0 | 459 | | throw new NotImplementedException(); |
| | 460 | | } |
| | 461 | |
|
| | 462 | | public async Task<ILiveStream> GetChannelStreamWithDirectStreamProvider(string channelId, string streamId, List< |
| | 463 | | { |
| | 464 | | _logger.LogInformation("Streaming Channel {Id}", channelId); |
| | 465 | |
|
| | 466 | | var result = string.IsNullOrEmpty(streamId) ? |
| | 467 | | null : |
| | 468 | | currentLiveStreams.FirstOrDefault(i => string.Equals(i.OriginalStreamId, streamId, StringComparison.Ordi |
| | 469 | |
|
| | 470 | | if (result is not null && result.EnableStreamSharing) |
| | 471 | | { |
| | 472 | | result.ConsumerCount++; |
| | 473 | |
|
| | 474 | | _logger.LogInformation("Live stream {0} consumer count is now {1}", streamId, result.ConsumerCount); |
| | 475 | |
|
| | 476 | | return result; |
| | 477 | | } |
| | 478 | |
|
| | 479 | | foreach (var hostInstance in _tunerHostManager.TunerHosts) |
| | 480 | | { |
| | 481 | | try |
| | 482 | | { |
| | 483 | | result = await hostInstance.GetChannelStream(channelId, streamId, currentLiveStreams, cancellationTo |
| | 484 | |
|
| | 485 | | var openedMediaSource = result.MediaSource; |
| | 486 | |
|
| | 487 | | result.OriginalStreamId = streamId; |
| | 488 | |
|
| | 489 | | _logger.LogInformation("Returning mediasource streamId {0}, mediaSource.Id {1}, mediaSource.LiveStre |
| | 490 | |
|
| | 491 | | return result; |
| | 492 | | } |
| | 493 | | catch (FileNotFoundException) |
| | 494 | | { |
| | 495 | | } |
| | 496 | | catch (OperationCanceledException) |
| | 497 | | { |
| | 498 | | } |
| | 499 | | } |
| | 500 | |
|
| | 501 | | throw new ResourceNotFoundException("Tuner not found."); |
| | 502 | | } |
| | 503 | |
|
| | 504 | | public async Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(string channelId, CancellationToken cancel |
| | 505 | | { |
| | 506 | | if (string.IsNullOrWhiteSpace(channelId)) |
| | 507 | | { |
| | 508 | | throw new ArgumentNullException(nameof(channelId)); |
| | 509 | | } |
| | 510 | |
|
| | 511 | | foreach (var hostInstance in _tunerHostManager.TunerHosts) |
| | 512 | | { |
| | 513 | | try |
| | 514 | | { |
| | 515 | | var sources = await hostInstance.GetChannelStreamMediaSources(channelId, cancellationToken).Configur |
| | 516 | |
|
| | 517 | | if (sources.Count > 0) |
| | 518 | | { |
| | 519 | | return sources; |
| | 520 | | } |
| | 521 | | } |
| | 522 | | catch (NotImplementedException) |
| | 523 | | { |
| | 524 | | } |
| | 525 | | } |
| | 526 | |
|
| | 527 | | throw new NotImplementedException(); |
| | 528 | | } |
| | 529 | |
|
| | 530 | | public Task CloseLiveStream(string id, CancellationToken cancellationToken) |
| | 531 | | { |
| 0 | 532 | | return Task.CompletedTask; |
| | 533 | | } |
| | 534 | |
|
| | 535 | | public Task ResetTuner(string id, CancellationToken cancellationToken) |
| | 536 | | { |
| 0 | 537 | | return Task.CompletedTask; |
| | 538 | | } |
| | 539 | |
|
| | 540 | | private async void OnTimerManagerTimerFired(object sender, GenericEventArgs<TimerInfo> e) |
| | 541 | | { |
| | 542 | | var timer = e.Argument; |
| | 543 | |
|
| | 544 | | _logger.LogInformation("Recording timer fired for {0}.", timer.Name); |
| | 545 | |
|
| | 546 | | try |
| | 547 | | { |
| | 548 | | var recordingEndDate = timer.EndDate.AddSeconds(timer.PostPaddingSeconds); |
| | 549 | | if (recordingEndDate <= DateTime.UtcNow) |
| | 550 | | { |
| | 551 | | _logger.LogWarning("Recording timer fired for updatedTimer {0}, Id: {1}, but the program has already |
| | 552 | | _timerManager.Delete(timer); |
| | 553 | | return; |
| | 554 | | } |
| | 555 | |
|
| | 556 | | var activeRecordingInfo = new ActiveRecordingInfo |
| | 557 | | { |
| | 558 | | CancellationTokenSource = new CancellationTokenSource(), |
| | 559 | | Timer = timer, |
| | 560 | | Id = timer.Id |
| | 561 | | }; |
| | 562 | |
|
| | 563 | | if (_recordingsManager.GetActiveRecordingPath(timer.Id) is not null) |
| | 564 | | { |
| | 565 | | _logger.LogInformation("Skipping RecordStream because it's already in progress."); |
| | 566 | | return; |
| | 567 | | } |
| | 568 | |
|
| | 569 | | LiveTvProgram programInfo = null; |
| | 570 | | if (!string.IsNullOrWhiteSpace(timer.ProgramId)) |
| | 571 | | { |
| | 572 | | programInfo = GetProgramInfoFromCache(timer); |
| | 573 | | } |
| | 574 | |
|
| | 575 | | if (programInfo is null) |
| | 576 | | { |
| | 577 | | _logger.LogInformation("Unable to find program with Id {0}. Will search using start date", timer.Pro |
| | 578 | | programInfo = GetProgramInfoFromCache(timer.ChannelId, timer.StartDate); |
| | 579 | | } |
| | 580 | |
|
| | 581 | | if (programInfo is not null) |
| | 582 | | { |
| | 583 | | CopyProgramInfoToTimerInfo(programInfo, timer); |
| | 584 | | } |
| | 585 | |
|
| | 586 | | await _recordingsManager.RecordStream(activeRecordingInfo, GetLiveTvChannel(timer), recordingEndDate) |
| | 587 | | .ConfigureAwait(false); |
| | 588 | | } |
| | 589 | | catch (OperationCanceledException) |
| | 590 | | { |
| | 591 | | } |
| | 592 | | catch (Exception ex) |
| | 593 | | { |
| | 594 | | _logger.LogError(ex, "Error recording stream"); |
| | 595 | | } |
| | 596 | | } |
| | 597 | |
|
| | 598 | | private BaseItem GetLiveTvChannel(TimerInfo timer) |
| | 599 | | { |
| 0 | 600 | | var internalChannelId = _tvDtoService.GetInternalChannelId(Name, timer.ChannelId); |
| 0 | 601 | | return _libraryManager.GetItemById(internalChannelId); |
| | 602 | | } |
| | 603 | |
|
| | 604 | | private LiveTvProgram GetProgramInfoFromCache(string programId) |
| | 605 | | { |
| 0 | 606 | | var query = new InternalItemsQuery |
| 0 | 607 | | { |
| 0 | 608 | | ItemIds = [_tvDtoService.GetInternalProgramId(programId)], |
| 0 | 609 | | Limit = 1, |
| 0 | 610 | | DtoOptions = new DtoOptions() |
| 0 | 611 | | }; |
| | 612 | |
|
| 0 | 613 | | return _libraryManager.GetItemList(query).Cast<LiveTvProgram>().FirstOrDefault(); |
| | 614 | | } |
| | 615 | |
|
| | 616 | | private LiveTvProgram GetProgramInfoFromCache(TimerInfo timer) |
| | 617 | | { |
| 0 | 618 | | return GetProgramInfoFromCache(timer.ProgramId); |
| | 619 | | } |
| | 620 | |
|
| | 621 | | private LiveTvProgram GetProgramInfoFromCache(string channelId, DateTime startDateUtc) |
| | 622 | | { |
| 0 | 623 | | var query = new InternalItemsQuery |
| 0 | 624 | | { |
| 0 | 625 | | IncludeItemTypes = new[] { BaseItemKind.LiveTvProgram }, |
| 0 | 626 | | Limit = 1, |
| 0 | 627 | | DtoOptions = new DtoOptions(true) |
| 0 | 628 | | { |
| 0 | 629 | | EnableImages = false |
| 0 | 630 | | }, |
| 0 | 631 | | MinStartDate = startDateUtc.AddMinutes(-3), |
| 0 | 632 | | MaxStartDate = startDateUtc.AddMinutes(3), |
| 0 | 633 | | OrderBy = new[] { (ItemSortBy.StartDate, SortOrder.Ascending) } |
| 0 | 634 | | }; |
| | 635 | |
|
| 0 | 636 | | if (!string.IsNullOrWhiteSpace(channelId)) |
| | 637 | | { |
| 0 | 638 | | query.ChannelIds = [_tvDtoService.GetInternalChannelId(Name, channelId)]; |
| | 639 | | } |
| | 640 | |
|
| 0 | 641 | | return _libraryManager.GetItemList(query).Cast<LiveTvProgram>().FirstOrDefault(); |
| | 642 | | } |
| | 643 | |
|
| | 644 | | private bool ShouldCancelTimerForSeriesTimer(SeriesTimerInfo seriesTimer, TimerInfo timer) |
| | 645 | | { |
| 0 | 646 | | if (timer.IsManual) |
| | 647 | | { |
| 0 | 648 | | return false; |
| | 649 | | } |
| | 650 | |
|
| 0 | 651 | | if (!seriesTimer.RecordAnyTime |
| 0 | 652 | | && Math.Abs(seriesTimer.StartDate.TimeOfDay.Ticks - timer.StartDate.TimeOfDay.Ticks) >= TimeSpan.FromMin |
| | 653 | | { |
| 0 | 654 | | return true; |
| | 655 | | } |
| | 656 | |
|
| 0 | 657 | | if (seriesTimer.RecordNewOnly && timer.IsRepeat) |
| | 658 | | { |
| 0 | 659 | | return true; |
| | 660 | | } |
| | 661 | |
|
| 0 | 662 | | if (!seriesTimer.RecordAnyChannel |
| 0 | 663 | | && !string.Equals(timer.ChannelId, seriesTimer.ChannelId, StringComparison.OrdinalIgnoreCase)) |
| | 664 | | { |
| 0 | 665 | | return true; |
| | 666 | | } |
| | 667 | |
|
| 0 | 668 | | return seriesTimer.SkipEpisodesInLibrary && IsProgramAlreadyInLibrary(timer); |
| | 669 | | } |
| | 670 | |
|
| | 671 | | private void HandleDuplicateShowIds(List<TimerInfo> timers) |
| | 672 | | { |
| | 673 | | // sort showings by HD channels first, then by startDate, record earliest showing possible |
| 0 | 674 | | foreach (var timer in timers.OrderByDescending(t => GetLiveTvChannel(t).IsHD).ThenBy(t => t.StartDate).Skip( |
| | 675 | | { |
| 0 | 676 | | timer.Status = RecordingStatus.Cancelled; |
| 0 | 677 | | _timerManager.Update(timer); |
| | 678 | | } |
| 0 | 679 | | } |
| | 680 | |
|
| | 681 | | private void SearchForDuplicateShowIds(IEnumerable<TimerInfo> timers) |
| | 682 | | { |
| 0 | 683 | | var groups = timers.ToLookup(i => i.ShowId ?? string.Empty).ToList(); |
| | 684 | |
|
| 0 | 685 | | foreach (var group in groups) |
| | 686 | | { |
| 0 | 687 | | if (string.IsNullOrWhiteSpace(group.Key)) |
| | 688 | | { |
| | 689 | | continue; |
| | 690 | | } |
| | 691 | |
|
| 0 | 692 | | var groupTimers = group.ToList(); |
| | 693 | |
|
| 0 | 694 | | if (groupTimers.Count < 2) |
| | 695 | | { |
| | 696 | | continue; |
| | 697 | | } |
| | 698 | |
|
| | 699 | | // Skip ShowId without SubKey from duplicate removal actions - https://github.com/jellyfin/jellyfin/issu |
| 0 | 700 | | if (group.Key.EndsWith("0000", StringComparison.Ordinal)) |
| | 701 | | { |
| | 702 | | continue; |
| | 703 | | } |
| | 704 | |
|
| 0 | 705 | | HandleDuplicateShowIds(groupTimers); |
| | 706 | | } |
| 0 | 707 | | } |
| | 708 | |
|
| | 709 | | private void UpdateTimersForSeriesTimer(SeriesTimerInfo seriesTimer, bool updateTimerSettings, bool deleteInvali |
| | 710 | | { |
| 0 | 711 | | var allTimers = GetTimersForSeries(seriesTimer).ToList(); |
| | 712 | |
|
| 0 | 713 | | var enabledTimersForSeries = new List<TimerInfo>(); |
| 0 | 714 | | foreach (var timer in allTimers) |
| | 715 | | { |
| 0 | 716 | | var existingTimer = _timerManager.GetTimer(timer.Id) |
| 0 | 717 | | ?? (string.IsNullOrWhiteSpace(timer.ProgramId) |
| 0 | 718 | | ? null |
| 0 | 719 | | : _timerManager.GetTimerByProgramId(timer.ProgramId)); |
| | 720 | |
|
| 0 | 721 | | if (existingTimer is null) |
| | 722 | | { |
| 0 | 723 | | if (ShouldCancelTimerForSeriesTimer(seriesTimer, timer)) |
| | 724 | | { |
| 0 | 725 | | timer.Status = RecordingStatus.Cancelled; |
| | 726 | | } |
| | 727 | | else |
| | 728 | | { |
| 0 | 729 | | enabledTimersForSeries.Add(timer); |
| | 730 | | } |
| | 731 | |
|
| 0 | 732 | | _timerManager.Add(timer); |
| | 733 | |
|
| 0 | 734 | | TimerCreated?.Invoke(this, new GenericEventArgs<TimerInfo>(timer)); |
| | 735 | | } |
| | 736 | |
|
| | 737 | | // Only update if not currently active - test both new timer and existing in case Id's are different |
| | 738 | | // Id's could be different if the timer was created manually prior to series timer creation |
| 0 | 739 | | else if (_recordingsManager.GetActiveRecordingPath(timer.Id) is null |
| 0 | 740 | | && _recordingsManager.GetActiveRecordingPath(existingTimer.Id) is null) |
| | 741 | | { |
| 0 | 742 | | UpdateExistingTimerWithNewMetadata(existingTimer, timer); |
| | 743 | |
|
| | 744 | | // Needed by ShouldCancelTimerForSeriesTimer |
| 0 | 745 | | timer.IsManual = existingTimer.IsManual; |
| | 746 | |
|
| 0 | 747 | | if (ShouldCancelTimerForSeriesTimer(seriesTimer, timer)) |
| | 748 | | { |
| 0 | 749 | | existingTimer.Status = RecordingStatus.Cancelled; |
| | 750 | | } |
| 0 | 751 | | else if (!existingTimer.IsManual) |
| | 752 | | { |
| 0 | 753 | | existingTimer.Status = RecordingStatus.New; |
| | 754 | | } |
| | 755 | |
|
| 0 | 756 | | if (existingTimer.Status != RecordingStatus.Cancelled) |
| | 757 | | { |
| 0 | 758 | | enabledTimersForSeries.Add(existingTimer); |
| | 759 | | } |
| | 760 | |
|
| 0 | 761 | | if (updateTimerSettings) |
| | 762 | | { |
| 0 | 763 | | existingTimer.KeepUntil = seriesTimer.KeepUntil; |
| 0 | 764 | | existingTimer.IsPostPaddingRequired = seriesTimer.IsPostPaddingRequired; |
| 0 | 765 | | existingTimer.IsPrePaddingRequired = seriesTimer.IsPrePaddingRequired; |
| 0 | 766 | | existingTimer.PostPaddingSeconds = seriesTimer.PostPaddingSeconds; |
| 0 | 767 | | existingTimer.PrePaddingSeconds = seriesTimer.PrePaddingSeconds; |
| 0 | 768 | | existingTimer.Priority = seriesTimer.Priority; |
| 0 | 769 | | existingTimer.SeriesTimerId = seriesTimer.Id; |
| | 770 | | } |
| | 771 | |
|
| 0 | 772 | | existingTimer.SeriesTimerId = seriesTimer.Id; |
| 0 | 773 | | _timerManager.Update(existingTimer); |
| | 774 | | } |
| | 775 | | } |
| | 776 | |
|
| 0 | 777 | | SearchForDuplicateShowIds(enabledTimersForSeries); |
| | 778 | |
|
| 0 | 779 | | if (deleteInvalidTimers) |
| | 780 | | { |
| 0 | 781 | | var allTimerIds = allTimers |
| 0 | 782 | | .Select(i => i.Id) |
| 0 | 783 | | .ToList(); |
| | 784 | |
|
| 0 | 785 | | var deleteStatuses = new[] |
| 0 | 786 | | { |
| 0 | 787 | | RecordingStatus.New |
| 0 | 788 | | }; |
| | 789 | |
|
| 0 | 790 | | var deletes = _timerManager.GetAll() |
| 0 | 791 | | .Where(i => string.Equals(i.SeriesTimerId, seriesTimer.Id, StringComparison.OrdinalIgnoreCase)) |
| 0 | 792 | | .Where(i => !allTimerIds.Contains(i.Id, StringComparison.OrdinalIgnoreCase) && i.StartDate > DateTim |
| 0 | 793 | | .Where(i => deleteStatuses.Contains(i.Status)) |
| 0 | 794 | | .ToList(); |
| | 795 | |
|
| 0 | 796 | | foreach (var timer in deletes) |
| | 797 | | { |
| 0 | 798 | | CancelTimerInternal(timer.Id, false, false); |
| | 799 | | } |
| | 800 | | } |
| 0 | 801 | | } |
| | 802 | |
|
| | 803 | | private IEnumerable<TimerInfo> GetTimersForSeries(SeriesTimerInfo seriesTimer) |
| | 804 | | { |
| 0 | 805 | | ArgumentNullException.ThrowIfNull(seriesTimer); |
| | 806 | |
|
| 0 | 807 | | var query = new InternalItemsQuery |
| 0 | 808 | | { |
| 0 | 809 | | IncludeItemTypes = new[] { BaseItemKind.LiveTvProgram }, |
| 0 | 810 | | ExternalSeriesId = seriesTimer.SeriesId, |
| 0 | 811 | | DtoOptions = new DtoOptions(true) |
| 0 | 812 | | { |
| 0 | 813 | | EnableImages = false |
| 0 | 814 | | }, |
| 0 | 815 | | MinEndDate = DateTime.UtcNow |
| 0 | 816 | | }; |
| | 817 | |
|
| 0 | 818 | | if (string.IsNullOrEmpty(seriesTimer.SeriesId)) |
| | 819 | | { |
| 0 | 820 | | query.Name = seriesTimer.Name; |
| | 821 | | } |
| | 822 | |
|
| 0 | 823 | | if (!seriesTimer.RecordAnyChannel) |
| | 824 | | { |
| 0 | 825 | | query.ChannelIds = [_tvDtoService.GetInternalChannelId(Name, seriesTimer.ChannelId)]; |
| | 826 | | } |
| | 827 | |
|
| 0 | 828 | | var tempChannelCache = new Dictionary<Guid, LiveTvChannel>(); |
| | 829 | |
|
| 0 | 830 | | return _libraryManager.GetItemList(query).Cast<LiveTvProgram>().Select(i => CreateTimer(i, seriesTimer, temp |
| | 831 | | } |
| | 832 | |
|
| | 833 | | private TimerInfo CreateTimer(LiveTvProgram parent, SeriesTimerInfo seriesTimer, Dictionary<Guid, LiveTvChannel> |
| | 834 | | { |
| 0 | 835 | | string channelId = seriesTimer.RecordAnyChannel ? null : seriesTimer.ChannelId; |
| | 836 | |
|
| 0 | 837 | | if (string.IsNullOrWhiteSpace(channelId) && !parent.ChannelId.IsEmpty()) |
| | 838 | | { |
| 0 | 839 | | if (!tempChannelCache.TryGetValue(parent.ChannelId, out LiveTvChannel channel)) |
| | 840 | | { |
| 0 | 841 | | channel = _libraryManager.GetItemList( |
| 0 | 842 | | new InternalItemsQuery |
| 0 | 843 | | { |
| 0 | 844 | | IncludeItemTypes = new[] { BaseItemKind.LiveTvChannel }, |
| 0 | 845 | | ItemIds = new[] { parent.ChannelId }, |
| 0 | 846 | | DtoOptions = new DtoOptions() |
| 0 | 847 | | }).FirstOrDefault() as LiveTvChannel; |
| | 848 | |
|
| 0 | 849 | | if (channel is not null && !string.IsNullOrWhiteSpace(channel.ExternalId)) |
| | 850 | | { |
| 0 | 851 | | tempChannelCache[parent.ChannelId] = channel; |
| | 852 | | } |
| | 853 | | } |
| | 854 | |
|
| 0 | 855 | | if (channel is not null || tempChannelCache.TryGetValue(parent.ChannelId, out channel)) |
| | 856 | | { |
| 0 | 857 | | channelId = channel.ExternalId; |
| | 858 | | } |
| | 859 | | } |
| | 860 | |
|
| 0 | 861 | | var timer = new TimerInfo |
| 0 | 862 | | { |
| 0 | 863 | | ChannelId = channelId, |
| 0 | 864 | | Id = (seriesTimer.Id + parent.ExternalId).GetMD5().ToString("N", CultureInfo.InvariantCulture), |
| 0 | 865 | | StartDate = parent.StartDate, |
| 0 | 866 | | EndDate = parent.EndDate.Value, |
| 0 | 867 | | ProgramId = parent.ExternalId, |
| 0 | 868 | | PrePaddingSeconds = seriesTimer.PrePaddingSeconds, |
| 0 | 869 | | PostPaddingSeconds = seriesTimer.PostPaddingSeconds, |
| 0 | 870 | | IsPostPaddingRequired = seriesTimer.IsPostPaddingRequired, |
| 0 | 871 | | IsPrePaddingRequired = seriesTimer.IsPrePaddingRequired, |
| 0 | 872 | | KeepUntil = seriesTimer.KeepUntil, |
| 0 | 873 | | Priority = seriesTimer.Priority, |
| 0 | 874 | | Name = parent.Name, |
| 0 | 875 | | Overview = parent.Overview, |
| 0 | 876 | | SeriesId = parent.ExternalSeriesId, |
| 0 | 877 | | SeriesTimerId = seriesTimer.Id, |
| 0 | 878 | | ShowId = parent.ShowId |
| 0 | 879 | | }; |
| | 880 | |
|
| 0 | 881 | | CopyProgramInfoToTimerInfo(parent, timer, tempChannelCache); |
| | 882 | |
|
| 0 | 883 | | return timer; |
| | 884 | | } |
| | 885 | |
|
| | 886 | | private void CopyProgramInfoToTimerInfo(LiveTvProgram programInfo, TimerInfo timerInfo) |
| | 887 | | { |
| 0 | 888 | | var tempChannelCache = new Dictionary<Guid, LiveTvChannel>(); |
| 0 | 889 | | CopyProgramInfoToTimerInfo(programInfo, timerInfo, tempChannelCache); |
| 0 | 890 | | } |
| | 891 | |
|
| | 892 | | private void CopyProgramInfoToTimerInfo(LiveTvProgram programInfo, TimerInfo timerInfo, Dictionary<Guid, LiveTvC |
| | 893 | | { |
| 0 | 894 | | string channelId = null; |
| | 895 | |
|
| 0 | 896 | | if (!programInfo.ChannelId.IsEmpty()) |
| | 897 | | { |
| 0 | 898 | | if (!tempChannelCache.TryGetValue(programInfo.ChannelId, out LiveTvChannel channel)) |
| | 899 | | { |
| 0 | 900 | | channel = _libraryManager.GetItemList( |
| 0 | 901 | | new InternalItemsQuery |
| 0 | 902 | | { |
| 0 | 903 | | IncludeItemTypes = new[] { BaseItemKind.LiveTvChannel }, |
| 0 | 904 | | ItemIds = new[] { programInfo.ChannelId }, |
| 0 | 905 | | DtoOptions = new DtoOptions() |
| 0 | 906 | | }).FirstOrDefault() as LiveTvChannel; |
| | 907 | |
|
| 0 | 908 | | if (channel is not null && !string.IsNullOrWhiteSpace(channel.ExternalId)) |
| | 909 | | { |
| 0 | 910 | | tempChannelCache[programInfo.ChannelId] = channel; |
| | 911 | | } |
| | 912 | | } |
| | 913 | |
|
| 0 | 914 | | if (channel is not null || tempChannelCache.TryGetValue(programInfo.ChannelId, out channel)) |
| | 915 | | { |
| 0 | 916 | | channelId = channel.ExternalId; |
| | 917 | | } |
| | 918 | | } |
| | 919 | |
|
| 0 | 920 | | timerInfo.Name = programInfo.Name; |
| 0 | 921 | | timerInfo.StartDate = programInfo.StartDate; |
| 0 | 922 | | timerInfo.EndDate = programInfo.EndDate.Value; |
| | 923 | |
|
| 0 | 924 | | if (!string.IsNullOrWhiteSpace(channelId)) |
| | 925 | | { |
| 0 | 926 | | timerInfo.ChannelId = channelId; |
| | 927 | | } |
| | 928 | |
|
| 0 | 929 | | timerInfo.SeasonNumber = programInfo.ParentIndexNumber; |
| 0 | 930 | | timerInfo.EpisodeNumber = programInfo.IndexNumber; |
| 0 | 931 | | timerInfo.IsMovie = programInfo.IsMovie; |
| 0 | 932 | | timerInfo.ProductionYear = programInfo.ProductionYear; |
| 0 | 933 | | timerInfo.EpisodeTitle = programInfo.EpisodeTitle; |
| 0 | 934 | | timerInfo.OriginalAirDate = programInfo.PremiereDate; |
| 0 | 935 | | timerInfo.IsProgramSeries = programInfo.IsSeries; |
| | 936 | |
|
| 0 | 937 | | timerInfo.IsSeries = programInfo.IsSeries; |
| | 938 | |
|
| 0 | 939 | | timerInfo.CommunityRating = programInfo.CommunityRating; |
| 0 | 940 | | timerInfo.Overview = programInfo.Overview; |
| 0 | 941 | | timerInfo.OfficialRating = programInfo.OfficialRating; |
| 0 | 942 | | timerInfo.IsRepeat = programInfo.IsRepeat; |
| 0 | 943 | | timerInfo.SeriesId = programInfo.ExternalSeriesId; |
| 0 | 944 | | timerInfo.ProviderIds = programInfo.ProviderIds; |
| 0 | 945 | | timerInfo.Tags = programInfo.Tags; |
| | 946 | |
|
| 0 | 947 | | var seriesProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase); |
| | 948 | |
|
| 0 | 949 | | foreach (var providerId in timerInfo.ProviderIds) |
| | 950 | | { |
| | 951 | | const string Search = "Series"; |
| 0 | 952 | | if (providerId.Key.StartsWith(Search, StringComparison.OrdinalIgnoreCase)) |
| | 953 | | { |
| 0 | 954 | | seriesProviderIds[providerId.Key.Substring(Search.Length)] = providerId.Value; |
| | 955 | | } |
| | 956 | | } |
| | 957 | |
|
| 0 | 958 | | timerInfo.SeriesProviderIds = seriesProviderIds; |
| 0 | 959 | | } |
| | 960 | |
|
| | 961 | | private bool IsProgramAlreadyInLibrary(TimerInfo program) |
| | 962 | | { |
| 0 | 963 | | if ((program.EpisodeNumber.HasValue && program.SeasonNumber.HasValue) || !string.IsNullOrWhiteSpace(program. |
| | 964 | | { |
| 0 | 965 | | var seriesIds = _libraryManager.GetItemIds( |
| 0 | 966 | | new InternalItemsQuery |
| 0 | 967 | | { |
| 0 | 968 | | IncludeItemTypes = new[] { BaseItemKind.Series }, |
| 0 | 969 | | Name = program.Name |
| 0 | 970 | | }).ToArray(); |
| | 971 | |
|
| 0 | 972 | | if (seriesIds.Length == 0) |
| | 973 | | { |
| 0 | 974 | | return false; |
| | 975 | | } |
| | 976 | |
|
| 0 | 977 | | if (program.EpisodeNumber.HasValue && program.SeasonNumber.HasValue) |
| | 978 | | { |
| 0 | 979 | | var result = _libraryManager.GetItemIds(new InternalItemsQuery |
| 0 | 980 | | { |
| 0 | 981 | | IncludeItemTypes = new[] { BaseItemKind.Episode }, |
| 0 | 982 | | ParentIndexNumber = program.SeasonNumber.Value, |
| 0 | 983 | | IndexNumber = program.EpisodeNumber.Value, |
| 0 | 984 | | AncestorIds = seriesIds, |
| 0 | 985 | | IsVirtualItem = false, |
| 0 | 986 | | Limit = 1 |
| 0 | 987 | | }); |
| | 988 | |
|
| 0 | 989 | | if (result.Count > 0) |
| | 990 | | { |
| 0 | 991 | | return true; |
| | 992 | | } |
| | 993 | | } |
| | 994 | | } |
| | 995 | |
|
| 0 | 996 | | return false; |
| | 997 | | } |
| | 998 | | } |
| | 999 | | } |