-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathto-json.xslt
138 lines (124 loc) · 4.25 KB
/
to-json.xslt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:json="http://json.org/" xmlns:npo="http://xmlns.sven.to/npo">
<npo:comment>
Converts a nmap scan output to JSON
</npo:comment>
<npo:category>convert</npo:category>
<!--
XSLTJSON Lite v0.2 - Transform arbitrary XML to JSONML
Licensed under the new BSD License.
Copyright 2009, Bram Stein
All rights reserved.
https://github.com/bramstein/xsltjson/blob/master/conf/xml-to-jsonml.xsl
-->
<xsl:output indent="no" omit-xml-declaration="yes" method="text" encoding="utf-8"/>
<xsl:strip-space elements="*"/>
<json:search name="string">
<json:replace src="\" dst="\\"/>
<json:replace src=""" dst="\""/>
<json:replace src="
" dst="\n"/>
<json:replace src="
" dst="\r"/>
<json:replace src="	" dst="\t"/>
<json:replace src="\n" dst="\n"/>
<json:replace src="\r" dst="\r"/>
<json:replace src="\t" dst="\t"/>
</json:search>
<xsl:template match="node()">
<xsl:text>[</xsl:text>
<xsl:call-template name="encode-value">
<xsl:with-param name="value" select="name()"/>
</xsl:call-template>
<xsl:if test="@*">
<xsl:text>,</xsl:text>
<xsl:text>{</xsl:text>
<xsl:for-each select="@*">
<xsl:apply-templates select="."/>
<xsl:if test="position() != last()">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:for-each>
<xsl:text>}</xsl:text>
</xsl:if>
<xsl:if test="node()">
<xsl:text>,</xsl:text>
<xsl:for-each select="node()">
<xsl:apply-templates select="."/>
<xsl:if test="position() != last()">
<xsl:text>,</xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:if>
<xsl:text>]</xsl:text>
</xsl:template>
<xsl:template match="text()" priority="10">
<xsl:call-template name="encode-value">
<xsl:with-param name="value" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template match="@*">
<xsl:call-template name="encode-value">
<xsl:with-param name="value" select="name()"/>
</xsl:call-template>
<xsl:text>:</xsl:text>
<xsl:call-template name="encode-value">
<xsl:with-param name="value" select="."/>
</xsl:call-template>
</xsl:template>
<xsl:template name="replace-string">
<xsl:param name="input"/>
<xsl:param name="src"/>
<xsl:param name="dst"/>
<xsl:choose>
<xsl:when test="contains($input, $src)">
<xsl:value-of select="concat(substring-before($input, $src), $dst)"/>
<xsl:call-template name="replace-string">
<xsl:with-param name="input" select="substring-after($input, $src)"/>
<xsl:with-param name="src" select="$src"/>
<xsl:with-param name="dst" select="$dst"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$input"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="encode">
<xsl:param name="input"/>
<xsl:param name="index">1</xsl:param>
<xsl:variable name="text">
<xsl:call-template name="replace-string">
<xsl:with-param name="input" select="$input"/>
<xsl:with-param name="src" select="document('')//json:search/json:replace[$index]/@src"/>
<xsl:with-param name="dst" select="document('')//json:search/json:replace[$index]/@dst"/>
</xsl:call-template>
</xsl:variable>
<xsl:choose>
<xsl:when test="$index < count(document('')//json:search/json:replace)">
<xsl:call-template name="encode">
<xsl:with-param name="input" select="$text"/>
<xsl:with-param name="index" select="$index + 1"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="encode-value">
<xsl:param name="value"/>
<xsl:choose>
<xsl:when test="(normalize-space($value) != $value or string(number($value)) = 'NaN' or (substring($value , string-length($value), 1) = '.') or (substring($value, 1, 1) = '0') and not($value = '0')) and not($value = 'false') and not($value = 'true') and not($value = 'null')">
<xsl:text>"</xsl:text>
<xsl:call-template name="encode">
<xsl:with-param name="input" select="$value"/>
</xsl:call-template>
<xsl:text>"</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$value"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>