forked from codeperfectplus/SystemGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·393 lines (337 loc) · 12 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
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
#!/bin/bash
# SystemGuard Installer Script
# ----------------------------
# This script installs, uninstalls, backs up, restores SystemGuard, and includes load testing using Locust.
# Determine the correct user's home directory
get_user_home() {
if [ -n "$SUDO_USER" ]; then
# When using sudo, SUDO_USER gives the original user who invoked sudo
TARGET_USER="$SUDO_USER"
else
# If not using sudo, use LOGNAME to find the current user
TARGET_USER="$LOGNAME"
fi
# Get the home directory of the target user
USER_HOME=$(eval echo ~$TARGET_USER)
echo "$USER_HOME"
}
# Set paths relative to the correct user's home directory
USER_HOME=$(get_user_home)
USER_NAME=$(echo $USER_HOME | awk -F'/' '{print $3}')
DOWNLOAD_DIR="/tmp"
EXTRACT_DIR="$USER_HOME/.systemguard"
LOG_DIR="$HOME/logs"
LOG_FILE="$LOG_DIR/systemguard-installer.log"
BACKUP_DIR="$USER_HOME/.systemguard_backup"
EXECUTABLE="/usr/local/bin/systemguard-installer"
LOCUST_FILE="$EXTRACT_DIR/SystemGuard-*/src/scripts/locustfile.py"
HOST_URL="http://localhost:5050"
INSTALLER_SCRIPT='setup.sh'
ISSUE_URL="https://github.com/codeperfectplus/SystemGuard/issues"
CRON_PATTERN=".systemguard/SystemGuard-.*/src/scripts/dashboard.sh"
# Create necessary directories
mkdir -p "$LOG_DIR"
mkdir -p "$BACKUP_DIR"
# Logging function with timestamp
log() {
local message="$1"
echo "$(date '+%Y-%m-%d %H:%M:%S') - $message" | tee -a "$LOG_FILE"
}
# Check if running with sudo
if [ "$EUID" -eq 0 ]; then
crontab_cmd="crontab -u $USER_NAME"
else
crontab_cmd="crontab"
fi
# Function to add a cron job with error handling
add_cron_job() {
# Define log directory and cron job command
local log_dir="$USER_HOME/logs"
local script_path=$(find "$EXTRACT_DIR" -name dashboard.sh)
local cron_job="* * * * * /bin/bash $script_path >> $log_dir/systemguard_cron.log 2>&1"
# Create log directory with error handling
mkdir -p "$log_dir"
if [ $? -ne 0 ]; then
log "Error: Failed to create log directory: $log_dir"
exit 1
fi
# Temporarily store current crontab to avoid overwriting on error
local temp_cron=$(mktemp)
if [ $? -ne 0 ]; then
log "Error: Failed to create temporary file for crontab."
exit 1
fi
# List the current crontab
if ! $crontab_cmd -l 2>/dev/null > "$temp_cron"; then
log "Error: Unable to list current crontab."
rm "$temp_cron"
exit 1
fi
# Ensure the cron job does not already exist
if grep -Fxq "$cron_job" "$temp_cron"; then
log "Cron job already exists: $cron_job"
rm "$temp_cron"
exit 0
fi
# Add the new cron job
echo "$cron_job" >> "$temp_cron"
if ! $crontab_cmd "$temp_cron"; then
log "Error: Failed to add the cron job to crontab."
rm "$temp_cron"
exit 1
fi
rm "$temp_cron"
log "Cron job added successfully: $cron_job"
}
# Backup function for existing configurations
backup_configs() {
log "Backing up existing configurations..."
if [ -d "$EXTRACT_DIR" ]; then
mkdir -p "$BACKUP_DIR"
cp -r "$EXTRACT_DIR" "$BACKUP_DIR/$(date '+%Y%m%d_%H%M%S')"
log "Backup completed: $BACKUP_DIR"
else
log "No existing installation found to back up."
fi
}
# Restore function to restore from a backup
restore() {
log "Starting restore process..."
# List available backups
if [ -d "$BACKUP_DIR" ]; then
echo "Available backups:"
select BACKUP in "$BACKUP_DIR"/*; do
if [ -n "$BACKUP" ]; then
echo "You selected: $BACKUP"
break
else
echo "Invalid selection. Please try again."
fi
done
# Confirm restoration
echo "Are you sure you want to restore this backup? This will overwrite the current installation. (y/n)"
read CONFIRM
if [ "$CONFIRM" != "y" ]; then
log "Restore aborted by user."
exit 0
fi
# Remove existing installation
if [ -d "$EXTRACT_DIR" ]; then
rm -rf "$EXTRACT_DIR"
log "Old installation removed."
fi
# Restore selected backup
cp -r "$BACKUP" "$EXTRACT_DIR"
log "Restore completed from backup: $BACKUP"
else
log "No backups found to restore."
echo "No backups found in $BACKUP_DIR."
fi
}
# Function to install the script as an executable
install_executable() {
# Use $0 to get the full path of the currently running script
# CURRENT_SCRIPT=$(realpath "$0")
cd $EXTRACT_DIR/SystemGuard-*/
CURRENT_SCRIPT=$(pwd)/$INSTALLER_SCRIPT
# Verify that the script exists before attempting to copy
if [ -f "$CURRENT_SCRIPT" ]; then
log "Installing executable to /usr/local/bin/systemguard-installer..."
cp "$CURRENT_SCRIPT" "$EXECUTABLE"
log "Executable installed successfully."
else
log "Error: Script file not found. Cannot copy to /usr/local/bin."
fi
}
# Install function
install() {
log "Starting installation of SystemGuard..."
echo "Enter the version of SystemGuard to install (e.g., v1.0.0 or 'latest' for the latest version):"
read VERSION
echo "Warning: This script will remove any existing installation of SystemGuard. Continue? (y/n)"
read CONFIRM
if [ "$CONFIRM" != "y" ]; then
log "Installation aborted by user."
exit 0
fi
# Fetch latest version if specified
if [ "$VERSION" == "latest" ]; then
log "Fetching the latest version of SystemGuard from GitHub..."
VERSION=$(curl -s https://api.github.com/repos/codeperfectplus/SystemGuard/releases/latest | grep -Po '"tag_name": "\K.*?(?=")')
if [ -z "$VERSION" ]; then
log "Error: Unable to fetch the latest version. Please try again or specify a version manually."
exit 1
fi
log "Latest version found: $VERSION"
fi
# Define URL after determining the version
ZIP_URL="https://github.com/codeperfectplus/SystemGuard/archive/refs/tags/$VERSION.zip"
log "Installing SystemGuard version $VERSION..."
# Download the SystemGuard zip file
log "Downloading SystemGuard version $VERSION from $ZIP_URL..."
if ! wget -q "$ZIP_URL" -O "$DOWNLOAD_DIR/systemguard.zip"; then
log "Error: Failed to download SystemGuard version $VERSION. Please check the version number and try again."
exit 1
fi
log "Download completed successfully."
# Backup existing configurations
backup_configs
# Remove any existing installation of SystemGuard
log "Removing previous installation of SystemGuard, if any..."
if [ -d "$EXTRACT_DIR" ]; then
rm -rf "$EXTRACT_DIR"
log "Old installation removed."
fi
# Clean up previous cron jobs related to SystemGuard
log "Cleaning up previous cron jobs related to SystemGuard..."
if $crontab_cmd -l | grep -q "$CRON_PATTERN"; then
$crontab_cmd -l | grep -v "$CRON_PATTERN" | $crontab_cmd -
log "Old cron jobs removed."
else
log "No previous cron jobs found."
fi
# Create the extraction directory
log "Setting up installation directory..."
mkdir -p $EXTRACT_DIR
# Extract the downloaded zip file
log "Extracting SystemGuard package..."
unzip -q $DOWNLOAD_DIR/systemguard.zip -d $EXTRACT_DIR
rm $DOWNLOAD_DIR/systemguard.zip
log "Extraction completed."
log "Preparing cronjob script..."
add_cron_job
# check if the cron job is added successfully
if $crontab_cmd -l | grep -q "$CRON_PATTERN"; then
log "Cron job added successfully."
else
log "Error: Failed to add the cron job."
exit 1
fi
# Install the executable
install_executable
log "SystemGuard version $VERSION installed successfully!"
}
# Uninstall function
uninstall() {
log "Uninstalling SystemGuard..."
# Remove cron jobs related to SystemGuard
# cronjob
if $crontab_cmd -l 2>/dev/null | grep -E "$CRON_PATTERN" > /dev/null; then
echo "Are you sure you want to remove all cron jobs related to SystemGuard? (y/n)"
read CONFIRM
if [ "$CONFIRM" != "y" ]; then
log "Uninstallation aborted by user."
exit 0
fi
$crontab_cmd -l | grep -v "$CRON_PATTERN" | $crontab_cmd -
log "Cron jobs removed."
else
log "No cron jobs found."
fi
# Remove the SystemGuard installation directory
if [ -d "$EXTRACT_DIR" ]; then
rm -rf "$EXTRACT_DIR"
log "SystemGuard has been removed from your system."
else
log "SystemGuard is not installed on this system."
fi
# Remove the executable
if [ -f "$EXECUTABLE" ]; then
rm "$EXECUTABLE"
log "Executable $EXECUTABLE removed."
else
log "No executable found to remove."
fi
}
# Load test function to start Locust server
load_test() {
log "Starting Locust server for load testing..."
# Check if Locust is installed
if ! command -v locust &> /dev/null
then
log "Locust is not installed. Please install it first."
exit 1
fi
# Start Locust server
log "Starting Locust server..."
locust -f "$LOCUST_FILE" --host="$HOST_URL"
# Optionally, you can pass additional Locust flags here if needed
# locust -f "$LOCUST_FILE" --host="$HOST_URL" --headless -u 10 -r 1 --run-time 1m
}
# Check if SystemGuard is installed
check_status() {
log "Checking SystemGuard status..."
if [ -d "$EXTRACT_DIR" ]; then
log "SystemGuard is installed at $EXTRACT_DIR."
else
log "SystemGuard is not installed."
fi
if $crontab_cmd '-l' | grep -q "$CRON_PATTERN"; then
log "Cron job for SystemGuard is set."
else
log "No cron job found for SystemGuard."
fi
log "Performing health check on localhost:5005..."
if curl -s --head $HOST_URL | grep "200 OK" > /dev/null; then
log "SystemGuard services are running."
else
log "SystemGuard services are not running."
fi
}
# Health check by pinging localhost:5005
health_check() {
log "Performing health check on localhost:5005..."
if curl -s --head $HOST_URL | grep "200 OK" > /dev/null; then
log "Health check successful: $HOST_URL is up and running."
else
log "Health check failed: $HOST_URL is not responding."
fi
}
# Display help
show_help() {
echo "SystemGuard Installer"
echo "Usage: ./installer.sh [options]"
echo "Options:"
echo " --install Install SystemGuard"
echo " --uninstall Uninstall SystemGuard"
echo " --restore Restore SystemGuard from a backup"
echo " --load-test Start Locust load testing"
echo " --status Check the status of SystemGuard installation"
echo " --health-check Perform a health check on localhost:5005"
echo " --help Display this help message"
}
# Parse command-line options
for arg in "$@"; do
case $arg in
--install) ACTION="install" ;;
--uninstall) ACTION="uninstall" ;;
--restore) ACTION="restore" ;;
--load-test) ACTION="load_test" ;;
--status) ACTION="check_status" ;;
--health-check) ACTION="health_check" ;;
--help) show_help; exit 0 ;;
*) echo "Unknown option: $arg"; show_help; exit 1 ;;
esac
done
# Execute based on the action specified
case $ACTION in
install) install ;;
uninstall) uninstall ;;
restore) restore ;;
load_test) load_test ;;
install_latest) install_latest ;;
check_status) check_status ;;
health_check) health_check ;;
*) echo "No action specified. Use --help for usage information." ;;
esac
# this script ran with sudo command so all the files have root permission
# remove the root permission from the files to the user
# Function to change ownership of a directory to the user
change_ownership() {
local directory="$1"
if [ -d "$directory" ]; then
chown -R "$USER_NAME:$USER_NAME" "$directory"
fi
}
# Call the change_ownership function
change_ownership "$EXTRACT_DIR"