123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- using MediaBrowser.Common.Net;
- using MediaBrowser.Controller.Configuration;
- using System;
- 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";
- private const string FriendlyName = "MediaBrowser";
- private readonly IHttpClient _httpClient;
- private readonly IServerConfigurationManager _config;
- public SsdpHttpClient(IHttpClient httpClient, IServerConfigurationManager config)
- {
- _httpClient = httpClient;
- _config = config;
- }
- public async Task<XDocument> SendCommandAsync(string baseUrl, DeviceService service, string command, string postData, string header = null)
- {
- var serviceUrl = service.ControlUrl;
- if (!serviceUrl.StartsWith("/"))
- serviceUrl = "/" + serviceUrl;
- var response = await PostSoapDataAsync(baseUrl + serviceUrl, "\"" + service.ServiceType + "#" + command + "\"", postData, header)
- .ConfigureAwait(false);
- using (var stream = response.Content)
- {
- using (var reader = new StreamReader(stream, Encoding.UTF8))
- {
- return XDocument.Parse(reader.ReadToEnd(), LoadOptions.PreserveWhitespace);
- }
- }
- }
- public async Task SubscribeAsync(string url, string ip, int port, string localIp, int eventport, int timeOut = 3600)
- {
- var options = new HttpRequestOptions
- {
- Url = url,
- UserAgent = USERAGENT,
- LogRequest = _config.Configuration.DlnaOptions.EnableDebugLogging
- };
- options.RequestHeaders["HOST"] = ip + ":" + port;
- options.RequestHeaders["CALLBACK"] = "<" + localIp + ":" + eventport + ">";
- options.RequestHeaders["NT"] = "upnp:event";
- options.RequestHeaders["TIMEOUT"] = "Second - " + timeOut;
- using (await _httpClient.Get(options).ConfigureAwait(false))
- {
- }
- }
- public async Task RespondAsync(Uri url, string ip, int port, string localIp, int eventport, int timeOut = 20000)
- {
- var options = new HttpRequestOptions
- {
- Url = url.ToString(),
- UserAgent = USERAGENT
- };
- options.RequestHeaders["HOST"] = ip + ":" + port;
- options.RequestHeaders["CALLBACK"] = "<" + localIp + ":" + eventport + ">";
- options.RequestHeaders["NT"] = "upnp:event";
- options.RequestHeaders["TIMEOUT"] = "Second - 3600";
- using (await _httpClient.Get(options).ConfigureAwait(false))
- {
- }
- }
- public async Task<XDocument> GetDataAsync(string url)
- {
- var options = new HttpRequestOptions
- {
- Url = url,
- UserAgent = USERAGENT,
- LogRequest = _config.Configuration.DlnaOptions.EnableDebugLogging
- };
- 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);
- }
- }
- }
- private Task<HttpResponseInfo> PostSoapDataAsync(string url, string soapAction, string postData, string header = null)
- {
- if (!soapAction.StartsWith("\""))
- soapAction = "\"" + soapAction + "\"";
- var options = new HttpRequestOptions
- {
- Url = url,
- UserAgent = USERAGENT,
- LogRequest = _config.Configuration.DlnaOptions.EnableDebugLogging
- };
- 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);
- }
- }
- }
|