106 lines
3.3 KiB
C#
106 lines
3.3 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using FluentValidation.Results;
|
|
using NzbDrone.Common.EnvironmentInfo;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Localization;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.Synology
|
|
{
|
|
public class SynologyIndexer : NotificationBase<SynologyIndexerSettings>
|
|
{
|
|
private readonly ISynologyIndexerProxy _indexerProxy;
|
|
private readonly ILocalizationService _localizationService;
|
|
|
|
public SynologyIndexer(ISynologyIndexerProxy indexerProxy, ILocalizationService localizationService)
|
|
{
|
|
_indexerProxy = indexerProxy;
|
|
_localizationService = localizationService;
|
|
}
|
|
|
|
public override string Link => "https://www.synology.com";
|
|
public override string Name => "Synology Indexer";
|
|
|
|
public override void OnDownload(DownloadMessage message)
|
|
{
|
|
if (Settings.UpdateLibrary)
|
|
{
|
|
foreach (var oldFile in message.OldFiles)
|
|
{
|
|
var fullPath = Path.Combine(message.Series.Path, oldFile.EpisodeFile.RelativePath);
|
|
|
|
_indexerProxy.DeleteFile(fullPath);
|
|
}
|
|
|
|
{
|
|
var fullPath = Path.Combine(message.Series.Path, message.EpisodeFile.RelativePath);
|
|
|
|
_indexerProxy.AddFile(fullPath);
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void OnRename(Series series, List<RenamedEpisodeFile> renamedFiles)
|
|
{
|
|
if (Settings.UpdateLibrary)
|
|
{
|
|
_indexerProxy.UpdateFolder(series.Path);
|
|
}
|
|
}
|
|
|
|
public override void OnEpisodeFileDelete(EpisodeDeleteMessage deleteMessage)
|
|
{
|
|
if (Settings.UpdateLibrary)
|
|
{
|
|
var fullPath = Path.Combine(deleteMessage.Series.Path, deleteMessage.EpisodeFile.RelativePath);
|
|
_indexerProxy.DeleteFile(fullPath);
|
|
}
|
|
}
|
|
|
|
public override void OnSeriesAdd(SeriesAddMessage message)
|
|
{
|
|
if (Settings.UpdateLibrary)
|
|
{
|
|
_indexerProxy.UpdateFolder(message.Series.Path);
|
|
}
|
|
}
|
|
|
|
public override void OnSeriesDelete(SeriesDeleteMessage deleteMessage)
|
|
{
|
|
if (deleteMessage.DeletedFiles)
|
|
{
|
|
if (Settings.UpdateLibrary)
|
|
{
|
|
_indexerProxy.DeleteFolder(deleteMessage.Series.Path);
|
|
}
|
|
}
|
|
}
|
|
|
|
public override ValidationResult Test()
|
|
{
|
|
var failures = new List<ValidationFailure>();
|
|
|
|
failures.AddIfNotNull(TestConnection());
|
|
|
|
return new ValidationResult(failures);
|
|
}
|
|
|
|
protected virtual ValidationFailure TestConnection()
|
|
{
|
|
if (!OsInfo.IsLinux)
|
|
{
|
|
return new ValidationFailure(string.Empty, _localizationService.GetLocalizedString("NotificationsSynologyValidationInvalidOs"));
|
|
}
|
|
|
|
if (!_indexerProxy.Test())
|
|
{
|
|
return new ValidationFailure(string.Empty, _localizationService.GetLocalizedString("NotificationsSynologyValidationTestFailed"));
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|