2015-07-29 03:42:03 +00:00
|
|
|
|
using MediaBrowser.Common.Extensions;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
|
|
|
|
using System;
|
2015-08-20 23:55:23 +00:00
|
|
|
|
using System.Globalization;
|
2016-10-04 05:15:39 +00:00
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
|
2016-11-03 23:35:19 +00:00
|
|
|
|
namespace Emby.Server.Implementations.LiveTv.EmbyTV
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
|
|
|
|
internal class RecordingHelper
|
|
|
|
|
{
|
|
|
|
|
public static DateTime GetStartTime(TimerInfo timer)
|
|
|
|
|
{
|
|
|
|
|
return timer.StartDate.AddSeconds(-timer.PrePaddingSeconds);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-04 05:15:39 +00:00
|
|
|
|
public static TimerInfo CreateTimer(ProgramInfo parent, SeriesTimerInfo seriesTimer)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
2016-11-28 19:27:06 +00:00
|
|
|
|
var timer = new TimerInfo
|
|
|
|
|
{
|
|
|
|
|
ChannelId = parent.ChannelId,
|
|
|
|
|
Id = (seriesTimer.Id + parent.Id).GetMD5().ToString("N"),
|
|
|
|
|
StartDate = parent.StartDate,
|
|
|
|
|
EndDate = parent.EndDate,
|
|
|
|
|
ProgramId = parent.Id,
|
|
|
|
|
PrePaddingSeconds = seriesTimer.PrePaddingSeconds,
|
|
|
|
|
PostPaddingSeconds = seriesTimer.PostPaddingSeconds,
|
|
|
|
|
IsPostPaddingRequired = seriesTimer.IsPostPaddingRequired,
|
|
|
|
|
IsPrePaddingRequired = seriesTimer.IsPrePaddingRequired,
|
|
|
|
|
KeepUntil = seriesTimer.KeepUntil,
|
|
|
|
|
Priority = seriesTimer.Priority,
|
|
|
|
|
Name = parent.Name,
|
|
|
|
|
Overview = parent.Overview,
|
2016-12-18 02:35:21 +00:00
|
|
|
|
SeriesId = parent.SeriesId,
|
2016-11-28 19:27:06 +00:00
|
|
|
|
SeriesTimerId = seriesTimer.Id,
|
|
|
|
|
ShowId = parent.ShowId
|
|
|
|
|
};
|
2015-07-20 18:32:55 +00:00
|
|
|
|
|
2016-09-15 06:23:39 +00:00
|
|
|
|
CopyProgramInfoToTimerInfo(parent, timer);
|
|
|
|
|
|
2015-07-20 18:32:55 +00:00
|
|
|
|
return timer;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-15 06:23:39 +00:00
|
|
|
|
public static void CopyProgramInfoToTimerInfo(ProgramInfo programInfo, TimerInfo timerInfo)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
2016-12-13 18:23:03 +00:00
|
|
|
|
timerInfo.Name = programInfo.Name;
|
|
|
|
|
timerInfo.StartDate = programInfo.StartDate;
|
|
|
|
|
timerInfo.EndDate = programInfo.EndDate;
|
|
|
|
|
timerInfo.ChannelId = programInfo.ChannelId;
|
|
|
|
|
|
2016-09-15 06:23:39 +00:00
|
|
|
|
timerInfo.SeasonNumber = programInfo.SeasonNumber;
|
|
|
|
|
timerInfo.EpisodeNumber = programInfo.EpisodeNumber;
|
|
|
|
|
timerInfo.IsMovie = programInfo.IsMovie;
|
|
|
|
|
timerInfo.IsKids = programInfo.IsKids;
|
2016-09-29 12:55:49 +00:00
|
|
|
|
timerInfo.IsNews = programInfo.IsNews;
|
2016-09-15 06:23:39 +00:00
|
|
|
|
timerInfo.IsSports = programInfo.IsSports;
|
|
|
|
|
timerInfo.ProductionYear = programInfo.ProductionYear;
|
|
|
|
|
timerInfo.EpisodeTitle = programInfo.EpisodeTitle;
|
|
|
|
|
timerInfo.OriginalAirDate = programInfo.OriginalAirDate;
|
|
|
|
|
timerInfo.IsProgramSeries = programInfo.IsSeries;
|
2016-09-20 19:38:53 +00:00
|
|
|
|
|
|
|
|
|
timerInfo.HomePageUrl = programInfo.HomePageUrl;
|
|
|
|
|
timerInfo.CommunityRating = programInfo.CommunityRating;
|
2016-12-13 18:23:03 +00:00
|
|
|
|
timerInfo.Overview = programInfo.Overview;
|
2016-09-20 19:38:53 +00:00
|
|
|
|
timerInfo.OfficialRating = programInfo.OfficialRating;
|
2016-10-04 05:15:39 +00:00
|
|
|
|
timerInfo.IsRepeat = programInfo.IsRepeat;
|
2016-12-18 02:35:21 +00:00
|
|
|
|
timerInfo.SeriesId = programInfo.SeriesId;
|
2016-09-15 06:23:39 +00:00
|
|
|
|
}
|
2015-08-20 23:55:23 +00:00
|
|
|
|
|
2016-09-15 06:23:39 +00:00
|
|
|
|
public static string GetRecordingName(TimerInfo info)
|
|
|
|
|
{
|
2015-08-20 23:55:23 +00:00
|
|
|
|
var name = info.Name;
|
|
|
|
|
|
2016-09-15 06:23:39 +00:00
|
|
|
|
if (info.IsProgramSeries)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
2015-08-26 02:13:28 +00:00
|
|
|
|
var addHyphen = true;
|
|
|
|
|
|
2015-08-20 23:55:23 +00:00
|
|
|
|
if (info.SeasonNumber.HasValue && info.EpisodeNumber.HasValue)
|
|
|
|
|
{
|
|
|
|
|
name += string.Format(" S{0}E{1}", info.SeasonNumber.Value.ToString("00", CultureInfo.InvariantCulture), info.EpisodeNumber.Value.ToString("00", CultureInfo.InvariantCulture));
|
2015-08-26 02:13:28 +00:00
|
|
|
|
addHyphen = false;
|
2015-08-20 23:55:23 +00:00
|
|
|
|
}
|
|
|
|
|
else if (info.OriginalAirDate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
name += " " + info.OriginalAirDate.Value.ToString("yyyy-MM-dd");
|
|
|
|
|
}
|
2016-08-29 18:42:53 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
name += " " + DateTime.Now.ToString("yyyy-MM-dd");
|
|
|
|
|
}
|
2015-08-21 02:36:30 +00:00
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(info.EpisodeTitle))
|
2015-08-20 23:55:23 +00:00
|
|
|
|
{
|
2016-03-01 04:24:42 +00:00
|
|
|
|
if (addHyphen)
|
|
|
|
|
{
|
|
|
|
|
name += " -";
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-20 23:55:23 +00:00
|
|
|
|
name += " " + info.EpisodeTitle;
|
|
|
|
|
}
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
2015-08-20 23:55:23 +00:00
|
|
|
|
|
2015-09-22 01:05:33 +00:00
|
|
|
|
else if (info.IsMovie && info.ProductionYear != null)
|
2015-07-20 18:32:55 +00:00
|
|
|
|
{
|
2015-08-20 23:55:23 +00:00
|
|
|
|
name += " (" + info.ProductionYear + ")";
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
2015-09-22 01:05:33 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2016-01-12 02:38:43 +00:00
|
|
|
|
name += " " + info.StartDate.ToString("yyyy-MM-dd") + " " + info.Id;
|
2015-09-22 01:05:33 +00:00
|
|
|
|
}
|
2015-08-20 23:55:23 +00:00
|
|
|
|
|
2015-08-21 02:36:30 +00:00
|
|
|
|
return name;
|
2015-07-20 18:32:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|