-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcli.sh
executable file
·326 lines (272 loc) · 8.42 KB
/
cli.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
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
#!/usr/bin/env bash
set -eEuo pipefail
log_error() { echo "Script failed at $(caller)"; }
trap log_error ERR
# determine current script directory
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
readonly goos="linux"
readonly goarch="amd64"
readonly binary_folder="$HOME/.local/bin"
readonly config_folder="$HOME/.config"
readonly desktop_folder="$HOME/Desktop"
readonly systemd_folder="$HOME/.local/share/systemd/user"
readonly autoref_folder="$HOME/.local/share/auto-referees"
declare -A app_repo_map
app_repo_map["ssl-game-controller"]="ssl-game-controller"
app_repo_map["ssl-ref-client"]="ssl-game-controller"
app_repo_map["ssl-auto-recorder"]="ssl-go-tools"
app_repo_map["ssl-multicast-sources"]="ssl-go-tools"
app_repo_map["ssl-vision-client"]="ssl-vision-client"
app_repo_map["ssl-vision-cli"]="ssl-vision-client"
app_repo_map["ssl-quality-inspector"]="ssl-quality-inspector"
app_repo_map["ssl-status-board"]="ssl-status-board"
readonly action=${1:-}
readonly param_app=${2:-}
apps=("${!app_repo_map[@]}")
systemd_services=(ssl-game-controller ssl-auto-recorder ssl-vision-client ssl-status-board ssl-auto-recorder-backup-vision)
if [[ -n "${param_app}" ]]; then
if [[ -z "${app_repo_map[$param_app]+x}" ]]; then
echo "Invalid app: ${param_app}" >&2
exit 1
fi
systemd_services=("${param_app}")
apps=("${param_app}")
fi
function latest_version() {
local -r org="$1"
local -r repo="$2"
curl -s -f "https://api.github.com/repos/${org}/${repo}/releases/latest" | jq -r '.tag_name'
}
function install_app() {
local -r app="$1"
local repo="${app_repo_map[${app}]}"
local version
version="$(latest_version "RoboCup-SSL" "${repo}")"
echo "Latest version of ${app} from ${repo} is ${version}"
local binary_name="${app}_${version}_${goos}_${goarch}"
local binary_path="${binary_folder}/${binary_name}"
if [[ ! -f "${binary_path}" ]]; then
echo "Downloading ${binary_name}"
mkdir -p "${binary_folder}"
curl --location --fail --silent "https://github.com/RoboCup-SSL/${repo}/releases/download/${version}/${binary_name}" --output "${binary_path}"
chmod +x "${binary_path}"
rm -f "${binary_folder}/${app}"
(cd "${binary_folder}" && ln -s "${binary_name}" "${app}")
fi
if [[ -f "${SCRIPT_DIR}/desktop/${app}.desktop" ]]; then
mkdir -p "${desktop_folder}"
cp "${SCRIPT_DIR}/desktop/${app}.desktop" "${desktop_folder}"
fi
}
function uninstall_app() {
local -r app="$1"
echo "Uninstall app ${app}"
uninstall_systemd "${app}"
rm -f "${binary_folder}/${app}"
rm -f "${binary_folder}/${app}_"*
rm -f "${desktop_folder}/${app}.desktop"
}
function install_systemd() {
local -r app="$1"
echo "Installing systemd service for ${app}"
if [[ -f "${SCRIPT_DIR}/systemd/${app}.service" ]]; then
mkdir -p "${systemd_folder}"
cp "${SCRIPT_DIR}/systemd/${app}.service" "${systemd_folder}"
mkdir -p "${config_folder}/${app}"
systemctl --user enable "${app}.service"
systemctl --user daemon-reload
echo "Restarting app for ${app}"
systemctl --user restart "${app}.service"
else
echo "No systemd service file found for $app" >&2
exit 1
fi
}
function uninstall_systemd() {
local -r app="$1"
echo "Uninstall systemd service for ${app}"
if systemctl --user | grep "${app}.service" >/dev/null; then
systemctl --user stop "${app}.service"
systemctl --user disable "${app}.service"
systemctl --user daemon-reload
systemctl --user reset-failed
rm -f "${systemd_folder}/${app}.service"
fi
}
function install_autorefs() {
install_autoref_tigers
install_autoref_erforce
}
function uninstall_autorefs() {
uninstall_autoref_tigers
uninstall_autoref_erforce
}
function install_autoref_tigers() {
local -r repo="AutoReferee"
local version
version_tag="$(latest_version "TIGERs-Mannheim" "${repo}")"
version="${version_tag#version/*}"
echo "Latest version of ${repo} is ${version}"
mkdir -p "${autoref_folder}"
local archive_name="autoReferee.zip"
local archive_path="${autoref_folder}/autoReferee-${version}.zip"
if [[ ! -f "${archive_path}" ]]; then
echo "Downloading ${archive_name}"
mkdir -p "${autoref_folder}"
curl --location --fail --silent "https://github.com/TIGERs-Mannheim/${repo}/releases/download/${version_tag}/${archive_name}" --output "${archive_path}"
echo "Unzipping ${archive_path}"
unzip "${archive_path}" -d "${autoref_folder}"
mv "${autoref_folder}/autoReferee" "${autoref_folder}/autoReferee-${version}"
(cd "${autoref_folder}" && ln -s "autoReferee-${version}" "autoReferee")
cat <<EOF >"${binary_folder}/auto-referee-tigers"
#!/usr/bin/env bash
cd "${autoref_folder}/autoReferee"
bin/autoReferee "\$@"
EOF
chmod +x "${binary_folder}/auto-referee-tigers"
fi
mkdir -p "${desktop_folder}"
cp "${SCRIPT_DIR}/desktop/auto-referee-tigers.desktop" "${desktop_folder}"
}
function uninstall_autoref_tigers() {
rm -rf "${autoref_folder}/autoReferee"*
rm -f "${desktop_folder}/auto-referee-tigers.desktop"
rm -f "${binary_folder}/auto-referee-tigers"
}
function install_autoref_erforce() {
mkdir -p "${autoref_folder}"
local local_repo_path="${autoref_folder}/erforce-autoref"
if [[ ! -d "${local_repo_path}" ]]; then
echo "Cloning https://github.com/robotics-erlangen/autoref.git"
mkdir -p "${autoref_folder}"
git clone https://github.com/robotics-erlangen/autoref.git "${local_repo_path}"
cd "${local_repo_path}"
./install_ubuntu_deps.sh
./build.sh
cat <<EOF >"${binary_folder}/auto-referee-erforce"
#!/usr/bin/env bash
cd "${local_repo_path}"
build/bin/autoref "\$@"
EOF
chmod +x "${binary_folder}/auto-referee-erforce"
fi
mkdir -p "${desktop_folder}"
cp "${local_repo_path}/build/autoref.desktop" "${desktop_folder}/autoref-erforce.desktop"
}
function uninstall_autoref_erforce() {
rm -rf "${autoref_folder}/erforce-autoref"*
rm -f "${desktop_folder}/autoref-erforce.desktop"
rm -f "${binary_folder}/auto-referee-erforce"
}
function install_audioref() {
local audioref_path="audioref"
if [[ ! -d "${audioref_path}" ]]; then
sudo apt install -y python3-venv python3-dev libasound2-dev
echo "Cloning https://github.com/TIGERs-Mannheim/AudioRef.git"
git clone https://github.com/TIGERs-Mannheim/AudioRef.git "${audioref_path}"
cd "${audioref_path}"
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
install_systemd audioref
else
cd "${audioref_path}"
echo "Updating AudioRef"
git pull
fi
}
function uninstall_audioref() {
uninstall_systemd audioref
rm -rf "audioref"
}
function configure_system() {
sudo apt update
sudo apt upgrade -y
which snap >/dev/null && sudo snap refresh
sudo apt install -y git neovim curl jq terminator remmina openjdk-21-jre
echo "Disable screensaver"
which gsettings >/dev/null && gsettings set org.gnome.desktop.screensaver lock-enabled false
}
case $action in
apps)
echo "Available apps: ${apps[*]}"
;;
status)
systemctl --user status "${systemd_services[@]}"
;;
start)
systemctl --user start "${systemd_services[@]}"
;;
stop)
systemctl --user stop "${systemd_services[@]}"
;;
restart)
systemctl --user restart "${systemd_services[@]}"
;;
logs)
parameters=()
for unit in "${systemd_services[@]}"; do
parameters+=("-u")
parameters+=("${unit}")
done
journalctl -r --user "${parameters[@]}"
;;
configure_system)
configure_system
;;
install_apps)
for a in "${apps[@]}"; do
install_app "${a}"
done
;;
uninstall_apps)
for a in "${apps[@]}"; do
uninstall_app "${a}"
done
;;
install_systemd)
for a in "${systemd_services[@]}"; do
install_systemd "${a}"
done
;;
uninstall_systemd)
for a in "${systemd_services[@]}"; do
uninstall_systemd "${a}"
done
;;
install_autorefs)
install_autorefs
;;
uninstall_autorefs)
uninstall_autorefs
;;
install_audioref)
install_audioref
;;
uninstall_audioref)
uninstall_audioref
;;
install_autoref_tigers)
install_autoref_tigers
;;
uninstall_autoref_tigers)
uninstall_autoref_tigers
;;
install_autoref_erforce)
install_autoref_erforce
;;
uninstall_autoref_erforce)
uninstall_autoref_erforce
;;
*)
echo "Invalid action. Valid actions are:"
echo " configure_system"
echo " apps"
echo " install_apps uninstall_apps"
echo " install_systemd uninstall_systemd"
echo " install_autorefs uninstall_autorefs"
echo " install_audioref uninstall_audioref"
echo " status start stop restart"
echo " logs"
;;
esac