Reapply "Merge branch 'development-SDXPINN' into SDXPINN"

This reverts commit 738567acd7.
This commit is contained in:
Cameron Thompson
2025-08-28 17:42:45 -04:00
parent 738567acd7
commit e125cc1461
130 changed files with 927 additions and 568 deletions

View File

@@ -1,195 +0,0 @@
#!/bin/sh
# Configuration
CONFIG_FILE="/etc/keep_alive_schedule.conf"
STATUS_FILE="/tmp/keep_alive_status"
SPEEDTEST_SCRIPT="/www/cgi-bin/home/speedtest/speedtest.sh"
# Function to convert HH:MM to minutes since midnight
time_to_minutes() {
echo "$1" | awk -F: '{print $1 * 60 + $2}'
}
# Function to validate time interval
validate_interval() {
START_TIME=$1
END_TIME=$2
INTERVAL_MINUTES=$3
# Convert times to minutes
START_MINUTES=$(time_to_minutes "$START_TIME")
END_MINUTES=$(time_to_minutes "$END_TIME")
# Calculate duration between start and end time
if [ $END_MINUTES -lt $START_MINUTES ]; then
# Handle case where end time is on the next day
DURATION=$((1440 - START_MINUTES + END_MINUTES))
else
DURATION=$((END_MINUTES - START_MINUTES))
fi
# Check if interval is longer than duration
if [ $INTERVAL_MINUTES -gt $DURATION ]; then
return 1
fi
return 0
}
# Function to generate cron time expression
generate_cron_time() {
START_TIME=$1
END_TIME=$2
INTERVAL=$3
START_HOUR=$(echo "$START_TIME" | cut -d: -f1 | sed 's/^0//')
START_MIN=$(echo "$START_TIME" | cut -d: -f2)
END_HOUR=$(echo "$END_TIME" | cut -d: -f1 | sed 's/^0//')
END_MIN=$(echo "$END_TIME" | cut -d: -f2)
# If end time is less than start time, it means we cross midnight
if [ $(time_to_minutes "$END_TIME") -lt $(time_to_minutes "$START_TIME") ]; then
# Create two cron entries for before and after midnight
echo "*/$INTERVAL $START_HOUR-23 * * * $SPEEDTEST_SCRIPT"
echo "*/$INTERVAL 0-$((END_HOUR - 1)) * * * $SPEEDTEST_SCRIPT"
else
echo "*/$INTERVAL $START_HOUR-$((END_HOUR - 1)) * * * $SPEEDTEST_SCRIPT"
fi
}
# Function to urldecode
urldecode() {
echo -e "$(echo "$1" | sed 's/+/ /g;s/%\([0-9A-F][0-9A-F]\)/\\x\1/g')"
}
# Function to save configuration
save_config() {
echo "START_TIME=$1" >"$CONFIG_FILE"
echo "END_TIME=$2" >>"$CONFIG_FILE"
echo "INTERVAL=$3" >>"$CONFIG_FILE"
echo "ENABLED=1" >>"$CONFIG_FILE"
}
# Function to disable scheduling
disable_scheduling() {
if [ -f "$CONFIG_FILE" ]; then
sed -i 's/ENABLED=1/ENABLED=0/' "$CONFIG_FILE"
fi
# Remove any existing cron jobs
crontab -l | grep -v "$SPEEDTEST_SCRIPT" | crontab -
}
# Function to get current status
get_status() {
if [ -f "$CONFIG_FILE" ]; then
ENABLED=$(grep "ENABLED=" "$CONFIG_FILE" | cut -d'=' -f2)
START_TIME=$(grep "START_TIME=" "$CONFIG_FILE" | cut -d'=' -f2)
END_TIME=$(grep "END_TIME=" "$CONFIG_FILE" | cut -d'=' -f2)
INTERVAL=$(grep "INTERVAL=" "$CONFIG_FILE" | cut -d'=' -f2)
echo "Status: 200 OK"
echo "Content-Type: application/json"
echo ""
echo "{\"enabled\":$ENABLED,\"start_time\":\"$START_TIME\",\"end_time\":\"$END_TIME\",\"interval\":$INTERVAL}"
else
echo "Status: 200 OK"
echo "Content-Type: application/json"
echo ""
echo "{\"enabled\":0,\"start_time\":\"\",\"end_time\":\"\",\"interval\":0}"
fi
}
# Handle POST requests
if [ "$REQUEST_METHOD" = "POST" ]; then
# Read POST data
read -r POST_DATA
# Check if disabling is requested
echo "$POST_DATA" | grep -q "disable=true"
if [ $? -eq 0 ]; then
disable_scheduling
echo "Status: 200 OK"
echo "Content-Type: application/json"
echo ""
echo "{\"status\":\"success\",\"message\":\"Scheduling disabled\"}"
exit 0
fi
# Extract times and interval
START_TIME=$(echo "$POST_DATA" | grep -o 'start_time=[^&]*' | cut -d'=' -f2)
END_TIME=$(echo "$POST_DATA" | grep -o 'end_time=[^&]*' | cut -d'=' -f2)
INTERVAL=$(echo "$POST_DATA" | grep -o 'interval=[^&]*' | cut -d'=' -f2)
# Decode times
START_TIME=$(urldecode "$START_TIME")
END_TIME=$(urldecode "$END_TIME")
INTERVAL=$(urldecode "$INTERVAL")
# Validate times
if [ -z "$START_TIME" ] || [ -z "$END_TIME" ] || [ -z "$INTERVAL" ]; then
echo "Status: 400 Bad Request"
echo "Content-Type: application/json"
echo ""
echo "{\"error\":\"Missing start time, end time, or interval\"}"
exit 1
fi
# Validate interval is a number
if ! echo "$INTERVAL" | grep -q '^[0-9]\+$'; then
echo "Status: 400 Bad Request"
echo "Content-Type: application/json"
echo ""
echo "{\"error\":\"Interval must be a number in minutes\"}"
exit 1
fi
# Validate interval
if ! validate_interval "$START_TIME" "$END_TIME" "$INTERVAL"; then
echo "Status: 400 Bad Request"
echo "Content-Type: application/json"
echo ""
echo "{\"error\":\"Interval is longer than the time between start and end time\"}"
exit 1
fi
# Create temporary file for new crontab
TEMP_CRON=$(mktemp)
# Get existing crontab entries (excluding our script)
crontab -l 2>/dev/null | grep -v "$SPEEDTEST_SCRIPT" >"$TEMP_CRON"
# Generate and add cron entries
generate_cron_time "$START_TIME" "$END_TIME" "$INTERVAL" >>"$TEMP_CRON"
# Install new crontab
crontab "$TEMP_CRON"
rm "$TEMP_CRON"
# Save configuration
save_config "$START_TIME" "$END_TIME" "$INTERVAL"
echo "Status: 200 OK"
echo "Content-Type: application/json"
echo ""
echo "{\"status\":\"success\",\"message\":\"Keep-alive scheduling enabled\"}"
exit 0
fi
# Parse query string for GET requests
if [ "$REQUEST_METHOD" = "GET" ]; then
QUERY_STRING=$(echo "$QUERY_STRING" | sed 's/&/\n/g')
for param in $QUERY_STRING; do
case "$param" in
status=*)
get_status
exit 0
;;
esac
done
fi
# If no valid request is made
echo "Status: 400 Bad Request"
echo "Content-Type: application/json"
echo ""
echo "{\"error\":\"Invalid request\"}"
exit 1

