-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall
executable file
·194 lines (154 loc) · 5.43 KB
/
install
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
#!/usr/bin/env python3
import argparse
import os
import sys
from pathlib import Path
from typing import List, NamedTuple
DEFAULT_COMMAND = "validate"
# TODO: Do we want to possibly install elsewhere?
HOME = Path.home()
non_installable = [".DS_Store", ".git", ".gitignore", "install", "TODO.md"]
class InstallSpecial(NamedTuple):
path: Path
platforms: List[str]
exceptions = {
"Microsoft.PowerShell_profile.ps1": InstallSpecial(
path=Path.home()
/ "Documents/WindowsPowerShell/Microsoft.PowerShell_profile.ps1",
platforms=["win32"],
),
"NotepadPlusPlus-Containerfile.xml": InstallSpecial(
path=Path(os.environ.get('AppData', ""))
/ "Notepad++/userDefineLangs/Containerfile.xml",
platforms=["win32"],
),
"NotepadPlusPlus-Containerfile_DM.xml": InstallSpecial(
path=Path(os.environ.get('AppData', ""))
/ "Notepad++/userDefineLangs/Containerfile_DM.xml",
platforms=["win32"],
),
"NotepadPlusPlus-Dracula.xml": InstallSpecial(
path=Path(os.environ.get('AppData', ""))
/ "Notepad++/themes/Dracula.xml",
platforms=["win32"],
),
}
non_installable += exceptions.keys()
def info(*args, **kwargs):
print("[*]", *args, **kwargs)
def error(*args, **kwargs):
print("[E]", *args, **kwargs)
def validate_link(lnk, dst, config):
if not lnk.exists():
error("symlink to {} is not installed at {}".format(dst, lnk))
return True
if not lnk.is_symlink():
error("{} exists but is not a symlink".format(lnk))
return True
dst = dst.resolve()
link = lnk.resolve()
if link != dst:
error(
"{} exists but is not a symlink to {}, it points to {}".format(
lnk, dst, link
)
)
return True
if config.verbose:
info("OK: {} -> {}".format(lnk, dst))
return False
def validate(d, config):
had_error = False
for f in os.listdir(d):
if f in non_installable:
# only mention if it's an exception
if config.verbose and f not in exceptions:
print("Non-installable file: {}".format(f))
continue
abs_f = (Path(d) / f).resolve()
HOME_f = Path(HOME) / f
had_error |= validate_link(HOME_f, abs_f, config)
for dst, special in exceptions.items():
if sys.platform not in special.platforms:
if config.verbose:
print(
"Non-installable file: {} (sys.platform: {}, platforms: {})".format(
dst, sys.platform, special.platforms
)
)
continue
lnk = special.path.expanduser()
dst = Path(dst)
if not dst.is_absolute():
dst = Path.cwd() / dst
dst.resolve()
lnk.parent.mkdir(parents=True, exist_ok=True)
had_error |= validate_link(lnk, dst, config)
if not had_error:
info("All seems to be ok!")
else:
error("whoops!")
def symlink_is_ok(lnk, dst):
return lnk.exists() and lnk.is_symlink() and lnk.samefile(dst)
def symlink_file(config, lnk, dst):
# TODO: Maybe install + validate in the same run?
if config.dry_run:
if symlink_is_ok(lnk, dst):
if config.verbose:
print(" Already ok: {} -> {}".format(lnk, dst))
else:
print(" Would install: {} -> {}".format(lnk, dst))
else:
if symlink_is_ok(lnk, dst):
if config.verbose:
print(" Already ok: {} -> {}".format(lnk, dst))
else:
if lnk.is_symlink():
resolved = lnk.readlink().resolve()
print(" Changing {} from {} to {}".format(lnk, resolved, dst))
lnk.unlink()
else:
print(" Creating symlink: {} -> {}".format(lnk, dst))
lnk.parent.mkdir(parents=True, exist_ok=True)
os.symlink(dst, lnk)
def install(d, config):
for f in os.listdir(d):
if f in non_installable:
continue
abs_f = (Path(d) / f).resolve()
HOME_f = HOME / f
symlink_file(config, HOME_f, abs_f)
for dst, special in exceptions.items():
if sys.platform not in special.platforms:
if config.verbose:
print(
"Non-installable file: {} (sys.platform: {}, platforms: {})".format(
dst, sys.platform, special.platforms
)
)
continue
lnk = special.path.expanduser()
dst = Path(dst)
if not dst.is_absolute():
dst = Path.cwd() / dst
dst.resolve()
symlink_file(config, lnk, dst)
command_functions = {
"install": install,
"validate": validate,
}
def function_for_command(command, parser):
if command not in command_functions:
print("The only available commands are install and validate")
return lambda *args: parser.print_usage()
return command_functions[command]
def main():
dot_files_dir = os.path.dirname(os.path.realpath(__file__))
parser = argparse.ArgumentParser()
parser.add_argument("--verbose", "-v", action="store_true")
parser.add_argument("--dry_run", "-n", action="store_true")
parser.add_argument("command", nargs="?", default="validate")
args = parser.parse_args()
function_for_command(args.command, parser)(dot_files_dir, args)
if __name__ == "__main__":
main()