Skip to content

Commit 3a4dab7

Browse files
committed
Cleanup of contivModel2raml.rb
Signed-off-by: Bill Robinson <[email protected]>
1 parent ef9d0bf commit 3a4dab7

File tree

1 file changed

+41
-31
lines changed

1 file changed

+41
-31
lines changed

spec/contivModel2raml.rb

+41-31
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
require "json"
44
require "yaml"
55

6+
class Hash
7+
def to_raml
8+
self.to_yaml.gsub("---", "#%RAML 1.0 Library")
9+
end
10+
end
11+
612
outfile = "netmaster.raml"
713
output = Hash.new { |h, k| h[k] = {} }
814

@@ -14,16 +20,15 @@
1420

1521
object = data["objects"][0]
1622

17-
# autovivification... allows assignment at any depth without declaring each key as a new hash
1823
properties = Hash.new { |h, k| h[k] = {} }
1924

2025
if object["cfgProperties"]
21-
26+
2227
# for each entry under "cfgProperties", copy the relevant entries to the new
2328
# properties hash, changing key names as necessary.
2429
object["cfgProperties"].each do |name, value|
2530
p = properties[name]
26-
31+
2732
if value["type"] == "int"
2833
p["type"] = "integer"
2934
else
@@ -32,8 +37,8 @@
3237

3338
if p["type"] == "array"
3439
p["items"] = {
35-
"type" => value["items"]
36-
}
40+
"type" => value["items"]
41+
}
3742
end
3843

3944
if value["length"] && value["type"] == "string"
@@ -49,37 +54,40 @@
4954
end
5055

5156
end
52-
57+
5358
end
54-
59+
5560
# insert properties into desired output structure
5661
output["types"][object["name"]] = {
57-
"properties" => properties
62+
"properties" => properties
5863
}
59-
output["types"][object["name"]+"s"] = {
60-
"type" => "array",
61-
"items" => {
62-
"type" => object["name"]
63-
}
64+
65+
output["types"]["#{object["name"]}s"] = {
66+
"type" => "array",
67+
"items" => {
68+
"type" => object["name"]
69+
}
6470
}
71+
6572
# update structure, used with put/patch on main route
6673
#
67-
output["types"]["upd_"+object["name"]] = {
68-
"type" => object["name"]
74+
output["types"]["upd_#{object["name"]}"] = {
75+
"type" => object["name"]
6976
}
77+
7078
# inspect structure, contains operational and config properties
71-
output["types"]["inspect_"+object["name"]] = {
72-
"properties" => {
73-
"Config" => {
74-
"type" => object["name"]
75-
}
76-
}
79+
output["types"]["inspect_#{object["name"]}"] = {
80+
"properties" => {
81+
"Config" => {
82+
"type" => object["name"]
83+
}
84+
}
7785
}
78-
86+
7987
if object["operProperties"]
80-
88+
8189
opProperties = Hash.new { |h, k| h[k] = {} }
82-
90+
8391
object["operProperties"].each do |name, value|
8492
p = opProperties[name]
8593

@@ -91,8 +99,8 @@
9199

92100
if p["type"] == "array"
93101
p["items"] = {
94-
"type" => value["items"]
95-
}
102+
"type" => value["items"]
103+
}
96104
end
97105

98106
if value["length"] && value["type"] == "string"
@@ -106,14 +114,16 @@
106114
if value["format"]
107115
p["pattern"] = value["format"]
108116
end
109-
117+
110118
end
111-
119+
112120
# add operational properties if present
113-
output["types"]["inspect_"+object["name"]]["properties"]["Oper"] = { "properties" => opProperties }
121+
output["types"]["inspect_#{object["name"]}"]["properties"]["Oper"] = {
122+
"properties" => opProperties
123+
}
114124

115125
end
116-
126+
117127
end
118128

119-
File.write(outfile, output.to_yaml.gsub("---", "#%RAML 1.0 Library"))
129+
File.write(outfile, output.to_raml)

0 commit comments

Comments
 (0)