2013-07-19 03:47:55 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-05-19 23:17:32 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
|
|
|
|
{
|
2013-05-20 02:43:22 +00:00
|
|
|
|
public class PlexServer : NotificationBase<PlexServerSettings>
|
2013-05-19 23:17:32 +00:00
|
|
|
|
{
|
2013-06-13 06:41:26 +00:00
|
|
|
|
private readonly IPlexService _plexProvider;
|
2013-05-19 23:17:32 +00:00
|
|
|
|
|
2013-06-13 06:41:26 +00:00
|
|
|
|
public PlexServer(IPlexService plexProvider)
|
2013-05-19 23:17:32 +00:00
|
|
|
|
{
|
|
|
|
|
_plexProvider = plexProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Plex Server"; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-13 06:41:26 +00:00
|
|
|
|
public override string ImplementationName
|
|
|
|
|
{
|
|
|
|
|
get { return "Plex Server"; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-19 23:17:32 +00:00
|
|
|
|
public override void OnGrab(string message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnDownload(string message, Series series)
|
|
|
|
|
{
|
|
|
|
|
UpdateIfEnabled();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void AfterRename(Series series)
|
|
|
|
|
{
|
|
|
|
|
UpdateIfEnabled();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateIfEnabled()
|
|
|
|
|
{
|
|
|
|
|
if (Settings.UpdateLibrary)
|
|
|
|
|
{
|
2013-06-13 06:41:26 +00:00
|
|
|
|
_plexProvider.UpdateLibrary(Settings);
|
2013-05-19 23:17:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|