View File

@@ -0,0 +1,220 @@
#!/bin/sh
# QuecManager Log Viewer API
# Provides centralized log access for the web interface
. /www/cgi-bin/services/quecmanager_logger.sh
# CGI Headers
printf "Content-Type: application/json\r\n"
printf "Access-Control-Allow-Origin: *\r\n"
printf "Access-Control-Allow-Methods: GET, POST, OPTIONS\r\n"
printf "Access-Control-Allow-Headers: Content-Type\r\n"
printf "\r\n"
# Initialize logs if needed
qm_init_logs
# Parse query parameters
QUERY_STRING="${QUERY_STRING:-}"
CATEGORY=""
SCRIPT=""
LEVEL=""
LINES="50"
SINCE=""
# Simple parameter parsing
if [ -n "$QUERY_STRING" ]; then
for param in $(echo "$QUERY_STRING" | tr '&' ' '); do
case "$param" in
category=*)
CATEGORY=$(echo "$param" | cut -d'=' -f2 | sed 's/%20/ /g' | tr -d '"')
;;
script=*)
SCRIPT=$(echo "$param" | cut -d'=' -f2 | sed 's/%20/ /g' | tr -d '"')
;;
level=*)
LEVEL=$(echo "$param" | cut -d'=' -f2 | sed 's/%20/ /g' | tr -d '"')
;;
lines=*)
LINES=$(echo "$param" | cut -d'=' -f2 | tr -d '"')
;;
since=*)
SINCE=$(echo "$param" | cut -d'=' -f2 | sed 's/%20/ /g' | tr -d '"')
;;
esac
done
fi
# Validate lines parameter
if ! echo "$LINES" | grep -qE '^[0-9]+$' || [ "$LINES" -gt 1000 ]; then
LINES="50"
fi
# Function to get available categories
get_categories() {
printf '{\n'
printf ' "categories": [\n'
if [ -d "$QM_LOG_DAEMONS" ]; then
printf ' "daemons"'
[ -d "$QM_LOG_SERVICES" ] || [ -d "$QM_LOG_SETTINGS" ] || [ -d "$QM_LOG_SYSTEM" ] && printf ','
printf '\n'
fi
if [ -d "$QM_LOG_SERVICES" ]; then
printf ' "services"'
[ -d "$QM_LOG_SETTINGS" ] || [ -d "$QM_LOG_SYSTEM" ] && printf ','
printf '\n'
fi
if [ -d "$QM_LOG_SETTINGS" ]; then
printf ' "settings"'
[ -d "$QM_LOG_SYSTEM" ] && printf ','
printf '\n'
fi
if [ -d "$QM_LOG_SYSTEM" ]; then
printf ' "system"\n'
fi
printf ' ]\n'
printf '}\n'
}
# Function to get available scripts for a category
get_scripts() {
local cat_dir=""
case "$CATEGORY" in
"daemons") cat_dir="$QM_LOG_DAEMONS" ;;
"services") cat_dir="$QM_LOG_SERVICES" ;;
"settings") cat_dir="$QM_LOG_SETTINGS" ;;
"system") cat_dir="$QM_LOG_SYSTEM" ;;
*)
printf '{"error": "Invalid category"}\n'
return 1
;;
esac
if [ ! -d "$cat_dir" ]; then
printf '{"scripts": []}\n'
return 0
fi
printf '{\n'
printf ' "scripts": [\n'
first=true
for logfile in "$cat_dir"/*.log; do
if [ -f "$logfile" ]; then
if [ "$first" = "false" ]; then
printf ',\n'
fi
script_name=$(basename "$logfile" .log)
printf ' "%s"' "$script_name"
first=false
fi
done
printf '\n ]\n'
printf '}\n'
}
# Function to get log entries
get_logs() {
local logfile=""
if [ -n "$CATEGORY" ] && [ -n "$SCRIPT" ]; then
logfile=$(qm_get_logfile "$CATEGORY" "$SCRIPT")
else
printf '{"error": "Category and script parameters required"}\n'
return 1
fi
if [ ! -f "$logfile" ]; then
printf '{"entries": [], "total": 0}\n'
return 0
fi
# Get log entries with optional filtering
local temp_file="/tmp/quecmanager_log_view.$$"
# Start with all entries
cat "$logfile" > "$temp_file" 2>/dev/null
# Filter by level if specified
if [ -n "$LEVEL" ]; then
grep "\[$LEVEL\]" "$temp_file" > "${temp_file}.filtered" 2>/dev/null || touch "${temp_file}.filtered"
mv "${temp_file}.filtered" "$temp_file"
fi
# Filter by time if specified (simple grep for now)
if [ -n "$SINCE" ]; then
grep "$SINCE" "$temp_file" > "${temp_file}.filtered" 2>/dev/null || touch "${temp_file}.filtered"
mv "${temp_file}.filtered" "$temp_file"
fi
# Get total count
local total_count=$(wc -l < "$temp_file" 2>/dev/null || echo "0")
# Get last N lines
tail -n "$LINES" "$temp_file" > "${temp_file}.final" 2>/dev/null || touch "${temp_file}.final"
printf '{\n'
printf ' "entries": [\n'
first=true
while IFS= read -r line; do
if [ -n "$line" ]; then
if [ "$first" = "false" ]; then
printf ',\n'
fi
# Parse log line (format: [timestamp] [level] [script] [pid] message)
timestamp=$(echo "$line" | sed -n 's/^\[\([^]]*\)\].*/\1/p')
level=$(echo "$line" | sed -n 's/^[^]]*\] \[\([^]]*\)\].*/\1/p')
script=$(echo "$line" | sed -n 's/^[^]]*\] [^]]*\] \[\([^]]*\)\].*/\1/p')
pid=$(echo "$line" | sed -n 's/^[^]]*\] [^]]*\] [^]]*\] \[PID:\([^]]*\)\].*/\1/p')
message=$(echo "$line" | sed 's/^[^]]*\] [^]]*\] [^]]*\] [^]]*\] //')
# Escape quotes in message
message=$(echo "$message" | sed 's/"/\\"/g')
printf ' {\n'
printf ' "timestamp": "%s",\n' "$timestamp"
printf ' "level": "%s",\n' "$level"
printf ' "script": "%s",\n' "$script"
printf ' "pid": "%s",\n' "$pid"
printf ' "message": "%s"\n' "$message"
printf ' }'
first=false
fi
done < "${temp_file}.final"
printf '\n ],\n'
printf ' "total": %s,\n' "$total_count"
printf ' "showing": %s\n' "$LINES"
printf '}\n'
# Cleanup temp files
rm -f "$temp_file" "${temp_file}.filtered" "${temp_file}.final" 2>/dev/null || true
}
# Main logic
case "$REQUEST_METHOD" in
"GET")
if [ -z "$CATEGORY" ]; then
# Return available categories
get_categories
elif [ -z "$SCRIPT" ]; then
# Return available scripts for category
get_scripts
else
# Return log entries
get_logs
fi
;;
"OPTIONS")
# Handle CORS preflight
exit 0
;;
*)
printf '{"error": "Method not allowed"}\n'
;;
esac

