commit
2892196175
|
@ -14,6 +14,7 @@ using System.Net;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CommonIO;
|
using CommonIO;
|
||||||
|
using MediaBrowser.Model.Extensions;
|
||||||
|
|
||||||
namespace MediaBrowser.Providers.Movies
|
namespace MediaBrowser.Providers.Movies
|
||||||
{
|
{
|
||||||
|
@ -203,7 +204,11 @@ namespace MediaBrowser.Providers.Movies
|
||||||
if (ourRelease != null)
|
if (ourRelease != null)
|
||||||
{
|
{
|
||||||
var ratingPrefix = string.Equals(preferredCountryCode, "us", StringComparison.OrdinalIgnoreCase) ? "" : preferredCountryCode + "-";
|
var ratingPrefix = string.Equals(preferredCountryCode, "us", StringComparison.OrdinalIgnoreCase) ? "" : preferredCountryCode + "-";
|
||||||
movie.OfficialRating = ratingPrefix + ourRelease.certification;
|
var newRating = ratingPrefix + ourRelease.certification;
|
||||||
|
|
||||||
|
newRating = newRating.Replace("de-", "FSK-", StringComparison.OrdinalIgnoreCase);
|
||||||
|
|
||||||
|
movie.OfficialRating = newRating;
|
||||||
}
|
}
|
||||||
else if (usRelease != null)
|
else if (usRelease != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,6 +11,7 @@ using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Emby.XmlTv.Classes;
|
using Emby.XmlTv.Classes;
|
||||||
|
using Emby.XmlTv.Entities;
|
||||||
using MediaBrowser.Common.Extensions;
|
using MediaBrowser.Common.Extensions;
|
||||||
using MediaBrowser.Common.Net;
|
using MediaBrowser.Common.Net;
|
||||||
using MediaBrowser.Controller.Configuration;
|
using MediaBrowser.Controller.Configuration;
|
||||||
|
@ -115,7 +116,12 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
|
||||||
var reader = new XmlTvReader(path, GetLanguage(), null);
|
var reader = new XmlTvReader(path, GetLanguage(), null);
|
||||||
|
|
||||||
var results = reader.GetProgrammes(channelNumber, startDateUtc, endDateUtc, cancellationToken);
|
var results = reader.GetProgrammes(channelNumber, startDateUtc, endDateUtc, cancellationToken);
|
||||||
return results.Select(p => new ProgramInfo()
|
return results.Select(p => GetProgramInfo(p, info));
|
||||||
|
}
|
||||||
|
|
||||||
|
private ProgramInfo GetProgramInfo(XmlTvProgram p, ListingsProviderInfo info)
|
||||||
|
{
|
||||||
|
var programInfo = new ProgramInfo
|
||||||
{
|
{
|
||||||
ChannelId = p.ChannelId,
|
ChannelId = p.ChannelId,
|
||||||
EndDate = GetDate(p.EndDate),
|
EndDate = GetDate(p.EndDate),
|
||||||
|
@ -141,7 +147,16 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
|
||||||
OfficialRating = p.Rating != null && !String.IsNullOrEmpty(p.Rating.Value) ? p.Rating.Value : null,
|
OfficialRating = p.Rating != null && !String.IsNullOrEmpty(p.Rating.Value) ? p.Rating.Value : null,
|
||||||
CommunityRating = p.StarRating.HasValue ? p.StarRating.Value : (float?)null,
|
CommunityRating = p.StarRating.HasValue ? p.StarRating.Value : (float?)null,
|
||||||
SeriesId = p.Episode != null ? p.Title.GetMD5().ToString("N") : null
|
SeriesId = p.Episode != null ? p.Title.GetMD5().ToString("N") : null
|
||||||
});
|
};
|
||||||
|
|
||||||
|
if (programInfo.IsMovie)
|
||||||
|
{
|
||||||
|
programInfo.IsSeries = false;
|
||||||
|
programInfo.EpisodeNumber = null;
|
||||||
|
programInfo.EpisodeTitle = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return programInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
private DateTime GetDate(DateTime date)
|
private DateTime GetDate(DateTime date)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user