2013-03-01 08:03:41 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using NLog;
|
2013-04-24 03:56:00 +02:00
|
|
|
using NzbDrone.Common.Messaging;
|
2013-03-01 08:03:41 +01:00
|
|
|
using NzbDrone.Core.Configuration;
|
2013-03-07 05:34:56 +01:00
|
|
|
using NzbDrone.Core.MediaFiles.Events;
|
2013-03-01 08:03:41 +01:00
|
|
|
using NzbDrone.Core.Tv;
|
2013-03-05 20:49:34 +01:00
|
|
|
using NzbDrone.Core.Tv.Events;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles
|
|
|
|
{
|
|
|
|
public interface IMediaFileService
|
|
|
|
{
|
|
|
|
EpisodeFile Add(EpisodeFile episodeFile);
|
|
|
|
void Update(EpisodeFile episodeFile);
|
2013-03-07 05:34:56 +01:00
|
|
|
void Delete(EpisodeFile episodeFile);
|
2013-03-01 08:03:41 +01:00
|
|
|
bool Exists(string path);
|
|
|
|
EpisodeFile GetFileByPath(string path);
|
2013-03-06 22:20:33 +01:00
|
|
|
List<EpisodeFile> GetFilesBySeries(int seriesId);
|
|
|
|
List<EpisodeFile> GetFilesBySeason(int seriesId, int seasonNumber);
|
2013-03-01 08:03:41 +01:00
|
|
|
}
|
|
|
|
|
2013-03-05 20:49:34 +01:00
|
|
|
public class MediaFileService : IMediaFileService, IHandleAsync<SeriesDeletedEvent>
|
2013-03-01 08:03:41 +01:00
|
|
|
{
|
|
|
|
private readonly IConfigService _configService;
|
|
|
|
private readonly IEpisodeService _episodeService;
|
2013-04-24 03:56:00 +02:00
|
|
|
private readonly IMessageAggregator _messageAggregator;
|
2013-03-01 08:03:41 +01:00
|
|
|
private readonly Logger _logger;
|
|
|
|
private readonly IMediaFileRepository _mediaFileRepository;
|
|
|
|
|
2013-04-24 03:56:00 +02:00
|
|
|
public MediaFileService(IMediaFileRepository mediaFileRepository, IConfigService configService, IEpisodeService episodeService, IMessageAggregator messageAggregator, Logger logger)
|
2013-03-01 08:03:41 +01:00
|
|
|
{
|
|
|
|
_mediaFileRepository = mediaFileRepository;
|
|
|
|
_configService = configService;
|
|
|
|
_episodeService = episodeService;
|
2013-04-24 03:56:00 +02:00
|
|
|
_messageAggregator = messageAggregator;
|
2013-03-01 08:03:41 +01:00
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
public EpisodeFile Add(EpisodeFile episodeFile)
|
|
|
|
{
|
2013-04-15 03:41:39 +02:00
|
|
|
var addedFile = _mediaFileRepository.Insert(episodeFile);
|
2013-04-24 03:56:00 +02:00
|
|
|
_messageAggregator.Publish(new EpisodeFileAddedEvent(addedFile));
|
2013-04-15 03:41:39 +02:00
|
|
|
return addedFile;
|
2013-03-01 08:03:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Update(EpisodeFile episodeFile)
|
|
|
|
{
|
|
|
|
_mediaFileRepository.Update(episodeFile);
|
|
|
|
}
|
|
|
|
|
2013-03-07 05:34:56 +01:00
|
|
|
public void Delete(EpisodeFile episodeFile)
|
2013-03-01 08:03:41 +01:00
|
|
|
{
|
2013-03-07 05:34:56 +01:00
|
|
|
_mediaFileRepository.Delete(episodeFile);
|
2013-04-24 03:56:00 +02:00
|
|
|
_messageAggregator.Publish(new EpisodeFileDeletedEvent(episodeFile));
|
2013-03-01 08:03:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public bool Exists(string path)
|
|
|
|
{
|
|
|
|
return GetFileByPath(path) != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public EpisodeFile GetFileByPath(string path)
|
|
|
|
{
|
|
|
|
return _mediaFileRepository.GetFileByPath(path.Normalize());
|
|
|
|
}
|
|
|
|
|
2013-03-06 22:20:33 +01:00
|
|
|
public List<EpisodeFile> GetFilesBySeries(int seriesId)
|
2013-03-01 08:03:41 +01:00
|
|
|
{
|
|
|
|
return _mediaFileRepository.GetFilesBySeries(seriesId);
|
|
|
|
}
|
|
|
|
|
2013-03-06 22:20:33 +01:00
|
|
|
public List<EpisodeFile> GetFilesBySeason(int seriesId, int seasonNumber)
|
2013-03-01 08:03:41 +01:00
|
|
|
{
|
|
|
|
return _mediaFileRepository.GetFilesBySeason(seriesId, seasonNumber);
|
|
|
|
}
|
|
|
|
|
2013-03-06 22:20:33 +01:00
|
|
|
public void HandleAsync(SeriesDeletedEvent message)
|
|
|
|
{
|
|
|
|
var files = GetFilesBySeries(message.Series.Id);
|
|
|
|
_mediaFileRepository.DeleteMany(files);
|
|
|
|
}
|
|
|
|
|
2013-03-01 08:03:41 +01:00
|
|
|
public FileInfo CalculateFilePath(Series series, int seasonNumber, string fileName, string extention)
|
|
|
|
{
|
|
|
|
string path = series.Path;
|
|
|
|
if (series.SeasonFolder)
|
|
|
|
{
|
|
|
|
var seasonFolder = _configService.SortingSeasonFolderFormat
|
2013-03-06 22:20:33 +01:00
|
|
|
.Replace("%0s", seasonNumber.ToString("00"))
|
|
|
|
.Replace("%s", seasonNumber.ToString());
|
2013-03-01 08:03:41 +01:00
|
|
|
|
|
|
|
path = Path.Combine(path, seasonFolder);
|
|
|
|
}
|
|
|
|
|
|
|
|
path = Path.Combine(path, fileName + extention);
|
|
|
|
|
|
|
|
return new FileInfo(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|