Added XML i/o stuff.

This commit is contained in:
Andrew Lalis 2025-03-23 17:35:48 -04:00
parent 223598fd02
commit 5f412ad55c
4 changed files with 56 additions and 2 deletions

View File

@ -4,8 +4,9 @@
],
"copyright": "Copyright © 2025, Andrew Lalis",
"dependencies": {
"handy-http-primitives": "~>1.4",
"asdf": "~>0.7"
"asdf": "~>0.7",
"dxml": "~>0.4",
"handy-http-primitives": "~>1.4"
},
"description": "Support for common data formats and database operations.",
"license": "CC0",

View File

@ -2,6 +2,7 @@
"fileVersion": 1,
"versions": {
"asdf": "0.7.17",
"dxml": "0.4.4",
"handy-http-primitives": "1.4.0",
"mir-algorithm": "3.22.3",
"mir-core": "1.7.1",

View File

@ -2,3 +2,4 @@ module handy_http_data;
public import handy_http_data.json;
public import handy_http_data.multipart;
public import handy_http_data.xml;

View File

@ -0,0 +1,51 @@
/**
* Defines functions for reading and writing XML content while handling HTTP
* requests, using the dxml library: https://code.dlang.org/packages/dxml
*/
module handy_http_data.xml;
import handy_http_primitives.request;
import handy_http_primitives.response;
import dxml.dom;
import dxml.writer;
import std.array : appender, Appender;
import streams;
/**
* Reads an XML request body.
* Params:
* request = The request to read from.
* Returns: The DOMEntity representing the XML payload.
*/
DOMEntity!string readXMLBody(ref ServerHttpRequest request) {
string contentType = request.getHeaderAs!string("Content-Type");
if (!(contentType == "application/xml" || contentType == "text/xml")) {
throw new HttpStatusException(HttpStatus.UNSUPPORTED_MEDIA_TYPE, "Non-XML Content-Type header.");
}
string bodyContent = request.readBodyAsString(false);
return parseDOM(bodyContent);
}
/**
* Writes an XML response body, by using the provided delegate function to
* compose the XML tag tree using a provided XMLWriter.
*
* See https://jmdavisprog.com/docs/dxml/0.4.4/dxml_writer.html#.xmlWriter
* Params:
* response = The HTTP response to write to.
* dg = The delegate function that will be called to generate the XML.
*/
void writeXMLBody(ref ServerHttpResponse response, void delegate(ref XMLWriter!(Appender!string)) dg) {
import std.conv : to;
auto writer = xmlWriter(appender!string());
dg(writer);
string xmlContent = writer.output[];
response.headers.remove("Content-Type");
response.headers.add("Content-Type", "application/xml");
response.headers.add("Content-Length", to!string(xmlContent.length));
StreamResult result = response.outputStream.writeToStream(cast(ubyte[]) xmlContent);
if (result.hasError) {
StreamError err = result.error;
throw new HttpStatusException(HttpStatus.INTERNAL_SERVER_ERROR, cast(string) err.message);
}
}