songtianlun
b3e176fce9
- Refactor the way the email summary is constructed - Ensure that the summary is set correctly based on the presence of stats - Update the log message to reflect the changes in summary content This change improves the clarity of the email notifications by ensuring that the summary is generated correctly based on the availability of synchronization statistics. It also enhances the readability of the logs by updating the labels for the log sections.
127 lines
3.0 KiB
Bash
127 lines
3.0 KiB
Bash
#!/bin/bash
|
|
|
|
# 获取脚本所在目录的绝对路径
|
|
SCRIPT_DIR=$(readlink -f $(dirname $0))
|
|
|
|
# 加载配置
|
|
source "$SCRIPT_DIR/config.sh"
|
|
|
|
# 颜色定义
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m'
|
|
|
|
# 初始化日志
|
|
init_logging() {
|
|
mkdir -p "$LOG_DIR"
|
|
exec 1> >(tee -a "$LOG_FILE")
|
|
exec 2> >(tee -a "$LOG_FILE" >&2)
|
|
}
|
|
|
|
# 日志函数
|
|
log() {
|
|
local message="$1"
|
|
local timestamp=$(date '+%Y-%m-%d %H:%M:%S')
|
|
echo -e "$timestamp $message"
|
|
}
|
|
|
|
# 检查必要的命令
|
|
check_requirements() {
|
|
command -v git >/dev/null 2>&1 || error_exit "需要安装 git"
|
|
command -v curl >/dev/null 2>&1 || error_exit "需要安装 curl"
|
|
command -v jq >/dev/null 2>&1 || error_exit "需要安装 jq"
|
|
}
|
|
|
|
# 主函数
|
|
main() {
|
|
init_logging
|
|
check_requirements
|
|
|
|
log "开始同步处理..."
|
|
|
|
# 调用 mirror.sh 进行同步
|
|
bash "$SCRIPT_DIR/mirror.sh" \
|
|
"$GITHUB_USER" \
|
|
"$GITHUB_TOKEN" \
|
|
"$GITEA_URL" \
|
|
"$GITEA_USER" \
|
|
"$GITEA_TOKEN" \
|
|
"$WORK_DIR" \
|
|
"$SKIP_REPOS" \
|
|
"$STATS_FILE"
|
|
|
|
mirror_exit_code=$?
|
|
|
|
# 准备邮件内容
|
|
notice_subject="GitHub 同步$([ $mirror_exit_code -eq 0 ] && echo "成功" || echo "失败") - $(date '+%Y-%m-%d')"
|
|
summary=""
|
|
|
|
if [ -f "$STATS_FILE" ]; then
|
|
stats=$(cat "$STATS_FILE")
|
|
summary="GitHub to Gitea 同步报告
|
|
|
|
开始时间: $(echo "$stats" | jq -r '.start_time')
|
|
结束时间: $(echo "$stats" | jq -r '.end_time')
|
|
同步状态: $([ $mirror_exit_code -eq 0 ] && echo "成功" || echo "失败")
|
|
|
|
统计信息:
|
|
- 总仓库数: $(echo "$stats" | jq -r '.total_repos')
|
|
- 处理数量: $(echo "$stats" | jq -r '.processed')
|
|
- 成功数量: $(echo "$stats" | jq -r '.success')
|
|
- 失败数量: $(echo "$stats" | jq -r '.failed')
|
|
- 跳过数量: $(echo "$stats" | jq -r '.skipped')
|
|
|
|
跳过的仓库:
|
|
$(echo "$stats" | jq -r '.details.skipped_repos[]' | sed 's/^/- /')
|
|
|
|
失败的仓库:
|
|
$(echo "$stats" | jq -r '.details.failed_repos[]' | sed 's/^/- /')
|
|
|
|
成功的仓库:
|
|
$(echo "$stats" | jq -r '.details.success_repos[]' | sed 's/^/- /')
|
|
"
|
|
|
|
else
|
|
summary="无法获取同步统计信息"
|
|
fi
|
|
|
|
notice_content="$summary
|
|
|
|
详细日志 (最后 50 行):
|
|
$(tail -n 50 "$LOG_FILE")
|
|
|
|
全部日志:
|
|
$(cat "$LOG_FILE")
|
|
"
|
|
|
|
# 如果启用了邮件通知,调用 mail.sh
|
|
if [ "$ENABLE_MAIL" = "true" ]; then
|
|
bash "$SCRIPT_DIR/mail.sh" \
|
|
"$SMTP_SERVER" \
|
|
"$SMTP_PORT" \
|
|
"$SMTP_USER" \
|
|
"$SMTP_PASS" \
|
|
"$MAIL_TO" \
|
|
"$MAIL_FROM" \
|
|
"$notice_subject" \
|
|
"$notice_content"
|
|
fi
|
|
|
|
# 如果启用了飞书通知,调用 feishu_notify.sh
|
|
if [ "$ENABLE_FEISHU" = "true" ]; then
|
|
bash "$SCRIPT_DIR/feishu_notify.sh" \
|
|
"$FEISHU_WEBHOOK_URL" \
|
|
"$notice_subject" \
|
|
"$notice_content"
|
|
fi
|
|
|
|
|
|
# 清理工作目录
|
|
[ -d "$WORK_DIR" ] && rm -rf "$WORK_DIR"
|
|
|
|
exit $mirror_exit_code
|
|
}
|
|
|
|
main "$@"
|