jellyfin/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs

544 lines
20 KiB
C#
Raw Normal View History

2013-11-24 21:51:45 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.IO;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Drawing;
2013-11-26 03:53:48 +01:00
using MediaBrowser.Controller.Dto;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
2013-11-24 21:51:45 +01:00
using MediaBrowser.Controller.LiveTv;
2013-11-26 03:53:48 +01:00
using MediaBrowser.Controller.Localization;
2013-11-24 21:51:45 +01:00
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Model.LiveTv;
2013-11-24 21:51:45 +01:00
using MediaBrowser.Model.Logging;
2013-11-25 22:53:06 +01:00
using MediaBrowser.Model.Querying;
2013-11-24 21:51:45 +01:00
using System;
using System.Collections.Generic;
2013-11-24 21:51:45 +01:00
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.LiveTv
{
/// <summary>
/// Class LiveTvManager
/// </summary>
public class LiveTvManager : ILiveTvManager
{
2013-11-24 21:51:45 +01:00
private readonly IServerApplicationPaths _appPaths;
private readonly IFileSystem _fileSystem;
private readonly ILogger _logger;
private readonly IItemRepository _itemRepo;
2013-11-26 03:53:48 +01:00
private readonly IUserManager _userManager;
2013-12-15 02:17:57 +01:00
2013-11-26 03:53:48 +01:00
private readonly ILocalizationManager _localization;
2013-12-15 02:17:57 +01:00
private readonly LiveTvDtoService _tvDtoService;
2013-11-26 03:53:48 +01:00
private readonly List<ILiveTvService> _services = new List<ILiveTvService>();
2013-11-24 21:51:45 +01:00
2013-11-25 21:39:23 +01:00
private List<Channel> _channels = new List<Channel>();
private List<ProgramInfoDto> _programs = new List<ProgramInfoDto>();
2013-12-15 02:17:57 +01:00
public LiveTvManager(IServerApplicationPaths appPaths, IFileSystem fileSystem, ILogger logger, IItemRepository itemRepo, IImageProcessor imageProcessor, ILocalizationManager localization, IUserDataManager userDataManager, IDtoService dtoService, IUserManager userManager)
2013-11-24 21:51:45 +01:00
{
_appPaths = appPaths;
_fileSystem = fileSystem;
_logger = logger;
_itemRepo = itemRepo;
2013-11-26 03:53:48 +01:00
_localization = localization;
2013-12-15 02:17:57 +01:00
_userManager = userManager;
_tvDtoService = new LiveTvDtoService(dtoService, userDataManager, imageProcessor, logger);
2013-11-24 21:51:45 +01:00
}
/// <summary>
/// Gets the services.
/// </summary>
/// <value>The services.</value>
public IReadOnlyList<ILiveTvService> Services
{
get { return _services; }
}
2013-12-04 21:55:42 +01:00
public ILiveTvService ActiveService { get; private set; }
/// <summary>
/// Adds the parts.
/// </summary>
/// <param name="services">The services.</param>
public void AddParts(IEnumerable<ILiveTvService> services)
{
_services.AddRange(services);
2013-12-04 21:55:42 +01:00
ActiveService = _services.FirstOrDefault();
}
2013-12-15 02:17:57 +01:00
public Task<QueryResult<ChannelInfoDto>> GetChannels(ChannelQuery query, CancellationToken cancellationToken)
2013-11-24 21:51:45 +01:00
{
2013-11-26 03:53:48 +01:00
var user = string.IsNullOrEmpty(query.UserId) ? null : _userManager.GetUserById(new Guid(query.UserId));
IEnumerable<Channel> channels = _channels;
if (user != null)
{
channels = channels.Where(i => i.IsParentalAllowed(user, _localization))
.OrderBy(i =>
{
double number = 0;
if (!string.IsNullOrEmpty(i.ChannelNumber))
{
double.TryParse(i.ChannelNumber, out number);
}
return number;
});
}
var returnChannels = channels.OrderBy(i =>
2013-11-24 21:51:45 +01:00
{
double number = 0;
if (!string.IsNullOrEmpty(i.ChannelNumber))
{
double.TryParse(i.ChannelNumber, out number);
}
return number;
2013-11-25 21:39:23 +01:00
}).ThenBy(i => i.Name)
2013-12-15 02:17:57 +01:00
.Select(i => _tvDtoService.GetChannelInfoDto(i, user))
2013-11-25 21:39:23 +01:00
.ToArray();
2013-12-15 02:17:57 +01:00
var result = new QueryResult<ChannelInfoDto>
2013-11-25 21:39:23 +01:00
{
2013-11-26 03:53:48 +01:00
Items = returnChannels,
TotalRecordCount = returnChannels.Length
2013-11-25 21:39:23 +01:00
};
2013-12-15 02:17:57 +01:00
return Task.FromResult(result);
2013-11-24 21:51:45 +01:00
}
2013-11-24 22:30:38 +01:00
public Channel GetChannel(string id)
2013-11-24 21:51:45 +01:00
{
2013-11-24 22:30:38 +01:00
var guid = new Guid(id);
return _channels.FirstOrDefault(i => i.Id == guid);
2013-11-24 21:51:45 +01:00
}
2013-11-26 22:36:11 +01:00
private async Task<Channel> GetChannel(ChannelInfo channelInfo, string serviceName, CancellationToken cancellationToken)
2013-11-24 21:51:45 +01:00
{
2013-11-26 22:36:11 +01:00
var path = Path.Combine(_appPaths.ItemsByNamePath, "channels", _fileSystem.GetValidFilename(serviceName), _fileSystem.GetValidFilename(channelInfo.Name));
2013-11-24 21:51:45 +01:00
var fileInfo = new DirectoryInfo(path);
var isNew = false;
if (!fileInfo.Exists)
{
Directory.CreateDirectory(path);
fileInfo = new DirectoryInfo(path);
if (!fileInfo.Exists)
{
throw new IOException("Path not created: " + path);
}
isNew = true;
}
2013-12-15 02:17:57 +01:00
var id = _tvDtoService.GetInternalChannelId(serviceName, channelInfo.Id, channelInfo.Name);
2013-11-24 21:51:45 +01:00
var item = _itemRepo.RetrieveItem(id) as Channel;
if (item == null)
{
item = new Channel
{
Name = channelInfo.Name,
Id = id,
DateCreated = _fileSystem.GetCreationTimeUtc(fileInfo),
DateModified = _fileSystem.GetLastWriteTimeUtc(fileInfo),
Path = path,
ChannelId = channelInfo.Id,
ChannelNumber = channelInfo.Number,
2013-12-13 16:48:48 +01:00
ServiceName = serviceName,
HasProviderImage = channelInfo.HasImage
2013-11-24 21:51:45 +01:00
};
isNew = true;
}
// Set this now so we don't cause additional file system access during provider executions
item.ResetResolveArgs(fileInfo);
await item.RefreshMetadata(cancellationToken, forceSave: isNew, resetResolveArgs: false);
return item;
}
2013-11-25 17:15:31 +01:00
2013-12-17 21:02:12 +01:00
public Task<ProgramInfoDto> GetProgram(string id, CancellationToken cancellationToken, User user = null)
{
var program = _programs.FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.OrdinalIgnoreCase));
return Task.FromResult(program);
}
public Task<QueryResult<ProgramInfoDto>> GetPrograms(ProgramQuery query, CancellationToken cancellationToken)
2013-11-25 17:15:31 +01:00
{
2013-11-25 21:39:23 +01:00
IEnumerable<ProgramInfoDto> programs = _programs
.OrderBy(i => i.StartDate)
.ThenBy(i => i.EndDate);
2013-11-25 17:15:31 +01:00
if (query.ChannelIdList.Length > 0)
{
var guids = query.ChannelIdList.Select(i => new Guid(i)).ToList();
programs = programs.Where(i => guids.Contains(new Guid(i.ChannelId)));
2013-11-25 21:39:23 +01:00
}
var returnArray = programs.ToArray();
2013-12-17 21:02:12 +01:00
var result = new QueryResult<ProgramInfoDto>
2013-11-26 22:36:11 +01:00
{
Items = returnArray,
TotalRecordCount = returnArray.Length
};
2013-12-17 21:02:12 +01:00
return Task.FromResult(result);
2013-11-25 22:53:06 +01:00
}
2013-11-26 22:36:11 +01:00
internal async Task RefreshChannels(IProgress<double> progress, CancellationToken cancellationToken)
2013-11-25 22:53:06 +01:00
{
// Avoid implicitly captured closure
var service = ActiveService;
2013-11-25 22:53:06 +01:00
if (service == null)
{
progress.Report(100);
return;
}
2013-11-25 22:53:06 +01:00
progress.Report(10);
var allChannels = await GetChannels(service, cancellationToken).ConfigureAwait(false);
var allChannelsList = allChannels.ToList();
2013-11-25 22:53:06 +01:00
var list = new List<Channel>();
var programs = new List<ProgramInfoDto>();
var numComplete = 0;
foreach (var channelInfo in allChannelsList)
2013-11-25 22:53:06 +01:00
{
try
{
2013-11-26 22:36:11 +01:00
var item = await GetChannel(channelInfo.Item2, channelInfo.Item1, cancellationToken).ConfigureAwait(false);
2013-11-25 22:53:06 +01:00
2013-11-26 22:36:11 +01:00
var channelPrograms = await service.GetProgramsAsync(channelInfo.Item2.Id, cancellationToken).ConfigureAwait(false);
2013-11-25 22:53:06 +01:00
2013-12-15 02:17:57 +01:00
programs.AddRange(channelPrograms.Select(program => _tvDtoService.GetProgramInfoDto(program, item)));
2013-11-25 22:53:06 +01:00
list.Add(item);
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
2013-11-26 22:36:11 +01:00
_logger.ErrorException("Error getting channel information for {0}", ex, channelInfo.Item2.Name);
2013-11-25 22:53:06 +01:00
}
numComplete++;
double percent = numComplete;
percent /= allChannelsList.Count;
2013-11-25 22:53:06 +01:00
progress.Report(90 * percent + 10);
}
_programs = programs;
_channels = list;
}
2013-11-26 22:36:11 +01:00
private async Task<IEnumerable<Tuple<string, ChannelInfo>>> GetChannels(ILiveTvService service, CancellationToken cancellationToken)
2013-11-25 22:53:06 +01:00
{
2013-11-26 22:36:11 +01:00
var channels = await service.GetChannelsAsync(cancellationToken).ConfigureAwait(false);
2013-11-25 22:53:06 +01:00
2013-11-26 22:36:11 +01:00
return channels.Select(i => new Tuple<string, ChannelInfo>(service.Name, i));
2013-11-25 22:53:06 +01:00
}
2013-11-26 22:36:11 +01:00
public async Task<QueryResult<RecordingInfoDto>> GetRecordings(RecordingQuery query, CancellationToken cancellationToken)
2013-11-26 03:53:48 +01:00
{
2013-12-15 02:17:57 +01:00
var user = string.IsNullOrEmpty(query.UserId) ? null : _userManager.GetUserById(new Guid(query.UserId));
2013-11-26 22:36:11 +01:00
var list = new List<RecordingInfoDto>();
2013-12-04 21:55:42 +01:00
if (ActiveService != null)
2013-11-26 22:36:11 +01:00
{
2013-12-15 02:17:57 +01:00
var recordings = await ActiveService.GetRecordingsAsync(cancellationToken).ConfigureAwait(false);
var dtos = recordings.Select(i => _tvDtoService.GetRecordingInfoDto(i, ActiveService, user));
2013-11-26 22:36:11 +01:00
2013-12-15 02:17:57 +01:00
list.AddRange(dtos);
2013-11-26 22:36:11 +01:00
}
if (!string.IsNullOrEmpty(query.ChannelId))
{
list = list.Where(i => string.Equals(i.ChannelId, query.ChannelId))
.ToList();
}
2013-11-27 20:04:19 +01:00
var returnArray = list.OrderByDescending(i => i.StartDate)
.ToArray();
2013-11-26 03:53:48 +01:00
return new QueryResult<RecordingInfoDto>
{
Items = returnArray,
TotalRecordCount = returnArray.Length
};
}
2013-11-26 22:36:11 +01:00
private IEnumerable<ILiveTvService> GetServices(string serviceName, string channelId)
{
IEnumerable<ILiveTvService> services = _services;
if (string.IsNullOrEmpty(serviceName) && !string.IsNullOrEmpty(channelId))
{
var channelIdGuid = new Guid(channelId);
serviceName = _channels.Where(i => i.Id == channelIdGuid)
.Select(i => i.ServiceName)
.FirstOrDefault();
}
if (!string.IsNullOrEmpty(serviceName))
{
services = services.Where(i => string.Equals(i.Name, serviceName, StringComparison.OrdinalIgnoreCase));
}
return services;
}
public Task ScheduleRecording(string programId)
{
throw new NotImplementedException();
}
2013-11-27 20:04:19 +01:00
public async Task<QueryResult<TimerInfoDto>> GetTimers(TimerQuery query, CancellationToken cancellationToken)
{
var list = new List<TimerInfoDto>();
2013-12-04 21:55:42 +01:00
if (ActiveService != null)
2013-11-27 20:04:19 +01:00
{
2013-12-15 02:17:57 +01:00
var timers = await ActiveService.GetTimersAsync(cancellationToken).ConfigureAwait(false);
2013-11-27 20:04:19 +01:00
2013-12-15 02:17:57 +01:00
var dtos = timers.Select(i => _tvDtoService.GetTimerInfoDto(i, ActiveService));
list.AddRange(dtos);
2013-11-27 20:04:19 +01:00
}
if (!string.IsNullOrEmpty(query.ChannelId))
{
list = list.Where(i => string.Equals(i.ChannelId, query.ChannelId))
.ToList();
}
2013-12-16 19:44:03 +01:00
var returnArray = list.OrderBy(i => i.StartDate)
2013-11-27 20:04:19 +01:00
.ToArray();
return new QueryResult<TimerInfoDto>
{
Items = returnArray,
TotalRecordCount = returnArray.Length
};
}
public async Task DeleteRecording(string recordingId)
{
2013-12-15 15:19:24 +01:00
var recording = await GetRecording(recordingId, CancellationToken.None).ConfigureAwait(false);
if (recording == null)
{
throw new ResourceNotFoundException(string.Format("Recording with Id {0} not found", recordingId));
}
2013-12-15 15:19:24 +01:00
var service = GetServices(recording.ServiceName, null)
.First();
await service.DeleteRecordingAsync(recording.ExternalId, CancellationToken.None).ConfigureAwait(false);
}
public async Task CancelTimer(string id)
{
2013-12-15 15:19:24 +01:00
var timer = await GetTimer(id, CancellationToken.None).ConfigureAwait(false);
if (timer == null)
{
2013-12-15 15:19:24 +01:00
throw new ResourceNotFoundException(string.Format("Timer with Id {0} not found", id));
}
2013-12-15 15:19:24 +01:00
var service = GetServices(timer.ServiceName, null)
.First();
await service.CancelTimerAsync(timer.ExternalId, CancellationToken.None).ConfigureAwait(false);
}
2013-12-15 15:19:24 +01:00
public async Task CancelSeriesTimer(string id)
{
var timer = await GetSeriesTimer(id, CancellationToken.None).ConfigureAwait(false);
if (timer == null)
{
throw new ResourceNotFoundException(string.Format("Timer with Id {0} not found", id));
}
2013-12-15 15:19:24 +01:00
var service = GetServices(timer.ServiceName, null)
.First();
2013-12-15 15:19:24 +01:00
await service.CancelSeriesTimerAsync(timer.ExternalId, CancellationToken.None).ConfigureAwait(false);
}
2013-12-15 02:17:57 +01:00
public async Task<RecordingInfoDto> GetRecording(string id, CancellationToken cancellationToken, User user = null)
{
2013-12-15 02:17:57 +01:00
var results = await GetRecordings(new RecordingQuery
{
UserId = user == null ? null : user.Id.ToString("N")
}, cancellationToken).ConfigureAwait(false);
return results.Items.FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.CurrentCulture));
}
public async Task<TimerInfoDto> GetTimer(string id, CancellationToken cancellationToken)
{
var results = await GetTimers(new TimerQuery(), cancellationToken).ConfigureAwait(false);
return results.Items.FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.CurrentCulture));
}
2013-12-15 02:17:57 +01:00
public async Task<SeriesTimerInfoDto> GetSeriesTimer(string id, CancellationToken cancellationToken)
{
var results = await GetSeriesTimers(new SeriesTimerQuery(), cancellationToken).ConfigureAwait(false);
return results.Items.FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.CurrentCulture));
}
2013-12-15 15:19:24 +01:00
2013-12-15 02:17:57 +01:00
public async Task<QueryResult<SeriesTimerInfoDto>> GetSeriesTimers(SeriesTimerQuery query, CancellationToken cancellationToken)
{
var list = new List<SeriesTimerInfoDto>();
if (ActiveService != null)
{
var timers = await ActiveService.GetSeriesTimersAsync(cancellationToken).ConfigureAwait(false);
var dtos = timers.Select(i => _tvDtoService.GetSeriesTimerInfoDto(i, ActiveService));
list.AddRange(dtos);
}
var returnArray = list.OrderByDescending(i => i.StartDate)
.ToArray();
return new QueryResult<SeriesTimerInfoDto>
{
Items = returnArray,
TotalRecordCount = returnArray.Length
};
}
public async Task<ChannelInfoDto> GetChannel(string id, CancellationToken cancellationToken, User user = null)
{
var results = await GetChannels(new ChannelQuery
{
UserId = user == null ? null : user.Id.ToString("N")
}, cancellationToken).ConfigureAwait(false);
return results.Items.FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.CurrentCulture));
}
2013-12-17 21:02:12 +01:00
2013-12-18 06:44:46 +01:00
public async Task<SeriesTimerInfoDto> GetNewTimerDefaults(CancellationToken cancellationToken)
2013-12-17 21:02:12 +01:00
{
var info = await ActiveService.GetNewTimerDefaultsAsync(cancellationToken).ConfigureAwait(false);
2013-12-18 06:44:46 +01:00
var obj = _tvDtoService.GetSeriesTimerInfoDto(info, ActiveService);
obj.Id = obj.ExternalId = string.Empty;
return obj;
}
public async Task<SeriesTimerInfoDto> GetNewTimerDefaults(string programId, CancellationToken cancellationToken)
{
var info = await GetNewTimerDefaults(cancellationToken).ConfigureAwait(false);
var program = await GetProgram(programId, cancellationToken).ConfigureAwait(false);
info.Days = new List<DayOfWeek>
{
program.StartDate.ToLocalTime().DayOfWeek
};
info.DayPattern = _tvDtoService.GetDayPattern(info.Days);
info.Name = program.Name;
info.ChannelId = program.ChannelId;
info.ChannelName = program.ChannelName;
info.EndDate = program.EndDate;
info.StartDate = program.StartDate;
info.Name = program.Name;
info.Overview = program.Overview;
info.ProgramId = program.Id;
info.ExternalProgramId = program.ExternalId;
return info;
2013-12-17 21:02:12 +01:00
}
public async Task CreateTimer(TimerInfoDto timer, CancellationToken cancellationToken)
{
var service = string.IsNullOrEmpty(timer.ServiceName) ? ActiveService : GetServices(timer.ServiceName, null).First();
var info = await _tvDtoService.GetTimerInfo(timer, true, this, cancellationToken).ConfigureAwait(false);
2013-12-18 06:44:46 +01:00
// Set priority from default values
var defaultValues = await service.GetNewTimerDefaultsAsync(cancellationToken).ConfigureAwait(false);
info.Priority = defaultValues.Priority;
2013-12-17 21:02:12 +01:00
await service.CreateTimerAsync(info, cancellationToken).ConfigureAwait(false);
}
public async Task CreateSeriesTimer(SeriesTimerInfoDto timer, CancellationToken cancellationToken)
{
var service = string.IsNullOrEmpty(timer.ServiceName) ? ActiveService : GetServices(timer.ServiceName, null).First();
var info = await _tvDtoService.GetSeriesTimerInfo(timer, true, this, cancellationToken).ConfigureAwait(false);
2013-12-18 06:44:46 +01:00
// Set priority from default values
var defaultValues = await service.GetNewTimerDefaultsAsync(cancellationToken).ConfigureAwait(false);
info.Priority = defaultValues.Priority;
2013-12-17 21:02:12 +01:00
await service.CreateSeriesTimerAsync(info, cancellationToken).ConfigureAwait(false);
}
public async Task UpdateTimer(TimerInfoDto timer, CancellationToken cancellationToken)
{
var info = await _tvDtoService.GetTimerInfo(timer, false, this, cancellationToken).ConfigureAwait(false);
var service = string.IsNullOrEmpty(timer.ServiceName) ? ActiveService : GetServices(timer.ServiceName, null).First();
await service.UpdateTimerAsync(info, cancellationToken).ConfigureAwait(false);
}
public async Task UpdateSeriesTimer(SeriesTimerInfoDto timer, CancellationToken cancellationToken)
{
var info = await _tvDtoService.GetSeriesTimerInfo(timer, false, this, cancellationToken).ConfigureAwait(false);
var service = string.IsNullOrEmpty(timer.ServiceName) ? ActiveService : GetServices(timer.ServiceName, null).First();
await service.UpdateSeriesTimerAsync(info, cancellationToken).ConfigureAwait(false);
}
}
}