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

291 lines
9.2 KiB
C#
Raw Normal View History

2013-11-24 15:51:45 -05:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.IO;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Controller.LiveTv;
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.LiveTv;
2013-11-24 15:51:45 -05:00
using MediaBrowser.Model.Logging;
using System;
using System.Collections.Generic;
2013-11-24 15:51:45 -05:00
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2013-11-25 15:39:23 -05:00
using MediaBrowser.Model.Querying;
namespace MediaBrowser.Server.Implementations.LiveTv
{
/// <summary>
/// Class LiveTvManager
/// </summary>
public class LiveTvManager : ILiveTvManager
{
2013-11-24 15:51:45 -05:00
private readonly IServerApplicationPaths _appPaths;
private readonly IFileSystem _fileSystem;
private readonly ILogger _logger;
private readonly IItemRepository _itemRepo;
private readonly IImageProcessor _imageProcessor;
private readonly List<ILiveTvService> _services = new List<ILiveTvService>();
2013-11-24 15:51:45 -05:00
2013-11-25 15:39:23 -05:00
private List<Channel> _channels = new List<Channel>();
private List<ProgramInfoDto> _programs = new List<ProgramInfoDto>();
2013-11-24 15:51:45 -05:00
public LiveTvManager(IServerApplicationPaths appPaths, IFileSystem fileSystem, ILogger logger, IItemRepository itemRepo, IImageProcessor imageProcessor)
{
_appPaths = appPaths;
_fileSystem = fileSystem;
_logger = logger;
_itemRepo = itemRepo;
_imageProcessor = imageProcessor;
}
/// <summary>
/// Gets the services.
/// </summary>
/// <value>The services.</value>
public IReadOnlyList<ILiveTvService> Services
{
get { return _services; }
}
/// <summary>
/// Adds the parts.
/// </summary>
/// <param name="services">The services.</param>
public void AddParts(IEnumerable<ILiveTvService> services)
{
_services.AddRange(services);
}
/// <summary>
/// Gets the channel info dto.
/// </summary>
/// <param name="info">The info.</param>
/// <returns>ChannelInfoDto.</returns>
2013-11-24 15:51:45 -05:00
public ChannelInfoDto GetChannelInfoDto(Channel info)
{
return new ChannelInfoDto
{
Name = info.Name,
ServiceName = info.ServiceName,
2013-10-31 16:45:58 -04:00
ChannelType = info.ChannelType,
2013-11-24 15:51:45 -05:00
Number = info.ChannelNumber,
2013-11-24 16:30:38 -05:00
PrimaryImageTag = GetLogoImageTag(info),
Type = info.GetType().Name,
Id = info.Id.ToString("N"),
MediaType = info.MediaType
};
}
2013-11-24 15:51:45 -05:00
2013-11-25 11:15:31 -05:00
private ILiveTvService GetService(ChannelInfo channel)
{
return _services.FirstOrDefault(i => string.Equals(channel.ServiceName, i.Name, StringComparison.OrdinalIgnoreCase));
}
2013-11-24 15:51:45 -05:00
private Guid? GetLogoImageTag(Channel info)
{
var path = info.PrimaryImagePath;
if (string.IsNullOrEmpty(path))
{
return null;
}
try
{
return _imageProcessor.GetImageCacheTag(info, ImageType.Primary, path);
}
catch (Exception ex)
{
_logger.ErrorException("Error getting channel image info for {0}", ex, info.Name);
}
return null;
}
2013-11-25 15:39:23 -05:00
public QueryResult<ChannelInfoDto> GetChannels(ChannelQuery query)
2013-11-24 15:51:45 -05:00
{
2013-11-25 15:39:23 -05:00
var channels = _channels.OrderBy(i =>
2013-11-24 15:51:45 -05:00
{
double number = 0;
if (!string.IsNullOrEmpty(i.ChannelNumber))
{
double.TryParse(i.ChannelNumber, out number);
}
return number;
2013-11-25 15:39:23 -05:00
}).ThenBy(i => i.Name)
.Select(GetChannelInfoDto)
.ToArray();
return new QueryResult<ChannelInfoDto>
{
Items = channels,
TotalRecordCount = channels.Length
};
2013-11-24 15:51:45 -05:00
}
2013-11-24 16:30:38 -05:00
public Channel GetChannel(string id)
2013-11-24 15:51:45 -05:00
{
2013-11-24 16:30:38 -05:00
var guid = new Guid(id);
return _channels.FirstOrDefault(i => i.Id == guid);
2013-11-24 15:51:45 -05:00
}
internal async Task RefreshChannels(IProgress<double> progress, CancellationToken cancellationToken)
{
// Avoid implicitly captured closure
var currentCancellationToken = cancellationToken;
2013-11-25 15:39:23 -05:00
var channelTasks = _services.Select(i => i.GetChannelsAsync(currentCancellationToken));
2013-11-24 15:51:45 -05:00
2013-11-24 16:30:38 -05:00
progress.Report(10);
2013-11-24 15:51:45 -05:00
2013-11-25 15:39:23 -05:00
var results = await Task.WhenAll(channelTasks).ConfigureAwait(false);
2013-11-24 15:51:45 -05:00
2013-11-24 16:30:38 -05:00
var allChannels = results.SelectMany(i => i).ToList();
2013-11-24 15:51:45 -05:00
2013-11-24 16:30:38 -05:00
var list = new List<Channel>();
2013-11-25 15:39:23 -05:00
var programs = new List<ProgramInfoDto>();
2013-11-24 15:51:45 -05:00
2013-11-24 16:30:38 -05:00
var numComplete = 0;
2013-11-24 15:51:45 -05:00
2013-11-25 11:15:31 -05:00
foreach (var channelInfo in allChannels)
2013-11-24 15:51:45 -05:00
{
2013-11-24 16:30:38 -05:00
try
{
2013-11-25 11:15:31 -05:00
var item = await GetChannel(channelInfo, cancellationToken).ConfigureAwait(false);
var service = GetService(channelInfo);
2013-11-25 15:39:23 -05:00
var channelPrograms = await service.GetProgramsAsync(channelInfo.Id, cancellationToken).ConfigureAwait(false);
2013-11-25 11:15:31 -05:00
2013-11-25 15:39:23 -05:00
programs.AddRange(channelPrograms.Select(program => GetProgramInfoDto(program, item)));
2013-11-24 15:51:45 -05:00
2013-11-24 16:30:38 -05:00
list.Add(item);
}
catch (OperationCanceledException)
{
throw;
}
catch (Exception ex)
{
2013-11-25 11:15:31 -05:00
_logger.ErrorException("Error getting channel information for {0}", ex, channelInfo.Name);
2013-11-24 16:30:38 -05:00
}
numComplete++;
double percent = numComplete;
percent /= allChannels.Count;
progress.Report(90 * percent + 10);
2013-11-24 15:51:45 -05:00
}
2013-11-24 16:30:38 -05:00
2013-11-25 15:39:23 -05:00
_programs = programs;
2013-11-24 16:30:38 -05:00
_channels = list;
2013-11-24 15:51:45 -05:00
}
2013-11-25 15:39:23 -05:00
private ProgramInfoDto GetProgramInfoDto(ProgramInfo program, Channel channel)
{
var id = channel.ServiceName + channel.ChannelId + program.Id;
id = id.GetMD5().ToString("N");
return new ProgramInfoDto
{
ChannelId = channel.Id.ToString("N"),
Description = program.Description,
EndDate = program.EndDate,
Genres = program.Genres,
ExternalId = program.Id,
Id = id,
Name = program.Name,
ServiceName = channel.ServiceName,
StartDate = program.StartDate
};
}
2013-11-24 16:30:38 -05:00
private async Task<Channel> GetChannel(ChannelInfo channelInfo, CancellationToken cancellationToken)
2013-11-24 15:51:45 -05:00
{
var path = Path.Combine(_appPaths.ItemsByNamePath, "channels", _fileSystem.GetValidFilename(channelInfo.ServiceName), _fileSystem.GetValidFilename(channelInfo.Name));
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;
}
var type = typeof(Channel);
var id = (path + channelInfo.Number).GetMBId(type);
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,
ServiceName = channelInfo.ServiceName
};
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 11:15:31 -05:00
2013-11-25 15:39:23 -05:00
public QueryResult<ProgramInfoDto> GetPrograms(ProgramQuery query)
2013-11-25 11:15:31 -05:00
{
2013-11-25 15:39:23 -05:00
IEnumerable<ProgramInfoDto> programs = _programs
.OrderBy(i => i.StartDate)
.ThenBy(i => i.EndDate);
2013-11-25 11:15:31 -05:00
if (!string.IsNullOrEmpty(query.ServiceName))
{
programs = programs.Where(i => string.Equals(i.ServiceName, query.ServiceName, StringComparison.OrdinalIgnoreCase));
}
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 15:39:23 -05:00
}
var returnArray = programs.ToArray();
return new QueryResult<ProgramInfoDto>
{
Items = returnArray,
TotalRecordCount = returnArray.Length
};
2013-11-25 11:15:31 -05:00
}
}
}