12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565 |
- using MediaBrowser.Common;
- using MediaBrowser.Common.Configuration;
- using MediaBrowser.Common.Net;
- using MediaBrowser.Common.Security;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Controller.Drawing;
- using MediaBrowser.Controller.FileOrganization;
- using MediaBrowser.Controller.Library;
- using MediaBrowser.Controller.LiveTv;
- using MediaBrowser.Controller.MediaEncoding;
- using MediaBrowser.Controller.Providers;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Events;
- using MediaBrowser.Model.LiveTv;
- using MediaBrowser.Model.Logging;
- using MediaBrowser.Model.Serialization;
- using MediaBrowser.Server.Implementations.FileOrganization;
- using System;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Globalization;
- using System.IO;
- using System.Linq;
- using System.Text;
- using System.Threading;
- using System.Threading.Tasks;
- using System.Xml;
- using CommonIO;
- using MediaBrowser.Common.Extensions;
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.Entities.TV;
- using MediaBrowser.Model.Configuration;
- using MediaBrowser.Model.FileOrganization;
- using Microsoft.Win32;
- namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
- {
- public class EmbyTV : ILiveTvService, ISupportsNewTimerIds, IDisposable
- {
- private readonly IApplicationHost _appHpst;
- private readonly ILogger _logger;
- private readonly IHttpClient _httpClient;
- private readonly IServerConfigurationManager _config;
- private readonly IJsonSerializer _jsonSerializer;
- private readonly ItemDataProvider<SeriesTimerInfo> _seriesTimerProvider;
- private readonly TimerManager _timerProvider;
- private readonly LiveTvManager _liveTvManager;
- private readonly IFileSystem _fileSystem;
- private readonly ILibraryMonitor _libraryMonitor;
- private readonly ILibraryManager _libraryManager;
- private readonly IProviderManager _providerManager;
- private readonly IFileOrganizationService _organizationService;
- private readonly IMediaEncoder _mediaEncoder;
- public static EmbyTV Current;
- public event EventHandler DataSourceChanged { add { } remove { } }
- public event EventHandler<RecordingStatusChangedEventArgs> RecordingStatusChanged { add { } remove { } }
- private readonly ConcurrentDictionary<string, ActiveRecordingInfo> _activeRecordings =
- new ConcurrentDictionary<string, ActiveRecordingInfo>(StringComparer.OrdinalIgnoreCase);
- public EmbyTV(IApplicationHost appHost, ILogger logger, IJsonSerializer jsonSerializer, IHttpClient httpClient, IServerConfigurationManager config, ILiveTvManager liveTvManager, IFileSystem fileSystem, ILibraryManager libraryManager, ILibraryMonitor libraryMonitor, IProviderManager providerManager, IFileOrganizationService organizationService, IMediaEncoder mediaEncoder)
- {
- Current = this;
- _appHpst = appHost;
- _logger = logger;
- _httpClient = httpClient;
- _config = config;
- _fileSystem = fileSystem;
- _libraryManager = libraryManager;
- _libraryMonitor = libraryMonitor;
- _providerManager = providerManager;
- _organizationService = organizationService;
- _mediaEncoder = mediaEncoder;
- _liveTvManager = (LiveTvManager)liveTvManager;
- _jsonSerializer = jsonSerializer;
- _seriesTimerProvider = new SeriesTimerManager(fileSystem, jsonSerializer, _logger, Path.Combine(DataPath, "seriestimers"));
- _timerProvider = new TimerManager(fileSystem, jsonSerializer, _logger, Path.Combine(DataPath, "timers"), _logger);
- _timerProvider.TimerFired += _timerProvider_TimerFired;
- _config.NamedConfigurationUpdated += _config_NamedConfigurationUpdated;
- }
- private void _config_NamedConfigurationUpdated(object sender, ConfigurationUpdateEventArgs e)
- {
- if (string.Equals(e.Key, "livetv", StringComparison.OrdinalIgnoreCase))
- {
- OnRecordingFoldersChanged();
- }
- }
- public void Start()
- {
- _timerProvider.RestartTimers();
- SystemEvents.PowerModeChanged += SystemEvents_PowerModeChanged;
- CreateRecordingFolders();
- }
- private void OnRecordingFoldersChanged()
- {
- CreateRecordingFolders();
- }
- internal void CreateRecordingFolders()
- {
- try
- {
- CreateRecordingFoldersInternal();
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error creating recording folders", ex);
- }
- }
- internal void CreateRecordingFoldersInternal()
- {
- var recordingFolders = GetRecordingFolders();
- var virtualFolders = _libraryManager.GetVirtualFolders()
- .ToList();
- 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.Contains(i, StringComparer.OrdinalIgnoreCase))
- .ToList();
- if (pathsToCreate.Count == 0)
- {
- continue;
- }
- try
- {
- _libraryManager.AddVirtualFolder(recordingFolder.Name, recordingFolder.CollectionType, pathsToCreate.ToArray(), new LibraryOptions(), true);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error creating virtual folder", ex);
- }
- pathsAdded.AddRange(pathsToCreate);
- }
- var config = GetConfiguration();
- 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(StringComparer.OrdinalIgnoreCase).ToArray();
- _config.SaveConfiguration("livetv", config);
- }
- foreach (var path in pathsToRemove)
- {
- RemovePathFromLibrary(path);
- }
- }
- private void RemovePathFromLibrary(string path)
- {
- _logger.Debug("Removing path from library: {0}", path);
- var requiresRefresh = false;
- var virtualFolders = _libraryManager.GetVirtualFolders()
- .ToList();
- foreach (var virtualFolder in virtualFolders)
- {
- if (!virtualFolder.Locations.Contains(path, StringComparer.OrdinalIgnoreCase))
- {
- continue;
- }
- if (virtualFolder.Locations.Count == 1)
- {
- // remove entire virtual folder
- try
- {
- _libraryManager.RemoveVirtualFolder(virtualFolder.Name, true);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error removing virtual folder", ex);
- }
- }
- else
- {
- try
- {
- _libraryManager.RemoveMediaPath(virtualFolder.Name, path);
- requiresRefresh = true;
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error removing media path", ex);
- }
- }
- }
- if (requiresRefresh)
- {
- _libraryManager.ValidateMediaLibrary(new Progress<Double>(), CancellationToken.None);
- }
- }
- void SystemEvents_PowerModeChanged(object sender, PowerModeChangedEventArgs e)
- {
- _logger.Info("Power mode changed to {0}", e.Mode);
- if (e.Mode == PowerModes.Resume)
- {
- _timerProvider.RestartTimers();
- }
- }
- public string Name
- {
- get { return "Emby"; }
- }
- public string DataPath
- {
- get { return Path.Combine(_config.CommonApplicationPaths.DataPath, "livetv"); }
- }
- private string DefaultRecordingPath
- {
- get
- {
- return Path.Combine(DataPath, "recordings");
- }
- }
- private string RecordingPath
- {
- get
- {
- var path = GetConfiguration().RecordingPath;
- return string.IsNullOrWhiteSpace(path)
- ? DefaultRecordingPath
- : path;
- }
- }
- public string HomePageUrl
- {
- get { return "http://emby.media"; }
- }
- public async Task<LiveTvServiceStatusInfo> GetStatusInfoAsync(CancellationToken cancellationToken)
- {
- var status = new LiveTvServiceStatusInfo();
- var list = new List<LiveTvTunerInfo>();
- foreach (var hostInstance in _liveTvManager.TunerHosts)
- {
- try
- {
- var tuners = await hostInstance.GetTunerInfos(cancellationToken).ConfigureAwait(false);
- list.AddRange(tuners);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error getting tuners", ex);
- }
- }
- status.Tuners = list;
- status.Status = LiveTvServiceStatus.Ok;
- status.Version = _appHpst.ApplicationVersion.ToString();
- status.IsVisible = false;
- return status;
- }
- public async Task RefreshSeriesTimers(CancellationToken cancellationToken, IProgress<double> progress)
- {
- var seriesTimers = await GetSeriesTimersAsync(cancellationToken).ConfigureAwait(false);
- List<ChannelInfo> channels = null;
- foreach (var timer in seriesTimers)
- {
- List<ProgramInfo> epgData;
- if (timer.RecordAnyChannel)
- {
- if (channels == null)
- {
- channels = (await GetChannelsAsync(true, CancellationToken.None).ConfigureAwait(false)).ToList();
- }
- var channelIds = channels.Select(i => i.Id).ToList();
- epgData = GetEpgDataForChannels(channelIds);
- }
- else
- {
- epgData = GetEpgDataForChannel(timer.ChannelId);
- }
- await UpdateTimersForSeriesTimer(epgData, timer, true).ConfigureAwait(false);
- }
- var timers = await GetTimersAsync(cancellationToken).ConfigureAwait(false);
- foreach (var timer in timers.ToList())
- {
- if (DateTime.UtcNow > timer.EndDate && !_activeRecordings.ContainsKey(timer.Id))
- {
- _timerProvider.Delete(timer);
- }
- }
- }
- private List<ChannelInfo> _channelCache = null;
- private async Task<IEnumerable<ChannelInfo>> GetChannelsAsync(bool enableCache, CancellationToken cancellationToken)
- {
- if (enableCache && _channelCache != null)
- {
- return _channelCache.ToList();
- }
- var list = new List<ChannelInfo>();
- foreach (var hostInstance in _liveTvManager.TunerHosts)
- {
- try
- {
- var channels = await hostInstance.GetChannels(cancellationToken).ConfigureAwait(false);
- list.AddRange(channels);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error getting channels", ex);
- }
- }
- foreach (var provider in GetListingProviders())
- {
- var enabledChannels = list
- .Where(i => IsListingProviderEnabledForTuner(provider.Item2, i.TunerHostId))
- .ToList();
- if (enabledChannels.Count > 0)
- {
- try
- {
- await provider.Item1.AddMetadata(provider.Item2, enabledChannels, cancellationToken).ConfigureAwait(false);
- }
- catch (NotSupportedException)
- {
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error adding metadata", ex);
- }
- }
- }
- _channelCache = list.ToList();
- return list;
- }
- public async Task<List<ChannelInfo>> GetChannelsForListingsProvider(ListingsProviderInfo listingsProvider, CancellationToken cancellationToken)
- {
- var list = new List<ChannelInfo>();
- foreach (var hostInstance in _liveTvManager.TunerHosts)
- {
- try
- {
- var channels = await hostInstance.GetChannels(cancellationToken).ConfigureAwait(false);
- list.AddRange(channels);
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error getting channels", ex);
- }
- }
- return list
- .Where(i => IsListingProviderEnabledForTuner(listingsProvider, i.TunerHostId))
- .ToList();
- }
- public Task<IEnumerable<ChannelInfo>> GetChannelsAsync(CancellationToken cancellationToken)
- {
- return GetChannelsAsync(false, cancellationToken);
- }
- public Task CancelSeriesTimerAsync(string timerId, CancellationToken cancellationToken)
- {
- var timers = _timerProvider
- .GetAll()
- .Where(i => string.Equals(i.SeriesTimerId, timerId, StringComparison.OrdinalIgnoreCase))
- .ToList();
- foreach (var timer in timers)
- {
- CancelTimerInternal(timer.Id);
- }
- var remove = _seriesTimerProvider.GetAll().FirstOrDefault(r => string.Equals(r.Id, timerId, StringComparison.OrdinalIgnoreCase));
- if (remove != null)
- {
- _seriesTimerProvider.Delete(remove);
- }
- return Task.FromResult(true);
- }
- private void CancelTimerInternal(string timerId)
- {
- var remove = _timerProvider.GetAll().FirstOrDefault(r => string.Equals(r.Id, timerId, StringComparison.OrdinalIgnoreCase));
- if (remove != null)
- {
- _timerProvider.Delete(remove);
- }
- ActiveRecordingInfo activeRecordingInfo;
- if (_activeRecordings.TryGetValue(timerId, out activeRecordingInfo))
- {
- activeRecordingInfo.CancellationTokenSource.Cancel();
- }
- }
- public Task CancelTimerAsync(string timerId, CancellationToken cancellationToken)
- {
- CancelTimerInternal(timerId);
- return Task.FromResult(true);
- }
- public Task DeleteRecordingAsync(string recordingId, CancellationToken cancellationToken)
- {
- return Task.FromResult(true);
- }
- public Task CreateTimerAsync(TimerInfo info, CancellationToken cancellationToken)
- {
- return CreateTimer(info, cancellationToken);
- }
- public Task CreateSeriesTimerAsync(SeriesTimerInfo info, CancellationToken cancellationToken)
- {
- return CreateSeriesTimer(info, cancellationToken);
- }
- public Task<string> CreateTimer(TimerInfo timer, CancellationToken cancellationToken)
- {
- timer.Id = Guid.NewGuid().ToString("N");
- ProgramInfo programInfo = null;
- if (!string.IsNullOrWhiteSpace(timer.ProgramId))
- {
- programInfo = GetProgramInfoFromCache(timer.ChannelId, timer.ProgramId);
- }
- if (programInfo == null)
- {
- _logger.Info("Unable to find program with Id {0}. Will search using start date", timer.ProgramId);
- programInfo = GetProgramInfoFromCache(timer.ChannelId, timer.StartDate);
- }
- if (programInfo != null)
- {
- RecordingHelper.CopyProgramInfoToTimerInfo(programInfo, timer);
- }
- _timerProvider.Add(timer);
- return Task.FromResult(timer.Id);
- }
- public async Task<string> CreateSeriesTimer(SeriesTimerInfo info, CancellationToken cancellationToken)
- {
- info.Id = Guid.NewGuid().ToString("N");
- List<ProgramInfo> epgData;
- if (info.RecordAnyChannel)
- {
- var channels = await GetChannelsAsync(true, CancellationToken.None).ConfigureAwait(false);
- var channelIds = channels.Select(i => i.Id).ToList();
- epgData = GetEpgDataForChannels(channelIds);
- }
- else
- {
- epgData = GetEpgDataForChannel(info.ChannelId);
- }
- // populate info.seriesID
- var program = epgData.FirstOrDefault(i => string.Equals(i.Id, info.ProgramId, StringComparison.OrdinalIgnoreCase));
- if (program != null)
- {
- info.SeriesId = program.SeriesId;
- }
- else
- {
- throw new InvalidOperationException("SeriesId for program not found");
- }
- _seriesTimerProvider.Add(info);
- await UpdateTimersForSeriesTimer(epgData, info, false).ConfigureAwait(false);
- return info.Id;
- }
- public async Task UpdateSeriesTimerAsync(SeriesTimerInfo info, CancellationToken cancellationToken)
- {
- var instance = _seriesTimerProvider.GetAll().FirstOrDefault(i => string.Equals(i.Id, info.Id, StringComparison.OrdinalIgnoreCase));
- if (instance != null)
- {
- instance.ChannelId = info.ChannelId;
- instance.Days = info.Days;
- instance.EndDate = info.EndDate;
- instance.IsPostPaddingRequired = info.IsPostPaddingRequired;
- instance.IsPrePaddingRequired = info.IsPrePaddingRequired;
- instance.PostPaddingSeconds = info.PostPaddingSeconds;
- instance.PrePaddingSeconds = info.PrePaddingSeconds;
- instance.Priority = info.Priority;
- instance.RecordAnyChannel = info.RecordAnyChannel;
- instance.RecordAnyTime = info.RecordAnyTime;
- instance.RecordNewOnly = info.RecordNewOnly;
- instance.SkipEpisodesInLibrary = info.SkipEpisodesInLibrary;
- instance.KeepUpTo = info.KeepUpTo;
- instance.StartDate = info.StartDate;
- _seriesTimerProvider.Update(instance);
- List<ProgramInfo> epgData;
- if (instance.RecordAnyChannel)
- {
- var channels = await GetChannelsAsync(true, CancellationToken.None).ConfigureAwait(false);
- var channelIds = channels.Select(i => i.Id).ToList();
- epgData = GetEpgDataForChannels(channelIds);
- }
- else
- {
- epgData = GetEpgDataForChannel(instance.ChannelId);
- }
- await UpdateTimersForSeriesTimer(epgData, instance, true).ConfigureAwait(false);
- }
- }
- public Task UpdateTimerAsync(TimerInfo info, CancellationToken cancellationToken)
- {
- _timerProvider.Update(info);
- return Task.FromResult(true);
- }
- public Task<ImageStream> GetChannelImageAsync(string channelId, CancellationToken cancellationToken)
- {
- throw new NotImplementedException();
- }
- public Task<ImageStream> GetRecordingImageAsync(string recordingId, CancellationToken cancellationToken)
- {
- throw new NotImplementedException();
- }
- public Task<ImageStream> GetProgramImageAsync(string programId, string channelId, CancellationToken cancellationToken)
- {
- throw new NotImplementedException();
- }
- public async Task<IEnumerable<RecordingInfo>> GetRecordingsAsync(CancellationToken cancellationToken)
- {
- return new List<RecordingInfo>();
- }
- public Task<IEnumerable<TimerInfo>> GetTimersAsync(CancellationToken cancellationToken)
- {
- return Task.FromResult((IEnumerable<TimerInfo>)_timerProvider.GetAll());
- }
- public Task<SeriesTimerInfo> GetNewTimerDefaultsAsync(CancellationToken cancellationToken, ProgramInfo program = null)
- {
- var config = GetConfiguration();
- var defaults = new SeriesTimerInfo()
- {
- PostPaddingSeconds = Math.Max(config.PostPaddingSeconds, 0),
- PrePaddingSeconds = Math.Max(config.PrePaddingSeconds, 0),
- RecordAnyChannel = true,
- RecordAnyTime = true,
- RecordNewOnly = true,
- Days = new List<DayOfWeek>
- {
- DayOfWeek.Sunday,
- DayOfWeek.Monday,
- DayOfWeek.Tuesday,
- DayOfWeek.Wednesday,
- DayOfWeek.Thursday,
- DayOfWeek.Friday,
- DayOfWeek.Saturday
- }
- };
- if (program != null)
- {
- defaults.SeriesId = program.SeriesId;
- defaults.ProgramId = program.Id;
- }
- return Task.FromResult(defaults);
- }
- public Task<IEnumerable<SeriesTimerInfo>> GetSeriesTimersAsync(CancellationToken cancellationToken)
- {
- return Task.FromResult((IEnumerable<SeriesTimerInfo>)_seriesTimerProvider.GetAll());
- }
- public async Task<IEnumerable<ProgramInfo>> GetProgramsAsync(string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken)
- {
- try
- {
- return await GetProgramsAsyncInternal(channelId, startDateUtc, endDateUtc, cancellationToken).ConfigureAwait(false);
- }
- catch (OperationCanceledException)
- {
- throw;
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error getting programs", ex);
- return GetEpgDataForChannel(channelId).Where(i => i.StartDate <= endDateUtc && i.EndDate >= startDateUtc);
- }
- }
- private bool IsListingProviderEnabledForTuner(ListingsProviderInfo info, string tunerHostId)
- {
- if (info.EnableAllTuners)
- {
- return true;
- }
- if (string.IsNullOrWhiteSpace(tunerHostId))
- {
- throw new ArgumentNullException("tunerHostId");
- }
- return info.EnabledTuners.Contains(tunerHostId, StringComparer.OrdinalIgnoreCase);
- }
- private async Task<IEnumerable<ProgramInfo>> GetProgramsAsyncInternal(string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken)
- {
- var channels = await GetChannelsAsync(true, cancellationToken).ConfigureAwait(false);
- var channel = channels.First(i => string.Equals(i.Id, channelId, StringComparison.OrdinalIgnoreCase));
- foreach (var provider in GetListingProviders())
- {
- if (!IsListingProviderEnabledForTuner(provider.Item2, channel.TunerHostId))
- {
- _logger.Debug("Skipping getting programs for channel {0}-{1} from {2}-{3}, because it's not enabled for this tuner.", channel.Number, channel.Name, provider.Item1.Name, provider.Item2.ListingsId ?? string.Empty);
- continue;
- }
- _logger.Debug("Getting programs for channel {0}-{1} from {2}-{3}", channel.Number, channel.Name, provider.Item1.Name, provider.Item2.ListingsId ?? string.Empty);
- var channelMappings = GetChannelMappings(provider.Item2);
- var channelNumber = channel.Number;
- string mappedChannelNumber;
- if (channelMappings.TryGetValue(channelNumber, out mappedChannelNumber))
- {
- _logger.Debug("Found mapped channel on provider {0}. Tuner channel number: {1}, Mapped channel number: {2}", provider.Item1.Name, channelNumber, mappedChannelNumber);
- channelNumber = mappedChannelNumber;
- }
- var programs = await provider.Item1.GetProgramsAsync(provider.Item2, channelNumber, channel.Name, startDateUtc, endDateUtc, cancellationToken)
- .ConfigureAwait(false);
- var list = programs.ToList();
- // Replace the value that came from the provider with a normalized value
- foreach (var program in list)
- {
- program.ChannelId = channelId;
- }
- if (list.Count > 0)
- {
- SaveEpgDataForChannel(channelId, list);
- return list;
- }
- }
- return new List<ProgramInfo>();
- }
- private Dictionary<string, string> GetChannelMappings(ListingsProviderInfo info)
- {
- var dict = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
- foreach (var mapping in info.ChannelMappings)
- {
- dict[mapping.Name] = mapping.Value;
- }
- return dict;
- }
- private List<Tuple<IListingsProvider, ListingsProviderInfo>> GetListingProviders()
- {
- return GetConfiguration().ListingProviders
- .Select(i =>
- {
- var provider = _liveTvManager.ListingProviders.FirstOrDefault(l => string.Equals(l.Type, i.Type, StringComparison.OrdinalIgnoreCase));
- return provider == null ? null : new Tuple<IListingsProvider, ListingsProviderInfo>(provider, i);
- })
- .Where(i => i != null)
- .ToList();
- }
- public Task<MediaSourceInfo> GetRecordingStream(string recordingId, string streamId, CancellationToken cancellationToken)
- {
- throw new NotImplementedException();
- }
- public async Task<MediaSourceInfo> GetChannelStream(string channelId, string streamId, CancellationToken cancellationToken)
- {
- _logger.Info("Streaming Channel " + channelId);
- foreach (var hostInstance in _liveTvManager.TunerHosts)
- {
- try
- {
- var result = await hostInstance.GetChannelStream(channelId, streamId, cancellationToken).ConfigureAwait(false);
- result.Item2.Release();
- return result.Item1;
- }
- catch (FileNotFoundException)
- {
- }
- catch (Exception e)
- {
- _logger.ErrorException("Error getting channel stream", e);
- }
- }
- throw new ApplicationException("Tuner not found.");
- }
- private async Task<Tuple<MediaSourceInfo, ITunerHost, SemaphoreSlim>> GetChannelStreamInternal(string channelId, string streamId, CancellationToken cancellationToken)
- {
- _logger.Info("Streaming Channel " + channelId);
- foreach (var hostInstance in _liveTvManager.TunerHosts)
- {
- try
- {
- var result = await hostInstance.GetChannelStream(channelId, streamId, cancellationToken).ConfigureAwait(false);
- return new Tuple<MediaSourceInfo, ITunerHost, SemaphoreSlim>(result.Item1, hostInstance, result.Item2);
- }
- catch (FileNotFoundException)
- {
- }
- catch (Exception e)
- {
- _logger.ErrorException("Error getting channel stream", e);
- }
- }
- throw new ApplicationException("Tuner not found.");
- }
- public async Task<List<MediaSourceInfo>> GetChannelStreamMediaSources(string channelId, CancellationToken cancellationToken)
- {
- foreach (var hostInstance in _liveTvManager.TunerHosts)
- {
- try
- {
- var sources = await hostInstance.GetChannelStreamMediaSources(channelId, cancellationToken).ConfigureAwait(false);
- if (sources.Count > 0)
- {
- return sources;
- }
- }
- catch (NotImplementedException)
- {
- }
- }
- throw new NotImplementedException();
- }
- public Task<List<MediaSourceInfo>> GetRecordingStreamMediaSources(string recordingId, CancellationToken cancellationToken)
- {
- throw new NotImplementedException();
- }
- public Task CloseLiveStream(string id, CancellationToken cancellationToken)
- {
- return Task.FromResult(0);
- }
- public Task RecordLiveStream(string id, CancellationToken cancellationToken)
- {
- return Task.FromResult(0);
- }
- public Task ResetTuner(string id, CancellationToken cancellationToken)
- {
- return Task.FromResult(0);
- }
- async void _timerProvider_TimerFired(object sender, GenericEventArgs<TimerInfo> e)
- {
- var timer = e.Argument;
- _logger.Info("Recording timer fired.");
- try
- {
- var recordingEndDate = timer.EndDate.AddSeconds(timer.PostPaddingSeconds);
- if (recordingEndDate <= DateTime.UtcNow)
- {
- _logger.Warn("Recording timer fired for timer {0}, Id: {1}, but the program has already ended.", timer.Name, timer.Id);
- _timerProvider.Delete(timer);
- return;
- }
- var activeRecordingInfo = new ActiveRecordingInfo
- {
- CancellationTokenSource = new CancellationTokenSource(),
- TimerId = timer.Id
- };
- if (_activeRecordings.TryAdd(timer.Id, activeRecordingInfo))
- {
- await RecordStream(timer, recordingEndDate, activeRecordingInfo, activeRecordingInfo.CancellationTokenSource.Token).ConfigureAwait(false);
- }
- else
- {
- _logger.Info("Skipping RecordStream because it's already in progress.");
- }
- }
- catch (OperationCanceledException)
- {
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error recording stream", ex);
- }
- }
- private string GetRecordingPath(TimerInfo timer, out string seriesPath)
- {
- var recordPath = RecordingPath;
- var config = GetConfiguration();
- seriesPath = null;
- if (timer.IsProgramSeries)
- {
- var customRecordingPath = config.SeriesRecordingPath;
- var allowSubfolder = true;
- if (!string.IsNullOrWhiteSpace(customRecordingPath))
- {
- allowSubfolder = string.Equals(customRecordingPath, recordPath, StringComparison.OrdinalIgnoreCase);
- recordPath = customRecordingPath;
- }
- if (allowSubfolder && config.EnableRecordingSubfolders)
- {
- recordPath = Path.Combine(recordPath, "Series");
- }
- var folderName = _fileSystem.GetValidFilename(timer.Name).Trim();
- // Can't use the year here in the folder name because it is the year of the episode, not the series.
- recordPath = Path.Combine(recordPath, folderName);
- seriesPath = recordPath;
- if (timer.SeasonNumber.HasValue)
- {
- folderName = string.Format("Season {0}", timer.SeasonNumber.Value.ToString(CultureInfo.InvariantCulture));
- recordPath = Path.Combine(recordPath, folderName);
- }
- }
- else if (timer.IsMovie)
- {
- var customRecordingPath = config.MovieRecordingPath;
- var allowSubfolder = true;
- if (!string.IsNullOrWhiteSpace(customRecordingPath))
- {
- allowSubfolder = string.Equals(customRecordingPath, recordPath, StringComparison.OrdinalIgnoreCase);
- recordPath = customRecordingPath;
- }
- if (allowSubfolder && config.EnableRecordingSubfolders)
- {
- recordPath = Path.Combine(recordPath, "Movies");
- }
- var folderName = _fileSystem.GetValidFilename(timer.Name).Trim();
- if (timer.ProductionYear.HasValue)
- {
- folderName += " (" + timer.ProductionYear.Value.ToString(CultureInfo.InvariantCulture) + ")";
- }
- recordPath = Path.Combine(recordPath, folderName);
- }
- else if (timer.IsKids)
- {
- if (config.EnableRecordingSubfolders)
- {
- recordPath = Path.Combine(recordPath, "Kids");
- }
- var folderName = _fileSystem.GetValidFilename(timer.Name).Trim();
- if (timer.ProductionYear.HasValue)
- {
- folderName += " (" + timer.ProductionYear.Value.ToString(CultureInfo.InvariantCulture) + ")";
- }
- recordPath = Path.Combine(recordPath, folderName);
- }
- else if (timer.IsSports)
- {
- if (config.EnableRecordingSubfolders)
- {
- recordPath = Path.Combine(recordPath, "Sports");
- }
- recordPath = Path.Combine(recordPath, _fileSystem.GetValidFilename(timer.Name).Trim());
- }
- else
- {
- if (config.EnableRecordingSubfolders)
- {
- recordPath = Path.Combine(recordPath, "Other");
- }
- recordPath = Path.Combine(recordPath, _fileSystem.GetValidFilename(timer.Name).Trim());
- }
- var recordingFileName = _fileSystem.GetValidFilename(RecordingHelper.GetRecordingName(timer)).Trim() + ".ts";
- return Path.Combine(recordPath, recordingFileName);
- }
- private async Task RecordStream(TimerInfo timer, DateTime recordingEndDate, ActiveRecordingInfo activeRecordingInfo, CancellationToken cancellationToken)
- {
- if (timer == null)
- {
- throw new ArgumentNullException("timer");
- }
- ProgramInfo programInfo = null;
- if (!string.IsNullOrWhiteSpace(timer.ProgramId))
- {
- programInfo = GetProgramInfoFromCache(timer.ChannelId, timer.ProgramId);
- }
- if (programInfo == null)
- {
- _logger.Info("Unable to find program with Id {0}. Will search using start date", timer.ProgramId);
- programInfo = GetProgramInfoFromCache(timer.ChannelId, timer.StartDate);
- }
- if (programInfo != null)
- {
- RecordingHelper.CopyProgramInfoToTimerInfo(programInfo, timer);
- }
- string seriesPath = null;
- var recordPath = GetRecordingPath(timer, out seriesPath);
- var recordingStatus = RecordingStatus.New;
- var isResourceOpen = false;
- SemaphoreSlim semaphore = null;
- try
- {
- var result = await GetChannelStreamInternal(timer.ChannelId, null, CancellationToken.None).ConfigureAwait(false);
- isResourceOpen = true;
- semaphore = result.Item3;
- var mediaStreamInfo = result.Item1;
- // HDHR doesn't seem to release the tuner right away after first probing with ffmpeg
- //await Task.Delay(3000, cancellationToken).ConfigureAwait(false);
- var recorder = await GetRecorder().ConfigureAwait(false);
- recordPath = recorder.GetOutputPath(mediaStreamInfo, recordPath);
- recordPath = EnsureFileUnique(recordPath, timer.Id);
- _libraryManager.RegisterIgnoredPath(recordPath);
- _libraryMonitor.ReportFileSystemChangeBeginning(recordPath);
- _fileSystem.CreateDirectory(Path.GetDirectoryName(recordPath));
- activeRecordingInfo.Path = recordPath;
- var duration = recordingEndDate - DateTime.UtcNow;
- _logger.Info("Beginning recording. Will record for {0} minutes.", duration.TotalMinutes.ToString(CultureInfo.InvariantCulture));
- _logger.Info("Writing file to path: " + recordPath);
- _logger.Info("Opening recording stream from tuner provider");
- Action onStarted = () =>
- {
- timer.Status = RecordingStatus.InProgress;
- _timerProvider.AddOrUpdate(timer, false);
- result.Item3.Release();
- isResourceOpen = false;
- SaveNfo(timer, recordPath, seriesPath);
- };
- var pathWithDuration = result.Item2.ApplyDuration(mediaStreamInfo.Path, duration);
- // If it supports supplying duration via url
- if (!string.Equals(pathWithDuration, mediaStreamInfo.Path, StringComparison.OrdinalIgnoreCase))
- {
- mediaStreamInfo.Path = pathWithDuration;
- mediaStreamInfo.RunTimeTicks = duration.Ticks;
- }
- await recorder.Record(mediaStreamInfo, recordPath, duration, onStarted, cancellationToken).ConfigureAwait(false);
- recordingStatus = RecordingStatus.Completed;
- _logger.Info("Recording completed: {0}", recordPath);
- }
- catch (OperationCanceledException)
- {
- _logger.Info("Recording stopped: {0}", recordPath);
- recordingStatus = RecordingStatus.Completed;
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error recording to {0}", ex, recordPath);
- recordingStatus = RecordingStatus.Error;
- }
- finally
- {
- if (isResourceOpen && semaphore != null)
- {
- semaphore.Release();
- }
- _libraryManager.UnRegisterIgnoredPath(recordPath);
- _libraryMonitor.ReportFileSystemChangeComplete(recordPath, true);
- ActiveRecordingInfo removed;
- _activeRecordings.TryRemove(timer.Id, out removed);
- }
- if (recordingStatus == RecordingStatus.Completed)
- {
- timer.Status = RecordingStatus.Completed;
- _timerProvider.Delete(timer);
- OnSuccessfulRecording(timer, recordPath);
- }
- else if (DateTime.UtcNow < timer.EndDate)
- {
- const int retryIntervalSeconds = 60;
- _logger.Info("Retrying recording in {0} seconds.", retryIntervalSeconds);
- timer.Status = RecordingStatus.New;
- timer.StartDate = DateTime.UtcNow.AddSeconds(retryIntervalSeconds);
- _timerProvider.AddOrUpdate(timer);
- }
- else
- {
- _timerProvider.Delete(timer);
- }
- }
- private string EnsureFileUnique(string path, string timerId)
- {
- var originalPath = path;
- var index = 1;
- while (FileExists(path, timerId))
- {
- var parent = Path.GetDirectoryName(originalPath);
- var name = Path.GetFileNameWithoutExtension(originalPath);
- name += "-" + index.ToString(CultureInfo.InvariantCulture);
- path = Path.ChangeExtension(Path.Combine(parent, name), Path.GetExtension(originalPath));
- index++;
- }
- return path;
- }
- private bool FileExists(string path, string timerId)
- {
- if (_fileSystem.FileExists(path))
- {
- return true;
- }
- var hasRecordingAtPath = _activeRecordings.Values.ToList().Any(i => string.Equals(i.Path, path, StringComparison.OrdinalIgnoreCase) && !string.Equals(i.TimerId, timerId, StringComparison.OrdinalIgnoreCase));
- if (hasRecordingAtPath)
- {
- return true;
- }
- return false;
- }
- private async Task<IRecorder> GetRecorder()
- {
- var config = GetConfiguration();
- if (config.EnableRecordingEncoding)
- {
- var regInfo = await _liveTvManager.GetRegistrationInfo("embytvrecordingconversion").ConfigureAwait(false);
- if (regInfo.IsValid)
- {
- return new EncodedRecorder(_logger, _fileSystem, _mediaEncoder, _config.ApplicationPaths, _jsonSerializer, config, _httpClient);
- }
- }
- return new DirectRecorder(_logger, _httpClient, _fileSystem);
- }
- private async void OnSuccessfulRecording(TimerInfo timer, string path)
- {
- if (timer.IsProgramSeries && GetConfiguration().EnableAutoOrganize)
- {
- try
- {
- // this is to account for the library monitor holding a lock for additional time after the change is complete.
- // ideally this shouldn't be hard-coded
- await Task.Delay(30000).ConfigureAwait(false);
- var organize = new EpisodeFileOrganizer(_organizationService, _config, _fileSystem, _logger, _libraryManager, _libraryMonitor, _providerManager);
- var result = await organize.OrganizeEpisodeFile(path, _config.GetAutoOrganizeOptions(), false, CancellationToken.None).ConfigureAwait(false);
- if (result.Status == FileSortingStatus.Success)
- {
- return;
- }
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error processing new recording", ex);
- }
- }
- }
- private void SaveNfo(TimerInfo timer, string recordingPath, string seriesPath)
- {
- try
- {
- if (timer.IsProgramSeries)
- {
- SaveSeriesNfo(timer, recordingPath, seriesPath);
- }
- else if (!timer.IsMovie || timer.IsSports)
- {
- SaveVideoNfo(timer, recordingPath);
- }
- }
- catch (Exception ex)
- {
- _logger.ErrorException("Error saving nfo", ex);
- }
- }
- private void SaveSeriesNfo(TimerInfo timer, string recordingPath, string seriesPath)
- {
- var nfoPath = Path.Combine(seriesPath, "tvshow.nfo");
- if (File.Exists(nfoPath))
- {
- return;
- }
- using (var stream = _fileSystem.GetFileStream(nfoPath, FileMode.Create, FileAccess.Write, FileShare.Read))
- {
- var settings = new XmlWriterSettings
- {
- Indent = true,
- Encoding = Encoding.UTF8,
- CloseOutput = false
- };
- using (XmlWriter writer = XmlWriter.Create(stream, settings))
- {
- writer.WriteStartDocument(true);
- writer.WriteStartElement("tvshow");
- if (!string.IsNullOrWhiteSpace(timer.Name))
- {
- writer.WriteElementString("title", timer.Name);
- }
- writer.WriteEndElement();
- writer.WriteEndDocument();
- }
- }
- }
- public const string DateAddedFormat = "yyyy-MM-dd HH:mm:ss";
- private void SaveVideoNfo(TimerInfo timer, string recordingPath)
- {
- var nfoPath = Path.ChangeExtension(recordingPath, ".nfo");
- if (File.Exists(nfoPath))
- {
- return;
- }
- using (var stream = _fileSystem.GetFileStream(nfoPath, FileMode.Create, FileAccess.Write, FileShare.Read))
- {
- var settings = new XmlWriterSettings
- {
- Indent = true,
- Encoding = Encoding.UTF8,
- CloseOutput = false
- };
- using (XmlWriter writer = XmlWriter.Create(stream, settings))
- {
- writer.WriteStartDocument(true);
- writer.WriteStartElement("movie");
- if (!string.IsNullOrWhiteSpace(timer.Name))
- {
- writer.WriteElementString("title", timer.Name);
- }
- writer.WriteElementString("dateadded", DateTime.UtcNow.ToLocalTime().ToString(DateAddedFormat));
- if (timer.ProductionYear.HasValue)
- {
- writer.WriteElementString("year", timer.ProductionYear.Value.ToString(CultureInfo.InvariantCulture));
- }
- if (!string.IsNullOrEmpty(timer.OfficialRating))
- {
- writer.WriteElementString("mpaa", timer.OfficialRating);
- }
- var overview = (timer.Overview ?? string.Empty)
- .StripHtml()
- .Replace(""", "'");
- writer.WriteElementString("plot", overview);
- writer.WriteElementString("lockdata", true.ToString().ToLower());
- if (timer.CommunityRating.HasValue)
- {
- writer.WriteElementString("rating", timer.CommunityRating.Value.ToString(CultureInfo.InvariantCulture));
- }
- if (timer.IsSports)
- {
- AddGenre(timer.Genres, "Sports");
- }
- if (timer.IsKids)
- {
- AddGenre(timer.Genres, "Kids");
- }
- foreach (var genre in timer.Genres)
- {
- writer.WriteElementString("genre", genre);
- }
- if (!string.IsNullOrWhiteSpace(timer.ShortOverview))
- {
- writer.WriteElementString("outline", timer.ShortOverview);
- }
- if (!string.IsNullOrWhiteSpace(timer.HomePageUrl))
- {
- writer.WriteElementString("website", timer.HomePageUrl);
- }
- writer.WriteEndElement();
- writer.WriteEndDocument();
- }
- }
- }
- private void AddGenre(List<string> genres, string genre)
- {
- if (!genres.Contains(genre, StringComparer.OrdinalIgnoreCase))
- {
- genres.Add(genre);
- }
- }
- private ProgramInfo GetProgramInfoFromCache(string channelId, string programId)
- {
- var epgData = GetEpgDataForChannel(channelId);
- return epgData.FirstOrDefault(p => string.Equals(p.Id, programId, StringComparison.OrdinalIgnoreCase));
- }
- private ProgramInfo GetProgramInfoFromCache(string channelId, DateTime startDateUtc)
- {
- var epgData = GetEpgDataForChannel(channelId);
- var startDateTicks = startDateUtc.Ticks;
- // Find the first program that starts within 3 minutes
- return epgData.FirstOrDefault(p => Math.Abs(startDateTicks - p.StartDate.Ticks) <= TimeSpan.FromMinutes(3).Ticks);
- }
- private LiveTvOptions GetConfiguration()
- {
- return _config.GetConfiguration<LiveTvOptions>("livetv");
- }
- private async Task UpdateTimersForSeriesTimer(List<ProgramInfo> epgData, SeriesTimerInfo seriesTimer, bool deleteInvalidTimers)
- {
- var newTimers = GetTimersForSeries(seriesTimer, epgData, true).ToList();
- var registration = await _liveTvManager.GetRegistrationInfo("seriesrecordings").ConfigureAwait(false);
- if (registration.IsValid)
- {
- foreach (var timer in newTimers)
- {
- _timerProvider.AddOrUpdate(timer);
- }
- }
- if (deleteInvalidTimers)
- {
- var allTimers = GetTimersForSeries(seriesTimer, epgData, false)
- .Select(i => i.Id)
- .ToList();
- var deletes = _timerProvider.GetAll()
- .Where(i => string.Equals(i.SeriesTimerId, seriesTimer.Id, StringComparison.OrdinalIgnoreCase))
- .Where(i => !allTimers.Contains(i.Id, StringComparer.OrdinalIgnoreCase) && i.StartDate > DateTime.UtcNow)
- .ToList();
- foreach (var timer in deletes)
- {
- await CancelTimerAsync(timer.Id, CancellationToken.None).ConfigureAwait(false);
- }
- }
- }
- private IEnumerable<TimerInfo> GetTimersForSeries(SeriesTimerInfo seriesTimer,
- IEnumerable<ProgramInfo> allPrograms,
- bool filterByCurrentRecordings)
- {
- if (seriesTimer == null)
- {
- throw new ArgumentNullException("seriesTimer");
- }
- if (allPrograms == null)
- {
- throw new ArgumentNullException("allPrograms");
- }
- // Exclude programs that have already ended
- allPrograms = allPrograms.Where(i => i.EndDate > DateTime.UtcNow);
- allPrograms = GetProgramsForSeries(seriesTimer, allPrograms);
- if (filterByCurrentRecordings && seriesTimer.SkipEpisodesInLibrary)
- {
- allPrograms = allPrograms.Where(i => !IsProgramAlreadyInLibrary(i));
- }
- return allPrograms.Select(i => RecordingHelper.CreateTimer(i, seriesTimer));
- }
- private bool IsProgramAlreadyInLibrary(ProgramInfo program)
- {
- if ((program.EpisodeNumber.HasValue && program.SeasonNumber.HasValue) || !string.IsNullOrWhiteSpace(program.EpisodeTitle))
- {
- var seriesIds = _libraryManager.GetItemIds(new InternalItemsQuery
- {
- IncludeItemTypes = new[] { typeof(Series).Name },
- Name = program.Name
- }).Select(i => i.ToString("N")).ToArray();
- if (seriesIds.Length == 0)
- {
- return false;
- }
- if (program.EpisodeNumber.HasValue && program.SeasonNumber.HasValue)
- {
- var result = _libraryManager.GetItemsResult(new InternalItemsQuery
- {
- IncludeItemTypes = new[] { typeof(Episode).Name },
- ParentIndexNumber = program.SeasonNumber.Value,
- IndexNumber = program.EpisodeNumber.Value,
- AncestorIds = seriesIds,
- ExcludeLocationTypes = new[] { LocationType.Virtual }
- });
- if (result.TotalRecordCount > 0)
- {
- return true;
- }
- }
- if (!string.IsNullOrWhiteSpace(program.EpisodeTitle))
- {
- var result = _libraryManager.GetItemsResult(new InternalItemsQuery
- {
- IncludeItemTypes = new[] { typeof(Episode).Name },
- Name = program.EpisodeTitle,
- AncestorIds = seriesIds,
- ExcludeLocationTypes = new[] { LocationType.Virtual }
- });
- if (result.TotalRecordCount > 0)
- {
- return true;
- }
- }
- }
- return false;
- }
- private IEnumerable<ProgramInfo> GetProgramsForSeries(SeriesTimerInfo seriesTimer, IEnumerable<ProgramInfo> allPrograms)
- {
- if (!seriesTimer.RecordAnyTime)
- {
- allPrograms = allPrograms.Where(epg => Math.Abs(seriesTimer.StartDate.TimeOfDay.Ticks - epg.StartDate.TimeOfDay.Ticks) < TimeSpan.FromMinutes(5).Ticks);
- allPrograms = allPrograms.Where(i => seriesTimer.Days.Contains(i.StartDate.ToLocalTime().DayOfWeek));
- }
- if (seriesTimer.RecordNewOnly)
- {
- allPrograms = allPrograms.Where(epg => !epg.IsRepeat);
- }
- if (!seriesTimer.RecordAnyChannel)
- {
- allPrograms = allPrograms.Where(epg => string.Equals(epg.ChannelId, seriesTimer.ChannelId, StringComparison.OrdinalIgnoreCase));
- }
- if (string.IsNullOrWhiteSpace(seriesTimer.SeriesId))
- {
- _logger.Error("seriesTimer.SeriesId is null. Cannot find programs for series");
- return new List<ProgramInfo>();
- }
- return allPrograms.Where(i => string.Equals(i.SeriesId, seriesTimer.SeriesId, StringComparison.OrdinalIgnoreCase));
- }
- private string GetChannelEpgCachePath(string channelId)
- {
- return Path.Combine(_config.CommonApplicationPaths.CachePath, "embytvepg", channelId + ".json");
- }
- private readonly object _epgLock = new object();
- private void SaveEpgDataForChannel(string channelId, List<ProgramInfo> epgData)
- {
- var path = GetChannelEpgCachePath(channelId);
- _fileSystem.CreateDirectory(Path.GetDirectoryName(path));
- lock (_epgLock)
- {
- _jsonSerializer.SerializeToFile(epgData, path);
- }
- }
- private List<ProgramInfo> GetEpgDataForChannel(string channelId)
- {
- try
- {
- lock (_epgLock)
- {
- return _jsonSerializer.DeserializeFromFile<List<ProgramInfo>>(GetChannelEpgCachePath(channelId));
- }
- }
- catch
- {
- return new List<ProgramInfo>();
- }
- }
- private List<ProgramInfo> GetEpgDataForChannels(List<string> channelIds)
- {
- return channelIds.SelectMany(GetEpgDataForChannel).ToList();
- }
- public void Dispose()
- {
- foreach (var pair in _activeRecordings.ToList())
- {
- pair.Value.CancellationTokenSource.Cancel();
- }
- }
- public List<VirtualFolderInfo> GetRecordingFolders()
- {
- var list = new List<VirtualFolderInfo>();
- var defaultFolder = RecordingPath;
- var defaultName = "Recordings";
- if (Directory.Exists(defaultFolder))
- {
- list.Add(new VirtualFolderInfo
- {
- Locations = new List<string> { defaultFolder },
- Name = defaultName
- });
- }
- var customPath = GetConfiguration().MovieRecordingPath;
- if ((!string.IsNullOrWhiteSpace(customPath) && !string.Equals(customPath, defaultFolder, StringComparison.OrdinalIgnoreCase)) && Directory.Exists(customPath))
- {
- list.Add(new VirtualFolderInfo
- {
- Locations = new List<string> { customPath },
- Name = "Recorded Movies",
- CollectionType = CollectionType.Movies
- });
- }
- customPath = GetConfiguration().SeriesRecordingPath;
- if ((!string.IsNullOrWhiteSpace(customPath) && !string.Equals(customPath, defaultFolder, StringComparison.OrdinalIgnoreCase)) && Directory.Exists(customPath))
- {
- list.Add(new VirtualFolderInfo
- {
- Locations = new List<string> { customPath },
- Name = "Recorded Series",
- CollectionType = CollectionType.TvShows
- });
- }
- return list;
- }
- class ActiveRecordingInfo
- {
- public string Path { get; set; }
- public string TimerId { get; set; }
- public CancellationTokenSource CancellationTokenSource { get; set; }
- }
- }
- }
|