-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
253 lines (224 loc) · 5.64 KB
/
main.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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
from typing import Optional
import click
from repofilter.commands.init import Init
from repofilter.commands.update import Update
from repofilter.utils.binary import Binary
from repofilter.utils.initializeConsole import InitializeConsole
console = InitializeConsole()
@click.group()
def cli():
pass
@cli.group()
def automuteus():
pass
@automuteus.command("init")
@click.option(
"--input",
type=click.Path(dir_okay=False, exists=True),
help="Path to dill file to be inputted",
)
@click.option(
"--output",
type=click.Path(dir_okay=False, exists=False),
required=True,
help="Path to dill file to be outputted",
)
@click.option(
"--force",
is_flag=True,
default=False,
help="Run git-filter-repo with --force option",
)
@click.argument(
"destination",
type=click.Path(file_okay=False, exists=False),
)
@click.argument(
"upstream-url",
type=str,
default="https://github.com/automuteus/automuteus",
)
def automuteus_init(
input: Optional[str],
output: str,
force: bool,
destination: str,
upstream_url: str,
):
"""
\b
Initialize automuteus repository for AutoMuteUs-Portable.
\b
Applying filter is necessary because the upstream repository is not designed to be built for Windows.
It makes possible to build Windows executable using Github Actions.
\b
After initializing repository, push to your own remote repository and push tags to run Github Actions.
If upstream reposiory is updated, run update command to apply filter to the new commits.
\b
Arguments:
destination: Path to destination(local repository) directory
upstream_url: URL to upstream repository
"""
Init(Binary.AUTOMUTEUS, destination, input, output, upstream_url, force)
@automuteus.command("update")
@click.option(
"--input",
type=click.Path(dir_okay=False, exists=True),
required=True,
help="Path to dill file to be inputted",
)
@click.option(
"--output",
type=click.Path(dir_okay=False, exists=False),
help="Path to dill file to be outputted",
)
@click.option(
"--force",
is_flag=True,
default=False,
help="Run git-filter-repo with --force option",
)
@click.argument(
"destination",
type=click.Path(file_okay=False, exists=False),
)
@click.argument(
"upstream-url",
type=str,
default="https://github.com/automuteus/automuteus",
)
def automuteus_update(
input: str,
output: Optional[str],
force: bool,
destination: str,
upstream_url: str,
):
"""
\b
Update automuteus repository that is filtered previously.
\b
Arguments:
destination: Path to destination(local repository) directory
upstream_url: URL to upstream repository
"""
Update(
Binary.AUTOMUTEUS,
destination,
input,
output if output is not None else input,
upstream_url,
force,
)
@cli.group()
def galactus():
pass
@galactus.command("init")
@click.option(
"--input",
type=click.Path(dir_okay=False, exists=True),
help="Path to dill file to be inputted",
)
@click.option(
"--output",
type=click.Path(dir_okay=False, exists=False),
required=True,
help="Path to dill file to be outputted",
)
@click.option(
"--force",
is_flag=True,
default=False,
help="Run git-filter-repo with --force option",
)
@click.argument(
"destination",
type=click.Path(file_okay=False, exists=False),
)
@click.argument(
"upstream-url",
type=str,
default="https://github.com/automuteus/galactus",
)
def galactus_init(
input: Optional[str],
output: str,
force: bool,
destination: str,
upstream_url: str,
):
"""
\b
Initialize galactus repository for AutoMuteUs-Portable.
\b
Applying filter is necessary because the upstream repository is not designed to be built for Windows.
It makes possible to build Windows executable using Github Actions.
\b
After initializing repository, push to your own remote repository and push tags to run Github Actions.
If upstream reposiory is updated, run update command to apply filter to the new commits.
\b
Arguments:
destination: Path to destination(local repository) directory
upstream_url: URL to upstream repository
"""
Init(Binary.GALACTUS, destination, input, output, upstream_url, force)
@galactus.command("update")
@click.option(
"--input",
type=click.Path(dir_okay=False, exists=True),
required=True,
help="Path to dill file to be inputted",
)
@click.option(
"--output",
type=click.Path(dir_okay=False, exists=False),
help="Path to dill file to be outputted",
)
@click.option(
"--force",
is_flag=True,
default=False,
help="Run git-filter-repo with --force option",
)
@click.argument(
"destination",
type=click.Path(file_okay=False, exists=False),
)
@click.argument(
"upstream-url",
type=str,
default="https://github.com/automuteus/galactus",
)
def galactus_update(
input: str,
output: Optional[str],
force: bool,
destination: str,
upstream_url: str,
):
"""
\b
Update galactus repository that is filtered previously.
\b
Arguments:
destination: Path to destination(local repository) directory
upstream_url: URL to upstream repository
"""
Update(
Binary.AUTOMUTEUS,
destination,
input,
output if output is not None else input,
upstream_url,
force,
)
def main():
try:
cli()
except SystemExit as e:
if e.code == 0:
return
except:
console.print_exception()
if __name__ == "__main__":
main()