jellyfin/Emby.Server.Implementations/LiveTv/EmbyTV/RecordingHelper.cs

60 lines
1.7 KiB
C#
Raw Normal View History

2017-09-08 09:13:58 -07:00
using MediaBrowser.Controller.LiveTv;
2015-07-20 11:32:55 -07:00
using System;
2015-08-20 16:55:23 -07:00
using System.Globalization;
2015-07-20 11:32:55 -07:00
2016-11-03 16:35:19 -07:00
namespace Emby.Server.Implementations.LiveTv.EmbyTV
2015-07-20 11:32:55 -07:00
{
internal class RecordingHelper
{
public static DateTime GetStartTime(TimerInfo timer)
{
return timer.StartDate.AddSeconds(-timer.PrePaddingSeconds);
}
2016-09-14 23:23:39 -07:00
public static string GetRecordingName(TimerInfo info)
{
2015-08-20 16:55:23 -07:00
var name = info.Name;
2016-09-14 23:23:39 -07:00
if (info.IsProgramSeries)
2015-07-20 11:32:55 -07:00
{
2015-08-25 19:13:28 -07:00
var addHyphen = true;
2015-08-20 16:55:23 -07: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-25 19:13:28 -07:00
addHyphen = false;
2015-08-20 16:55:23 -07:00
}
else if (info.OriginalAirDate.HasValue)
{
name += " " + info.OriginalAirDate.Value.ToString("yyyy-MM-dd");
}
2016-08-29 11:42:53 -07:00
else
{
name += " " + DateTime.Now.ToString("yyyy-MM-dd");
}
2015-08-20 19:36:30 -07:00
if (!string.IsNullOrWhiteSpace(info.EpisodeTitle))
2015-08-20 16:55:23 -07:00
{
2016-02-29 21:24:42 -07:00
if (addHyphen)
{
name += " -";
}
2015-08-20 16:55:23 -07:00
name += " " + info.EpisodeTitle;
}
2015-07-20 11:32:55 -07:00
}
2015-08-20 16:55:23 -07:00
2015-09-21 18:05:33 -07:00
else if (info.IsMovie && info.ProductionYear != null)
2015-07-20 11:32:55 -07:00
{
2015-08-20 16:55:23 -07:00
name += " (" + info.ProductionYear + ")";
2015-07-20 11:32:55 -07:00
}
2015-09-21 18:05:33 -07:00
else
{
2017-05-29 05:35:59 -07:00
name += " " + info.StartDate.ToString("yyyy-MM-dd");
2015-09-21 18:05:33 -07:00
}
2015-08-20 16:55:23 -07:00
2015-08-20 19:36:30 -07:00
return name;
2015-07-20 11:32:55 -07:00
}
}
}