2011-09-10 10:42:05 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using Ninject;
|
|
|
|
|
using NLog;
|
2011-10-29 06:54:33 +02:00
|
|
|
|
using NzbDrone.Common;
|
2011-09-10 10:42:05 +02:00
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-10-29 06:54:33 +02:00
|
|
|
|
using DiskProvider = NzbDrone.Core.Providers.Core.DiskProvider;
|
2011-09-10 10:42:05 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Jobs
|
|
|
|
|
{
|
|
|
|
|
public class BannerDownloadJob : IJob
|
|
|
|
|
{
|
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
|
|
|
|
private readonly HttpProvider _httpProvider;
|
|
|
|
|
private readonly DiskProvider _diskProvider;
|
2011-10-21 07:04:26 +02:00
|
|
|
|
private readonly EnviromentProvider _enviromentProvider;
|
2011-09-10 10:42:05 +02:00
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
|
|
|
|
private string _bannerPath = "";
|
|
|
|
|
private const string _bannerUrlPrefix = "http://www.thetvdb.com/banners/";
|
|
|
|
|
|
|
|
|
|
[Inject]
|
2011-10-21 07:04:26 +02:00
|
|
|
|
public BannerDownloadJob(SeriesProvider seriesProvider, HttpProvider httpProvider, DiskProvider diskProvider, EnviromentProvider enviromentProvider)
|
2011-09-10 10:42:05 +02:00
|
|
|
|
{
|
|
|
|
|
_seriesProvider = seriesProvider;
|
|
|
|
|
_httpProvider = httpProvider;
|
|
|
|
|
_diskProvider = diskProvider;
|
2011-10-21 07:04:26 +02:00
|
|
|
|
_enviromentProvider = enviromentProvider;
|
2011-09-10 10:42:05 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BannerDownloadJob()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Banner Download"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int DefaultInterval
|
|
|
|
|
{
|
|
|
|
|
//30 days
|
|
|
|
|
get { return 43200; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Starting banner download job");
|
|
|
|
|
|
2011-10-29 06:54:33 +02:00
|
|
|
|
_bannerPath = Path.Combine(_enviromentProvider.WebRoot, "Content", "Images", "Banners");
|
2011-09-10 10:42:05 +02:00
|
|
|
|
_diskProvider.CreateDirectory(_bannerPath);
|
|
|
|
|
|
|
|
|
|
if (targetId > 0)
|
|
|
|
|
{
|
|
|
|
|
var series = _seriesProvider.GetSeries(targetId);
|
|
|
|
|
|
|
|
|
|
if (series != null && !String.IsNullOrEmpty(series.BannerUrl))
|
|
|
|
|
DownloadBanner(notification, series);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var seriesInDb = _seriesProvider.GetAllSeries();
|
|
|
|
|
|
|
|
|
|
foreach (var series in seriesInDb.Where(s => !String.IsNullOrEmpty(s.BannerUrl)))
|
|
|
|
|
{
|
|
|
|
|
DownloadBanner(notification, series);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Logger.Debug("Finished banner download job");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void DownloadBanner(ProgressNotification notification, Series series)
|
|
|
|
|
{
|
|
|
|
|
var bannerFilename = String.Format("{0}{1}{2}.jpg", _bannerPath, Path.DirectorySeparatorChar, series.SeriesId);
|
|
|
|
|
|
|
|
|
|
notification.CurrentMessage = string.Format("Downloading banner for '{0}'", series.Title);
|
|
|
|
|
|
2011-10-21 07:04:26 +02:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_httpProvider.DownloadFile(_bannerUrlPrefix + series.BannerUrl, bannerFilename);
|
2011-09-10 10:42:05 +02:00
|
|
|
|
notification.CurrentMessage = string.Format("Successfully download banner for '{0}'", series.Title);
|
2011-10-21 07:04:26 +02:00
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
2011-09-10 10:42:05 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Failed to download banner for '{0}'", series.Title);
|
|
|
|
|
notification.CurrentMessage = string.Format("Failed to download banner for '{0}'", series.Title);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|