forked from aj-foster/open-api-diffs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.exs
53 lines (39 loc) · 1 KB
/
generate.exs
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
#
# Install
#
ref =
case System.argv() do
[ref] ->
ref
_else ->
raise "Invalid invocation: please pass the ref of aj-foster/open-api-generator to install"
end
Mix.install([
{:oapi_generator, github: "aj-foster/open-api-generator", ref: ref}
])
#
# Configuration
#
require Config
Path.join(__DIR__, "specs/config.exs")
|> Config.Reader.read!()
|> Application.put_all_env()
#
# Generate
#
require Logger
spec_files = Path.join(__DIR__, "specs/*.{json,yaml,yml}")
for spec_file <- Path.wildcard(spec_files) do
spec_name = Path.basename(spec_file) |> Path.rootname()
output_directory = Path.join(__DIR__, "output/#{spec_name}")
if File.dir?(output_directory) do
Logger.info("Skipping #{spec_name}")
else
File.mkdir_p!(output_directory)
File.cd!(output_directory)
config = Application.get_all_env(:oapi_generator)
profile =
if Keyword.has_key?(config, String.to_atom(spec_name)), do: spec_name, else: "default"
OpenAPI.run(profile, [spec_file])
end
end