|
3 | 3 | require "json"
|
4 | 4 | require "yaml"
|
5 | 5 |
|
| 6 | +class Hash |
| 7 | + def to_raml |
| 8 | + self.to_yaml.gsub("---", "#%RAML 1.0 Library") |
| 9 | + end |
| 10 | +end |
| 11 | + |
6 | 12 | outfile = "netmaster.raml"
|
7 | 13 | output = Hash.new { |h, k| h[k] = {} }
|
8 | 14 |
|
|
14 | 20 |
|
15 | 21 | object = data["objects"][0]
|
16 | 22 |
|
17 |
| - # autovivification... allows assignment at any depth without declaring each key as a new hash |
18 | 23 | properties = Hash.new { |h, k| h[k] = {} }
|
19 | 24 |
|
20 | 25 | if object["cfgProperties"]
|
21 |
| - |
| 26 | + |
22 | 27 | # for each entry under "cfgProperties", copy the relevant entries to the new
|
23 | 28 | # properties hash, changing key names as necessary.
|
24 | 29 | object["cfgProperties"].each do |name, value|
|
25 | 30 | p = properties[name]
|
26 |
| - |
| 31 | + |
27 | 32 | if value["type"] == "int"
|
28 | 33 | p["type"] = "integer"
|
29 | 34 | else
|
|
32 | 37 |
|
33 | 38 | if p["type"] == "array"
|
34 | 39 | p["items"] = {
|
35 |
| - "type" => value["items"] |
36 |
| - } |
| 40 | + "type" => value["items"] |
| 41 | + } |
37 | 42 | end
|
38 | 43 |
|
39 | 44 | if value["length"] && value["type"] == "string"
|
|
49 | 54 | end
|
50 | 55 |
|
51 | 56 | end
|
52 |
| - |
| 57 | + |
53 | 58 | end
|
54 |
| - |
| 59 | + |
55 | 60 | # insert properties into desired output structure
|
56 | 61 | output["types"][object["name"]] = {
|
57 |
| - "properties" => properties |
| 62 | + "properties" => properties |
58 | 63 | }
|
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 | + } |
64 | 70 | }
|
| 71 | + |
65 | 72 | # update structure, used with put/patch on main route
|
66 | 73 | #
|
67 |
| - output["types"]["upd_"+object["name"]] = { |
68 |
| - "type" => object["name"] |
| 74 | + output["types"]["upd_#{object["name"]}"] = { |
| 75 | + "type" => object["name"] |
69 | 76 | }
|
| 77 | + |
70 | 78 | # 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 | + } |
77 | 85 | }
|
78 |
| - |
| 86 | + |
79 | 87 | if object["operProperties"]
|
80 |
| - |
| 88 | + |
81 | 89 | opProperties = Hash.new { |h, k| h[k] = {} }
|
82 |
| - |
| 90 | + |
83 | 91 | object["operProperties"].each do |name, value|
|
84 | 92 | p = opProperties[name]
|
85 | 93 |
|
|
91 | 99 |
|
92 | 100 | if p["type"] == "array"
|
93 | 101 | p["items"] = {
|
94 |
| - "type" => value["items"] |
95 |
| - } |
| 102 | + "type" => value["items"] |
| 103 | + } |
96 | 104 | end
|
97 | 105 |
|
98 | 106 | if value["length"] && value["type"] == "string"
|
|
106 | 114 | if value["format"]
|
107 | 115 | p["pattern"] = value["format"]
|
108 | 116 | end
|
109 |
| - |
| 117 | + |
110 | 118 | end
|
111 |
| - |
| 119 | + |
112 | 120 | # 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 | + } |
114 | 124 |
|
115 | 125 | end
|
116 |
| - |
| 126 | + |
117 | 127 | end
|
118 | 128 |
|
119 |
| -File.write(outfile, output.to_yaml.gsub("---", "#%RAML 1.0 Library")) |
| 129 | +File.write(outfile, output.to_raml) |
0 commit comments