2013-02-10 10:28:56 +00:00
|
|
|
|
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-05-04 02:30:44 +00:00
|
|
|
|
using Nancy;
|
2013-06-13 01:37:05 +00:00
|
|
|
|
using NzbDrone.Core.MediaCover;
|
2013-04-20 23:36:23 +00:00
|
|
|
|
using NzbDrone.Core.SeriesStats;
|
2013-02-19 06:01:03 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-04-20 22:14:41 +00:00
|
|
|
|
using NzbDrone.Api.Validation;
|
2013-05-04 02:30:44 +00:00
|
|
|
|
using NzbDrone.Api.Extensions;
|
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
|
|
|
|
{
|
2013-02-20 02:05:15 +00:00
|
|
|
|
private readonly ISeriesService _seriesService;
|
2013-04-20 23:36:23 +00:00
|
|
|
|
private readonly ISeriesStatisticsService _seriesStatisticsService;
|
2013-06-13 01:37:05 +00:00
|
|
|
|
private readonly IMapCoversToLocal _coverMapper;
|
2013-01-20 01:37:48 +00:00
|
|
|
|
|
2013-06-13 01:37:05 +00:00
|
|
|
|
public SeriesModule(ISeriesService seriesService, ISeriesStatisticsService seriesStatisticsService, IMapCoversToLocal coverMapper)
|
2013-01-20 01:37:48 +00:00
|
|
|
|
: base("/Series")
|
|
|
|
|
{
|
2013-02-20 02:05:15 +00:00
|
|
|
|
_seriesService = seriesService;
|
2013-04-20 23:36:23 +00:00
|
|
|
|
_seriesStatisticsService = seriesStatisticsService;
|
2013-06-13 01:37:05 +00:00
|
|
|
|
_coverMapper = coverMapper;
|
2013-02-10 10:28:56 +00:00
|
|
|
|
|
2013-04-20 22:14:41 +00:00
|
|
|
|
GetResourceAll = AllSeries;
|
|
|
|
|
GetResourceById = GetSeries;
|
|
|
|
|
CreateResource = AddSeries;
|
|
|
|
|
UpdateResource = UpdateSeries;
|
|
|
|
|
DeleteResource = DeleteSeries;
|
|
|
|
|
|
2013-05-04 02:30:44 +00:00
|
|
|
|
Get["/{slug}"] = o => GetSeries((string)o.slug.ToString());
|
2013-04-20 22:14:41 +00:00
|
|
|
|
|
|
|
|
|
SharedValidator.RuleFor(s => s.QualityProfileId).ValidId();
|
2013-05-27 02:53:56 +00:00
|
|
|
|
SharedValidator.RuleFor(s => s.Path).NotEmpty().When(s => String.IsNullOrEmpty(s.RootFolderPath));
|
|
|
|
|
SharedValidator.RuleFor(s => s.RootFolderPath).NotEmpty().When(s => String.IsNullOrEmpty(s.Path));
|
2013-04-20 22:14:41 +00:00
|
|
|
|
|
2013-05-24 06:29:43 +00:00
|
|
|
|
PostValidator.RuleFor(s => s.Title).NotEmpty();
|
2013-01-20 01:37:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-04 02:30:44 +00:00
|
|
|
|
private Response GetSeries(string slug)
|
|
|
|
|
{
|
|
|
|
|
var series = _seriesService.FindBySlug(slug);
|
|
|
|
|
|
|
|
|
|
if (series == null)
|
|
|
|
|
{
|
|
|
|
|
return new NotFoundResponse();
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-07 03:56:33 +00:00
|
|
|
|
|
|
|
|
|
var resource = ToResource(()=>_seriesService.FindBySlug(slug));
|
|
|
|
|
|
|
|
|
|
MapCoversToLocal(resource);
|
|
|
|
|
|
|
|
|
|
return resource.AsResponse();
|
2013-05-04 02:30:44 +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-06-13 01:37:05 +00:00
|
|
|
|
var seriesResources = ToListResource(_seriesService.GetAllSeries);
|
2013-02-09 10:04:18 +00:00
|
|
|
|
|
2013-06-13 01:37:05 +00:00
|
|
|
|
foreach (var s in seriesResources)
|
2013-04-20 20:09:12 +00:00
|
|
|
|
{
|
|
|
|
|
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-06-13 01:37:05 +00:00
|
|
|
|
MapCoversToLocal(seriesResources.ToArray());
|
|
|
|
|
|
|
|
|
|
return seriesResources;
|
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
|
|
|
|
{
|
2013-06-13 01:37:05 +00:00
|
|
|
|
var resource = ToResource(_seriesService.GetSeries, id);
|
|
|
|
|
|
|
|
|
|
MapCoversToLocal(resource);
|
|
|
|
|
|
|
|
|
|
return resource;
|
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
|
|
|
|
{
|
2013-02-08 08:05:43 +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
|
2013-04-22 03:18:08 +00:00
|
|
|
|
|
2013-05-31 00:12:20 +00:00
|
|
|
|
return ToResource<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)
|
2013-02-10 10:28:56 +00:00
|
|
|
|
{
|
2013-05-31 00:12:20 +00:00
|
|
|
|
return ToResource<Core.Tv.Series>(_seriesService.UpdateSeries, seriesResource);
|
2013-02-10 10:28:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-20 22:14:41 +00:00
|
|
|
|
private void DeleteSeries(int id)
|
2013-02-10 03:42:44 +00:00
|
|
|
|
{
|
2013-02-10 10:28:56 +00:00
|
|
|
|
var deleteFiles = Convert.ToBoolean(Request.Headers["deleteFiles"].FirstOrDefault());
|
2013-03-05 19:49:34 +00:00
|
|
|
|
_seriesService.DeleteSeries(id, deleteFiles);
|
2013-02-10 03:42:44 +00:00
|
|
|
|
}
|
2013-06-13 01:37:05 +00:00
|
|
|
|
|
|
|
|
|
private void MapCoversToLocal(params SeriesResource[] series)
|
|
|
|
|
{
|
|
|
|
|
foreach (var seriesResource in series)
|
|
|
|
|
{
|
|
|
|
|
_coverMapper.ConvertToLocalUrls(seriesResource.Id, seriesResource.Images);
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-01-28 18:06:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-21 21:04:09 +00:00
|
|
|
|
}
|