-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.sh
executable file
·252 lines (163 loc) · 7.61 KB
/
setup.sh
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
#!/usr/bin/env bash
declare -r GITHUB_REPOSITORY="musq/dotfiles-system"
declare -r DOTFILES_ORIGIN="https://github.com/$GITHUB_REPOSITORY.git"
declare -r DOTFILES_TARBALL_URL="https://github.com/$GITHUB_REPOSITORY/tarball/master"
declare -r DOTFILES_UTILS_URL="https://raw.githubusercontent.com/$GITHUB_REPOSITORY/master/src/os/utils.sh"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
declare dotfilesDirectory="$HOME/projects/dotfiles-system"
declare skipQuestions=false
# ----------------------------------------------------------------------
# | Helper Functions |
# ----------------------------------------------------------------------
download() {
local url="$1"
local output="$2"
if command -v "curl" &> /dev/null; then
curl -LsSo "$output" "$url" &> /dev/null
# │││└─ write output to file
# ││└─ show error messages
# │└─ don't show the progress meter
# └─ follow redirects
return $?
elif command -v "wget" &> /dev/null; then
wget -qO "$output" "$url" &> /dev/null
# │└─ write output to file
# └─ don't show output
return $?
fi
return 1
}
download_dotfiles() {
local tmpFile=""
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_in_purple "\n ● Download and extract archive\n\n"
tmpFile="$(mktemp /tmp/XXXXX)"
download "$DOTFILES_TARBALL_URL" "$tmpFile"
print_result $? "Download archive" "true"
printf "\n"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if ! $skipQuestions; then
ask_for_confirmation "Do you want to store the dotfiles in '$dotfilesDirectory'?"
if ! answer_is_yes; then
dotfilesDirectory=""
while [ -z "$dotfilesDirectory" ]; do
ask "Please specify another location for the dotfiles (path): "
dotfilesDirectory="$(get_answer)"
done
fi
# Ensure the `dotfiles` directory is available
while [ -e "$dotfilesDirectory" ]; do
ask_for_confirmation "'$dotfilesDirectory' already exists, do you want to overwrite it?"
if answer_is_yes; then
rm -rf "$dotfilesDirectory"
break
else
dotfilesDirectory=""
while [ -z "$dotfilesDirectory" ]; do
ask "Please specify another location for the dotfiles (path): "
dotfilesDirectory="$(get_answer)"
done
fi
done
printf "\n"
else
rm -rf "$dotfilesDirectory" &> /dev/null
fi
mkdir -p "$dotfilesDirectory"
print_result $? "Create '$dotfilesDirectory'" "true"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Extract archive in the `dotfiles` directory.
extract "$tmpFile" "$dotfilesDirectory"
print_result $? "Extract archive" "true"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
rm -rf "$tmpFile"
print_result $? "Remove archive"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
cd "$dotfilesDirectory/src/os" \
|| return 1
}
download_utils() {
local tmpFile=""
tmpFile="$(mktemp /tmp/XXXXX)"
download "$DOTFILES_UTILS_URL" "$tmpFile" \
&& . "$tmpFile" \
&& rm -rf "$tmpFile" \
&& return 0
return 1
}
extract() {
local archive="$1"
local outputDir="$2"
if command -v "tar" &> /dev/null; then
tar -zxf "$archive" --strip-components 1 -C "$outputDir"
return $?
fi
return 1
}
# ----------------------------------------------------------------------
# | Main |
# ----------------------------------------------------------------------
main() {
# Set appropriate umask
umask 022
# Ensure that the following actions
# are made relative to this file's path.
cd "$(dirname "${BASH_SOURCE[0]}")" \
|| exit 1
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Load utils
if [ -x "utils.sh" ]; then
. "utils.sh" || exit 1
else
download_utils || exit 1
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
printf "\n\n\n"
print_in_color " ██████╗ ██████╗ ████████╗███████╗██╗██╗ ███████╗███████╗ \n" 6 # cyan
print_in_color " ██╔══██╗██╔═══██╗╚══██╔══╝██╔════╝██║██║ ██╔════╝██╔════╝ ██╗ ██╗ \n" 6 # cyan
print_in_color " ██║ ██║██║ ██║ ██║ █████╗ ██║██║ █████╗ ███████╗ ██████╗ ██████╗\n" 6 # cyan
print_in_color " ██║ ██║██║ ██║ ██║ ██╔══╝ ██║██║ ██╔══╝ ╚════██║ ╚═██╔═╝ ╚═██╔═╝\n" 6 # cyan
print_in_color " ██████╔╝╚██████╔╝ ██║ ██║ ██║███████╗███████╗███████║ ╚═╝ ╚═╝ \n" 6 # cyan
print_in_color " ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ \n" 6 # cyan
printf "\n"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
skip_questions "$@" \
&& skipQuestions=true
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
if [ "$(user_has_sudo)" != "no_sudo" ]; then
ask_for_sudo
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Check if this script was run directly (./<path>/setup.sh),
# and if not, it most likely means that the dotfiles were not
# yet set up, and they will need to be downloaded.
printf "%s" "${BASH_SOURCE[0]}" | grep "setup.sh" &> /dev/null \
|| download_dotfiles
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
./create_backup.sh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
./create_symbolic_links.sh "$@"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
./create_configs.sh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
./contract/main-before.sh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
./install/main.sh "$@"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
./contract/main-after.sh
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Source /etc/profile to load nix in PATH
. /etc/profile
# Initialize git repository
if cmd_exists "git"; then
if [ "$(git config --get remote.origin.url)" != "$DOTFILES_ORIGIN" ]; then
./initialize_git_repository.sh "$DOTFILES_ORIGIN"
fi
fi
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
print_in_yellow "\n You should probably run these commands -\n"
print_in_yellow " - sudo systemctl restart sshd\n"
print_in_yellow " - sudo systemctl enable nginx\n"
print_in_yellow "\n"
}
main "$@"