2013-02-23 17:42:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-06-04 03:59:24 +00:00
|
|
|
|
using System.Linq;
|
2013-05-01 01:54:15 +00:00
|
|
|
|
using NzbDrone.Api.Episodes;
|
2014-08-27 00:25:35 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2013-02-23 17:42:15 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2014-08-26 04:01:32 +00:00
|
|
|
|
using NzbDrone.SignalR;
|
2013-02-23 17:42:15 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api.Calendar
|
|
|
|
|
{
|
2014-06-28 17:01:59 +00:00
|
|
|
|
public class CalendarModule : EpisodeModuleWithSignalR
|
2013-02-23 17:42:15 +00:00
|
|
|
|
{
|
2014-08-27 00:25:35 +00:00
|
|
|
|
public CalendarModule(IEpisodeService episodeService,
|
2014-08-28 07:13:38 +00:00
|
|
|
|
ISeriesService seriesService,
|
2014-08-27 00:25:35 +00:00
|
|
|
|
IQualityUpgradableSpecification qualityUpgradableSpecification,
|
|
|
|
|
IBroadcastSignalRMessage signalRBroadcaster)
|
2014-08-28 07:13:38 +00:00
|
|
|
|
: base(episodeService, seriesService, qualityUpgradableSpecification, signalRBroadcaster, "calendar")
|
2013-02-23 17:42:15 +00:00
|
|
|
|
{
|
2013-11-30 10:53:53 +00:00
|
|
|
|
GetResourceAll = GetCalendar;
|
2013-12-02 00:30:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 10:53:53 +00:00
|
|
|
|
private List<EpisodeResource> GetCalendar()
|
2013-02-23 17:42:15 +00:00
|
|
|
|
{
|
2013-10-04 02:25:07 +00:00
|
|
|
|
var start = DateTime.Today;
|
|
|
|
|
var end = DateTime.Today.AddDays(2);
|
2015-03-28 16:10:30 +00:00
|
|
|
|
var includeUnmonitored = false;
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2013-02-26 03:30:24 +00:00
|
|
|
|
var queryStart = Request.Query.Start;
|
|
|
|
|
var queryEnd = Request.Query.End;
|
2015-03-28 16:10:30 +00:00
|
|
|
|
var queryIncludeUnmonitored = Request.Query.Unmonitored;
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2013-02-26 03:30:24 +00:00
|
|
|
|
if (queryStart.HasValue) start = DateTime.Parse(queryStart.Value);
|
2013-05-31 00:12:20 +00:00
|
|
|
|
if (queryEnd.HasValue) end = DateTime.Parse(queryEnd.Value);
|
2015-03-28 16:10:30 +00:00
|
|
|
|
if (queryIncludeUnmonitored.HasValue) includeUnmonitored = Convert.ToBoolean(queryIncludeUnmonitored.Value);
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2015-03-28 16:10:30 +00:00
|
|
|
|
var resources = ToListResource(() => _episodeService.EpisodesBetweenDates(start, end, includeUnmonitored));
|
2013-06-04 03:59:24 +00:00
|
|
|
|
|
2014-02-05 04:23:29 +00:00
|
|
|
|
return resources.OrderBy(e => e.AirDateUtc).ToList();
|
2013-02-23 17:42:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-31 00:12:20 +00:00
|
|
|
|
}
|