jellyfin/MediaBrowser.Dlna/PlayTo/SsdpHttpClient.cs

137 lines
4.6 KiB
C#
Raw Normal View History

2015-04-30 20:00:54 -07:00
using MediaBrowser.Common.Net;
2014-03-14 10:09:22 -07:00
using MediaBrowser.Controller.Configuration;
2014-04-10 08:06:54 -07:00
using MediaBrowser.Dlna.Common;
2015-04-30 20:00:54 -07:00
using System;
2014-04-06 10:53:23 -07:00
using System.Globalization;
2014-02-26 14:31:47 -07:00
using System.IO;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;
namespace MediaBrowser.Dlna.PlayTo
{
public class SsdpHttpClient
{
private const string USERAGENT = "Microsoft-Windows/6.2 UPnP/1.0 Microsoft-DLNA DLNADOC/1.50";
2015-05-08 09:28:06 -07:00
private const string FriendlyName = "Emby";
2014-02-26 14:31:47 -07:00
private readonly IHttpClient _httpClient;
2014-03-14 10:09:22 -07:00
private readonly IServerConfigurationManager _config;
2014-02-26 14:31:47 -07:00
2014-03-14 10:09:22 -07:00
public SsdpHttpClient(IHttpClient httpClient, IServerConfigurationManager config)
2014-02-26 14:31:47 -07:00
{
_httpClient = httpClient;
2014-03-14 10:09:22 -07:00
_config = config;
2014-02-26 14:31:47 -07:00
}
2014-03-25 14:13:55 -07:00
public async Task<XDocument> SendCommandAsync(string baseUrl,
DeviceService service,
string command,
string postData,
2015-04-30 20:00:54 -07:00
bool logRequest = true,
2014-03-25 14:13:55 -07:00
string header = null)
2014-02-26 14:31:47 -07:00
{
2015-04-30 20:00:54 -07:00
var response = await PostSoapDataAsync(NormalizeServiceUrl(baseUrl, service.ControlUrl), "\"" + service.ServiceType + "#" + command + "\"", postData, header, logRequest)
2014-02-26 14:31:47 -07:00
.ConfigureAwait(false);
using (var stream = response.Content)
{
using (var reader = new StreamReader(stream, Encoding.UTF8))
{
return XDocument.Parse(reader.ReadToEnd(), LoadOptions.PreserveWhitespace);
}
}
}
2015-01-26 15:47:16 -07:00
private string NormalizeServiceUrl(string baseUrl, string serviceUrl)
{
// If it's already a complete url, don't stick anything onto the front of it
if (serviceUrl.StartsWith("http", StringComparison.OrdinalIgnoreCase))
{
return serviceUrl;
}
if (!serviceUrl.StartsWith("/"))
serviceUrl = "/" + serviceUrl;
return baseUrl + serviceUrl;
}
2014-04-06 10:53:23 -07:00
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
2014-03-25 14:13:55 -07:00
public async Task SubscribeAsync(string url,
string ip,
int port,
string localIp,
int eventport,
int timeOut = 3600)
2014-02-26 14:31:47 -07:00
{
var options = new HttpRequestOptions
{
2014-03-24 22:25:03 -07:00
Url = url,
2014-03-14 10:09:22 -07:00
UserAgent = USERAGENT,
2014-04-07 21:17:18 -07:00
LogErrorResponseBody = true
2014-02-26 14:31:47 -07:00
};
2014-04-06 10:53:23 -07:00
options.RequestHeaders["HOST"] = ip + ":" + port.ToString(_usCulture);
options.RequestHeaders["CALLBACK"] = "<" + localIp + ":" + eventport.ToString(_usCulture) + ">";
2014-02-26 14:31:47 -07:00
options.RequestHeaders["NT"] = "upnp:event";
2014-04-06 10:53:23 -07:00
options.RequestHeaders["TIMEOUT"] = "Second-" + timeOut.ToString(_usCulture);
2014-02-26 14:31:47 -07:00
2014-06-21 22:52:31 -07:00
await _httpClient.SendAsync(options, "SUBSCRIBE").ConfigureAwait(false);
2014-02-26 14:31:47 -07:00
}
2014-03-24 22:25:03 -07:00
public async Task<XDocument> GetDataAsync(string url)
2014-02-26 14:31:47 -07:00
{
var options = new HttpRequestOptions
{
2014-03-24 22:25:03 -07:00
Url = url,
2014-03-14 10:09:22 -07:00
UserAgent = USERAGENT,
2014-04-07 21:17:18 -07:00
LogErrorResponseBody = true
2014-02-26 14:31:47 -07:00
};
options.RequestHeaders["FriendlyName.DLNA.ORG"] = FriendlyName;
using (var stream = await _httpClient.Get(options).ConfigureAwait(false))
{
using (var reader = new StreamReader(stream, Encoding.UTF8))
{
return XDocument.Parse(reader.ReadToEnd(), LoadOptions.PreserveWhitespace);
}
}
}
2014-03-25 14:13:55 -07:00
private Task<HttpResponseInfo> PostSoapDataAsync(string url,
string soapAction,
string postData,
2015-04-30 20:00:54 -07:00
string header,
bool logRequest)
2014-02-26 14:31:47 -07:00
{
if (!soapAction.StartsWith("\""))
soapAction = "\"" + soapAction + "\"";
var options = new HttpRequestOptions
{
2014-03-24 22:25:03 -07:00
Url = url,
2014-03-14 10:09:22 -07:00
UserAgent = USERAGENT,
2016-02-11 21:33:14 -07:00
LogRequest = logRequest || _config.GetDlnaConfiguration().EnableDebugLog,
2014-04-07 21:17:18 -07:00
LogErrorResponseBody = true
2014-02-26 14:31:47 -07:00
};
options.RequestHeaders["SOAPAction"] = soapAction;
options.RequestHeaders["Pragma"] = "no-cache";
options.RequestHeaders["FriendlyName.DLNA.ORG"] = FriendlyName;
if (!string.IsNullOrWhiteSpace(header))
{
options.RequestHeaders["contentFeatures.dlna.org"] = header;
}
options.RequestContentType = "text/xml; charset=\"utf-8\"";
options.RequestContent = postData;
return _httpClient.Post(options);
}
}
}