-
Notifications
You must be signed in to change notification settings - Fork 0
/
common
executable file
·171 lines (141 loc) · 3.9 KB
/
common
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
#!/usr/bin/env bash
# Everything in this script is available to all script files
set -eo pipefail
BASE_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
export LOG_FILE="$BASE_DIR/debug.log"
info () {
printf "\r[ \033[00;34m..\033[0m ] %s\n" "$1"
log_to_file " .. " "$1"
}
warn () {
printf "\r[\033[0;33mWARN\033[0m] %s\n" "$1"
log_to_file "WARN" "$1"
}
user () {
printf "\r[ \033[0;33m??\033[0m ] %s\n" "$1"
log_to_file " ?? " "$1"
}
success () {
printf "\r\033[2K[ \033[00;32mOK\033[0m ] %s\n" "$1"
log_to_file " OK " "$1"
}
fail () {
printf "\r\033[2K[\033[0;31mFAIL\033[0m] %s\n" "$1"
log_to_file "FAIL" "$1"
}
log_to_file () {
local cur_date
cur_date=$(get_date)
printf "%s [%s] %s\n" "$cur_date" "$1" "$2" >> "$LOG_FILE"
}
get_date () {
date +"%Y-%m-%dT%H:%M:%S"
}
run_command () {
local msg=$1; shift
info "$msg"
info "~~~~~~~~~~~~~~~~~~~~~~~~"
while [[ $# -gt 0 ]]; do
if ! eval "$1" 2>&1 | while IFS= read -r line; do info "$line"; done; then
info ""
fail "failed!"
if [[ "$IGNORE_ERRORS" == "false" ]]; then
exit 1
fi
fi
shift
done
info ""
success "done!"
info ""
}
link_file () {
local src=$1 dst=$2
local overwrite=
local backup=
local skip=
local action=
local currentSrc=
if [ -f "$dst" ] || [ -d "$dst" ] || [ -L "$dst" ]; then
if [ "$overwrite_all" == "false" ] && [ "$backup_all" == "false" ] && [ "$skip_all" == "false" ]; then
if ! currentSrc="$(readlink "$dst")"; then true; fi
if [ "$currentSrc" == "$src" ]; then
skip=true
else
user "File already exists: $dst ($(basename "$src")), what do you want to do?"
user "[s]kip, [S]kip all, [o]verwrite, [O]verwrite all, [b]ackup, [B]ackup all?"
read -r -n 1 action
case "$action" in
o )
overwrite=true
;;
O )
overwrite_all=true
;;
b )
backup=true
;;
B )
backup_all=true
;;
s )
skip=true
;;
S )
skip_all=true
;;
* )
;;
esac
fi
fi
overwrite=${overwrite:-$overwrite_all}
backup=${backup:-$backup_all}
skip=${skip:-$skip_all}
if [ "$overwrite" == "true" ]; then
rm -rf "$dst"
success "removed $dst"
fi
if [ "$backup" == "true" ]; then
mv "$dst" "${dst}.backup"
success "moved $dst to ${dst}.backup"
fi
if [ "$skip" == "true" ]; then
success "skipped $src"
fi
fi
if [ "$skip" != "true" ]; then # "false" or empty
ln -s "$1" "$2"
success "linked $1 to $2"
fi
}
# Check if we are running under WSL (Windows Subsystem for Linux)
inside_wsl () {
[ -f /proc/sys/fs/binfmt_misc/WSLInterop ]
}
load_variables() {
if [[ ! -f $BASE_DIR/variables ]]; then
create=false
user "variables file not created, create it from variables.example?"
user "[y]es, [n]o?"
read -r -n 1 action
case "$action" in
y )
create=true
;;
n )
create=false
;;
* )
;;
esac
if [[ "$create" = "true" ]]; then
cp "$BASE_DIR/variables.example" "$BASE_DIR/variables"
else
return 1
fi
fi
source "$BASE_DIR/variables"
return 0
}
if ! load_variables; then exit 1; fi