-
Notifications
You must be signed in to change notification settings - Fork 3
/
commands.py
231 lines (169 loc) · 5.13 KB
/
commands.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
# -*- coding: utf-8 -*-
import json
import os
from textwrap import dedent
from typing import List
import click
from plugin import (
ICON_PATH,
PLUGIN_ACTION_KEYWORD,
PLUGIN_AUTHOR,
PLUGIN_EXECUTE_FILENAME,
PLUGIN_ID,
PLUGIN_PROGRAM_LANG,
PLUGIN_URL,
PLUGIN_URL_DOWNLOAD,
PLUGIN_URL_SOURCE_CODE,
PLUGIN_ZIP_NAME,
TRANSLATIONS_PATH,
__long_description__,
__package_name__,
__short_description__,
__version__,
basedir,
)
# constants
# folder
build_path = basedir / "build"
build_path.mkdir(exist_ok=True)
lib_path = basedir / "lib"
lib_path.mkdir(exist_ok=True)
# file
build_ignore_path = basedir / ".buildignore"
build_ignore_path.touch() # if no existed, would be created
plugin_info_path = basedir / "plugin.json"
zip_path = build_path / f"{PLUGIN_ZIP_NAME}"
plugin_infos = {
"ID": PLUGIN_ID,
"ActionKeyword": PLUGIN_ACTION_KEYWORD,
"Name": __package_name__,
"Description": __short_description__,
"Author": PLUGIN_AUTHOR,
"Version": __version__,
"Language": PLUGIN_PROGRAM_LANG,
"Website": PLUGIN_URL,
"IcoPath": ICON_PATH,
"ExecuteFileName": PLUGIN_EXECUTE_FILENAME,
"UrlDownload": PLUGIN_URL_DOWNLOAD,
"UrlSourceCode": PLUGIN_URL_SOURCE_CODE,
}
def get_build_ignores(comment: str = "#") -> List[str]:
"""
Ignore file or folder when building a plugin, similar to '.gitignore'.
"""
ignore_list = []
with open(build_ignore_path, "r") as f:
for line in f.readlines():
line = line.strip()
if line and not line.startswith(comment):
ignore_list.append(line)
return ignore_list
def hook_env_snippet(exec_file: str = PLUGIN_EXECUTE_FILENAME) -> str:
"""Hook lib folder path to python system environment variable path."""
env_snippet = dedent(
f"""\
import os
import sys
basedir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.join(basedir, "{lib_path.name}"))
"""
)
temp_path = build_path / exec_file
entry_src = basedir / exec_file
with open(entry_src, "r") as f_r:
with open(temp_path, "w") as f_w:
f_w.write(env_snippet + f_r.read())
return temp_path
@click.group()
def translate():
"""Translation and localization commands."""
...
@translate.command()
@click.argument("locale")
def init(locale):
"""Initialize a new language."""
if os.system("pybabel extract -F babel.cfg -k _l -o messages.pot ."):
raise RuntimeError("extract command failed")
if os.system(f"pybabel init -i messages.pot -d {TRANSLATIONS_PATH} -l {locale}"):
raise RuntimeError("init command failed")
os.remove("messages.pot")
click.echo("Done.")
@translate.command()
def update():
"""Update all languages."""
if os.system("pybabel extract -F babel.cfg -k _l -o messages.pot ."):
raise RuntimeError("extract command failed")
if os.system(f"pybabel update -i messages.pot -d {TRANSLATIONS_PATH}"):
raise RuntimeError("update command failed")
os.remove("messages.pot")
click.echo("Done.")
@translate.command()
def compile():
"""Compile all languages."""
if os.system(f"pybabel compile -d {TRANSLATIONS_PATH}"):
raise RuntimeError("compile command failed")
click.echo("Done.")
@click.group()
def plugin():
"""Plugin commands."""
...
@plugin.command()
def gen_plugin_info():
"""Auto generate the 'plugin.json' file for Flow."""
with open(plugin_info_path, "w") as f:
json.dump(plugin_infos, f, indent=4)
click.echo("Done.")
@plugin.command()
def build():
"Pack plugin to a zip file."
zip_path.unlink(missing_ok=True)
ignore_list = get_build_ignores()
ignore_string = "'" + "' '".join(ignore_list) + "'"
os.system(f"zip -r {zip_path} . -x {ignore_string}")
entry_src_hooked = hook_env_snippet()
os.system(f"zip -j {zip_path} {entry_src_hooked}")
entry_src_hooked.unlink()
click.echo("Done.")
@click.group()
def env():
...
@env.command()
def setup_env():
"""
Set up the environment for the first time.
This installs requirements.txt and requirements-dev.txt
"""
os.system("pip install -r requirements.txt --upgrade")
os.system("pip install -r requirements-dev.txt --upgrade")
click.echo("Environment ready to go.")
@env.command()
def setup_env_to_lib():
"""Install dependencies to local."""
os.system(f"pip install -r requirements.txt -t {lib_path} --upgrade")
click.echo("Done.")
@click.group()
def clean():
"""Clean commands."""
...
@clean.command()
def clean_build():
"""Remove build artifacts"""
os.system("rm -fr build/")
click.echo("Done.")
@clean.command()
def clean_pyc():
"Remove Python file artifacts"
os.system(f"find {basedir} -name '*.pyc' -exec rm -f {{}} +")
os.system(f"find {basedir} -name '*.pyo' -exec rm -f {{}} +")
os.system(f"find {basedir} -name '*~' -exec rm -f {{}} +")
click.echo("Done.")
if __name__ == "__main__":
cli = click.CommandCollection(
sources=[
clean,
env,
plugin,
translate,
]
)
cli()