using MediaBrowser.Dlna.Common;
using MediaBrowser.Model.Dlna;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Security;
using System.Text;
namespace MediaBrowser.Dlna.Server
{
public class DescriptionXmlBuilder
{
private readonly DeviceProfile _profile;
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
private readonly string _serverUdn;
private readonly string _serverAddress;
public DescriptionXmlBuilder(DeviceProfile profile, string serverUdn, string serverAddress)
{
if (string.IsNullOrWhiteSpace(serverUdn))
{
throw new ArgumentNullException("serverUdn");
}
if (string.IsNullOrWhiteSpace(serverAddress))
{
throw new ArgumentNullException("serverAddress");
}
_profile = profile;
_serverUdn = serverUdn;
_serverAddress = serverAddress;
}
private bool EnableAbsoluteUrls
{
get { return false; }
}
public string GetXml()
{
var builder = new StringBuilder();
builder.Append("");
builder.Append("");
builder.Append("");
builder.Append("1");
builder.Append("0");
builder.Append("");
AppendDeviceInfo(builder);
builder.Append("");
return builder.ToString();
}
private void AppendDeviceInfo(StringBuilder builder)
{
builder.Append("");
AppendDeviceProperties(builder);
AppendIconList(builder);
AppendServiceList(builder);
builder.Append("");
}
private void AppendDeviceProperties(StringBuilder builder)
{
builder.Append("uuid:" + SecurityElement.Escape(_serverUdn) + "");
builder.Append("" + SecurityElement.Escape(_profile.XDlnaCap ?? string.Empty) + "");
builder.Append("M-DMS-1.50");
builder.Append("" + SecurityElement.Escape(_profile.XDlnaDoc ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.FriendlyName ?? string.Empty) + "");
builder.Append("urn:schemas-upnp-org:device:MediaServer:1");
builder.Append("" + SecurityElement.Escape(_profile.Manufacturer ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.ManufacturerUrl ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.ModelName ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.ModelDescription ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.ModelNumber ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.ModelUrl ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_profile.SerialNumber ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(_serverAddress) + "");
if (!EnableAbsoluteUrls)
{
builder.Append("" + SecurityElement.Escape(_serverAddress) + "");
}
if (!string.IsNullOrWhiteSpace(_profile.SonyAggregationFlags))
{
builder.Append("" + SecurityElement.Escape(_profile.SonyAggregationFlags) + "");
}
}
private void AppendIconList(StringBuilder builder)
{
builder.Append("");
foreach (var icon in GetIcons())
{
builder.Append("");
builder.Append("" + SecurityElement.Escape(icon.MimeType ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(icon.Width.ToString(_usCulture)) + "");
builder.Append("" + SecurityElement.Escape(icon.Height.ToString(_usCulture)) + "");
builder.Append("" + SecurityElement.Escape(icon.Depth ?? string.Empty) + "");
builder.Append("" + BuildUrl(icon.Url) + "");
builder.Append("");
}
builder.Append("");
}
private void AppendServiceList(StringBuilder builder)
{
builder.Append("");
foreach (var service in GetServices())
{
builder.Append("");
builder.Append("" + SecurityElement.Escape(service.ServiceType ?? string.Empty) + "");
builder.Append("" + SecurityElement.Escape(service.ServiceId ?? string.Empty) + "");
builder.Append("" + BuildUrl(service.ScpdUrl) + "");
builder.Append("" + BuildUrl(service.ControlUrl) + "");
builder.Append("" + BuildUrl(service.EventSubUrl) + "");
builder.Append("");
}
builder.Append("");
}
private string BuildUrl(string url)
{
if (string.IsNullOrWhiteSpace(url))
{
return string.Empty;
}
url = url.TrimStart('/');
url = "/dlna/" + _serverUdn + "/" + url;
if (EnableAbsoluteUrls)
{
url = _serverAddress.TrimEnd('/') + url;
}
return SecurityElement.Escape(url);
}
private IEnumerable GetIcons()
{
var list = new List();
list.Add(new DeviceIcon
{
MimeType = "image/png",
Depth = "24",
Width = 240,
Height = 240,
Url = "icons/logo240.png"
});
list.Add(new DeviceIcon
{
MimeType = "image/jpeg",
Depth = "24",
Width = 240,
Height = 240,
Url = "icons/logo240.jpg"
});
list.Add(new DeviceIcon
{
MimeType = "image/png",
Depth = "24",
Width = 120,
Height = 120,
Url = "icons/logo120.png"
});
list.Add(new DeviceIcon
{
MimeType = "image/jpeg",
Depth = "24",
Width = 120,
Height = 120,
Url = "icons/logo120.jpg"
});
list.Add(new DeviceIcon
{
MimeType = "image/png",
Depth = "24",
Width = 48,
Height = 48,
Url = "icons/logo48.png"
});
list.Add(new DeviceIcon
{
MimeType = "image/jpeg",
Depth = "24",
Width = 48,
Height = 48,
Url = "icons/logo48.jpg"
});
return list;
}
private IEnumerable GetServices()
{
var list = new List();
list.Add(new DeviceService
{
ServiceType = "urn:schemas-upnp-org:service:ContentDirectory:1",
ServiceId = "urn:upnp-org:serviceId:ContentDirectory",
ScpdUrl = "contentdirectory/contentdirectory.xml",
ControlUrl = "contentdirectory/control",
EventSubUrl = "contentdirectory/events"
});
list.Add(new DeviceService
{
ServiceType = "urn:schemas-upnp-org:service:ConnectionManager:1",
ServiceId = "urn:upnp-org:serviceId:ConnectionManager",
ScpdUrl = "connectionmanager/connectionmanager.xml",
ControlUrl = "connectionmanager/control",
EventSubUrl = "connectionmanager/events"
});
list.Add(new DeviceService
{
ServiceType = "urn:microsoft.com:service:X_MS_MediaReceiverRegistrar:1",
ServiceId = "urn:microsoft.com:serviceId:X_MS_MediaReceiverRegistrar",
ScpdUrl = "mediareceiverregistrar/mediareceiverregistrar.xml",
ControlUrl = "mediareceiverregistrar/control",
EventSubUrl = "mediareceiverregistrar/events"
});
return list;
}
public override string ToString()
{
return GetXml();
}
}
}