diff --git a/Logo/1024.png b/Logo/1024.png
index 6923c2554..0e3753b4a 100644
Binary files a/Logo/1024.png and b/Logo/1024.png differ
diff --git a/Logo/128.png b/Logo/128.png
index 5e143b52e..02f00f08f 100644
Binary files a/Logo/128.png and b/Logo/128.png differ
diff --git a/Logo/16.png b/Logo/16.png
index 0a042f4bb..61841ab86 100644
Binary files a/Logo/16.png and b/Logo/16.png differ
diff --git a/Logo/256.png b/Logo/256.png
index c958e1bbf..c053975a4 100644
Binary files a/Logo/256.png and b/Logo/256.png differ
diff --git a/Logo/32.png b/Logo/32.png
index f1fe93db5..41a6dd279 100644
Binary files a/Logo/32.png and b/Logo/32.png differ
diff --git a/Logo/400.png b/Logo/400.png
index dac41bfd8..f413f967e 100644
Binary files a/Logo/400.png and b/Logo/400.png differ
diff --git a/Logo/48.png b/Logo/48.png
index 8b9d0fc88..45cf3047c 100644
Binary files a/Logo/48.png and b/Logo/48.png differ
diff --git a/Logo/512.png b/Logo/512.png
index d2f56252f..16f7068a0 100644
Binary files a/Logo/512.png and b/Logo/512.png differ
diff --git a/Logo/64.png b/Logo/64.png
index 80edc7894..483e3d809 100644
Binary files a/Logo/64.png and b/Logo/64.png differ
diff --git a/Logo/800.png b/Logo/800.png
index 4a1d25228..516222468 100644
Binary files a/Logo/800.png and b/Logo/800.png differ
diff --git a/Logo/Radarr.svg b/Logo/Radarr.svg
index a9ce35970..575ae24da 100644
--- a/Logo/Radarr.svg
+++ b/Logo/Radarr.svg
@@ -1,572 +1,25 @@
-
-
\ No newline at end of file
+
diff --git a/README.md b/README.md
index b2eeb345d..8b25677f7 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,9 @@
| AppVeyor | [](https://ci.appveyor.com/project/galli-leo/Radarr) | [](https://ci.appveyor.com/project/galli-leo/Radarr-usby1) |
| Travis | [](https://travis-ci.org/Radarr/Radarr) | [](https://travis-ci.org/Radarr/Radarr) |
-This fork of Sonarr aims to turn it into something like CouchPotato.
+A fork of [Sonarr](https://github.com/Sonarr/Sonarr) to work with movies à la Couchpotato.
+
+**This fork works independently of Sonarr and will not interfere with it.**
## Downloads
@@ -34,33 +36,33 @@ To connect to the UI, fire up your browser and open or <
## Features
-### Currently Working
+### Current Features
-* Adding new movies
-* Manually searching for releases of movies
-* Automatically searching for releases
+* Adding new movies with lots of information, such as trailers, ratings, etc.
+* Support for major platforms: Windows, Linux, macOS, Raspberry Pi, etc.
+* Can watch for better quality of the movies you have and do an automatic upgrade. *eg. from DVD to Blu-Ray*
+* Automatic failed download handling will try another release if one fails
+* Manual search so you can pick any release or to see why a release was not downloaded automatically
+* Full integration with SABnzbd and NZBGet
+* Automatically searching for releases as well as RSS Sync
* Automatically importing downloaded movies
* Recognizing Special Editions, Director's Cut, etc.
* Identifying releases with hardcoded subs
-* Rarbg.to, Torznab and Newznab Indexer
-* QBittorrent and Deluge download client (Other clients are coming)
+* All indexers supported by Sonarr also supported
+* New PassThePopcorn Indexer
+* QBittorrent, Deluge, rTorrent, Transmission and uTorrent download client (Other clients are coming)
* New TorrentPotato Indexer (Works well with [Jackett](https://github.com/Jackett/Jackett))
+* And a beautiful UI
### Planned Features
* Scanning PreDB to know when a new release is available
* Fixing the other Indexers and download clients
-* Importing of Sonarr config
-
-### Major Features
-
-* Support for major platforms: Windows, Linux, macOS, Raspberry Pi, etc.
-* Can watch for better quality of the movies you have and do an automatic upgrade. *eg. from DVD to Blu-Ray*
-* Automatic failed download handling will try another release if one fails
-* Manual search so you can pick any release or to see why a release was not downloaded automatically
-* Full integration with SABnzbd and NZBGet
+* Importing movies from various online sources, such as IMDb Watchlists (A complete list can be found [here](https://github.com/Radarr/Radarr/issues/114))
* Full integration with Kodi, Plex (notification, library update, metadata)
-* And a beautiful UI
+
+##Feature Requests
+[](http://feathub.com/Radarr/Radarr)
## Configuring Development Environment
diff --git a/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs b/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs
index f6efc16ce..7aa1bce2a 100644
--- a/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs
+++ b/src/NzbDrone.Api/Authentication/EnableAuthInNancy.cs
@@ -64,6 +64,8 @@ namespace NzbDrone.Api.Authentication
new DefaultHmacProvider(new PassphraseKeyGenerator(_configService.HmacPassphrase, Encoding.ASCII.GetBytes(_configService.HmacSalt)))
);
+ FormsAuthentication.FormsAuthenticationCookieName = "_ncfaradarr"; //For those people that both have sonarr and radarr.
+
FormsAuthentication.Enable(pipelines, new FormsAuthenticationConfiguration
{
RedirectUrl = _configFileProvider.UrlBase + "/login",
diff --git a/src/NzbDrone.Api/Validation/RssSyncIntervalValidator.cs b/src/NzbDrone.Api/Validation/RssSyncIntervalValidator.cs
index 8a3f2d54c..fce86cd86 100644
--- a/src/NzbDrone.Api/Validation/RssSyncIntervalValidator.cs
+++ b/src/NzbDrone.Api/Validation/RssSyncIntervalValidator.cs
@@ -5,7 +5,7 @@ namespace NzbDrone.Api.Validation
public class RssSyncIntervalValidator : PropertyValidator
{
public RssSyncIntervalValidator()
- : base("Must be between 10 and 120 or 0 to disable")
+ : base("Must be between 10 and 720 or 0 to disable")
{
}
@@ -23,7 +23,7 @@ namespace NzbDrone.Api.Validation
return true;
}
- if (value >= 10 && value <= 120)
+ if (value >= 10 && value <= 720)
{
return true;
}
diff --git a/src/NzbDrone.Console/Radarr.ico b/src/NzbDrone.Console/Radarr.ico
index 6f0a8b50e..7d20c6f5a 100644
Binary files a/src/NzbDrone.Console/Radarr.ico and b/src/NzbDrone.Console/Radarr.ico differ
diff --git a/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs b/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs
index 8ad51f1e7..ee834d507 100644
--- a/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs
+++ b/src/NzbDrone.Core.Test/Configuration/ConfigServiceFixture.cs
@@ -32,7 +32,7 @@ namespace NzbDrone.Core.Test.Configuration
[Test]
public void Get_value_should_return_default_when_no_value()
{
- Subject.RssSyncInterval.Should().Be(15);
+ Subject.RssSyncInterval.Should().Be(60);
}
[Test]
@@ -47,7 +47,7 @@ namespace NzbDrone.Core.Test.Configuration
public void get_value_with_out_persist_should_not_store_default_value()
{
var interval = Subject.RssSyncInterval;
- interval.Should().Be(15);
+ interval.Should().Be(60);
Mocker.GetMock().Verify(c => c.Insert(It.IsAny()), Times.Never());
}
diff --git a/src/NzbDrone.Core/Configuration/ConfigService.cs b/src/NzbDrone.Core/Configuration/ConfigService.cs
index 4eae607ae..d19cddd67 100644
--- a/src/NzbDrone.Core/Configuration/ConfigService.cs
+++ b/src/NzbDrone.Core/Configuration/ConfigService.cs
@@ -100,7 +100,7 @@ namespace NzbDrone.Core.Configuration
public int RssSyncInterval
{
- get { return GetValueInt("RssSyncInterval", 15); }
+ get { return GetValueInt("RssSyncInterval", 60); }
set { SetValue("RssSyncInterval", value); }
}
diff --git a/src/NzbDrone.Core/DecisionEngine/Specifications/RssSync/MonitoredEpisodeSpecification.cs b/src/NzbDrone.Core/DecisionEngine/Specifications/RssSync/MonitoredEpisodeSpecification.cs
index ccb87c414..fe03e89a0 100644
--- a/src/NzbDrone.Core/DecisionEngine/Specifications/RssSync/MonitoredEpisodeSpecification.cs
+++ b/src/NzbDrone.Core/DecisionEngine/Specifications/RssSync/MonitoredEpisodeSpecification.cs
@@ -19,7 +19,21 @@ namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
public Decision IsSatisfiedBy(RemoteMovie subject, SearchCriteriaBase searchCriteria)
{
- throw new NotImplementedException();
+ if (searchCriteria != null)
+ {
+ if (searchCriteria.UserInvokedSearch)
+ {
+ _logger.Debug("Skipping monitored check during search");
+ return Decision.Accept();
+ }
+ }
+
+ if (!subject.Movie.Monitored)
+ {
+ return Decision.Reject("Movie is not monitored");
+ }
+
+ return Decision.Accept();
}
public virtual Decision IsSatisfiedBy(RemoteEpisode subject, SearchCriteriaBase searchCriteria)
diff --git a/src/NzbDrone.Core/Download/RedownloadFailedDownloadService.cs b/src/NzbDrone.Core/Download/RedownloadFailedDownloadService.cs
index 0e5b3a13a..f49f3772e 100644
--- a/src/NzbDrone.Core/Download/RedownloadFailedDownloadService.cs
+++ b/src/NzbDrone.Core/Download/RedownloadFailedDownloadService.cs
@@ -5,6 +5,7 @@ using NzbDrone.Core.IndexerSearch;
using NzbDrone.Core.Messaging.Commands;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.Tv;
+using System.Collections.Generic;
namespace NzbDrone.Core.Download
{
@@ -38,7 +39,7 @@ namespace NzbDrone.Core.Download
{
_logger.Debug("Failed download contains a movie, searching again.");
- _commandQueueManager.Push(new MoviesSearchCommand { MovieId = message.MovieId });
+ _commandQueueManager.Push(new MoviesSearchCommand { MovieIds = new List { message.MovieId } });
return;
}
diff --git a/src/NzbDrone.Core/Extras/ExtraService.cs b/src/NzbDrone.Core/Extras/ExtraService.cs
index 85889ce44..8ba14e3d8 100644
--- a/src/NzbDrone.Core/Extras/ExtraService.cs
+++ b/src/NzbDrone.Core/Extras/ExtraService.cs
@@ -102,13 +102,13 @@ namespace NzbDrone.Core.Extras
public void Handle(MediaCoversUpdatedEvent message)
{
- var series = message.Series;
- var episodeFiles = GetEpisodeFiles(series.Id);
+ //var series = message.Series;
+ //var episodeFiles = GetEpisodeFiles(series.Id);
- foreach (var extraFileManager in _extraFileManagers)
- {
- extraFileManager.CreateAfterSeriesScan(series, episodeFiles);
- }
+ //foreach (var extraFileManager in _extraFileManagers)
+ //{
+ // extraFileManager.CreateAfterSeriesScan(series, episodeFiles);
+ //}
}
//TODO: Implementing this will fix a lot of our warning exceptions
diff --git a/src/NzbDrone.Core/IndexerSearch/MissingMoviesSearchCommand.cs b/src/NzbDrone.Core/IndexerSearch/MissingMoviesSearchCommand.cs
new file mode 100644
index 000000000..7c53532c3
--- /dev/null
+++ b/src/NzbDrone.Core/IndexerSearch/MissingMoviesSearchCommand.cs
@@ -0,0 +1,13 @@
+using NzbDrone.Core.Messaging.Commands;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace NzbDrone.Core.IndexerSearch
+{
+ public class MissingMoviesSearchCommand : Command
+ {
+ public override bool SendUpdatesToClient => true;
+ }
+}
diff --git a/src/NzbDrone.Core/IndexerSearch/MoviesSearchCommand.cs b/src/NzbDrone.Core/IndexerSearch/MoviesSearchCommand.cs
index da0b9a8c1..214c59d6b 100644
--- a/src/NzbDrone.Core/IndexerSearch/MoviesSearchCommand.cs
+++ b/src/NzbDrone.Core/IndexerSearch/MoviesSearchCommand.cs
@@ -1,10 +1,11 @@
using NzbDrone.Core.Messaging.Commands;
+using System.Collections.Generic;
namespace NzbDrone.Core.IndexerSearch
{
public class MoviesSearchCommand : Command
{
- public int MovieId { get; set; }
+ public List MovieIds { get; set; }
public override bool SendUpdatesToClient => true;
}
diff --git a/src/NzbDrone.Core/IndexerSearch/MoviesSearchService.cs b/src/NzbDrone.Core/IndexerSearch/MoviesSearchService.cs
index 656423178..5b8e4dd37 100644
--- a/src/NzbDrone.Core/IndexerSearch/MoviesSearchService.cs
+++ b/src/NzbDrone.Core/IndexerSearch/MoviesSearchService.cs
@@ -4,22 +4,23 @@ using NzbDrone.Common.Instrumentation.Extensions;
using NzbDrone.Core.Download;
using NzbDrone.Core.Messaging.Commands;
using NzbDrone.Core.Tv;
+using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.IndexerSearch
{
- public class MovieSearchService : IExecute
+ public class MovieSearchService : IExecute, IExecute
{
- private readonly IMovieService _seriesService;
+ private readonly IMovieService _movieService;
private readonly ISearchForNzb _nzbSearchService;
private readonly IProcessDownloadDecisions _processDownloadDecisions;
private readonly Logger _logger;
- public MovieSearchService(IMovieService seriesService,
+ public MovieSearchService(IMovieService movieService,
ISearchForNzb nzbSearchService,
IProcessDownloadDecisions processDownloadDecisions,
Logger logger)
{
- _seriesService = seriesService;
+ _movieService = movieService;
_nzbSearchService = nzbSearchService;
_processDownloadDecisions = processDownloadDecisions;
_logger = logger;
@@ -27,20 +28,35 @@ namespace NzbDrone.Core.IndexerSearch
public void Execute(MoviesSearchCommand message)
{
- var series = _seriesService.GetMovie(message.MovieId);
-
var downloadedCount = 0;
-
+ foreach (var movieId in message.MovieIds)
+ {
+ var series = _movieService.GetMovie(movieId);
+
if (!series.Monitored)
{
_logger.Debug("Movie {0} is not monitored, skipping search", series.Title);
}
- var decisions = _nzbSearchService.MovieSearch(message.MovieId, false);//_nzbSearchService.SeasonSearch(message.MovieId, season.SeasonNumber, false, message.Trigger == CommandTrigger.Manual);
+ var decisions = _nzbSearchService.MovieSearch(movieId, false);//_nzbSearchService.SeasonSearch(message.MovieId, season.SeasonNumber, false, message.Trigger == CommandTrigger.Manual);
downloadedCount += _processDownloadDecisions.ProcessDecisions(decisions).Grabbed.Count;
-
+ }
_logger.ProgressInfo("Movie search completed. {0} reports downloaded.", downloadedCount);
}
+
+ public void Execute(MissingMoviesSearchCommand message)
+ {
+ var movies = _movieService.MoviesWithoutFiles(new PagingSpec
+ {
+ Page = 1,
+ PageSize = 100000,
+ SortDirection = SortDirection.Ascending,
+ SortKey = "Id",
+ FilterExpression =
+ v =>
+ v.Monitored == true
+ }).Records.ToList();
+ }
}
}
diff --git a/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDRequestGenerator.cs b/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDRequestGenerator.cs
index 00289d7e4..73b36335b 100644
--- a/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDRequestGenerator.cs
+++ b/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDRequestGenerator.cs
@@ -54,13 +54,19 @@ namespace NzbDrone.Core.Indexers.AwesomeHD
private IEnumerable GetRequest(string searchParameters)
{
+ var onlyInternal = "";
+ if (Settings.Internal)
+ {
+ onlyInternal = "&internal=true";
+ }
+
if (searchParameters != null)
{
- yield return new IndexerRequest(string.Format("{0}/searchapi.php?action=imdbsearch&passkey={1}&imdb={2}", Settings.BaseUrl.Trim().TrimEnd('/'), Settings.Passkey.Trim(), searchParameters), HttpAccept.Rss);
+ yield return new IndexerRequest($"{Settings.BaseUrl.Trim().TrimEnd('/')}/searchapi.php?action=imdbsearch&passkey={Settings.Passkey.Trim()}&imdb={searchParameters}", HttpAccept.Rss);
}
else
{
- yield return new IndexerRequest(string.Format("{0}/searchapi.php?action=latestmovies&passkey={1}", Settings.BaseUrl.Trim().TrimEnd('/'), Settings.Passkey.Trim()), HttpAccept.Rss);
+ yield return new IndexerRequest($"{Settings.BaseUrl.Trim().TrimEnd('/')}/searchapi.php?action=latestmovies&passkey={Settings.Passkey.Trim()}{onlyInternal}", HttpAccept.Rss);
}
}
diff --git a/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDSettings.cs b/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDSettings.cs
index 3c6f525c4..1d1b259f1 100644
--- a/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDSettings.cs
+++ b/src/NzbDrone.Core/Indexers/AwesomeHD/AwesomeHDSettings.cs
@@ -29,6 +29,9 @@ namespace NzbDrone.Core.Indexers.AwesomeHD
[FieldDefinition(1, Label = "Passkey")]
public string Passkey { get; set; }
+ [FieldDefinition(2, Type = FieldType.Checkbox, Label = "Require Internal", HelpText = "Will only include internal releases for RSS Sync.")]
+ public bool Internal { get; set; }
+
public NzbDroneValidationResult Validate()
{
return new NzbDroneValidationResult(Validator.Validate(this));
diff --git a/src/NzbDrone.Core/Jobs/TaskManager.cs b/src/NzbDrone.Core/Jobs/TaskManager.cs
index 43af20db5..d5303a97c 100644
--- a/src/NzbDrone.Core/Jobs/TaskManager.cs
+++ b/src/NzbDrone.Core/Jobs/TaskManager.cs
@@ -30,12 +30,14 @@ namespace NzbDrone.Core.Jobs
{
private readonly IScheduledTaskRepository _scheduledTaskRepository;
private readonly IConfigService _configService;
+ private readonly IConfigFileProvider _configFileProvider;
private readonly Logger _logger;
- public TaskManager(IScheduledTaskRepository scheduledTaskRepository, IConfigService configService, Logger logger)
+ public TaskManager(IScheduledTaskRepository scheduledTaskRepository, IConfigService configService, IConfigFileProvider configFileProvider, Logger logger)
{
_scheduledTaskRepository = scheduledTaskRepository;
_configService = configService;
+ _configFileProvider = configFileProvider;
_logger = logger;
}
@@ -59,11 +61,18 @@ namespace NzbDrone.Core.Jobs
public void Handle(ApplicationStartedEvent message)
{
+ float updateInterval = 6 * 60;
+
+ if (_configFileProvider.Branch == "nightly")
+ {
+ updateInterval = 30;
+ }
+
var defaultTasks = new[]
{
new ScheduledTask{ Interval = 0.25f, TypeName = typeof(CheckForFinishedDownloadCommand).FullName},
new ScheduledTask{ Interval = 5, TypeName = typeof(MessagingCleanupCommand).FullName},
- new ScheduledTask{ Interval = 6*60, TypeName = typeof(ApplicationUpdateCommand).FullName},
+ new ScheduledTask{ Interval = updateInterval, TypeName = typeof(ApplicationUpdateCommand).FullName},
// new ScheduledTask{ Interval = 3*60, TypeName = typeof(UpdateSceneMappingCommand).FullName},
new ScheduledTask{ Interval = 6*60, TypeName = typeof(CheckHealthCommand).FullName},
new ScheduledTask{ Interval = 24*60, TypeName = typeof(RefreshMovieCommand).FullName},
diff --git a/src/NzbDrone.Core/MediaCover/CoverAlreadyExistsSpecification.cs b/src/NzbDrone.Core/MediaCover/CoverAlreadyExistsSpecification.cs
index 83f1e13de..54fc79a0a 100644
--- a/src/NzbDrone.Core/MediaCover/CoverAlreadyExistsSpecification.cs
+++ b/src/NzbDrone.Core/MediaCover/CoverAlreadyExistsSpecification.cs
@@ -1,5 +1,8 @@
-using NzbDrone.Common.Disk;
+using System;
+using NzbDrone.Common.Disk;
using NzbDrone.Common.Http;
+using System.Drawing;
+using NLog;
namespace NzbDrone.Core.MediaCover
{
@@ -12,11 +15,13 @@ namespace NzbDrone.Core.MediaCover
{
private readonly IDiskProvider _diskProvider;
private readonly IHttpClient _httpClient;
+ private readonly Logger _logger;
- public CoverAlreadyExistsSpecification(IDiskProvider diskProvider, IHttpClient httpClient)
+ public CoverAlreadyExistsSpecification(IDiskProvider diskProvider, IHttpClient httpClient, Logger logger)
{
_diskProvider = diskProvider;
_httpClient = httpClient;
+ _logger = logger;
}
public bool AlreadyExists(string url, string path)
@@ -26,9 +31,38 @@ namespace NzbDrone.Core.MediaCover
return false;
}
+ if (!IsValidGDIPlusImage(path))
+ {
+ _diskProvider.DeleteFile(path);
+ return false;
+ }
+
var headers = _httpClient.Head(new HttpRequest(url)).Headers;
var fileSize = _diskProvider.GetFileSize(path);
return fileSize == headers.ContentLength;
}
+
+ private bool IsValidGDIPlusImage(string filename)
+ {
+ try
+ {
+ GdiPlusInterop.CheckGdiPlus();
+
+ using (var bmp = new Bitmap(filename))
+ {
+ }
+ return true;
+ }
+ catch (DllNotFoundException ex)
+ {
+ _logger.Error(ex, "Could not find libgdiplus. Cannot test if image is corrupt.");
+ return true;
+ }
+ catch (Exception ex)
+ {
+ _logger.Debug(ex, "Corrupted image found at: {0}. Redownloading...", filename);
+ return false;
+ }
+ }
}
}
\ No newline at end of file
diff --git a/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs b/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs
index dd5b02ec8..65d0706e2 100644
--- a/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs
+++ b/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs
@@ -48,11 +48,12 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
return AudioChannelPositionsText.ContainsIgnoreCase("LFE") ? AudioChannels - 1 + 0.1m : AudioChannels;
}
- decimal channels = 0;
-
- decimal.TryParse(AudioChannelPositions.Split('/').First(), out channels);
-
- return channels;
+ return
+ AudioChannelPositions.Replace("Object Based /", "").Replace(" / ", "$")
+ .Split('$')
+ .First()
+ .Split('/')
+ .Sum(s => decimal.Parse(s, CultureInfo.InvariantCulture));
}
}
}
diff --git a/src/NzbDrone.Core/MetadataSource/IProvideMovieInfo.cs b/src/NzbDrone.Core/MetadataSource/IProvideMovieInfo.cs
index e5256a6dc..20a2738a5 100644
--- a/src/NzbDrone.Core/MetadataSource/IProvideMovieInfo.cs
+++ b/src/NzbDrone.Core/MetadataSource/IProvideMovieInfo.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using NzbDrone.Core.Profiles;
using NzbDrone.Core.Tv;
namespace NzbDrone.Core.MetadataSource
@@ -7,6 +8,6 @@ namespace NzbDrone.Core.MetadataSource
public interface IProvideMovieInfo
{
Movie GetMovieInfo(string ImdbId);
- Movie GetMovieInfo(int TmdbId);
+ Movie GetMovieInfo(int TmdbId, Profile profile);
}
}
\ No newline at end of file
diff --git a/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs b/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs
index f158b44fe..a6ad60957 100644
--- a/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs
+++ b/src/NzbDrone.Core/MetadataSource/SkyHook/SkyHookProxy.cs
@@ -14,6 +14,8 @@ using NzbDrone.Core.Tv;
using Newtonsoft.Json;
using System.Text.RegularExpressions;
using System.Text;
+using NzbDrone.Core.Parser;
+using NzbDrone.Core.Profiles;
namespace NzbDrone.Core.MetadataSource.SkyHook
{
@@ -67,25 +69,39 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
return new Tuple>(series, episodes.ToList());
}
- public Movie GetMovieInfo(int TmdbId)
+ public Movie GetMovieInfo(int TmdbId, Profile profile = null)
{
+ var langCode = profile != null ? IsoLanguages.Get(profile.Language).TwoLetterCode : "us";
+
var request = _movieBuilder.Create()
.SetSegment("route", "movie")
.SetSegment("id", TmdbId.ToString())
.SetSegment("secondaryRoute", "")
.AddQueryParam("append_to_response", "alternative_titles,release_dates,videos")
- .AddQueryParam("country", "US")
+ .AddQueryParam("language", langCode.ToUpper())
+ // .AddQueryParam("country", "US")
.Build();
request.AllowAutoRedirect = true;
request.SuppressHttpError = true;
var response = _httpClient.Get(request);
-
var resource = response.Resource;
var movie = new Movie();
+ foreach (var alternativeTitle in resource.alternative_titles.titles)
+ {
+ if (alternativeTitle.iso_3166_1.ToLower() == langCode)
+ {
+ movie.AlternativeTitles.Add(alternativeTitle.title);
+ }
+ else if (alternativeTitle.iso_3166_1.ToLower() == "us")
+ {
+ movie.AlternativeTitles.Add(alternativeTitle.title);
+ }
+ }
+
movie.TmdbId = TmdbId;
movie.ImdbId = resource.imdb_id;
movie.Title = resource.title;
@@ -106,10 +122,10 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
movie.Images.Add(_configService.GetCoverForURL(resource.backdrop_path, MediaCoverTypes.Banner));
movie.Runtime = resource.runtime;
- foreach(Title title in resource.alternative_titles.titles)
- {
- movie.AlternativeTitles.Add(title.title);
- }
+ //foreach(Title title in resource.alternative_titles.titles)
+ //{
+ // movie.AlternativeTitles.Add(title.title);
+ //}
foreach(ReleaseDates releaseDates in resource.release_dates.results)
{
@@ -149,7 +165,7 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
{
movie.Status = MovieStatusType.Announced;
}
-
+
if (resource.videos != null)
{
foreach (Video video in resource.videos.results)
diff --git a/src/NzbDrone.Core/Notifications/Boxcar/Boxcar.cs b/src/NzbDrone.Core/Notifications/Boxcar/Boxcar.cs
index c3443c33b..aa83d5c90 100644
--- a/src/NzbDrone.Core/Notifications/Boxcar/Boxcar.cs
+++ b/src/NzbDrone.Core/Notifications/Boxcar/Boxcar.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.Boxcar
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs
index a160963c7..d89f3aa42 100644
--- a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs
+++ b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs
@@ -1,4 +1,5 @@
-using System.Collections.Generic;
+using System;
+using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.Linq;
@@ -24,77 +25,67 @@ namespace NzbDrone.Core.Notifications.CustomScript
_logger = logger;
}
- public override string Link => "https://github.com/Sonarr/Sonarr/wiki/Custom-Post-Processing-Scripts";
+ public override string Link => "https://github.com/Radarr/Radarr/wiki/Custom-Post-Processing-Scripts";
public override void OnGrab(GrabMessage message)
{
- var series = message.Series;
- var remoteEpisode = message.Episode;
- var releaseGroup = remoteEpisode.ParsedEpisodeInfo.ReleaseGroup;
+ var movie = message.Movie;
+ var remoteMovie = message.RemoteMovie;
+ var releaseGroup = remoteMovie.ParsedMovieInfo.ReleaseGroup;
var environmentVariables = new StringDictionary();
- environmentVariables.Add("Sonarr_EventType", "Grab");
- environmentVariables.Add("Sonarr_Series_Id", series.Id.ToString());
- environmentVariables.Add("Sonarr_Series_Title", series.Title);
- environmentVariables.Add("Sonarr_Series_TvdbId", series.TvdbId.ToString());
- environmentVariables.Add("Sonarr_Series_Type", series.SeriesType.ToString());
- environmentVariables.Add("Sonarr_Release_EpisodeCount", remoteEpisode.Episodes.Count.ToString());
- environmentVariables.Add("Sonarr_Release_SeasonNumber", remoteEpisode.ParsedEpisodeInfo.SeasonNumber.ToString());
- environmentVariables.Add("Sonarr_Release_EpisodeNumbers", string.Join(",", remoteEpisode.Episodes.Select(e => e.EpisodeNumber)));
- environmentVariables.Add("Sonarr_Release_Title", remoteEpisode.Release.Title);
- environmentVariables.Add("Sonarr_Release_Indexer", remoteEpisode.Release.Indexer);
- environmentVariables.Add("Sonarr_Release_Size", remoteEpisode.Release.Size.ToString());
- environmentVariables.Add("Sonarr_Release_ReleaseGroup", releaseGroup);
+ environmentVariables.Add("Radarr_EventType", "Grab");
+ environmentVariables.Add("Radarr_Movie_Id", movie.Id.ToString());
+ environmentVariables.Add("Radarr_Movie_Title", movie.Title);
+ environmentVariables.Add("Radarr_Movie_ImdbId", movie.ImdbId.ToString());
+ environmentVariables.Add("Radarr_Release_Title", remoteMovie.Release.Title);
+ environmentVariables.Add("Radarr_Release_Indexer", remoteMovie.Release.Indexer);
+ environmentVariables.Add("Radarr_Release_Size", remoteMovie.Release.Size.ToString());
+ environmentVariables.Add("Radarr_Release_ReleaseGroup", releaseGroup);
ExecuteScript(environmentVariables);
}
public override void OnDownload(DownloadMessage message)
{
- var series = message.Series;
- var episodeFile = message.EpisodeFile;
+ var movie = message.Movie;
+ var movieFile = message.MovieFile;
var sourcePath = message.SourcePath;
var environmentVariables = new StringDictionary();
- environmentVariables.Add("Sonarr_EventType", "Download");
- environmentVariables.Add("Sonarr_Series_Id", series.Id.ToString());
- environmentVariables.Add("Sonarr_Series_Title", series.Title);
- environmentVariables.Add("Sonarr_Series_Path", series.Path);
- environmentVariables.Add("Sonarr_Series_TvdbId", series.TvdbId.ToString());
- environmentVariables.Add("Sonarr_Series_Type", series.SeriesType.ToString());
- environmentVariables.Add("Sonarr_EpisodeFile_Id", episodeFile.Id.ToString());
- environmentVariables.Add("Sonarr_EpisodeFile_EpisodeCount", episodeFile.Episodes.Value.Count.ToString());
- environmentVariables.Add("Sonarr_EpisodeFile_RelativePath", episodeFile.RelativePath);
- environmentVariables.Add("Sonarr_EpisodeFile_Path", Path.Combine(series.Path, episodeFile.RelativePath));
- environmentVariables.Add("Sonarr_EpisodeFile_SeasonNumber", episodeFile.SeasonNumber.ToString());
- environmentVariables.Add("Sonarr_EpisodeFile_EpisodeNumbers", string.Join(",", episodeFile.Episodes.Value.Select(e => e.EpisodeNumber)));
- environmentVariables.Add("Sonarr_EpisodeFile_EpisodeAirDates", string.Join(",", episodeFile.Episodes.Value.Select(e => e.AirDate)));
- environmentVariables.Add("Sonarr_EpisodeFile_EpisodeAirDatesUtc", string.Join(",", episodeFile.Episodes.Value.Select(e => e.AirDateUtc)));
- environmentVariables.Add("Sonarr_EpisodeFile_EpisodeTitles", string.Join("|", episodeFile.Episodes.Value.Select(e => e.Title)));
- environmentVariables.Add("Sonarr_EpisodeFile_Quality", episodeFile.Quality.Quality.Name);
- environmentVariables.Add("Sonarr_EpisodeFile_QualityVersion", episodeFile.Quality.Revision.Version.ToString());
- environmentVariables.Add("Sonarr_EpisodeFile_ReleaseGroup", episodeFile.ReleaseGroup ?? string.Empty);
- environmentVariables.Add("Sonarr_EpisodeFile_SceneName", episodeFile.SceneName ?? string.Empty);
- environmentVariables.Add("Sonarr_EpisodeFile_SourcePath", sourcePath);
- environmentVariables.Add("Sonarr_EpisodeFile_SourceFolder", Path.GetDirectoryName(sourcePath));
+ environmentVariables.Add("Radarr_EventType", "Download");
+ environmentVariables.Add("Radarr_Movie_Id", movie.Id.ToString());
+ environmentVariables.Add("Radarr_Movie_Title", movie.Title);
+ environmentVariables.Add("Radarr_Movie_ImdbId", movie.ImdbId.ToString());
+ environmentVariables.Add("Radarr_MovieFile_Id", movieFile.Id.ToString());
+ environmentVariables.Add("Radarr_MovieFile_RelativePath", movieFile.RelativePath);
+ environmentVariables.Add("Radarr_MovieFile_Path", Path.Combine(movie.Path, movieFile.RelativePath));
+ environmentVariables.Add("Radarr_MovieFile_Quality", movieFile.Quality.Quality.Name);
+ environmentVariables.Add("Radarr_MovieFile_QualityVersion", movieFile.Quality.Revision.Version.ToString());
+ environmentVariables.Add("Radarr_MovieFile_ReleaseGroup", movieFile.ReleaseGroup ?? string.Empty);
+ environmentVariables.Add("Radarr_MovieFile_SceneName", movieFile.SceneName ?? string.Empty);
+ environmentVariables.Add("Radarr_MovieFile_SourcePath", sourcePath);
+ environmentVariables.Add("Radarr_MovieFile_SourceFolder", Path.GetDirectoryName(sourcePath));
ExecuteScript(environmentVariables);
}
- public override void OnRename(Series series)
+ public override void OnMovieRename(Movie movie)
{
var environmentVariables = new StringDictionary();
- environmentVariables.Add("Sonarr_EventType", "Rename");
- environmentVariables.Add("Sonarr_Series_Id", series.Id.ToString());
- environmentVariables.Add("Sonarr_Series_Title", series.Title);
- environmentVariables.Add("Sonarr_Series_Path", series.Path);
- environmentVariables.Add("Sonarr_Series_TvdbId", series.TvdbId.ToString());
- environmentVariables.Add("Sonarr_Series_Type", series.SeriesType.ToString());
-
+ environmentVariables.Add("Radarr_EventType", "Rename");
+ environmentVariables.Add("Radarr_Movie_Id", movie.Id.ToString());
+ environmentVariables.Add("Radarr_Movie_Title", movie.Title);
+ environmentVariables.Add("Radarr_Movie_Path", movie.Path);
+ environmentVariables.Add("Radarr_Movie_TvdbId", movie.ImdbId.ToString());
ExecuteScript(environmentVariables);
}
+ public override void OnRename(Series series)
+ {
+ }
+
public override string Name => "Custom Script";
public override ValidationResult Test()
diff --git a/src/NzbDrone.Core/Notifications/DownloadMessage.cs b/src/NzbDrone.Core/Notifications/DownloadMessage.cs
index a16ecea80..dd9343eeb 100644
--- a/src/NzbDrone.Core/Notifications/DownloadMessage.cs
+++ b/src/NzbDrone.Core/Notifications/DownloadMessage.cs
@@ -8,8 +8,11 @@ namespace NzbDrone.Core.Notifications
{
public string Message { get; set; }
public Series Series { get; set; }
+ public Movie Movie { get; set; }
public EpisodeFile EpisodeFile { get; set; }
public List OldFiles { get; set; }
+ public MovieFile MovieFile { get; set; }
+ public List OldMovieFiles { get; set; }
public string SourcePath { get; set; }
public override string ToString()
diff --git a/src/NzbDrone.Core/Notifications/Email/Email.cs b/src/NzbDrone.Core/Notifications/Email/Email.cs
index 27e991332..06cb6b250 100644
--- a/src/NzbDrone.Core/Notifications/Email/Email.cs
+++ b/src/NzbDrone.Core/Notifications/Email/Email.cs
@@ -18,7 +18,7 @@ namespace NzbDrone.Core.Notifications.Email
public override void OnGrab(GrabMessage grabMessage)
{
- const string subject = "Radarr [TV] - Grabbed";
+ const string subject = "Radarr [Movie] - Grabbed";
var body = string.Format("{0} sent to queue.", grabMessage.Message);
_emailService.SendEmail(Settings, subject, body);
@@ -26,12 +26,16 @@ namespace NzbDrone.Core.Notifications.Email
public override void OnDownload(DownloadMessage message)
{
- const string subject = "Radarr [TV] - Downloaded";
+ const string subject = "Radarr [Movie] - Downloaded";
var body = string.Format("{0} Downloaded and sorted.", message.Message);
_emailService.SendEmail(Settings, subject, body);
}
-
+
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/GrabMessage.cs b/src/NzbDrone.Core/Notifications/GrabMessage.cs
index e62dbe701..d2a2ac25d 100644
--- a/src/NzbDrone.Core/Notifications/GrabMessage.cs
+++ b/src/NzbDrone.Core/Notifications/GrabMessage.cs
@@ -8,6 +8,8 @@ namespace NzbDrone.Core.Notifications
{
public string Message { get; set; }
public Series Series { get; set; }
+ public Movie Movie { get; set; }
+ public RemoteMovie RemoteMovie { get; set; }
public RemoteEpisode Episode { get; set; }
public QualityModel Quality { get; set; }
diff --git a/src/NzbDrone.Core/Notifications/Growl/Growl.cs b/src/NzbDrone.Core/Notifications/Growl/Growl.cs
index 99b43f625..85d1cb012 100644
--- a/src/NzbDrone.Core/Notifications/Growl/Growl.cs
+++ b/src/NzbDrone.Core/Notifications/Growl/Growl.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.Growl
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_growlService.SendNotification(title, grabMessage.Message, "GRAB", Settings.Host, Settings.Port, Settings.Password);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_growlService.SendNotification(title, message.Message, "DOWNLOAD", Settings.Host, Settings.Port, Settings.Password);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/INotification.cs b/src/NzbDrone.Core/Notifications/INotification.cs
index 7c4e105b9..ec3ef1464 100644
--- a/src/NzbDrone.Core/Notifications/INotification.cs
+++ b/src/NzbDrone.Core/Notifications/INotification.cs
@@ -10,6 +10,7 @@ namespace NzbDrone.Core.Notifications
void OnGrab(GrabMessage grabMessage);
void OnDownload(DownloadMessage message);
void OnRename(Series series);
+ void OnMovieRename(Movie movie);
bool SupportsOnGrab { get; }
bool SupportsOnDownload { get; }
bool SupportsOnUpgrade { get; }
diff --git a/src/NzbDrone.Core/Notifications/Join/Join.cs b/src/NzbDrone.Core/Notifications/Join/Join.cs
index 4e1f81105..ae392e5df 100644
--- a/src/NzbDrone.Core/Notifications/Join/Join.cs
+++ b/src/NzbDrone.Core/Notifications/Join/Join.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.Join
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Radarr - Episode Grabbed";
+ const string title = "Radarr - Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Radarr - Episode Downloaded";
+ const string title = "Radarr - Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs b/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs
index 437d10625..e50feb89a 100644
--- a/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs
+++ b/src/NzbDrone.Core/Notifications/Join/JoinProxy.cs
@@ -87,7 +87,7 @@ namespace NzbDrone.Core.Notifications.Join
request.AddParameter("apikey", settings.ApiKey);
request.AddParameter("title", title);
request.AddParameter("text", message);
- request.AddParameter("icon", "https://cdn.rawgit.com/Sonarr/Sonarr/develop/Logo/256.png"); // Use the Sonarr logo.
+ request.AddParameter("icon", "https://cdn.rawgit.com/Radarr/Radarr/develop/Logo/256.png"); // Use the Radarr logo.
var response = client.ExecuteAndValidate(request);
var res = Json.Deserialize(response.Content);
diff --git a/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowser.cs b/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowser.cs
index 7c68fc306..b47385736 100644
--- a/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowser.cs
+++ b/src/NzbDrone.Core/Notifications/MediaBrowser/MediaBrowser.cs
@@ -18,7 +18,7 @@ namespace NzbDrone.Core.Notifications.MediaBrowser
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Radarr - Grabbed";
+ const string title = "Radarr - Movie Grabbed";
if (Settings.Notify)
{
@@ -28,7 +28,7 @@ namespace NzbDrone.Core.Notifications.MediaBrowser
public override void OnDownload(DownloadMessage message)
{
- const string title = "Radarr - Downloaded";
+ const string title = "Radarr - Movie Downloaded";
if (Settings.Notify)
{
@@ -41,6 +41,10 @@ namespace NzbDrone.Core.Notifications.MediaBrowser
}
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
if (Settings.UpdateLibrary)
diff --git a/src/NzbDrone.Core/Notifications/NotificationBase.cs b/src/NzbDrone.Core/Notifications/NotificationBase.cs
index 197fadae0..c6a415cda 100644
--- a/src/NzbDrone.Core/Notifications/NotificationBase.cs
+++ b/src/NzbDrone.Core/Notifications/NotificationBase.cs
@@ -24,6 +24,7 @@ namespace NzbDrone.Core.Notifications
public abstract void OnGrab(GrabMessage grabMessage);
public abstract void OnDownload(DownloadMessage message);
public abstract void OnRename(Series series);
+ public abstract void OnMovieRename(Movie movie);
public virtual bool SupportsOnGrab => true;
public virtual bool SupportsOnDownload => true;
diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs
index 6ae201fb2..0ee596330 100644
--- a/src/NzbDrone.Core/Notifications/NotificationService.cs
+++ b/src/NzbDrone.Core/Notifications/NotificationService.cs
@@ -15,7 +15,11 @@ namespace NzbDrone.Core.Notifications
public class NotificationService
: IHandle,
IHandle,
- IHandle
+ IHandle,
+ IHandle,
+ IHandle,
+ IHandle
+
{
private readonly INotificationFactory _notificationFactory;
private readonly Logger _logger;
@@ -67,6 +71,41 @@ namespace NzbDrone.Core.Notifications
qualityString);
}
+ private string GetMessage(Movie movie, QualityModel quality)
+ {
+ var qualityString = quality.Quality.ToString();
+
+ if (quality.Revision.Version > 1)
+ {
+ qualityString += " Proper";
+ }
+
+ return string.Format("{0} [{1}]",
+ movie.Title,
+ qualityString);
+ }
+
+ private bool ShouldHandleMovie(ProviderDefinition definition, Movie movie)
+ {
+ var notificationDefinition = (NotificationDefinition)definition;
+
+ if (notificationDefinition.Tags.Empty())
+ {
+ _logger.Debug("No tags set for this notification.");
+ return true;
+ }
+
+ if (notificationDefinition.Tags.Intersect(movie.Tags).Any())
+ {
+ _logger.Debug("Notification and series have one or more matching tags.");
+ return true;
+ }
+
+ //TODO: this message could be more clear
+ _logger.Debug("{0} does not have any tags that match {1}'s tags", notificationDefinition.Name, movie.Title);
+ return false;
+ }
+
private bool ShouldHandleSeries(ProviderDefinition definition, Series series)
{
var notificationDefinition = (NotificationDefinition) definition;
@@ -112,6 +151,33 @@ namespace NzbDrone.Core.Notifications
}
}
+ public void Handle(MovieGrabbedEvent message)
+ {
+ var grabMessage = new GrabMessage
+ {
+ Message = GetMessage(message.Movie.Movie, message.Movie.ParsedMovieInfo.Quality),
+ Series = null,
+ Quality = message.Movie.ParsedMovieInfo.Quality,
+ Episode = null,
+ Movie = message.Movie.Movie,
+ RemoteMovie = message.Movie
+ };
+
+ foreach (var notification in _notificationFactory.OnGrabEnabled())
+ {
+ try
+ {
+ if (!ShouldHandleMovie(notification.Definition, message.Movie.Movie)) continue;
+ notification.OnGrab(grabMessage);
+ }
+
+ catch (Exception ex)
+ {
+ _logger.Error(ex, "Unable to send OnGrab notification to: " + notification.Definition.Name);
+ }
+ }
+ }
+
public void Handle(EpisodeDownloadedEvent message)
{
var downloadMessage = new DownloadMessage();
@@ -141,6 +207,38 @@ namespace NzbDrone.Core.Notifications
}
}
+ public void Handle(MovieDownloadedEvent message)
+ {
+ var downloadMessage = new DownloadMessage();
+ downloadMessage.Message = GetMessage(message.Movie.Movie, message.Movie.Quality);
+ downloadMessage.Series = null;
+ downloadMessage.EpisodeFile = null;
+ downloadMessage.MovieFile = message.MovieFile;
+ downloadMessage.Movie = message.Movie.Movie;
+ downloadMessage.OldFiles = null;
+ downloadMessage.OldMovieFiles = message.OldFiles;
+ downloadMessage.SourcePath = message.Movie.Path;
+
+ foreach (var notification in _notificationFactory.OnDownloadEnabled())
+ {
+ try
+ {
+ if (ShouldHandleMovie(notification.Definition, message.Movie.Movie))
+ {
+ if (downloadMessage.OldMovieFiles.Empty() || ((NotificationDefinition)notification.Definition).OnUpgrade)
+ {
+ notification.OnDownload(downloadMessage);
+ }
+ }
+ }
+
+ catch (Exception ex)
+ {
+ _logger.Warn(ex, "Unable to send OnDownload notification to: " + notification.Definition.Name);
+ }
+ }
+ }
+
public void Handle(SeriesRenamedEvent message)
{
foreach (var notification in _notificationFactory.OnRenameEnabled())
@@ -159,5 +257,24 @@ namespace NzbDrone.Core.Notifications
}
}
}
+
+ public void Handle(MovieRenamedEvent message)
+ {
+ foreach (var notification in _notificationFactory.OnRenameEnabled())
+ {
+ try
+ {
+ if (ShouldHandleMovie(notification.Definition, message.Movie))
+ {
+ notification.OnMovieRename(message.Movie);
+ }
+ }
+
+ catch (Exception ex)
+ {
+ _logger.Warn(ex, "Unable to send OnRename notification to: " + notification.Definition.Name);
+ }
+ }
+ }
}
}
diff --git a/src/NzbDrone.Core/Notifications/NotifyMyAndroid/NotifyMyAndroid.cs b/src/NzbDrone.Core/Notifications/NotifyMyAndroid/NotifyMyAndroid.cs
index 176612065..502fa8f5f 100644
--- a/src/NzbDrone.Core/Notifications/NotifyMyAndroid/NotifyMyAndroid.cs
+++ b/src/NzbDrone.Core/Notifications/NotifyMyAndroid/NotifyMyAndroid.cs
@@ -19,18 +19,22 @@ namespace NzbDrone.Core.Notifications.NotifyMyAndroid
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings.ApiKey, (NotifyMyAndroidPriority)Settings.Priority);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings.ApiKey, (NotifyMyAndroidPriority)Settings.Priority);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs b/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs
index e38e87f96..a330468a4 100644
--- a/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs
+++ b/src/NzbDrone.Core/Notifications/Plex/PlexClient.cs
@@ -28,6 +28,10 @@ namespace NzbDrone.Core.Notifications.Plex
_plexClientService.Notify(Settings, header, message.Message);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexHomeTheater.cs b/src/NzbDrone.Core/Notifications/Plex/PlexHomeTheater.cs
index e96c2c4f2..817d4f50c 100644
--- a/src/NzbDrone.Core/Notifications/Plex/PlexHomeTheater.cs
+++ b/src/NzbDrone.Core/Notifications/Plex/PlexHomeTheater.cs
@@ -35,6 +35,10 @@ namespace NzbDrone.Core.Notifications.Plex
Notify(Settings, header, message.Message);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexServer.cs b/src/NzbDrone.Core/Notifications/Plex/PlexServer.cs
index 2f3da8822..cf52620d7 100644
--- a/src/NzbDrone.Core/Notifications/Plex/PlexServer.cs
+++ b/src/NzbDrone.Core/Notifications/Plex/PlexServer.cs
@@ -22,19 +22,24 @@ namespace NzbDrone.Core.Notifications.Plex
public override void OnDownload(DownloadMessage message)
{
- UpdateIfEnabled(message.Series);
+ UpdateIfEnabled(message.Movie);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ UpdateIfEnabled(movie);
+ }
+
public override void OnRename(Series series)
{
- UpdateIfEnabled(series);
+ //UpdateIfEnabled(movie);
}
- private void UpdateIfEnabled(Series series)
+ private void UpdateIfEnabled(Movie movie)
{
if (Settings.UpdateLibrary)
{
- _plexServerService.UpdateLibrary(series, Settings);
+ _plexServerService.UpdateMovieSections(movie, Settings);
}
}
diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs b/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs
index 0742ca049..aa9e660fd 100644
--- a/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs
+++ b/src/NzbDrone.Core/Notifications/Plex/PlexServerProxy.cs
@@ -17,6 +17,7 @@ namespace NzbDrone.Core.Notifications.Plex
public interface IPlexServerProxy
{
List GetTvSections(PlexServerSettings settings);
+ List GetMovieSections(PlexServerSettings settings);
void Update(int sectionId, PlexServerSettings settings);
void UpdateSeries(int metadataId, PlexServerSettings settings);
string Version(PlexServerSettings settings);
@@ -66,6 +67,37 @@ namespace NzbDrone.Core.Notifications.Plex
.ToList();
}
+ public List GetMovieSections(PlexServerSettings settings)
+ {
+ var request = GetPlexServerRequest("library/sections", Method.GET, settings);
+ var client = GetPlexServerClient(settings);
+ var response = client.Execute(request);
+
+ _logger.Trace("Sections response: {0}", response.Content);
+ CheckForError(response, settings);
+
+ if (response.Content.Contains("_children"))
+ {
+ return Json.Deserialize(response.Content)
+ .Sections
+ .Where(d => d.Type == "movie")
+ .Select(s => new PlexSection
+ {
+ Id = s.Id,
+ Language = s.Language,
+ Locations = s.Locations,
+ Type = s.Type
+ })
+ .ToList();
+ }
+
+ return Json.Deserialize>(response.Content)
+ .MediaContainer
+ .Sections
+ .Where(d => d.Type == "movie")
+ .ToList();
+ }
+
public void Update(int sectionId, PlexServerSettings settings)
{
var resource = string.Format("library/sections/{0}/refresh", sectionId);
diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs b/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs
index 67b8efe23..cb58e9040 100644
--- a/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs
+++ b/src/NzbDrone.Core/Notifications/Plex/PlexServerService.cs
@@ -14,6 +14,7 @@ namespace NzbDrone.Core.Notifications.Plex
public interface IPlexServerService
{
void UpdateLibrary(Series series, PlexServerSettings settings);
+ void UpdateMovieSections(Movie movie, PlexServerSettings settings);
ValidationFailure Test(PlexServerSettings settings);
}
@@ -62,11 +63,43 @@ namespace NzbDrone.Core.Notifications.Plex
}
}
+ public void UpdateMovieSections(Movie movie, PlexServerSettings settings)
+ {
+ try
+ {
+ _logger.Debug("Sending Update Request to Plex Server");
+
+ var version = _versionCache.Get(settings.Host, () => GetVersion(settings), TimeSpan.FromHours(2));
+ ValidateVersion(version);
+
+ var sections = GetSections(settings);
+ var partialUpdates = _partialUpdateCache.Get(settings.Host, () => PartialUpdatesAllowed(settings, version), TimeSpan.FromHours(2));
+
+ // TODO: Investiate partial updates later, for now just update all movie sections...
+
+ //if (partialUpdates)
+ //{
+ // UpdatePartialSection(series, sections, settings);
+ //}
+
+ //else
+ //{
+ sections.ForEach(s => UpdateSection(s.Id, settings));
+ //}
+ }
+
+ catch (Exception ex)
+ {
+ _logger.Warn(ex, "Failed to Update Plex host: " + settings.Host);
+ throw;
+ }
+ }
+
private List GetSections(PlexServerSettings settings)
{
_logger.Debug("Getting sections from Plex host: {0}", settings.Host);
- return _plexServerProxy.GetTvSections(settings).ToList();
+ return _plexServerProxy.GetMovieSections(settings).ToList();
}
private bool PartialUpdatesAllowed(PlexServerSettings settings, Version version)
diff --git a/src/NzbDrone.Core/Notifications/Prowl/Prowl.cs b/src/NzbDrone.Core/Notifications/Prowl/Prowl.cs
index 59bba6f43..17357df0d 100644
--- a/src/NzbDrone.Core/Notifications/Prowl/Prowl.cs
+++ b/src/NzbDrone.Core/Notifications/Prowl/Prowl.cs
@@ -19,18 +19,22 @@ namespace NzbDrone.Core.Notifications.Prowl
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_prowlService.SendNotification(title, grabMessage.Message, Settings.ApiKey, (NotificationPriority)Settings.Priority);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_prowlService.SendNotification(title, message.Message, Settings.ApiKey, (NotificationPriority)Settings.Priority);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs
index be2afe912..b8a2e9736 100644
--- a/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs
+++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.PushBullet
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Radarr - Episode Grabbed";
+ const string title = "Radarr - Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Radarr - Episode Downloaded";
+ const string title = "Radarr - Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Pushalot/Pushalot.cs b/src/NzbDrone.Core/Notifications/Pushalot/Pushalot.cs
index f2969952a..953c08a8c 100644
--- a/src/NzbDrone.Core/Notifications/Pushalot/Pushalot.cs
+++ b/src/NzbDrone.Core/Notifications/Pushalot/Pushalot.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.Pushalot
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Pushover/Pushover.cs b/src/NzbDrone.Core/Notifications/Pushover/Pushover.cs
index ee8f61053..d590099f5 100644
--- a/src/NzbDrone.Core/Notifications/Pushover/Pushover.cs
+++ b/src/NzbDrone.Core/Notifications/Pushover/Pushover.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.Pushover
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Slack/Slack.cs b/src/NzbDrone.Core/Notifications/Slack/Slack.cs
index 5e581a25f..13e69f5a0 100644
--- a/src/NzbDrone.Core/Notifications/Slack/Slack.cs
+++ b/src/NzbDrone.Core/Notifications/Slack/Slack.cs
@@ -37,7 +37,7 @@ namespace NzbDrone.Core.Notifications.Slack
new Attachment
{
Fallback = message.Message,
- Title = message.Series.Title,
+ Title = message.Movie.Title,
Text = message.Message,
Color = "warning"
}
@@ -59,7 +59,7 @@ namespace NzbDrone.Core.Notifications.Slack
new Attachment
{
Fallback = message.Message,
- Title = message.Series.Title,
+ Title = message.Movie.Title,
Text = message.Message,
Color = "good"
}
@@ -69,6 +69,25 @@ namespace NzbDrone.Core.Notifications.Slack
NotifySlack(payload);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ var payload = new SlackPayload
+ {
+ IconEmoji = Settings.Icon,
+ Username = Settings.Username,
+ Text = "Renamed",
+ Attachments = new List
+ {
+ new Attachment
+ {
+ Title = movie.Title,
+ }
+ }
+ };
+
+ NotifySlack(payload);
+ }
+
public override void OnRename(Series series)
{
var payload = new SlackPayload
diff --git a/src/NzbDrone.Core/Notifications/Synology/SynologyIndexer.cs b/src/NzbDrone.Core/Notifications/Synology/SynologyIndexer.cs
index 4994ce00a..c406252fc 100644
--- a/src/NzbDrone.Core/Notifications/Synology/SynologyIndexer.cs
+++ b/src/NzbDrone.Core/Notifications/Synology/SynologyIndexer.cs
@@ -42,6 +42,10 @@ namespace NzbDrone.Core.Notifications.Synology
}
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
if (Settings.UpdateLibrary)
diff --git a/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs b/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs
index 240008c5e..477872409 100644
--- a/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs
+++ b/src/NzbDrone.Core/Notifications/Telegram/Telegram.cs
@@ -18,18 +18,22 @@ namespace NzbDrone.Core.Notifications.Telegram
public override void OnGrab(GrabMessage grabMessage)
{
- const string title = "Episode Grabbed";
+ const string title = "Movie Grabbed";
_proxy.SendNotification(title, grabMessage.Message, Settings);
}
public override void OnDownload(DownloadMessage message)
{
- const string title = "Episode Downloaded";
+ const string title = "Movie Downloaded";
_proxy.SendNotification(title, message.Message, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs b/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs
index b19c7725f..e789654dc 100644
--- a/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs
+++ b/src/NzbDrone.Core/Notifications/Twitter/Twitter.cs
@@ -29,6 +29,10 @@ namespace NzbDrone.Core.Notifications.Twitter
_twitterService.SendNotification($"Imported: {message.Message}", Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
}
diff --git a/src/NzbDrone.Core/Notifications/Webhook/Webhook.cs b/src/NzbDrone.Core/Notifications/Webhook/Webhook.cs
index 4bfcb867c..74ae13f89 100644
--- a/src/NzbDrone.Core/Notifications/Webhook/Webhook.cs
+++ b/src/NzbDrone.Core/Notifications/Webhook/Webhook.cs
@@ -27,6 +27,10 @@ namespace NzbDrone.Core.Notifications.Webhook
_service.OnDownload(message.Series, message.EpisodeFile, Settings);
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
_service.OnRename(series, Settings);
diff --git a/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs b/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs
index 08fdbfaa4..4939fbe3d 100644
--- a/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs
+++ b/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs
@@ -36,6 +36,10 @@ namespace NzbDrone.Core.Notifications.Xbmc
UpdateAndClean(message.Series, message.OldFiles.Any());
}
+ public override void OnMovieRename(Movie movie)
+ {
+ }
+
public override void OnRename(Series series)
{
UpdateAndClean(series);
diff --git a/src/NzbDrone.Core/NzbDrone.Core.csproj b/src/NzbDrone.Core/NzbDrone.Core.csproj
index 1db0a9581..6f7eee5c0 100644
--- a/src/NzbDrone.Core/NzbDrone.Core.csproj
+++ b/src/NzbDrone.Core/NzbDrone.Core.csproj
@@ -583,6 +583,7 @@
+
diff --git a/src/NzbDrone.Core/Organizer/FileNameSampleService.cs b/src/NzbDrone.Core/Organizer/FileNameSampleService.cs
index 83360063c..b06c4964f 100644
--- a/src/NzbDrone.Core/Organizer/FileNameSampleService.cs
+++ b/src/NzbDrone.Core/Organizer/FileNameSampleService.cs
@@ -125,7 +125,8 @@ namespace NzbDrone.Core.Organizer
RelativePath = "Movie.Title.2010.1080p.BluRay.DTS.x264-EVOLVE.mkv",
SceneName = "Movie.Title.2010.1080p.BluRay.DTS.x264-EVOLVE",
ReleaseGroup = "RlsGrp",
- MediaInfo = mediaInfo
+ MediaInfo = mediaInfo,
+ Edition = "Ultimate extended edition",
};
_singleEpisodeFile = new EpisodeFile
diff --git a/src/NzbDrone.Core/Parser/IsoLanguage.cs b/src/NzbDrone.Core/Parser/IsoLanguage.cs
index 1bd198e50..7a8e3251c 100644
--- a/src/NzbDrone.Core/Parser/IsoLanguage.cs
+++ b/src/NzbDrone.Core/Parser/IsoLanguage.cs
@@ -12,5 +12,6 @@
ThreeLetterCode = threeLetterCode;
Language = language;
}
+
}
}
diff --git a/src/NzbDrone.Core/Parser/Parser.cs b/src/NzbDrone.Core/Parser/Parser.cs
index d133f4e86..0d525ebe6 100644
--- a/src/NzbDrone.Core/Parser/Parser.cs
+++ b/src/NzbDrone.Core/Parser/Parser.cs
@@ -18,20 +18,20 @@ namespace NzbDrone.Core.Parser
private static readonly Regex[] ReportMovieTitleRegex = new[]
{
//Special, Despecialized, etc. Edition Movies, e.g: Mission.Impossible.3.Special.Edition.2011
- new Regex(@"^(?.+?)?(?:(?:[-_\W](?(\.?((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final|Extended|Rogue|Special|Despecialized).(Cut|Edition|Version)|Extended|Uncensored|Remastered|Unrated|Uncut|IMAX)))\.(?(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)",
+ new Regex(@"^(?(?![(\[]).+?)?(?:(?:[-_\W](?(\.?((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final|Extended|Rogue|Special|Despecialized).(Cut|Edition|Version)|Extended|Uncensored|Remastered|Unrated|Uncut|IMAX)))\.(?(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
//Special, Despecialized, etc. Edition Movies, e.g: Mission.Impossible.3.2011.Special.Edition //TODO: Seems to slow down parsing heavily!
- new Regex(@"^(?.+?)?(?:(?:[-_\W](?(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)(?((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final|Extended|Rogue|Special|Despecialized).(Cut|Edition|Version)|Extended|Uncensored|Remastered|Unrated|Uncut|IMAX))",
+ new Regex(@"^(?(?![(\[]).+?)?(?:(?:[-_\W](?(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)(?((Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final|Extended|Rogue|Special|Despecialized).(Cut|Edition|Version)|Extended|Uncensored|Remastered|Unrated|Uncut|IMAX))",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
//Normal movie format, e.g: Mission.Impossible.3.2011
- new Regex(@"^(?.+?)?(?:(?:[-_\W](?(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)",
+ new Regex(@"^(?(?![(\[]).+?)?(?:(?:[-_\W](?(19|20)\d{2}(?!p|i|\d+|\]|\W\d+)))+(\W+|_|$)(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
//PassThePopcorn Torrent names: Star.Wars[PassThePopcorn]
new Regex(@"^(?.+?)?(?:(?:[-_\W](?(\[\w *\])))+(\W+|_|$)(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
//That did not work? Maybe some tool uses [] for years. Who would do that?
- new Regex(@"^(?.+?)?(?:(?:[-_\W](?(19|20)\d{2}(?!p|i|\d+|\W\d+)))+(\W+|_|$)(?!\\)",
+ new Regex(@"^(?(?![(\[]).+?)?(?:(?:[-_\W](?(19|20)\d{2}(?!p|i|\d+|\W\d+)))+(\W+|_|$)(?!\\)",
RegexOptions.IgnoreCase | RegexOptions.Compiled),
};
@@ -268,7 +268,7 @@ namespace NzbDrone.Core.Parser
private static readonly Regex ReportImdbId = new Regex(@"(?tt\d{9})", RegexOptions.IgnoreCase | RegexOptions.Compiled);
- private static readonly Regex SimpleTitleRegex = new Regex(@"(?:480[ip]|576[ip]|720[ip]|1080[ip]|[xh][\W_]?26[45]|DD\W?5\W1|[<>?*:|]|848x480|1280x720|1920x1080|(8|10)b(it)?)\s*",
+ private static readonly Regex SimpleTitleRegex = new Regex(@"(?:480[ip]|576[ip]|720[ip]|1080[ip]|2160[ip]|[xh][\W_]?26[45]|DD\W?5\W1|[<>?*:|]|848x480|1280x720|1920x1080|(8|10)b(it)?)\s*",
RegexOptions.IgnoreCase | RegexOptions.Compiled);
private static readonly Regex WebsitePrefixRegex = new Regex(@"^\[\s*[a-z]+(\.[a-z]+)+\s*\][- ]*",
@@ -696,6 +696,12 @@ namespace NzbDrone.Core.Parser
private static ParsedMovieInfo ParseMovieMatchCollection(MatchCollection matchCollection)
{
+ if (!matchCollection[0].Groups["title"].Success)
+ {
+ return null;
+ }
+
+
var seriesName = matchCollection[0].Groups["title"].Value.Replace('.', ' ').Replace('_', ' ');
seriesName = RequestInfoRegex.Replace(seriesName, "").Trim(' ');
diff --git a/src/NzbDrone.Core/Parser/ParsingService.cs b/src/NzbDrone.Core/Parser/ParsingService.cs
index 9df110a88..2de0d0648 100644
--- a/src/NzbDrone.Core/Parser/ParsingService.cs
+++ b/src/NzbDrone.Core/Parser/ParsingService.cs
@@ -396,9 +396,15 @@ namespace NzbDrone.Core.Parser
if (searchCriteria == null)
{
-
- movie = _movieService.FindByTitle(parsedEpisodeInfo.MovieTitle); //Todo: same as above!
-
+ if (parsedEpisodeInfo.Year > 1900)
+ {
+ movie = _movieService.FindByTitle(parsedEpisodeInfo.MovieTitle, parsedEpisodeInfo.Year);
+ //Todo: same as above!
+ }
+ else
+ {
+ movie = _movieService.FindByTitle(parsedEpisodeInfo.MovieTitle); //Todo: same as above!
+ }
return movie;
}
diff --git a/src/NzbDrone.Core/Tv/MovieScannedHandler.cs b/src/NzbDrone.Core/Tv/MovieScannedHandler.cs
index 151ef0559..2eba01239 100644
--- a/src/NzbDrone.Core/Tv/MovieScannedHandler.cs
+++ b/src/NzbDrone.Core/Tv/MovieScannedHandler.cs
@@ -3,6 +3,7 @@ using NzbDrone.Core.IndexerSearch;
using NzbDrone.Core.MediaFiles.Events;
using NzbDrone.Core.Messaging.Commands;
using NzbDrone.Core.Messaging.Events;
+using System.Collections.Generic;
namespace NzbDrone.Core.Tv
{
@@ -37,7 +38,7 @@ namespace NzbDrone.Core.Tv
if (movie.AddOptions.SearchForMovie)
{
- _commandQueueManager.Push(new MoviesSearchCommand { MovieId = movie.Id});
+ _commandQueueManager.Push(new MoviesSearchCommand { MovieIds = new List { movie.Id } });
}
movie.AddOptions = null;
diff --git a/src/NzbDrone.Core/Tv/RefreshMovieService.cs b/src/NzbDrone.Core/Tv/RefreshMovieService.cs
index a086cf3ec..495f00e05 100644
--- a/src/NzbDrone.Core/Tv/RefreshMovieService.cs
+++ b/src/NzbDrone.Core/Tv/RefreshMovieService.cs
@@ -51,7 +51,7 @@ namespace NzbDrone.Core.Tv
try
{
- movieInfo = _movieInfo.GetMovieInfo(movie.TmdbId);
+ movieInfo = _movieInfo.GetMovieInfo(movie.TmdbId, movie.Profile);
}
catch (MovieNotFoundException)
{
diff --git a/src/NzbDrone.Host/Radarr.ico b/src/NzbDrone.Host/Radarr.ico
index 6f0a8b50e..7d20c6f5a 100644
Binary files a/src/NzbDrone.Host/Radarr.ico and b/src/NzbDrone.Host/Radarr.ico differ
diff --git a/src/NzbDrone/Radarr.ico b/src/NzbDrone/Radarr.ico
index 6f0a8b50e..7d20c6f5a 100644
Binary files a/src/NzbDrone/Radarr.ico and b/src/NzbDrone/Radarr.ico differ
diff --git a/src/NzbDrone/Resources/Radarr.ico b/src/NzbDrone/Resources/Radarr.ico
index 4903af4b1..7d20c6f5a 100644
Binary files a/src/NzbDrone/Resources/Radarr.ico and b/src/NzbDrone/Resources/Radarr.ico differ
diff --git a/src/Radarr.ico b/src/Radarr.ico
index 4903af4b1..7d20c6f5a 100644
Binary files a/src/Radarr.ico and b/src/Radarr.ico differ
diff --git a/src/UI/Activity/Queue/QueueLayout.js b/src/UI/Activity/Queue/QueueLayout.js
index 4416cb07b..0fc561165 100644
--- a/src/UI/Activity/Queue/QueueLayout.js
+++ b/src/UI/Activity/Queue/QueueLayout.js
@@ -1,7 +1,7 @@
var Marionette = require('marionette');
var Backgrid = require('backgrid');
var QueueCollection = require('./QueueCollection');
-var SeriesTitleCell = require('../../Cells/MovieTitleCell');
+var MovieTitleCell = require('../../Cells/MovieTitleCell');
var EpisodeNumberCell = require('../../Cells/EpisodeNumberCell');
var EpisodeTitleCell = require('../../Cells/EpisodeTitleCell');
var QualityCell = require('../../Cells/QualityCell');
@@ -30,7 +30,7 @@ module.exports = Marionette.Layout.extend({
{
name : 'movie',
label : 'Movie',
- cell : SeriesTitleCell
+ cell : MovieTitleCell
},
/*{
name : 'episode',
diff --git a/src/UI/Cells/MovieTitleHistoryCell.js b/src/UI/Cells/MovieTitleHistoryCell.js
index 174d5d361..3a3d6d927 100644
--- a/src/UI/Cells/MovieTitleHistoryCell.js
+++ b/src/UI/Cells/MovieTitleHistoryCell.js
@@ -6,9 +6,7 @@ module.exports = TemplatedCell.extend({
render : function() {
- this.$el.html(this.model.get("movie").get("title")); //Hack, but somehow handlebar helper does not work.
- debugger;
+ this.$el.html('' + this.model.get("movie").get("title") + ''); //Hack, but somehow handlebar helper does not work.
return this;
-
}
});
diff --git a/src/UI/Config.js b/src/UI/Config.js
index 2115d076a..9ea57003b 100644
--- a/src/UI/Config.js
+++ b/src/UI/Config.js
@@ -2,23 +2,26 @@ var $ = require('jquery');
var vent = require('./vent');
module.exports = {
+ ConfigNamespace : 'Radarr.',
+
Events : {
ConfigUpdatedEvent : 'ConfigUpdatedEvent'
},
Keys : {
- DefaultProfileId : 'DefaultProfileId',
- DefaultRootFolderId : 'DefaultRootFolderId',
- UseSeasonFolder : 'UseSeasonFolder',
- DefaultSeriesType : 'DefaultSeriesType',
- MonitorEpisodes : 'MonitorEpisodes',
- AdvancedSettings : 'advancedSettings'
+ DefaultProfileId : 'RadarrDefaultProfileId',
+ DefaultRootFolderId : 'RadarrDefaultRootFolderId',
+ UseSeasonFolder : 'RadarrUseSeasonFolder',
+ DefaultSeriesType : 'RadarrDefaultSeriesType',
+ MonitorEpisodes : 'RadarrMonitorEpisodes',
+ AdvancedSettings : 'RadarradvancedSettings'
},
getValueJson : function (key, defaultValue) {
+ var storeKey = this.ConfigNamespace + key;
defaultValue = defaultValue || {};
- var storeValue = window.localStorage.getItem(key);
+ var storeValue = window.localStorage.getItem(storeKey);
if (!storeValue) {
return defaultValue;
@@ -34,7 +37,8 @@ module.exports = {
},
getValue : function(key, defaultValue) {
- var storeValue = window.localStorage.getItem(key);
+ var storeKey = this.ConfigNamespace + key;
+ var storeValue = window.localStorage.getItem(storeKey);
if (!storeValue) {
return defaultValue;
@@ -48,22 +52,22 @@ module.exports = {
},
setValue : function(key, value) {
-
- console.log('Config: [{0}] => [{1}]'.format(key, value));
+ var storeKey = this.ConfigNamespace + key;
+ console.log('Config: [{0}] => [{1}]'.format(storeKey, value));
if (this.getValue(key) === value.toString()) {
return;
}
try {
- window.localStorage.setItem(key, value);
+ window.localStorage.setItem(storeKey, value);
vent.trigger(this.Events.ConfigUpdatedEvent, {
key : key,
value : value
});
}
catch (error) {
- console.error('Unable to save config: [{0}] => [{1}]'.format(key, value));
+ console.error('Unable to save config: [{0}] => [{1}]'.format(storeKey, value));
}
}
};
diff --git a/src/UI/Content/Images/favicon-debug.ico b/src/UI/Content/Images/favicon-debug.ico
index 90bf72090..80e6bd51b 100644
Binary files a/src/UI/Content/Images/favicon-debug.ico and b/src/UI/Content/Images/favicon-debug.ico differ
diff --git a/src/UI/Content/Images/favicon.ico b/src/UI/Content/Images/favicon.ico
index 90bf72090..80e6bd51b 100644
Binary files a/src/UI/Content/Images/favicon.ico and b/src/UI/Content/Images/favicon.ico differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-144x144.png b/src/UI/Content/Images/favicon/android-chrome-144x144.png
new file mode 100644
index 000000000..a30ab0209
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-144x144.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-192x192.png b/src/UI/Content/Images/favicon/android-chrome-192x192.png
new file mode 100644
index 000000000..8f7d9f655
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-192x192.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-256x256.png b/src/UI/Content/Images/favicon/android-chrome-256x256.png
new file mode 100644
index 000000000..52977292b
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-256x256.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-36x36.png b/src/UI/Content/Images/favicon/android-chrome-36x36.png
new file mode 100644
index 000000000..d8da18abf
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-36x36.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-384x384.png b/src/UI/Content/Images/favicon/android-chrome-384x384.png
new file mode 100644
index 000000000..358b6d510
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-384x384.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-48x48.png b/src/UI/Content/Images/favicon/android-chrome-48x48.png
new file mode 100644
index 000000000..e556972c9
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-48x48.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-512x512.png b/src/UI/Content/Images/favicon/android-chrome-512x512.png
new file mode 100644
index 000000000..16658df45
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-512x512.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-72x72.png b/src/UI/Content/Images/favicon/android-chrome-72x72.png
new file mode 100644
index 000000000..35534d1bb
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-72x72.png differ
diff --git a/src/UI/Content/Images/favicon/android-chrome-96x96.png b/src/UI/Content/Images/favicon/android-chrome-96x96.png
new file mode 100644
index 000000000..ae3d77034
Binary files /dev/null and b/src/UI/Content/Images/favicon/android-chrome-96x96.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-114x114-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-114x114-precomposed.png
new file mode 100644
index 000000000..8861297ed
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-114x114-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-114x114.png b/src/UI/Content/Images/favicon/apple-touch-icon-114x114.png
new file mode 100644
index 000000000..cb5e2a3fd
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-114x114.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-120x120-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-120x120-precomposed.png
new file mode 100644
index 000000000..a870359d2
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-120x120-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-120x120.png b/src/UI/Content/Images/favicon/apple-touch-icon-120x120.png
new file mode 100644
index 000000000..3d365dc5e
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-120x120.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-144x144-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-144x144-precomposed.png
new file mode 100644
index 000000000..cf4be66e8
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-144x144-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-144x144.png b/src/UI/Content/Images/favicon/apple-touch-icon-144x144.png
new file mode 100644
index 000000000..505314e93
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-144x144.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-152x152-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-152x152-precomposed.png
new file mode 100644
index 000000000..e17f317c4
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-152x152-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-152x152.png b/src/UI/Content/Images/favicon/apple-touch-icon-152x152.png
new file mode 100644
index 000000000..6fdc50ce5
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-152x152.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-180x180-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-180x180-precomposed.png
new file mode 100644
index 000000000..12879bd44
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-180x180-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-180x180.png b/src/UI/Content/Images/favicon/apple-touch-icon-180x180.png
new file mode 100644
index 000000000..c169b7c1e
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-180x180.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-57x57-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-57x57-precomposed.png
new file mode 100644
index 000000000..3b3e2b88d
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-57x57-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-57x57.png b/src/UI/Content/Images/favicon/apple-touch-icon-57x57.png
new file mode 100644
index 000000000..aecc105f9
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-57x57.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-60x60-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-60x60-precomposed.png
new file mode 100644
index 000000000..18ff320c7
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-60x60-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-60x60.png b/src/UI/Content/Images/favicon/apple-touch-icon-60x60.png
new file mode 100644
index 000000000..87feabcc4
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-60x60.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-72x72-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-72x72-precomposed.png
new file mode 100644
index 000000000..9de51dbab
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-72x72-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-72x72.png b/src/UI/Content/Images/favicon/apple-touch-icon-72x72.png
new file mode 100644
index 000000000..d19050b11
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-72x72.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-76x76-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-76x76-precomposed.png
new file mode 100644
index 000000000..859123883
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-76x76-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-76x76.png b/src/UI/Content/Images/favicon/apple-touch-icon-76x76.png
new file mode 100644
index 000000000..29c962e23
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-76x76.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon-precomposed.png b/src/UI/Content/Images/favicon/apple-touch-icon-precomposed.png
new file mode 100644
index 000000000..12879bd44
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon-precomposed.png differ
diff --git a/src/UI/Content/Images/favicon/apple-touch-icon.png b/src/UI/Content/Images/favicon/apple-touch-icon.png
new file mode 100644
index 000000000..c169b7c1e
Binary files /dev/null and b/src/UI/Content/Images/favicon/apple-touch-icon.png differ
diff --git a/src/UI/Content/Images/favicon/browserconfig.xml b/src/UI/Content/Images/favicon/browserconfig.xml
new file mode 100644
index 000000000..ff37cd996
--- /dev/null
+++ b/src/UI/Content/Images/favicon/browserconfig.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+ #272727
+
+
+
diff --git a/src/UI/Content/Images/favicon/favicon-16x16.png b/src/UI/Content/Images/favicon/favicon-16x16.png
new file mode 100644
index 000000000..cba60fb4c
Binary files /dev/null and b/src/UI/Content/Images/favicon/favicon-16x16.png differ
diff --git a/src/UI/Content/Images/favicon/favicon-194x194.png b/src/UI/Content/Images/favicon/favicon-194x194.png
new file mode 100644
index 000000000..ebed98d02
Binary files /dev/null and b/src/UI/Content/Images/favicon/favicon-194x194.png differ
diff --git a/src/UI/Content/Images/favicon/favicon-32x32.png b/src/UI/Content/Images/favicon/favicon-32x32.png
new file mode 100644
index 000000000..a9e24d6c4
Binary files /dev/null and b/src/UI/Content/Images/favicon/favicon-32x32.png differ
diff --git a/src/UI/Content/Images/favicon/favicon.ico b/src/UI/Content/Images/favicon/favicon.ico
new file mode 100644
index 000000000..a0269b014
Binary files /dev/null and b/src/UI/Content/Images/favicon/favicon.ico differ
diff --git a/src/UI/Content/Images/favicon/manifest.json b/src/UI/Content/Images/favicon/manifest.json
new file mode 100644
index 000000000..24c1f5dfc
--- /dev/null
+++ b/src/UI/Content/Images/favicon/manifest.json
@@ -0,0 +1,53 @@
+{
+ "name": "Radarr",
+ "icons": [
+ {
+ "src": "/Content/Images/favicon/android-chrome-36x36.png",
+ "sizes": "36x36",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-48x48.png",
+ "sizes": "48x48",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-72x72.png",
+ "sizes": "72x72",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-96x96.png",
+ "sizes": "96x96",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-144x144.png",
+ "sizes": "144x144",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-256x256.png",
+ "sizes": "256x256",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-384x384.png",
+ "sizes": "384x384",
+ "type": "image/png"
+ },
+ {
+ "src": "/Content/Images/favicon/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#272727",
+ "background_color": "#272727",
+ "display": "standalone"
+}
\ No newline at end of file
diff --git a/src/UI/Content/Images/favicon/mstile-144x144.png b/src/UI/Content/Images/favicon/mstile-144x144.png
new file mode 100644
index 000000000..bb8ff6ffc
Binary files /dev/null and b/src/UI/Content/Images/favicon/mstile-144x144.png differ
diff --git a/src/UI/Content/Images/favicon/mstile-150x150.png b/src/UI/Content/Images/favicon/mstile-150x150.png
new file mode 100644
index 000000000..5daff8258
Binary files /dev/null and b/src/UI/Content/Images/favicon/mstile-150x150.png differ
diff --git a/src/UI/Content/Images/favicon/mstile-310x150.png b/src/UI/Content/Images/favicon/mstile-310x150.png
new file mode 100644
index 000000000..1d534151a
Binary files /dev/null and b/src/UI/Content/Images/favicon/mstile-310x150.png differ
diff --git a/src/UI/Content/Images/favicon/mstile-310x310.png b/src/UI/Content/Images/favicon/mstile-310x310.png
new file mode 100644
index 000000000..1995d8691
Binary files /dev/null and b/src/UI/Content/Images/favicon/mstile-310x310.png differ
diff --git a/src/UI/Content/Images/favicon/mstile-70x70.png b/src/UI/Content/Images/favicon/mstile-70x70.png
new file mode 100644
index 000000000..87293e25f
Binary files /dev/null and b/src/UI/Content/Images/favicon/mstile-70x70.png differ
diff --git a/src/UI/Content/Images/favicon/safari-pinned-tab.svg b/src/UI/Content/Images/favicon/safari-pinned-tab.svg
new file mode 100644
index 000000000..1d4f4e92e
--- /dev/null
+++ b/src/UI/Content/Images/favicon/safari-pinned-tab.svg
@@ -0,0 +1,59 @@
+
+
+
diff --git a/src/UI/Content/Images/logos/128.png b/src/UI/Content/Images/logos/128.png
index 5e143b52e..02f00f08f 100644
Binary files a/src/UI/Content/Images/logos/128.png and b/src/UI/Content/Images/logos/128.png differ
diff --git a/src/UI/Content/Images/logos/32.png b/src/UI/Content/Images/logos/32.png
index f1fe93db5..41a6dd279 100644
Binary files a/src/UI/Content/Images/logos/32.png and b/src/UI/Content/Images/logos/32.png differ
diff --git a/src/UI/Content/Images/logos/48.png b/src/UI/Content/Images/logos/48.png
index 8b9d0fc88..45cf3047c 100644
Binary files a/src/UI/Content/Images/logos/48.png and b/src/UI/Content/Images/logos/48.png differ
diff --git a/src/UI/Content/Images/logos/64.png b/src/UI/Content/Images/logos/64.png
index 80edc7894..483e3d809 100644
Binary files a/src/UI/Content/Images/logos/64.png and b/src/UI/Content/Images/logos/64.png differ
diff --git a/src/UI/Content/Images/safari/logo.svg b/src/UI/Content/Images/safari/logo.svg
deleted file mode 100644
index d3eece392..000000000
--- a/src/UI/Content/Images/safari/logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/UI/Content/Images/touch/114.png b/src/UI/Content/Images/touch/114.png
deleted file mode 100644
index 6f23cd0f6..000000000
Binary files a/src/UI/Content/Images/touch/114.png and /dev/null differ
diff --git a/src/UI/Content/Images/touch/144.png b/src/UI/Content/Images/touch/144.png
deleted file mode 100644
index a524e0cec..000000000
Binary files a/src/UI/Content/Images/touch/144.png and /dev/null differ
diff --git a/src/UI/Content/Images/touch/57.png b/src/UI/Content/Images/touch/57.png
deleted file mode 100644
index 0a715a3f6..000000000
Binary files a/src/UI/Content/Images/touch/57.png and /dev/null differ
diff --git a/src/UI/Content/Images/touch/72.png b/src/UI/Content/Images/touch/72.png
deleted file mode 100644
index 2971f6b1e..000000000
Binary files a/src/UI/Content/Images/touch/72.png and /dev/null differ
diff --git a/src/UI/Movies/Details/MoviesDetailsLayout.js b/src/UI/Movies/Details/MoviesDetailsLayout.js
index 119c6bd71..77f710890 100644
--- a/src/UI/Movies/Details/MoviesDetailsLayout.js
+++ b/src/UI/Movies/Details/MoviesDetailsLayout.js
@@ -209,7 +209,7 @@ module.exports = Marionette.Layout.extend({
_moviesSearch : function() {
CommandController.Execute('moviesSearch', {
name : 'moviesSearch',
- movieId : this.model.id
+ movieIds : [this.model.id]
});
},
diff --git a/src/UI/Movies/Index/MoviesIndexLayout.js b/src/UI/Movies/Index/MoviesIndexLayout.js
index 87a2de772..479c6df12 100644
--- a/src/UI/Movies/Index/MoviesIndexLayout.js
+++ b/src/UI/Movies/Index/MoviesIndexLayout.js
@@ -182,6 +182,27 @@ module.exports = Marionette.Layout.extend({
tooltip : 'Missing Only',
icon : 'icon-sonarr-missing',
callback : this._setFilter
+ },
+ {
+ key : 'released',
+ title : '',
+ tooltip : 'Released',
+ icon : 'icon-sonarr-movie-released',
+ callback : this._setFilter
+ },
+ {
+ key : 'announced',
+ title : '',
+ tooltip : 'Announced',
+ icon : 'icon-sonarr-movie-announced',
+ callback : this._setFilter
+ },
+ {
+ key : 'cinemas',
+ title : '',
+ tooltip : 'In Cinemas',
+ icon : 'icon-sonarr-movie-cinemas',
+ callback : this._setFilter
}
]
};
diff --git a/src/UI/Movies/MoviesCollection.js b/src/UI/Movies/MoviesCollection.js
index 193f47ef6..763ec21cd 100644
--- a/src/UI/Movies/MoviesCollection.js
+++ b/src/UI/Movies/MoviesCollection.js
@@ -16,7 +16,7 @@ var Collection = PageableCollection.extend({
state : {
sortKey : 'sortTitle',
- order : 1,
+ order : -1,
pageSize : 100000,
secondarySortKey : 'sortTitle',
secondarySortOrder : -1
@@ -67,6 +67,21 @@ var Collection = PageableCollection.extend({
'missing' : [
'downloaded',
false
+ ],
+ 'released' : [
+ null,
+ null,
+ function(model) { return model.getStatus() == "released"; }
+ ],
+ 'announced' : [
+ null,
+ null,
+ function(model) { return model.getStatus() == "announced"; }
+ ],
+ 'cinemas' : [
+ null,
+ null,
+ function(model) { return model.getStatus() == "inCinemas"; }
]
},
diff --git a/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs b/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs
index a10f5d234..9043ad2f5 100644
--- a/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs
+++ b/src/UI/Settings/DownloadClient/DroneFactory/DroneFactoryViewTemplate.hbs
@@ -23,7 +23,7 @@
-
+
\ No newline at end of file
diff --git a/src/UI/Settings/General/GeneralViewTemplate.hbs b/src/UI/Settings/General/GeneralViewTemplate.hbs
index e4b3e6b59..cd7c25f8b 100644
--- a/src/UI/Settings/General/GeneralViewTemplate.hbs
+++ b/src/UI/Settings/General/GeneralViewTemplate.hbs
@@ -328,7 +328,7 @@
{{#if_mono}}
-