1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
|
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using AsyncKeyedLock;
using Jellyfin.Data.Enums;
using Jellyfin.Database.Implementations.Enums;
using Jellyfin.LiveTv.Configuration;
using Jellyfin.LiveTv.IO;
using Jellyfin.LiveTv.Timers;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Controller.MediaEncoding;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.Providers;
using Microsoft.Extensions.Logging;
namespace Jellyfin.LiveTv.Recordings;
/// <inheritdoc cref="IRecordingsManager" />
public sealed class RecordingsManager : IRecordingsManager, IDisposable
{
private readonly ILogger<RecordingsManager> _logger;
private readonly IServerConfigurationManager _config;
private readonly IHttpClientFactory _httpClientFactory;
private readonly IFileSystem _fileSystem;
private readonly ILibraryManager _libraryManager;
private readonly ILibraryMonitor _libraryMonitor;
private readonly IProviderManager _providerManager;
private readonly IMediaEncoder _mediaEncoder;
private readonly IMediaSourceManager _mediaSourceManager;
private readonly IStreamHelper _streamHelper;
private readonly TimerManager _timerManager;
private readonly SeriesTimerManager _seriesTimerManager;
private readonly RecordingsMetadataManager _recordingsMetadataManager;
private readonly ConcurrentDictionary<string, ActiveRecordingInfo> _activeRecordings = new(StringComparer.OrdinalIgnoreCase);
private readonly AsyncNonKeyedLocker _recordingDeleteSemaphore = new();
private bool _disposed;
/// <summary>
/// Initializes a new instance of the <see cref="RecordingsManager"/> class.
/// </summary>
/// <param name="logger">The <see cref="ILogger"/>.</param>
/// <param name="config">The <see cref="IServerConfigurationManager"/>.</param>
/// <param name="httpClientFactory">The <see cref="IHttpClientFactory"/>.</param>
/// <param name="fileSystem">The <see cref="IFileSystem"/>.</param>
/// <param name="libraryManager">The <see cref="ILibraryManager"/>.</param>
/// <param name="libraryMonitor">The <see cref="ILibraryMonitor"/>.</param>
/// <param name="providerManager">The <see cref="IProviderManager"/>.</param>
/// <param name="mediaEncoder">The <see cref="IMediaEncoder"/>.</param>
/// <param name="mediaSourceManager">The <see cref="IMediaSourceManager"/>.</param>
/// <param name="streamHelper">The <see cref="IStreamHelper"/>.</param>
/// <param name="timerManager">The <see cref="TimerManager"/>.</param>
/// <param name="seriesTimerManager">The <see cref="SeriesTimerManager"/>.</param>
/// <param name="recordingsMetadataManager">The <see cref="RecordingsMetadataManager"/>.</param>
public RecordingsManager(
ILogger<RecordingsManager> logger,
IServerConfigurationManager config,
IHttpClientFactory httpClientFactory,
IFileSystem fileSystem,
ILibraryManager libraryManager,
ILibraryMonitor libraryMonitor,
IProviderManager providerManager,
IMediaEncoder mediaEncoder,
IMediaSourceManager mediaSourceManager,
IStreamHelper streamHelper,
TimerManager timerManager,
SeriesTimerManager seriesTimerManager,
RecordingsMetadataManager recordingsMetadataManager)
{
_logger = logger;
_config = config;
_httpClientFactory = httpClientFactory;
_fileSystem = fileSystem;
_libraryManager = libraryManager;
_libraryMonitor = libraryMonitor;
_providerManager = providerManager;
_mediaEncoder = mediaEncoder;
_mediaSourceManager = mediaSourceManager;
_streamHelper = streamHelper;
_timerManager = timerManager;
_seriesTimerManager = seriesTimerManager;
_recordingsMetadataManager = recordingsMetadataManager;
_config.NamedConfigurationUpdated += OnNamedConfigurationUpdated;
}
private string DefaultRecordingPath
{
get
{
var path = _config.GetLiveTvConfiguration().RecordingPath;
return string.IsNullOrWhiteSpace(path)
? Path.Combine(_config.CommonApplicationPaths.DataPath, "livetv", "recordings")
: path;
}
}
/// <inheritdoc />
public string? GetActiveRecordingPath(string id)
=> _activeRecordings.GetValueOrDefault(id)?.Path;
/// <inheritdoc />
public ActiveRecordingInfo? GetActiveRecordingInfo(string path)
{
if (string.IsNullOrWhiteSpace(path) || _activeRecordings.IsEmpty)
{
return null;
}
foreach (var (_, recordingInfo) in _activeRecordings)
{
if (string.Equals(recordingInfo.Path, path, StringComparison.Ordinal)
&& !recordingInfo.CancellationTokenSource.IsCancellationRequested)
{
return recordingInfo.Timer.Status == RecordingStatus.InProgress ? recordingInfo : null;
}
}
return null;
}
/// <inheritdoc />
public IEnumerable<VirtualFolderInfo> GetRecordingFolders()
{
if (Directory.Exists(DefaultRecordingPath))
{
yield return new VirtualFolderInfo
{
Locations = [DefaultRecordingPath],
Name = "Recordings"
};
}
var customPath = _config.GetLiveTvConfiguration().MovieRecordingPath;
if (!string.IsNullOrWhiteSpace(customPath)
&& !string.Equals(customPath, DefaultRecordingPath, StringComparison.OrdinalIgnoreCase)
&& Directory.Exists(customPath))
{
yield return new VirtualFolderInfo
{
Locations = [customPath],
Name = "Recorded Movies",
CollectionType = CollectionTypeOptions.movies
};
}
customPath = _config.GetLiveTvConfiguration().SeriesRecordingPath;
if (!string.IsNullOrWhiteSpace(customPath)
&& !string.Equals(customPath, DefaultRecordingPath, StringComparison.OrdinalIgnoreCase)
&& Directory.Exists(customPath))
{
yield return new VirtualFolderInfo
{
Locations = [customPath],
Name = "Recorded Shows",
CollectionType = CollectionTypeOptions.tvshows
};
}
}
/// <inheritdoc />
public async Task CreateRecordingFolders()
{
try
{
var recordingFolders = GetRecordingFolders().ToArray();
var virtualFolders = _libraryManager.GetVirtualFolders();
var allExistingPaths = virtualFolders.SelectMany(i => i.Locations).ToList();
var pathsAdded = new List<string>();
foreach (var recordingFolder in recordingFolders)
{
var pathsToCreate = recordingFolder.Locations
.Where(i => !allExistingPaths.Any(p => _fileSystem.AreEqual(p, i)))
.ToList();
if (pathsToCreate.Count == 0)
{
continue;
}
var mediaPathInfos = pathsToCreate.Select(i => new MediaPathInfo(i)).ToArray();
var libraryOptions = new LibraryOptions
{
PathInfos = mediaPathInfos
};
try
{
await _libraryManager
.AddVirtualFolder(recordingFolder.Name, recordingFolder.CollectionType, libraryOptions, true)
.ConfigureAwait(false);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error creating virtual folder");
}
pathsAdded.AddRange(pathsToCreate);
}
var config = _config.GetLiveTvConfiguration();
var pathsToRemove = config.MediaLocationsCreated
.Except(recordingFolders.SelectMany(i => i.Locations))
.ToList();
if (pathsAdded.Count > 0 || pathsToRemove.Count > 0)
{
pathsAdded.InsertRange(0, config.MediaLocationsCreated);
config.MediaLocationsCreated = pathsAdded.Except(pathsToRemove).Distinct().ToArray();
_config.SaveConfiguration("livetv", config);
}
foreach (var path in pathsToRemove)
{
await RemovePathFromLibraryAsync(path).ConfigureAwait(false);
}
}
catch (Exception ex)
{
_logger.LogError(ex, "Error creating recording folders");
}
}
private async Task RemovePathFromLibraryAsync(string path)
{
_logger.LogDebug("Removing path from library: {0}", path);
var requiresRefresh = false;
var virtualFolders = _libraryManager.GetVirtualFolders();
foreach (var virtualFolder in virtualFolders)
{
if (!virtualFolder.Locations.Contains(path, StringComparer.OrdinalIgnoreCase))
{
continue;
}
if (virtualFolder.Locations.Length == 1)
{
try
{
await _libraryManager.RemoveVirtualFolder(virtualFolder.Name, true).ConfigureAwait(false);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error removing virtual folder");
}
}
else
{
try
{
_libraryManager.RemoveMediaPath(virtualFolder.Name, path);
requiresRefresh = true;
}
catch (Exception ex)
{
_logger.LogError(ex, "Error removing media path");
}
}
}
if (requiresRefresh)
{
await _libraryManager.ValidateMediaLibrary(new Progress<double>(), CancellationToken.None).ConfigureAwait(false);
}
}
/// <inheritdoc />
public void CancelRecording(string timerId, TimerInfo? timer)
{
if (_activeRecordings.TryGetValue(timerId, out var activeRecordingInfo))
{
activeRecordingInfo.Timer = timer;
activeRecordingInfo.CancellationTokenSource.Cancel();
}
}
/// <inheritdoc />
public async Task RecordStream(ActiveRecordingInfo recordingInfo, BaseItem channel, DateTime recordingEndDate)
{
ArgumentNullException.ThrowIfNull(recordingInfo);
ArgumentNullException.ThrowIfNull(channel);
var timer = recordingInfo.Timer;
var remoteMetadata = await FetchInternetMetadata(timer, CancellationToken.None).ConfigureAwait(false);
var recordingPath = GetRecordingPath(timer, remoteMetadata, out var seriesPath);
string? liveStreamId = null;
RecordingStatus recordingStatus;
try
{
var allMediaSources = await _mediaSourceManager
.GetPlaybackMediaSources(channel, null, true, false, CancellationToken.None).ConfigureAwait(false);
var mediaStreamInfo = allMediaSources[0];
IDirectStreamProvider? directStreamProvider = null;
if (mediaStreamInfo.RequiresOpening)
{
var liveStreamResponse = await _mediaSourceManager.OpenLiveStreamInternal(
new LiveStreamRequest
{
ItemId = channel.Id,
OpenToken = mediaStreamInfo.OpenToken
},
CancellationToken.None).ConfigureAwait(false);
mediaStreamInfo = liveStreamResponse.Item1.MediaSource;
liveStreamId = mediaStreamInfo.LiveStreamId;
directStreamProvider = liveStreamResponse.Item2;
}
using var recorder = GetRecorder(mediaStreamInfo);
recordingPath = recorder.GetOutputPath(mediaStreamInfo, recordingPath);
recordingPath = EnsureFileUnique(recordingPath, timer.Id);
_libraryMonitor.ReportFileSystemChangeBeginning(recordingPath);
var duration = recordingEndDate - DateTime.UtcNow;
_logger.LogInformation("Beginning recording. Will record for {Duration} minutes.", duration.TotalMinutes);
_logger.LogInformation("Writing file to: {Path}", recordingPath);
async void OnStarted()
{
recordingInfo.Path = recordingPath;
_activeRecordings.TryAdd(timer.Id, recordingInfo);
timer.Status = RecordingStatus.InProgress;
_timerManager.AddOrUpdate(timer, false);
await _recordingsMetadataManager.SaveRecordingMetadata(timer, recordingPath, seriesPath).ConfigureAwait(false);
await CreateRecordingFolders().ConfigureAwait(false);
TriggerRefresh(recordingPath);
await EnforceKeepUpTo(timer, seriesPath).ConfigureAwait(false);
}
await recorder.Record(
directStreamProvider,
mediaStreamInfo,
recordingPath,
duration,
OnStarted,
recordingInfo.CancellationTokenSource.Token).ConfigureAwait(false);
recordingStatus = RecordingStatus.Completed;
_logger.LogInformation("Recording completed: {RecordPath}", recordingPath);
}
catch (OperationCanceledException)
{
_logger.LogInformation("Recording stopped: {RecordPath}", recordingPath);
recordingStatus = RecordingStatus.Completed;
}
catch (Exception ex)
{
_logger.LogError(ex, "Error recording to {RecordPath}", recordingPath);
recordingStatus = RecordingStatus.Error;
}
if (!string.IsNullOrWhiteSpace(liveStreamId))
{
try
{
await _mediaSourceManager.CloseLiveStream(liveStreamId).ConfigureAwait(false);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error closing live stream");
}
}
DeleteFileIfEmpty(recordingPath);
TriggerRefresh(recordingPath);
_libraryMonitor.ReportFileSystemChangeComplete(recordingPath, false);
_activeRecordings.TryRemove(timer.Id, out _);
if (recordingStatus != RecordingStatus.Completed && DateTime.UtcNow < timer.EndDate && timer.RetryCount < 10)
{
const int RetryIntervalSeconds = 60;
_logger.LogInformation("Retrying recording in {0} seconds.", RetryIntervalSeconds);
timer.Status = RecordingStatus.New;
timer.PrePaddingSeconds = 0;
timer.StartDate = DateTime.UtcNow.AddSeconds(RetryIntervalSeconds);
timer.RetryCount++;
_timerManager.AddOrUpdate(timer);
}
else if (File.Exists(recordingPath))
{
timer.RecordingPath = recordingPath;
timer.Status = RecordingStatus.Completed;
_timerManager.AddOrUpdate(timer, false);
await PostProcessRecording(recordingPath).ConfigureAwait(false);
}
else
{
_timerManager.Delete(timer);
}
}
/// <inheritdoc />
public void Dispose()
{
if (_disposed)
{
return;
}
_recordingDeleteSemaphore.Dispose();
foreach (var pair in _activeRecordings.ToList())
{
pair.Value.CancellationTokenSource.Cancel();
}
_disposed = true;
}
private async void OnNamedConfigurationUpdated(object? sender, ConfigurationUpdateEventArgs e)
{
if (string.Equals(e.Key, "livetv", StringComparison.OrdinalIgnoreCase))
{
await CreateRecordingFolders().ConfigureAwait(false);
}
}
private async Task<RemoteSearchResult?> FetchInternetMetadata(TimerInfo timer, CancellationToken cancellationToken)
{
if (!timer.IsSeries || timer.SeriesProviderIds.Count == 0)
{
return null;
}
var query = new RemoteSearchQuery<SeriesInfo>
{
SearchInfo = new SeriesInfo
{
ProviderIds = timer.SeriesProviderIds,
Name = timer.Name,
MetadataCountryCode = _config.Configuration.MetadataCountryCode,
MetadataLanguage = _config.Configuration.PreferredMetadataLanguage
}
};
var results = await _providerManager.GetRemoteSearchResults<Series, SeriesInfo>(query, cancellationToken).ConfigureAwait(false);
return results.FirstOrDefault();
}
private string GetRecordingPath(TimerInfo timer, RemoteSearchResult? metadata, out string? seriesPath)
{
var recordingPath = DefaultRecordingPath;
var config = _config.GetLiveTvConfiguration();
seriesPath = null;
if (timer.IsProgramSeries)
{
var customRecordingPath = config.SeriesRecordingPath;
var allowSubfolder = true;
if (!string.IsNullOrWhiteSpace(customRecordingPath))
{
allowSubfolder = string.Equals(customRecordingPath, recordingPath, StringComparison.OrdinalIgnoreCase);
recordingPath = customRecordingPath;
}
if (allowSubfolder && config.EnableRecordingSubfolders)
{
recordingPath = Path.Combine(recordingPath, "Series");
}
// trim trailing period from the folder name
var folderName = _fileSystem.GetValidFilename(timer.Name).Trim().TrimEnd('.').Trim();
if (metadata is not null && metadata.ProductionYear.HasValue)
{
folderName += " (" + metadata.ProductionYear.Value.ToString(CultureInfo.InvariantCulture) + ")";
}
// Can't use the year here in the folder name because it is the year of the episode, not the series.
recordingPath = Path.Combine(recordingPath, folderName);
seriesPath = recordingPath;
if (timer.SeasonNumber.HasValue)
{
folderName = string.Format(
CultureInfo.InvariantCulture,
"Season {0}",
timer.SeasonNumber.Value);
recordingPath = Path.Combine(recordingPath, folderName);
}
}
else if (timer.IsMovie)
{
var customRecordingPath = config.MovieRecordingPath;
var allowSubfolder = true;
if (!string.IsNullOrWhiteSpace(customRecordingPath))
{
allowSubfolder = string.Equals(customRecordingPath, recordingPath, StringComparison.OrdinalIgnoreCase);
recordingPath = customRecordingPath;
}
if (allowSubfolder && config.EnableRecordingSubfolders)
{
recordingPath = Path.Combine(recordingPath, "Movies");
}
var folderName = _fileSystem.GetValidFilename(timer.Name).Trim();
if (timer.ProductionYear.HasValue)
{
folderName += " (" + timer.ProductionYear.Value.ToString(CultureInfo.InvariantCulture) + ")";
}
// trim trailing period from the folder name
folderName = folderName.TrimEnd('.').Trim();
recordingPath = Path.Combine(recordingPath, folderName);
}
else if (timer.IsKids)
{
if (config.EnableRecordingSubfolders)
{
recordingPath = Path.Combine(recordingPath, "Kids");
}
var folderName = _fileSystem.GetValidFilename(timer.Name).Trim();
if (timer.ProductionYear.HasValue)
{
folderName += " (" + timer.ProductionYear.Value.ToString(CultureInfo.InvariantCulture) + ")";
}
// trim trailing period from the folder name
folderName = folderName.TrimEnd('.').Trim();
recordingPath = Path.Combine(recordingPath, folderName);
}
else if (timer.IsSports)
{
if (config.EnableRecordingSubfolders)
{
recordingPath = Path.Combine(recordingPath, "Sports");
}
recordingPath = Path.Combine(recordingPath, _fileSystem.GetValidFilename(timer.Name).Trim());
}
else
{
if (config.EnableRecordingSubfolders)
{
recordingPath = Path.Combine(recordingPath, "Other");
}
recordingPath = Path.Combine(recordingPath, _fileSystem.GetValidFilename(timer.Name).Trim());
}
var recordingFileName = _fileSystem.GetValidFilename(RecordingHelper.GetRecordingName(timer)).Trim() + ".ts";
return Path.Combine(recordingPath, recordingFileName);
}
private void DeleteFileIfEmpty(string path)
{
var file = _fileSystem.GetFileInfo(path);
if (file.Exists && file.Length == 0)
{
try
{
_fileSystem.DeleteFile(path);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error deleting 0-byte failed recording file {Path}", path);
}
}
}
private void TriggerRefresh(string path)
{
_logger.LogInformation("Triggering refresh on {Path}", path);
var item = GetAffectedBaseItem(Path.GetDirectoryName(path));
if (item is null)
{
return;
}
_logger.LogInformation("Refreshing recording parent {Path}", item.Path);
_providerManager.QueueRefresh(
item.Id,
new MetadataRefreshOptions(new DirectoryService(_fileSystem))
{
RefreshPaths =
[
path,
Path.GetDirectoryName(path),
Path.GetDirectoryName(Path.GetDirectoryName(path))
]
},
RefreshPriority.High);
}
private BaseItem? GetAffectedBaseItem(string? path)
{
BaseItem? item = null;
var parentPath = Path.GetDirectoryName(path);
while (item is null && !string.IsNullOrEmpty(path))
{
item = _libraryManager.FindByPath(path, null);
path = Path.GetDirectoryName(path);
}
if (item is not null
&& item.GetType() == typeof(Folder)
&& string.Equals(item.Path, parentPath, StringComparison.OrdinalIgnoreCase))
{
var parentItem = item.GetParent();
if (parentItem is not null && parentItem is not AggregateFolder)
{
item = parentItem;
}
}
return item;
}
private async Task EnforceKeepUpTo(TimerInfo timer, string? seriesPath)
{
if (string.IsNullOrWhiteSpace(timer.SeriesTimerId)
|| string.IsNullOrWhiteSpace(seriesPath))
{
return;
}
var seriesTimerId = timer.SeriesTimerId;
var seriesTimer = _seriesTimerManager.GetAll()
.FirstOrDefault(i => string.Equals(i.Id, seriesTimerId, StringComparison.OrdinalIgnoreCase));
if (seriesTimer is null || seriesTimer.KeepUpTo <= 0)
{
return;
}
if (_disposed)
{
return;
}
using (await _recordingDeleteSemaphore.LockAsync().ConfigureAwait(false))
{
if (_disposed)
{
return;
}
var timersToDelete = _timerManager.GetAll()
.Where(timerInfo => timerInfo.Status == RecordingStatus.Completed
&& !string.IsNullOrWhiteSpace(timerInfo.RecordingPath)
&& string.Equals(timerInfo.SeriesTimerId, seriesTimerId, StringComparison.OrdinalIgnoreCase)
&& File.Exists(timerInfo.RecordingPath))
.OrderByDescending(i => i.EndDate)
.Skip(seriesTimer.KeepUpTo - 1)
.ToList();
DeleteLibraryItemsForTimers(timersToDelete);
if (_libraryManager.FindByPath(seriesPath, true) is not Folder librarySeries)
{
return;
}
var episodesToDelete = librarySeries.GetItemList(
new InternalItemsQuery
{
OrderBy = [(ItemSortBy.DateCreated, SortOrder.Descending)],
IsVirtualItem = false,
IsFolder = false,
Recursive = true,
DtoOptions = new DtoOptions(true)
})
.Where(i => i.IsFileProtocol && File.Exists(i.Path))
.Skip(seriesTimer.KeepUpTo - 1);
foreach (var item in episodesToDelete)
{
try
{
_libraryManager.DeleteItem(
item,
new DeleteOptions
{
DeleteFileLocation = true
},
true);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error deleting item");
}
}
}
}
private void DeleteLibraryItemsForTimers(List<TimerInfo> timers)
{
foreach (var timer in timers)
{
if (_disposed)
{
return;
}
try
{
DeleteLibraryItemForTimer(timer);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error deleting recording");
}
}
}
private void DeleteLibraryItemForTimer(TimerInfo timer)
{
var libraryItem = _libraryManager.FindByPath(timer.RecordingPath, false);
if (libraryItem is not null)
{
_libraryManager.DeleteItem(
libraryItem,
new DeleteOptions
{
DeleteFileLocation = true
},
true);
}
else if (File.Exists(timer.RecordingPath))
{
_fileSystem.DeleteFile(timer.RecordingPath);
}
_timerManager.Delete(timer);
}
private string EnsureFileUnique(string path, string timerId)
{
var parent = Path.GetDirectoryName(path)!;
var name = Path.GetFileNameWithoutExtension(path);
var extension = Path.GetExtension(path);
var index = 1;
while (File.Exists(path) || _activeRecordings.Any(i
=> string.Equals(i.Value.Path, path, StringComparison.OrdinalIgnoreCase)
&& !string.Equals(i.Value.Timer.Id, timerId, StringComparison.OrdinalIgnoreCase)))
{
name += " - " + index.ToString(CultureInfo.InvariantCulture);
path = Path.ChangeExtension(Path.Combine(parent, name), extension);
index++;
}
return path;
}
private IRecorder GetRecorder(MediaSourceInfo mediaSource)
{
if (mediaSource.RequiresLooping
|| !(mediaSource.Container ?? string.Empty).EndsWith("ts", StringComparison.OrdinalIgnoreCase)
|| (mediaSource.Protocol != MediaProtocol.File && mediaSource.Protocol != MediaProtocol.Http))
{
return new EncodedRecorder(_logger, _mediaEncoder, _config.ApplicationPaths, _config);
}
return new DirectRecorder(_logger, _httpClientFactory, _streamHelper);
}
private async Task PostProcessRecording(string path)
{
var options = _config.GetLiveTvConfiguration();
if (string.IsNullOrWhiteSpace(options.RecordingPostProcessor))
{
return;
}
try
{
using var process = new Process();
process.StartInfo = new ProcessStartInfo
{
Arguments = options.RecordingPostProcessorArguments
.Replace("{path}", path, StringComparison.OrdinalIgnoreCase),
CreateNoWindow = true,
ErrorDialog = false,
FileName = options.RecordingPostProcessor,
WindowStyle = ProcessWindowStyle.Hidden,
UseShellExecute = false
};
process.EnableRaisingEvents = true;
_logger.LogInformation("Running recording post processor {0} {1}", process.StartInfo.FileName, process.StartInfo.Arguments);
process.Start();
await process.WaitForExitAsync(CancellationToken.None).ConfigureAwait(false);
_logger.LogInformation("Recording post-processing script completed with exit code {ExitCode}", process.ExitCode);
}
catch (Exception ex)
{
_logger.LogError(ex, "Error running recording post processor");
}
}
}
|