2012-02-21 23:10:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2012-02-21 23:10:42 +00:00
|
|
|
|
|
2013-05-19 23:17:32 +00:00
|
|
|
|
namespace NzbDrone.Core.Notifications.Plex
|
2012-02-21 23:10:42 +00:00
|
|
|
|
{
|
|
|
|
|
public class PlexProvider
|
|
|
|
|
{
|
2013-04-10 23:41:45 +00:00
|
|
|
|
private readonly IHttpProvider _httpProvider;
|
2012-02-21 23:10:42 +00:00
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-05-19 23:17:32 +00:00
|
|
|
|
public PlexProvider(IHttpProvider httpProvider)
|
2012-02-21 23:10:42 +00:00
|
|
|
|
{
|
|
|
|
|
_httpProvider = httpProvider;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-19 23:17:32 +00:00
|
|
|
|
public virtual void Notify(PlexClientSettings settings, string header, string message)
|
2012-02-21 23:10:42 +00:00
|
|
|
|
{
|
2013-05-19 23:17:32 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var command = String.Format("ExecBuiltIn(Notification({0}, {1}))", header, message);
|
2013-05-23 00:23:00 +00:00
|
|
|
|
SendCommand(settings.Host, settings.Port, command, settings.Username, settings.Password);
|
2013-05-19 23:17:32 +00:00
|
|
|
|
}
|
|
|
|
|
catch(Exception ex)
|
2012-02-21 23:10:42 +00:00
|
|
|
|
{
|
2013-05-19 23:17:32 +00:00
|
|
|
|
logger.WarnException("Failed to send notification to Plex Client: " + settings.Host, ex);
|
2012-02-21 23:10:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-19 23:17:32 +00:00
|
|
|
|
public virtual void UpdateLibrary(string host)
|
2012-02-21 23:10:42 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-02-24 23:47:57 +00:00
|
|
|
|
logger.Trace("Sending Update Request to Plex Server");
|
2012-02-21 23:10:42 +00:00
|
|
|
|
var sections = GetSectionKeys(host);
|
|
|
|
|
sections.ForEach(s => UpdateSection(host, s));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch(Exception ex)
|
|
|
|
|
{
|
|
|
|
|
logger.WarnException("Failed to Update Plex host: " + host, ex);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<int> GetSectionKeys(string host)
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Getting sections from Plex host: {0}", host);
|
|
|
|
|
var url = String.Format("http://{0}/library/sections", host);
|
|
|
|
|
var xmlStream = _httpProvider.DownloadStream(url, null);
|
|
|
|
|
var xDoc = XDocument.Load(xmlStream);
|
|
|
|
|
var mediaContainer = xDoc.Descendants("MediaContainer").FirstOrDefault();
|
|
|
|
|
var directories = mediaContainer.Descendants("Directory").Where(x => x.Attribute("type").Value == "show");
|
|
|
|
|
|
|
|
|
|
return directories.Select(d => Int32.Parse(d.Attribute("key").Value)).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void UpdateSection(string host, int key)
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Updating Plex host: {0}, Section: {1}", host, key);
|
|
|
|
|
var url = String.Format("http://{0}/library/sections/{1}/refresh", host, key);
|
|
|
|
|
_httpProvider.DownloadString(url);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-23 00:23:00 +00:00
|
|
|
|
public virtual string SendCommand(string host, int port, string command, string username, string password)
|
2012-02-21 23:10:42 +00:00
|
|
|
|
{
|
2013-05-23 00:23:00 +00:00
|
|
|
|
var url = String.Format("http://{0}:{1}/xbmcCmds/xbmcHttp?command={2}", host, port, command);
|
2012-02-21 23:10:42 +00:00
|
|
|
|
|
|
|
|
|
if (!String.IsNullOrEmpty(username))
|
|
|
|
|
{
|
|
|
|
|
return _httpProvider.DownloadString(url, username, password);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _httpProvider.DownloadString(url);
|
|
|
|
|
}
|
2012-10-22 04:29:12 +00:00
|
|
|
|
|
2013-05-23 00:23:00 +00:00
|
|
|
|
public virtual void TestNotification(string host, int port, string username, string password)
|
2012-10-22 04:29:12 +00:00
|
|
|
|
{
|
2013-05-19 23:17:32 +00:00
|
|
|
|
logger.Trace("Sending Test Notifcation to XBMC Host: {0}", host);
|
|
|
|
|
var command = String.Format("ExecBuiltIn(Notification({0}, {1}))", "Test Notification", "Success! Notifications are setup correctly");
|
2013-05-23 00:23:00 +00:00
|
|
|
|
SendCommand(host, port, command, username, password);
|
2012-10-22 04:29:12 +00:00
|
|
|
|
}
|
2012-02-21 23:10:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|