forked from datguypiko/Firefox-Mod-Blur
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstaller.py
executable file
·442 lines (362 loc) · 14.6 KB
/
installer.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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#!/usr/bin/env python3
import argparse
import filecmp
import inquirer
from inquirer.errors import ValidationError
import json
import os
from os import path
import shutil
import time
CONF_NAME = ".firefox-mod-blur.jsonc"
RED = "\033[31m"
GREEN = "\033[32m"
YELLOW = "\033[33m"
BLUE = "\033[34m"
RESET = "\033[39m"
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
"path",
metavar="DIRECTORY",
type=str,
help="the path to Firefox profile directory; \
if '-e', '--exact' flag is enabled, this should be the path to the exact directory where the files are installed.",
)
parser.add_argument(
"-e",
"--exact",
action="store_true",
help="whether the given directory is exactly where the files are installed. \
It will be useful if you wrap 'Firefox Mod Blur' in your own 'chrome' directory with a different name.",
)
args = parser.parse_args()
script_dir = path.dirname(path.realpath(__file__))
given_dir = path.realpath(path.expanduser(args.path))
chrome_dir = given_dir if args.exact else path.join(given_dir, "chrome")
menu = Menu(script_dir, chrome_dir)
menu.main()
def color_print(msg, color=""):
print(f"{color}{msg}{RESET}")
def copy_file_or_dir(src_path, dst_dir):
name = path.basename(src_path)
if path.isdir(src_path):
shutil.copytree(src_path, path.join(dst_dir, name))
else:
shutil.copy(src_path, dst_dir)
def remove_file_or_dir(p):
if path.isdir(p):
shutil.rmtree(p)
else:
os.remove(p)
def turn_into_backup(file_path):
ts = int(time.time())
backup_path = f"{file_path}.{ts}.bak"
os.rename(file_path, backup_path)
return backup_path
class Config:
def __init__(self, conf_path):
self._conf_path = conf_path
if not path.exists(conf_path):
self._config = json.loads("{}")
return
with open(conf_path, encoding="utf8") as f:
f.readline() # first line is a comment
self._config = json.load(f)
def __getitem__(self, key):
return self._config[key]
def __setitem__(self, key, val):
self._config[key] = val
def __delitem__(self, key):
del self._config[key]
def __contains__(self, key):
return key in self._config
def keys(self):
return self._config.keys()
def write(self):
with open(self._conf_path, "w", encoding="utf8") as f:
f.write("// This file is maintained by Firefox Mod Blur Installer. ")
f.write("You should not modified it by yourself!\n")
with open(self._conf_path, "a", encoding="utf8") as f:
json.dump(self._config, f)
class Menu:
def __init__(self, base_dir, chrome_dir):
self._base_dir = base_dir
self._chrome_dir = chrome_dir
conf_path = path.join(chrome_dir, CONF_NAME)
self._config = Config(conf_path)
self._has_been_installed = path.exists(conf_path)
self._single_choice_categories = [
"Auto hide Mods",
"Compact extensions menu",
"Min-max-close control buttons",
]
def _single_choice_validation(self, _, selection):
if len(selection) <= 1:
return True
raise ValidationError("", reason="You can only choose 1 of them!")
def _compare_and_update(self, dir, old_files, new_files):
to_add = [p for p in new_files if p not in old_files]
to_remove = [p for p in old_files if p not in new_files]
to_check = [
(p, p) for p in new_files if p in old_files
] # (src_rel_path, dst_rel_path)
for file in to_add:
file_path = path.join(dir, file)
copy_file_or_dir(file_path, self._chrome_dir)
for file in to_remove:
file_path = path.join(self._chrome_dir, file)
remove_file_or_dir(file_path)
has_modified = False
while len(to_check) > 0:
src_rel_path, dst_rel_path = to_check.pop()
if path.basename(src_rel_path) == "wallpaper":
continue
src_file_path = path.join(dir, src_rel_path)
dst_file_path = path.join(self._chrome_dir, dst_rel_path)
if path.isdir(src_file_path):
dcmp = filecmp.dircmp(src_file_path, dst_file_path)
for file_name in dcmp.right_only:
file_path = path.join(dst_file_path, file_name)
remove_file_or_dir(file_path)
for file_name in dcmp.left_only:
file_path = path.join(src_file_path, file_name)
copy_file_or_dir(file_path, dst_file_path)
for file_name in dcmp.common:
new_src_rel_path = path.join(src_rel_path, file_name)
new_dst_rel_path = path.join(dst_rel_path, file_name)
to_check.append((new_src_rel_path, new_dst_rel_path))
if dcmp.right_only != [] or dcmp.left_only != []:
has_modified = True
elif not filecmp.cmp(src_file_path, dst_file_path):
shutil.copy(src_file_path, dst_file_path)
has_modified = True
return to_add != [] or to_remove != [] or has_modified
def _handle_selection(self, category_dir, category, choices, single_choice=False):
readme_path = path.join(category_dir, "README.md")
if path.exists(readme_path) and path.basename(category_dir) != "EXTRA THEMES":
with open(readme_path, encoding="utf8") as f:
color_print(f.read(), YELLOW)
default = None
if category in self._config:
default = list(self._config[category].keys())
else:
self._config[category] = {}
validate = self._single_choice_validation if single_choice else True
sel = inquirer.checkbox(
"[Space]: toggle a selection [Enter]: submit selections",
choices=choices,
default=default,
validate=validate,
carousel=True,
)
to_uninstall = [mod for mod in self._config[category].keys() if mod not in sel]
to_install = [mod for mod in sel if mod not in self._config[category].keys()]
for mod in to_uninstall:
mod_dir = path.join(category_dir, mod)
readme_path = path.join(mod_dir, "README.md")
for file in self._config[category][mod]:
file_path = path.join(self._chrome_dir, file)
remove_file_or_dir(file_path)
color_print(f"[-] '{mod}' was successfully uninstalled!", GREEN)
# show README if this mod requires manual operation, e.g., Centered bookmarks bar items
if self._config[category][mod] == [] and path.exists(readme_path):
color_print(f"Notes of '{mod}':", YELLOW)
with open(readme_path, encoding="utf8") as f:
color_print(f.read().rstrip(), YELLOW)
del self._config[category][mod]
for mod in to_install:
mod_dir = path.join(category_dir, mod)
readme_path = path.join(mod_dir, "README.md")
files = [entry for entry in os.listdir(mod_dir) if ".css" in entry]
for file in files:
shutil.copy(path.join(mod_dir, file), self._chrome_dir)
color_print(f"[+] '{mod}' was successfully installed!", GREEN)
# show README
if path.exists(readme_path):
color_print(f"Notes of '{mod}':", YELLOW)
with open(readme_path, encoding="utf8") as f:
color_print(f.read().rstrip(), YELLOW)
self._config[category][mod] = files
print()
if len(self._config[category]) == 0:
del self._config[category]
self._config.write()
def main(self):
print("Firefox Mod Blur Installer starts...")
print()
if self._has_been_installed:
choices = [
"Manage Mods",
"Manage Themes",
"Update",
"List",
"Uninstall",
"Quit",
]
else:
choices = ["Install", "Quit"]
keep = True
while keep:
sel = inquirer.list_input(
"What do you want to do?", choices=choices, carousel=True
)
if sel == "Install":
self.install()
keep = False
elif sel == "Manage Mods":
self.mods()
elif sel == "Manage Themes":
self.themes()
elif sel == "Update":
self.update()
elif sel == "List":
self.list()
elif sel == "Uninstall":
self.uninstall()
keep = False
else:
keep = False
def install(self):
# create chrome/ in profile directory
if path.exists(self._chrome_dir):
backup_path = turn_into_backup(self._chrome_dir)
color_print(
f"'{self._chrome_dir}' already exists, so it was renamed to '{backup_path}'",
YELLOW,
)
os.mkdir(self._chrome_dir)
# copy essential files
files = [entry for entry in os.listdir(self._base_dir) if ".css" in entry]
for file in files:
shutil.copy(path.join(self._base_dir, file), self._chrome_dir)
shutil.copytree(
path.join(self._base_dir, "ASSETS"), path.join(self._chrome_dir, "ASSETS")
)
self._config["essential"] = files + ["ASSETS"]
self._config.write()
color_print(f"Successfully installed to '{self._chrome_dir}'!", GREEN)
print()
confirm_to_install = inquirer.confirm(
"Do you want to install any extra mod?", default=True
)
if confirm_to_install:
self.mods()
confirm_to_install = inquirer.confirm(
"Do you want to install any extra theme?", default=True
)
if confirm_to_install:
self.themes()
color_print(
"Remember to set `toolkit.legacyUserProfileCustomizations.stylesheets` to `True` in `about:config`!",
YELLOW,
)
def mods(self):
extra_mod_dir = path.join(self._base_dir, "EXTRA MODS")
categories = next(os.walk(extra_mod_dir))[1]
categories.append("Quit")
while True:
category = inquirer.list_input(
"Select Extra Mods", choices=categories, carousel=True
)
if category == "Quit":
return
category_dir = path.join(extra_mod_dir, category)
mods = sorted(
[dir[0][len(category_dir) + 1 :] for dir in os.walk(category_dir)]
)
mods = mods[1:] # ignore category directory
self._handle_selection(
category_dir, category, mods, category in self._single_choice_categories
)
def themes(self):
extra_theme_dir = path.join(self._base_dir, "EXTRA THEMES")
themes = sorted(
[
dir[0][len(extra_theme_dir) + 1 :]
for dir in os.walk(extra_theme_dir)
if dir[1] == []
]
)
self._handle_selection(extra_theme_dir, "theme", themes, True)
def update(self):
has_updated = False
# update essential files
old_files = self._config["essential"]
new_files = [
entry for entry in os.listdir(self._base_dir) if ".css" in entry
] + ["ASSETS"]
updated = self._compare_and_update(self._base_dir, old_files, new_files)
if updated:
self._config["essential"] = new_files
has_updated = True
color_print("[^] essential files were successfully updated!", GREEN)
else:
print("[=] there is no update for essential files.")
# update mods/themes
categories = list(
self._config.keys()
) # prevent modifying the dictionary during iteration
for category in categories:
if category == "essential":
continue
category_dir = (
"EXTRA THEMES"
if category == "theme"
else path.join(self._base_dir, "EXTRA MODS", category)
)
mods = list(self._config[category].keys())
old_files_of_each_mod = list(self._config[category].values())
for mod, old_files in zip(mods, old_files_of_each_mod):
mod_dir = path.join(category_dir, mod)
new_files = [entry for entry in os.listdir(mod_dir) if ".css" in entry]
updated = self._compare_and_update(mod_dir, old_files, new_files)
if updated:
self._config[category][mod] = new_files
has_updated = True
color_print(f"[^] {mod} was successfully updated!", GREEN)
else:
print(f"[=] there is no update for '{mod}'.")
print()
if has_updated:
self._config.write()
else:
color_print("Note: you have to pull the repository by yourself!", YELLOW)
print()
def list(self):
mod_categories = [
c for c in self._config.keys() if c != "essential" and c != "theme"
]
if mod_categories == []:
print("Installed Mods: None")
else:
print("Installed Mods:")
for category in mod_categories:
color_print(f"* {category}", BLUE)
for mod in self._config[category].keys():
bullet = f"{RED}>{RESET}"
print(f" {bullet} {mod}")
print()
print("Installed Theme: ", end="")
if "theme" in self._config.keys():
color_print(list(self._config["theme"].keys())[0], GREEN)
else:
print("None")
print()
def uninstall(self):
color_print(
"The directory 'chrome/' will be removed, including your own files.", YELLOW
)
confirm_to_uninstall = inquirer.confirm(
"Are you sure you want to uninstalled Firefox Mod Blur?", default=False
)
if not confirm_to_uninstall:
return
shutil.rmtree(self._chrome_dir)
color_print(f"'{self._chrome_dir}' was successfully removed!", GREEN)
color_print(
"You have to manually rename 'chrome.xxx.bak/' (if exists) to 'chrome/' for recovering your previous configuration.",
YELLOW,
)
if __name__ == "__main__":
main()