View File

@@ -1,50 +0,0 @@
#!/bin/sh
# Ping Latency Script with Enable/Disable Configuration
# Author: dr-dolomite
# Date: 2025-08-04
# Set the content type to JSON
echo "Content-Type: application/json"
echo ""
# Configuration
CONFIG_DIR="/etc/quecmanager/settings"
CONFIG_FILE="$CONFIG_DIR/ping_settings.conf"
# Check if ping is enabled (default: enabled if no config exists)
is_ping_enabled() {
# If config file exists, read the setting
if [ -f "$CONFIG_FILE" ]; then
ping_enabled=$(grep "^PING_ENABLED=" "$CONFIG_FILE" | cut -d'=' -f2)
if [ "$ping_enabled" = "false" ] || [ "$ping_enabled" = "0" ] || [ "$ping_enabled" = "off" ]; then
return 1 # Disabled
fi
fi
return 0 # Enabled (default)
}
# Check if ping is enabled before proceeding
if ! is_ping_enabled; then
echo '{"connection": "DISABLED", "latency": 0}'
exit 0
fi
# Ping 8.8.8.8 with 5 packets and capture the full output
ping_result=$(ping -c 5 8.8.8.8)
# Check if ping was successful
if [ $? -eq 0 ]; then
# Extract the average latency using awk
avg_latency=$(echo "$ping_result" | awk '/avg/ {split($4, a, "/"); print int(a[2])}')
# If average latency was extracted, return it
if [ ! -z "$avg_latency" ]; then
echo "{\"connection\": \"ACTIVE\", \"latency\": $avg_latency}"
else
echo '{"connection": "ACTIVE", "latency": 0}'
fi
else
# Ping failed
echo '{"connection": "INACTIVE", "latency": 0}'
fi