1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Core/DataAugmentation/Scene/SceneMappingService.cs

96 lines
2.5 KiB
C#
Raw Normal View History

2013-03-02 19:25:39 +01:00
using System;
2013-04-01 04:43:58 +02:00
using System.Linq;
2013-03-02 19:25:39 +01:00
using NLog;
using NzbDrone.Core.Lifecycle;
2013-04-07 09:30:37 +02:00
using NzbDrone.Core.Tv;
2013-03-02 19:25:39 +01:00
2013-04-01 04:43:58 +02:00
namespace NzbDrone.Core.DataAugmentation.Scene
2013-03-02 19:25:39 +01:00
{
2013-03-07 04:45:36 +01:00
public interface ISceneMappingService
{
void UpdateMappings();
2013-04-07 09:30:37 +02:00
string GetSceneName(int seriesId, int seasonNumber = -1);
2013-04-01 04:43:58 +02:00
Nullable<int> GetTvDbId(string cleanName);
2013-03-07 04:45:36 +01:00
string GetCleanName(int tvdbId);
}
public class SceneMappingService : IInitializable, ISceneMappingService
2013-03-02 19:25:39 +01:00
{
private readonly ISceneMappingRepository _repository;
private readonly ISceneMappingProxy _sceneMappingProxy;
2013-04-07 09:30:37 +02:00
private readonly ISeriesService _seriesService;
2013-03-02 19:25:39 +01:00
private readonly Logger _logger;
2013-04-07 09:30:37 +02:00
public SceneMappingService(ISceneMappingRepository repository, ISceneMappingProxy sceneMappingProxy, ISeriesService seriesService, Logger logger)
2013-03-02 19:25:39 +01:00
{
_repository = repository;
_sceneMappingProxy = sceneMappingProxy;
2013-04-07 09:30:37 +02:00
_seriesService = seriesService;
2013-03-02 19:25:39 +01:00
_logger = logger;
}
public void UpdateMappings()
{
try
{
var mappings = _sceneMappingProxy.Fetch();
2013-04-01 04:43:58 +02:00
if (mappings.Any())
{
_repository.Purge();
_repository.InsertMany(mappings);
}
else
{
_logger.Warn("Received empty list of mapping. will not update.");
}
2013-03-02 19:25:39 +01:00
}
catch (Exception ex)
{
2013-04-01 04:43:58 +02:00
_logger.ErrorException("Failed to Update Scene Mappings:", ex);
2013-03-02 19:25:39 +01:00
}
}
2013-04-07 09:30:37 +02:00
public string GetSceneName(int seriesId, int seasonNumber = -1)
2013-03-02 19:25:39 +01:00
{
2013-04-07 09:30:37 +02:00
var tvDbId = _seriesService.FindByTvdbId(seriesId).TvDbId;
var mapping = _repository.FindByTvdbId(tvDbId);
2013-03-02 19:25:39 +01:00
2013-04-01 04:43:58 +02:00
if (mapping == null) return null;
2013-03-02 19:25:39 +01:00
return mapping.SceneName;
}
2013-04-07 09:30:37 +02:00
public Nullable<Int32> GetTvDbId(string cleanName)
2013-03-02 19:25:39 +01:00
{
var mapping = _repository.FindByCleanTitle(cleanName);
if (mapping == null)
return null;
return mapping.TvdbId;
}
2013-04-07 09:30:37 +02:00
public string GetCleanName(int tvdbId)
2013-03-02 19:25:39 +01:00
{
var mapping = _repository.FindByTvdbId(tvdbId);
if (mapping == null) return null;
return mapping.CleanTitle;
}
public void Init()
{
if (!_repository.HasItems())
{
UpdateMappings();
}
}
}
}