-
Notifications
You must be signed in to change notification settings - Fork 949
/
generate-code.py
151 lines (121 loc) · 5.53 KB
/
generate-code.py
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
139
140
141
142
143
144
145
146
147
148
149
150
151
import os
import subprocess
import sys
import urllib.request
from pathlib import Path
def get_generated_java_files():
for file in Path('.').glob('**/.openapi-generator/FILES'):
lines = []
with file.open() as fp:
for line in fp.readlines():
line = str(file.parent.parent / line.strip())
if line.endswith('.java'):
lines.append(line)
yield lines
def download_java_format():
url = 'https://github.com/google/google-java-format/releases/download/v1.18.1/google-java-format-1.18.1-all-deps.jar'
filename = url.split('/')[-1] # Extract the file name
directory = Path('tools')
jarfile = directory / filename
if Path(jarfile).exists():
pass
else:
os.makedirs(directory, exist_ok=True)
urllib.request.urlretrieve(url, jarfile)
return jarfile
def run_google_java_format():
jarfile = download_java_format()
for files in get_generated_java_files():
subprocess.run(['java', '-jar', str(jarfile), '--replace'] + files, check=True)
def remove_previous_files(target):
file = f"{target}/.openapi-generator/FILES"
with open(file) as fp:
for line in fp.readlines():
path = target + "/" + line.strip()
try:
os.unlink(path)
except FileNotFoundError:
print(f'{path} not found.')
def run_command(command):
proc = subprocess.run(command, shell=True, text=True, capture_output=True)
if proc.returncode != 0:
print("\n\nSTDOUT:\n\n")
print(proc.stdout)
if len(proc.stderr) != 0:
print("\n\nSTDERR:\n\n")
print(proc.stderr)
print("\n\n")
if proc.returncode != 0:
print(f"\n\nCommand '{command}' returned non-zero exit status {proc.returncode}.")
sys.exit(1)
return proc.stdout.strip()
def main():
os.chdir("generator")
run_command('mvn package -DskipTests=true')
os.chdir("..")
components = [
{"sourceYaml": "channel-access-token.yml", "package": "com.linecorp.bot.oauth",
"outdir": "clients/line-channel-access-token-client"},
{"sourceYaml": "insight.yml", "package": "com.linecorp.bot.insight",
"outdir": "clients/line-bot-insight-client"},
{"sourceYaml": "liff.yml", "package": "com.linecorp.bot.liff", "outdir": "clients/line-liff-client"},
{"sourceYaml": "manage-audience.yml", "package": "com.linecorp.bot.audience",
"outdir": "clients/line-bot-manage-audience-client"},
{"sourceYaml": "messaging-api.yml", "package": "com.linecorp.bot.messaging",
"outdir": "clients/line-bot-messaging-api-client"},
{"sourceYaml": "module-attach.yml", "package": "com.linecorp.bot.moduleattach",
"outdir": "clients/line-bot-module-attach-client"},
{"sourceYaml": "module.yml", "package": "com.linecorp.bot.module", "outdir": "clients/line-bot-module-client"},
{"sourceYaml": "shop.yml", "package": "com.linecorp.bot.shop", "outdir": "clients/line-bot-shop-client"},
]
for component in components:
sourceYaml = component['sourceYaml']
package = component['package']
packagePath = package.replace(".", "/")
remove_previous_files(component['outdir'])
command = f'''java \\
-cp ./generator/target/line-java-codegen-1.0.0.jar \\
org.openapitools.codegen.OpenAPIGenerator \\
generate \\
-e pebble \\
-g line-java-codegen \\
-o {component['outdir']} \\
--global-property modelDocs=false \\
--global-property apiDocs=false \\
--additional-properties=excludeText=true \\
--additional-properties=generateSourceCodeOnly=true \\
--additional-properties=modelPackage={package}.model \\
--additional-properties=apiPackage={package}.client \\
--package-name {package} \\
-i line-openapi/{sourceYaml} \\
--additional-properties=dateLibrary=java8 \\
--additional-properties=openApiNullable=false \\
--additional-properties=removeEnumValuePrefix=false \\
--additional-properties=apiNameSuffix=Client \\
--additional-properties=authenticated=true'''
run_command(command)
## webhook requires only models.
sourceYaml = "webhook.yml"
package = "com.linecorp.bot.webhook"
packagePath = package.replace(".", "/")
remove_previous_files('line-bot-webhook')
# run_command(f'rm -rf line-bot-webhook/src/main/java/{modelPackagePath}/')
command = f'''java \\
-cp ./generator/target/line-java-codegen-1.0.0.jar \\
org.openapitools.codegen.OpenAPIGenerator \\
generate \\
-e pebble \\
-g line-java-codegen \\
-o line-bot-webhook/ \\
--global-property modelDocs=false,modelTests=false,apiDocs=false,api=false \\
--additional-properties=modelPackage={package}.model \\
--additional-properties=apiPackage={package}.client \\
--package-name {package} \\
-i line-openapi/{sourceYaml} \\
--additional-properties=dateLibrary=java8 \\
--additional-properties=openApiNullable=false
'''
run_command(command)
run_google_java_format()
if __name__ == "__main__":
main()