mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Initial Commit
This commit is contained in:
commit
74ac3bb599
106 changed files with 118079 additions and 0 deletions
67
NzbDrone.Core/Controllers/SeriesController.cs
Normal file
67
NzbDrone.Core/Controllers/SeriesController.cs
Normal file
|
@ -0,0 +1,67 @@
|
|||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using log4net;
|
||||
using NzbDrone.Core.Repository;
|
||||
using SubSonic.Repository;
|
||||
using TvdbLib.Data;
|
||||
|
||||
namespace NzbDrone.Core.Controllers
|
||||
{
|
||||
public class SeriesController : ISeriesController
|
||||
{
|
||||
private readonly IConfigController _config;
|
||||
private readonly IDiskController _diskController;
|
||||
private readonly ILog _logger;
|
||||
private readonly IRepository _sonioRepo;
|
||||
private readonly ITvDbController _tvDb;
|
||||
|
||||
public SeriesController(ILog logger, IDiskController diskController, IConfigController configController, IRepository dataRepository, ITvDbController tvDbController)
|
||||
{
|
||||
_logger = logger;
|
||||
_diskController = diskController;
|
||||
_config = configController;
|
||||
_sonioRepo = dataRepository;
|
||||
_tvDb = tvDbController;
|
||||
}
|
||||
|
||||
#region ISeriesController Members
|
||||
|
||||
public IQueryable<Series> GetSeries()
|
||||
{
|
||||
return _sonioRepo.All<Series>();
|
||||
}
|
||||
|
||||
public void SyncSeriesWithDisk()
|
||||
{
|
||||
foreach (string root in _config.GetTvRoots())
|
||||
{
|
||||
foreach (string seriesFolder in _diskController.GetDirectories(root))
|
||||
{
|
||||
var dirInfo = new DirectoryInfo(seriesFolder);
|
||||
if (!_sonioRepo.Exists<Series>(s => s.Path == _diskController.CleanPath(dirInfo.FullName)))
|
||||
{
|
||||
_logger.InfoFormat("Folder '{0} isn't mapped to a series in the database. Trying to map it.'", seriesFolder);
|
||||
AddShow(seriesFolder);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private void AddShow(string path)
|
||||
{
|
||||
List<TvdbSearchResult> searchResults = _tvDb.SearchSeries(new DirectoryInfo(path).Name);
|
||||
if (searchResults.Count != 0)
|
||||
{
|
||||
AddShow(path, _tvDb.GetSeries(searchResults[0].Id, searchResults[0].Language));
|
||||
}
|
||||
}
|
||||
|
||||
private void AddShow(string path, TvdbSeries series)
|
||||
{
|
||||
_sonioRepo.Add(new Series {Id = series.Id, SeriesName = series.SeriesName, AirTimes = series.AirsTime, AirsDayOfWeek = series.AirsDayOfWeek, Overview = series.Overview, Status = series.Status, Language = series.Language.Name, Path = path});
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue