123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- using MediaBrowser.Controller.LiveTv;
- using MediaBrowser.Model.Dto;
- using MediaBrowser.Model.LiveTv;
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.IO;
- using System.IO.Compression;
- using System.Linq;
- using System.Net;
- using System.Text;
- using System.Threading;
- using System.Threading.Tasks;
- using Emby.XmlTv.Classes;
- using Emby.XmlTv.Entities;
- using MediaBrowser.Common.Extensions;
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller.Configuration;
- using MediaBrowser.Model.IO;
- using MediaBrowser.Model.Logging;
- namespace Emby.Server.Implementations.LiveTv.Listings
- {
- public class XmlTvListingsProvider : IListingsProvider
- {
- private readonly IServerConfigurationManager _config;
- private readonly IHttpClient _httpClient;
- private readonly ILogger _logger;
- private readonly IFileSystem _fileSystem;
- private readonly IZipClient _zipClient;
- public XmlTvListingsProvider(IServerConfigurationManager config, IHttpClient httpClient, ILogger logger, IFileSystem fileSystem, IZipClient zipClient)
- {
- _config = config;
- _httpClient = httpClient;
- _logger = logger;
- _fileSystem = fileSystem;
- _zipClient = zipClient;
- }
- public string Name
- {
- get { return "XmlTV"; }
- }
- public string Type
- {
- get { return "xmltv"; }
- }
- private string GetLanguage()
- {
- return _config.Configuration.PreferredMetadataLanguage;
- }
- private async Task<string> GetXml(string path, CancellationToken cancellationToken)
- {
- _logger.Info("xmltv path: {0}", path);
- if (!path.StartsWith("http", StringComparison.OrdinalIgnoreCase))
- {
- return path;
- }
- var cacheFilename = DateTime.UtcNow.DayOfYear.ToString(CultureInfo.InvariantCulture) + "-" + DateTime.UtcNow.Hour.ToString(CultureInfo.InvariantCulture) + ".xml";
- var cacheFile = Path.Combine(_config.ApplicationPaths.CachePath, "xmltv", cacheFilename);
- if (_fileSystem.FileExists(cacheFile))
- {
- return UnzipIfNeeded(path, cacheFile);
- }
- _logger.Info("Downloading xmltv listings from {0}", path);
- var tempFile = await _httpClient.GetTempFile(new HttpRequestOptions
- {
- CancellationToken = cancellationToken,
- Url = path,
- Progress = new Progress<Double>(),
- DecompressionMethod = CompressionMethod.Gzip,
- // It's going to come back gzipped regardless of this value
- // So we need to make sure the decompression method is set to gzip
- EnableHttpCompression = true,
- UserAgent = "Emby/3.0"
- }).ConfigureAwait(false);
- _fileSystem.CreateDirectory(_fileSystem.GetDirectoryName(cacheFile));
- using (var stream = _fileSystem.OpenRead(tempFile))
- {
- using (var reader = new StreamReader(stream, Encoding.UTF8))
- {
- using (var fileStream = _fileSystem.GetFileStream(cacheFile, FileOpenMode.Create, FileAccessMode.Write, FileShareMode.Read))
- {
- using (var writer = new StreamWriter(fileStream))
- {
- while (!reader.EndOfStream)
- {
- writer.WriteLine(reader.ReadLine());
- }
- }
- }
- }
- }
- _logger.Debug("Returning xmltv path {0}", cacheFile);
- return UnzipIfNeeded(path, cacheFile);
- }
- private string UnzipIfNeeded(string originalUrl, string file)
- {
- //var ext = Path.GetExtension(originalUrl);
- //if (string.Equals(ext, ".gz", StringComparison.OrdinalIgnoreCase))
- //{
- // using (var stream = _fileSystem.OpenRead(file))
- // {
- // var tempFolder = Path.Combine(_config.ApplicationPaths.TempDirectory, Guid.NewGuid().ToString());
- // _fileSystem.CreateDirectory(tempFolder);
- // _zipClient.ExtractAllFromZip(stream, tempFolder, true);
- // return _fileSystem.GetFiles(tempFolder, true)
- // .Where(i => string.Equals(i.Extension, ".xml", StringComparison.OrdinalIgnoreCase))
- // .Select(i => i.FullName)
- // .FirstOrDefault();
- // }
- //}
- return file;
- }
- public async Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken)
- {
- if (string.IsNullOrWhiteSpace(channelId))
- {
- throw new ArgumentNullException("channelId");
- }
- if (!await EmbyTV.EmbyTVRegistration.Instance.EnableXmlTv().ConfigureAwait(false))
- {
- var length = endDateUtc - startDateUtc;
- if (length.TotalDays > 1)
- {
- endDateUtc = startDateUtc.AddDays(1);
- }
- }
- _logger.Debug("Getting xmltv programs for channel {0}", channelId);
- var path = await GetXml(info.Path, cancellationToken).ConfigureAwait(false);
- var reader = new XmlTvReader(path, GetLanguage());
- var results = reader.GetProgrammes(channelId, startDateUtc, endDateUtc, cancellationToken);
- return results.Select(p => GetProgramInfo(p, info));
- }
- private ProgramInfo GetProgramInfo(XmlTvProgram p, ListingsProviderInfo info)
- {
- var episodeTitle = p.Episode == null ? null : p.Episode.Title;
- var programInfo = new ProgramInfo
- {
- ChannelId = p.ChannelId,
- EndDate = GetDate(p.EndDate),
- EpisodeNumber = p.Episode == null ? null : p.Episode.Episode,
- EpisodeTitle = episodeTitle,
- Genres = p.Categories,
- StartDate = GetDate(p.StartDate),
- Name = p.Title,
- Overview = p.Description,
- ProductionYear = !p.CopyrightDate.HasValue ? (int?)null : p.CopyrightDate.Value.Year,
- SeasonNumber = p.Episode == null ? null : p.Episode.Series,
- IsSeries = p.Episode != null,
- IsRepeat = p.IsPreviouslyShown && !p.IsNew,
- IsPremiere = p.Premiere != null,
- IsKids = p.Categories.Any(c => info.KidsCategories.Contains(c, StringComparer.OrdinalIgnoreCase)),
- IsMovie = p.Categories.Any(c => info.MovieCategories.Contains(c, StringComparer.OrdinalIgnoreCase)),
- IsNews = p.Categories.Any(c => info.NewsCategories.Contains(c, StringComparer.OrdinalIgnoreCase)),
- IsSports = p.Categories.Any(c => info.SportsCategories.Contains(c, StringComparer.OrdinalIgnoreCase)),
- ImageUrl = p.Icon != null && !String.IsNullOrEmpty(p.Icon.Source) ? p.Icon.Source : null,
- HasImage = p.Icon != null && !String.IsNullOrEmpty(p.Icon.Source),
- OfficialRating = p.Rating != null && !String.IsNullOrEmpty(p.Rating.Value) ? p.Rating.Value : null,
- CommunityRating = p.StarRating.HasValue ? p.StarRating.Value : (float?)null,
- SeriesId = p.Episode != null ? p.Title.GetMD5().ToString("N") : null
- };
- if (!string.IsNullOrWhiteSpace(p.ProgramId))
- {
- programInfo.ShowId = p.ProgramId;
- }
- else
- {
- var uniqueString = (p.Title ?? string.Empty) + (episodeTitle ?? string.Empty) + (p.IceTvEpisodeNumber ?? string.Empty);
- if (programInfo.SeasonNumber.HasValue)
- {
- uniqueString = "-" + programInfo.SeasonNumber.Value.ToString(CultureInfo.InvariantCulture);
- }
- if (programInfo.EpisodeNumber.HasValue)
- {
- uniqueString = "-" + programInfo.EpisodeNumber.Value.ToString(CultureInfo.InvariantCulture);
- }
- programInfo.ShowId = uniqueString.GetMD5().ToString("N");
- // If we don't have valid episode info, assume it's a unique program, otherwise recordings might be skipped
- if (programInfo.IsSeries && !programInfo.IsRepeat)
- {
- if ((programInfo.EpisodeNumber ?? 0) == 0)
- {
- programInfo.ShowId = programInfo.ShowId + programInfo.StartDate.Ticks.ToString(CultureInfo.InvariantCulture);
- }
- }
- }
- // Construct an id from the channel and start date
- programInfo.Id = String.Format("{0}_{1:O}", p.ChannelId, p.StartDate);
- if (programInfo.IsMovie)
- {
- programInfo.IsSeries = false;
- programInfo.EpisodeNumber = null;
- programInfo.EpisodeTitle = null;
- }
- return programInfo;
- }
- private DateTime GetDate(DateTime date)
- {
- if (date.Kind != DateTimeKind.Utc)
- {
- date = DateTime.SpecifyKind(date, DateTimeKind.Utc);
- }
- return date;
- }
- public Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings)
- {
- // Assume all urls are valid. check files for existence
- if (!info.Path.StartsWith("http", StringComparison.OrdinalIgnoreCase) && !_fileSystem.FileExists(info.Path))
- {
- throw new FileNotFoundException("Could not find the XmlTv file specified:", info.Path);
- }
- return Task.FromResult(true);
- }
- public async Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location)
- {
- // In theory this should never be called because there is always only one lineup
- var path = await GetXml(info.Path, CancellationToken.None).ConfigureAwait(false);
- var reader = new XmlTvReader(path, GetLanguage());
- var results = reader.GetChannels();
- // Should this method be async?
- return results.Select(c => new NameIdPair() { Id = c.Id, Name = c.DisplayName }).ToList();
- }
- public async Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken)
- {
- // In theory this should never be called because there is always only one lineup
- var path = await GetXml(info.Path, cancellationToken).ConfigureAwait(false);
- var reader = new XmlTvReader(path, GetLanguage());
- var results = reader.GetChannels();
- // Should this method be async?
- return results.Select(c => new ChannelInfo
- {
- Id = c.Id,
- Name = c.DisplayName,
- ImageUrl = c.Icon != null && !String.IsNullOrEmpty(c.Icon.Source) ? c.Icon.Source : null,
- Number = string.IsNullOrWhiteSpace(c.Number) ? c.Id : c.Number
- }).ToList();
- }
- }
- }
|