2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2015-08-20 23:55:23 +00:00
|
|
|
using System.Globalization;
|
2019-01-13 19:22:00 +00:00
|
|
|
using MediaBrowser.Controller.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-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)
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
if (info.OriginalAirDate.Value.Date.Equals(info.StartDate.Date))
|
|
|
|
{
|
|
|
|
name += " " + GetDateString(info.StartDate);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
name += " " + info.OriginalAirDate.Value.ToLocalTime().ToString("yyyy-MM-dd");
|
|
|
|
}
|
2015-08-20 23:55:23 +00:00
|
|
|
}
|
2016-08-29 18:42:53 +00:00
|
|
|
else
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
name += " " + GetDateString(info.StartDate);
|
2016-08-29 18:42:53 +00:00
|
|
|
}
|
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
|
|
|
|
{
|
2018-09-12 17:26:21 +00:00
|
|
|
name += " " + GetDateString(info.StartDate);
|
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
|
|
|
}
|
2018-09-12 17:26:21 +00:00
|
|
|
|
|
|
|
private static string GetDateString(DateTime date)
|
|
|
|
{
|
|
|
|
date = date.ToLocalTime();
|
|
|
|
|
|
|
|
return string.Format("{0}_{1}_{2}_{3}_{4}_{5}",
|
|
|
|
date.Year.ToString("0000", CultureInfo.InvariantCulture),
|
|
|
|
date.Month.ToString("00", CultureInfo.InvariantCulture),
|
|
|
|
date.Day.ToString("00", CultureInfo.InvariantCulture),
|
|
|
|
date.Hour.ToString("00", CultureInfo.InvariantCulture),
|
|
|
|
date.Minute.ToString("00", CultureInfo.InvariantCulture),
|
|
|
|
date.Second.ToString("00", CultureInfo.InvariantCulture)
|
|
|
|
);
|
|
|
|
}
|
2015-07-20 18:32:55 +00:00
|
|
|
}
|
|
|
|
}
|