Radarr/NzbDrone.Api/Series/SeriesModule.cs

84 lines
2.8 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2013-02-09 10:04:18 +00:00
using System.Linq;
2013-01-28 18:06:54 +00:00
using FluentValidation;
2013-04-20 23:36:23 +00:00
using NzbDrone.Core.SeriesStats;
using NzbDrone.Core.Tv;
2013-04-20 22:14:41 +00:00
using NzbDrone.Api.Validation;
2013-01-20 01:37:48 +00:00
namespace NzbDrone.Api.Series
{
2013-04-20 22:14:41 +00:00
public class SeriesModule : NzbDroneRestModule<SeriesResource>
2013-01-20 01:37:48 +00:00
{
private readonly ISeriesService _seriesService;
2013-04-20 23:36:23 +00:00
private readonly ISeriesStatisticsService _seriesStatisticsService;
2013-01-20 01:37:48 +00:00
2013-04-20 23:36:23 +00:00
public SeriesModule(ISeriesService seriesService, ISeriesStatisticsService seriesStatisticsService)
2013-01-20 01:37:48 +00:00
: base("/Series")
{
_seriesService = seriesService;
2013-04-20 23:36:23 +00:00
_seriesStatisticsService = seriesStatisticsService;
2013-04-20 22:14:41 +00:00
GetResourceAll = AllSeries;
GetResourceById = GetSeries;
CreateResource = AddSeries;
UpdateResource = UpdateSeries;
DeleteResource = DeleteSeries;
SharedValidator.RuleFor(s => s.RootFolderId).ValidId();
SharedValidator.RuleFor(s => s.QualityProfileId).ValidId();
PostValidator.RuleFor(s => s.Title).NotEmpty();
2013-01-20 01:37:48 +00:00
}
2013-04-20 22:14:41 +00:00
private List<SeriesResource> AllSeries()
2013-02-09 10:04:18 +00:00
{
2013-04-20 23:36:23 +00:00
var seriesStats = _seriesStatisticsService.SeriesStatistics();
2013-04-25 04:27:49 +00:00
var seriesModels = ApplyToList(_seriesService.GetAllSeries);
2013-02-09 10:04:18 +00:00
2013-04-20 20:09:12 +00:00
foreach (var s in seriesModels)
{
var stats = seriesStats.SingleOrDefault(ss => ss.SeriesId == s.Id);
if (stats == null) continue;
s.EpisodeCount = stats.EpisodeCount;
s.EpisodeFileCount = stats.EpisodeFileCount;
2013-04-22 01:21:24 +00:00
s.SeasonCount = stats.SeasonCount;
2013-04-20 20:09:12 +00:00
s.NextAiring = stats.NextAiring;
}
2013-04-20 22:14:41 +00:00
return seriesModels;
2013-02-09 10:04:18 +00:00
}
2013-01-20 01:37:48 +00:00
2013-04-20 22:14:41 +00:00
private SeriesResource GetSeries(int id)
2013-02-10 03:42:44 +00:00
{
return Apply(_seriesService.GetSeries, id);
2013-02-10 03:42:44 +00:00
}
2013-04-20 22:14:41 +00:00
private SeriesResource AddSeries(SeriesResource seriesResource)
2013-01-20 01:37:48 +00:00
{
//Todo: Alert the user if this series already exists
//Todo: We need to create the folder if the user is adding a new series
//(we can just create the folder and it won't blow up if it already exists)
2013-02-09 10:04:18 +00:00
//We also need to remove any special characters from the filename before attempting to create it
return Apply<Core.Tv.Series>(_seriesService.AddSeries, seriesResource);
2013-01-28 18:06:54 +00:00
}
2013-02-10 03:42:44 +00:00
2013-04-20 22:14:41 +00:00
private SeriesResource UpdateSeries(SeriesResource seriesResource)
{
return Apply<Core.Tv.Series>(_seriesService.UpdateSeries, seriesResource);
}
2013-04-20 22:14:41 +00:00
private void DeleteSeries(int id)
2013-02-10 03:42:44 +00:00
{
var deleteFiles = Convert.ToBoolean(Request.Headers["deleteFiles"].FirstOrDefault());
_seriesService.DeleteSeries(id, deleteFiles);
2013-02-10 03:42:44 +00:00
}
2013-01-28 18:06:54 +00:00
}
}