2020-01-22 20:00:07 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2016-10-29 22:22:20 +00:00
|
|
|
using System.Collections.Generic;
|
2020-07-19 19:31:14 +00:00
|
|
|
using System.Security;
|
2016-10-29 22:22:20 +00:00
|
|
|
using System.Text;
|
2019-01-13 19:16:19 +00:00
|
|
|
using Emby.Dlna.Common;
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
namespace Emby.Dlna.Service
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
public class ServiceXmlBuilder
|
|
|
|
{
|
|
|
|
public string GetXml(IEnumerable<ServiceAction> actions, IEnumerable<StateVariable> stateVariables)
|
|
|
|
{
|
|
|
|
var builder = new StringBuilder();
|
|
|
|
|
|
|
|
builder.Append("<?xml version=\"1.0\"?>");
|
|
|
|
builder.Append("<scpd xmlns=\"urn:schemas-upnp-org:service-1-0\">");
|
|
|
|
|
|
|
|
builder.Append("<specVersion>");
|
|
|
|
builder.Append("<major>1</major>");
|
|
|
|
builder.Append("<minor>0</minor>");
|
|
|
|
builder.Append("</specVersion>");
|
|
|
|
|
|
|
|
AppendActionList(builder, actions);
|
|
|
|
AppendServiceStateTable(builder, stateVariables);
|
|
|
|
|
|
|
|
builder.Append("</scpd>");
|
|
|
|
|
|
|
|
return builder.ToString();
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static void AppendActionList(StringBuilder builder, IEnumerable<ServiceAction> actions)
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
builder.Append("<actionList>");
|
|
|
|
|
|
|
|
foreach (var item in actions)
|
|
|
|
{
|
|
|
|
builder.Append("<action>");
|
|
|
|
|
2020-07-19 19:31:14 +00:00
|
|
|
builder.Append("<name>")
|
|
|
|
.Append(SecurityElement.Escape(item.Name ?? string.Empty))
|
|
|
|
.Append("</name>");
|
2016-10-29 22:22:20 +00:00
|
|
|
|
|
|
|
builder.Append("<argumentList>");
|
|
|
|
|
|
|
|
foreach (var argument in item.ArgumentList)
|
|
|
|
{
|
|
|
|
builder.Append("<argument>");
|
|
|
|
|
2020-07-19 19:31:14 +00:00
|
|
|
builder.Append("<name>")
|
|
|
|
.Append(SecurityElement.Escape(argument.Name ?? string.Empty))
|
|
|
|
.Append("</name>");
|
|
|
|
builder.Append("<direction>")
|
|
|
|
.Append(SecurityElement.Escape(argument.Direction ?? string.Empty))
|
|
|
|
.Append("</direction>");
|
|
|
|
builder.Append("<relatedStateVariable>")
|
|
|
|
.Append(SecurityElement.Escape(argument.RelatedStateVariable ?? string.Empty))
|
|
|
|
.Append("</relatedStateVariable>");
|
2016-10-29 22:22:20 +00:00
|
|
|
|
|
|
|
builder.Append("</argument>");
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.Append("</argumentList>");
|
|
|
|
|
|
|
|
builder.Append("</action>");
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.Append("</actionList>");
|
|
|
|
}
|
|
|
|
|
2019-01-06 20:50:43 +00:00
|
|
|
private static void AppendServiceStateTable(StringBuilder builder, IEnumerable<StateVariable> stateVariables)
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
builder.Append("<serviceStateTable>");
|
|
|
|
|
|
|
|
foreach (var item in stateVariables)
|
|
|
|
{
|
|
|
|
var sendEvents = item.SendsEvents ? "yes" : "no";
|
|
|
|
|
2020-07-19 19:31:14 +00:00
|
|
|
builder.Append("<stateVariable sendEvents=\"")
|
|
|
|
.Append(sendEvents)
|
|
|
|
.Append("\">");
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-07-19 19:31:14 +00:00
|
|
|
builder.Append("<name>")
|
|
|
|
.Append(SecurityElement.Escape(item.Name ?? string.Empty))
|
|
|
|
.Append("</name>");
|
|
|
|
builder.Append("<dataType>")
|
|
|
|
.Append(SecurityElement.Escape(item.DataType ?? string.Empty))
|
|
|
|
.Append("</dataType>");
|
2016-10-29 22:22:20 +00:00
|
|
|
|
2020-08-20 19:04:57 +00:00
|
|
|
if (item.AllowedValues.Count > 0)
|
2016-10-29 22:22:20 +00:00
|
|
|
{
|
|
|
|
builder.Append("<allowedValueList>");
|
|
|
|
foreach (var allowedValue in item.AllowedValues)
|
|
|
|
{
|
2020-07-19 19:31:14 +00:00
|
|
|
builder.Append("<allowedValue>")
|
|
|
|
.Append(SecurityElement.Escape(allowedValue))
|
|
|
|
.Append("</allowedValue>");
|
2016-10-29 22:22:20 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2016-10-29 22:22:20 +00:00
|
|
|
builder.Append("</allowedValueList>");
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.Append("</stateVariable>");
|
|
|
|
}
|
|
|
|
|
|
|
|
builder.Append("</serviceStateTable>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|