File size: 13,493 Bytes
7270c96 |
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 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 |
#!/bin/bash
# سكريبت ترقية نظام الحارس التلقائي
# Auto Guardian System Upgrade Script
# =====================================
# إعداداتColors
GREEN='\033[0;32m'
BLUE='\033[0;34m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
CYAN='\033[0;36m'
BOLD='\033[1m'
NC='\033[0m'
# إعدادات
LOG_FILE="logs/upgrade.log"
BACKUP_DIR="backups"
CONFIG_BACKUP="config.backup.$(date +%Y%m%d_%H%M%S)"
# دوال مساعدة
print_info() {
echo -e "${BLUE}[INFO]${NC} $1"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [INFO] $1" >> "$LOG_FILE"
}
print_success() {
echo -e "${GREEN}[SUCCESS]${NC} $1"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [SUCCESS] $1" >> "$LOG_FILE"
}
print_warning() {
echo -e "${YELLOW}[WARNING]${NC} $1"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [WARNING] $1" >> "$LOG_FILE"
}
print_error() {
echo -e "${RED}[ERROR]${NC} $1"
echo "[$(date '+%Y-%m-%d %H:%M:%S')] [ERROR] $1" >> "$LOG_FILE"
}
print_header() {
echo ""
echo "=============================================="
echo " نظام الحارس التلقائي - الترقية"
echo "=============================================="
echo ""
}
# إنشاء مجلد السجلات إن لم يوجد
mkdir -p "$(dirname "$LOG_FILE")" "$BACKUP_DIR"
# دالة النسخ الاحتياطي للإعدادات
backup_config() {
print_info "جاري إنشاء نسخة احتياطية من الإعدادات..."
if [ -d "config" ]; then
cp -r "config" "$CONFIG_BACKUP"
print_success "حُفظت الإعدادات في: $CONFIG_BACKUP"
return 0
else
print_warning "مجلد الإعدادات غير موجود"
return 1
fi
}
# دالة التحقق من المتطلبات
check_requirements() {
print_info "جاري التحقق من المتطلبات..."
# التحقق من Python
if ! command -v python3 &> /dev/null; then
print_error "Python 3 غير مثبت! يرجى تثبيت Python 3.8 أو أحدث."
return 1
fi
local python_version=$(python3 --version 2>&1 | grep -oP '\d+\.\d+')
local major=$(echo "$python_version" | cut -d. -f1)
local minor=$(echo "$python_version" | cut -d. -f2)
if [ "$major" -lt 3 ] || ([ "$major" -eq 3 ] && [ "$minor" -lt 8 ]); then
print_error "Python 3.8 أو أحدث مطلوب! الإصدار الحالي: $python_version"
return 1
fi
print_success "Python $python_version ✓"
# التحقق من Git
if ! command -v git &> /dev/null; then
print_error "Git غير مثبت! يرجى تثبيت Git."
return 1
fi
print_success "Git ✓"
# التحقق من Git repository
if [ ! -d ".git" ]; then
print_warning "المستودع ليس Git. لن يتم استخدام Git للترقية."
return 2
fi
return 0
}
# دالة جلب التحديثات من Git
git_pull() {
print_info "جاري جلب التحديثات من Git..."
# جلب التحديثات
git fetch origin
# الحصول على الفرع الحالي
local current_branch=$(git rev-parse --abbrev-ref HEAD)
print_info "الفرع الحالي: $current_branch"
# جلب التغييرات
if git pull origin "$current_branch" --no-edit; then
print_success "تم جلب التحديثات"
return 0
else
print_error "فشل في جلب التحديثات"
return 1
fi
}
# دالة الترقية من ZIP
upgrade_from_zip() {
local zip_file=$1
if [ -z "$zip_file" ]; then
print_error "يرجى تحديد ملف ZIP"
return 1
fi
if [ ! -f "$zip_file" ]; then
print_error "الملف غير موجود: $zip_file"
return 1
fi
print_info "جاري الترقية من: $zip_file"
# إنشاء مجلد مؤقت
local temp_dir=$(mktemp -d)
trap "rm -rf $temp_dir" EXIT
# استخراج الملفات
unzip -q "$zip_file" -d "$temp_dir"
# التحقق من المحتوى
if [ ! -f "$temp_dir/README.md" ]; then
print_error "الملف ZIP ليس لتحديث نظام الحارس التلقائي"
return 1
fi
# نسخ الملفات (مع تجاوز)
print_info "جاري نسخ الملفات..."
cp -r "$temp_dir"/* .
print_success "تم الترقية من ملف ZIP"
}
# دالة تحديث التبعيات
update_dependencies() {
print_info "جاري تحديث التبعيات..."
# التحقق من ملف requirements.txt
if [ ! -f "requirements.txt" ]; then
print_warning "ملف requirements.txt غير موجود"
return 1
fi
# ترقية pip
print_info "تحديث pip..."
python3 -m pip install --upgrade pip wheel setuptools
# ترقية التبعيات
print_info "تحديث التبعيات..."
if python3 -m pip install -r requirements.txt --upgrade; then
print_success "تم تحديث التبعيات"
else
print_error "فشل في تحديث التبعيات"
return 1
fi
}
# دالة تشغيل التهجير
run_migrations() {
print_info "جاري تشغيل التهجير..."
# التحقق من وجود سكريبت التهجير
if [ -f "scripts/migrate.py" ]; then
python3 scripts/migrate.py
elif [ -f "migrate.py" ]; then
python3 migrate.py
else
print_info "لا توجد تهجيرات للترقية"
fi
}
# دالة التحقق من الإعدادات الجديدة
check_new_config() {
print_info "جاري التحقق من الإعدادات الجديدة..."
# التحقق من وجود نموذج الإعدادات
if [ -f "config/settings.example.yaml" ]; then
if [ ! -f "config/settings.yaml" ]; then
print_warning "تم إنشاء ملف إعدادات جديد"
cp config/settings.example.yaml config/settings.yaml
fi
# عرض الإعدادات الجديدة
print_info "راجع الإعدادات الجديدة في config/settings.yaml"
print_info "راجع التغييرات في config/settings.example.yaml"
fi
}
# دالة التحقق من الإضافات في GitHub Actions
check_github_actions() {
print_info "جاري التحقق من GitHub Actions..."
if [ -d ".github/workflows" ]; then
print_success "GitHub Actions موجود"
# عرض سير العمل الجديد
local new_workflows=$(git diff --name-only HEAD@{1}..HEAD .github/workflows/ 2>/dev/null | wc -l)
if [ "$new_workflows" -gt 0 ]; then
print_info "يوجد $new_workflows سير عمل جديد أو معدل"
fi
fi
}
# دالة إعادة تشغيل الخدمة
restart_service() {
print_info "جاري إعادة تشغيل الخدمة..."
# التحقق من systemd
if command -v systemctl &> /dev/null; then
if systemctl is-active --quiet autoguardian 2>/dev/null; then
print_info "إعادة تشغيل الخدمة عبر systemd..."
sudo systemctl restart autoguardian
print_success "تم إعادة تشغيل الخدمة"
return 0
fi
fi
# التحقق من Docker
if [ -f "docker-compose.yml" ]; then
print_info "إعادة تشغيل الحاويات..."
docker-compose restart auto-guardian
print_success "تم إعادة تشغيل الحاويات"
return 0
fi
# الطريقة اليدوية
print_info "جاري إيقاف النظام..."
pkill -f "python.*src.main" 2>/dev/null || true
print_info "جاري تشغيل النظام..."
nohup python3 -m src.main > logs/auto-guardian.log 2>&1 &
sleep 2
if pgrep -f "python.*src.main" > /dev/null; then
print_success "تم تشغيل النظام"
else
print_error "فشل في تشغيل النظام"
return 1
fi
}
# دالة عرض ملخص الترقية
show_upgrade_summary() {
local new_version=$1
echo ""
echo "=============================================="
echo " ملخص الترقية"
echo "=============================================="
echo ""
echo -e "${GREEN}✓${NC} تم إنشاء نسخة احتياطية من الإعدادات"
echo -e "${GREEN}✓${NC} تم تحديث التبعيات"
echo ""
if [ -n "$new_version" ]; then
echo -e "الإصدار الجديد: ${BOLD}$new_version${NC}"
fi
echo ""
echo "الخطوات التالية:"
echo "----------------"
echo "1. راجع ملف CHANGELOG.md لمعرفة التغييرات"
echo "2. راجع ملف requirements.txt للتعرف على التبعيات الجديدة"
echo "3. حدّث إعداداتك إذا لزم الأمر"
echo "4. شغل النظام: python3 -m src.main"
echo ""
echo "للإبلاغ عن المشاكل:"
echo "- GitHub Issues: https://github.com/AbdulElahOthmanGwaith/auto-guardian-system/issues"
echo "- البريد: support@autoguardian.local"
echo ""
}
# دالة عرض المساعدة
show_help() {
echo ""
echo "استخدام: $0 [الخيار] [الوسيطة]"
echo ""
echo "خيارات الترقية:"
echo ""
echo " git - الترقية من Git (الوضع الافتراضي)"
echo " zip <file> - الترقية من ملف ZIP"
echo " check - التحقق من التحديثات فقط"
echo " backup - إنشاء نسخة احتياطية فقط"
echo " deps - تحديث التبعيات فقط"
echo " restart - إعادة تشغيل الخدمة فقط"
echo " help - عرض هذه المساعدة"
echo ""
echo "أمثلة:"
echo " $0 git # الترقية من Git"
echo " $0 zip update.zip # الترقية من ZIP"
echo " $0 check # التحقق من التحديثات"
echo " $0 restart # إعادة تشغيل الخدمة"
echo ""
}
# ========================================
# البرنامج الرئيسي
# ========================================
print_header
# التحقق من الوسائط
case "${1:-git}" in
git)
echo "وضع الترقية: Git"
echo ""
# النسخ الاحتياطي للإعدادات
backup_config
# التحقق من المتطلبات
if ! check_requirements; then
if [ $? -eq 2 ]; then
print_warning "استمرار بدون Git"
else
print_error "فشل في التحقق من المتطلبات"
exit 1
fi
fi
# جلب التحديثات
if [ -d ".git" ]; then
git_pull
fi
# تحديث التبعيات
update_dependencies
# التحقق من الإعدادات الجديدة
check_new_config
# التحقق من GitHub Actions
check_github_actions
# عرض الملخص
local new_version=$(git describe --tags 2>/dev/null || echo "1.3.0")
show_upgrade_summary "$new_version"
;;
zip)
echo "وضع الترقية: ملف ZIP"
echo ""
# النسخ الاحتياطي للإعدادات
backup_config
# الترقية من ZIP
upgrade_from_zip "${2:-}"
# تحديث التبعيات
update_dependencies
# التحقق من الإعدادات الجديدة
check_new_config
show_upgrade_summary
;;
check)
echo "التحقق من التحديثات..."
echo ""
check_requirements || true
if [ -d ".git" ]; then
git fetch origin
local current_commit=$(git rev-parse HEAD)
local remote_commit=$(git rev-parse origin/main)
if [ "$current_commit" != "$remote_commit" ]; then
local commits_behind=$(git rev-list --count HEAD..origin/main)
print_info "يوجد تحديث متاح ($commits_behind commits behind)"
echo ""
git log --oneline HEAD..origin/main | head -10
else
print_success "المستودع محدث"
fi
fi
;;
backup)
echo "إنشاء نسخة احتياطية..."
echo ""
backup_config
;;
deps)
echo "تحديث التبعيات..."
echo ""
update_dependencies
;;
restart)
echo "إعادة تشغيل الخدمة..."
echo ""
restart_service
;;
help|--help|-h)
show_help
;;
*)
print_error "خيار غير معروف: $1"
show_help
exit 1
;;
esac
echo ""
print_success "اكتمل العمل بنجاح!"
echo ""
|