#!/usr/bin/env bash # 导入通用变量与函数 dir_shell=/ql/shell . $dir_shell/share.sh . $dir_shell/api.sh send_mark=$dir_shell/send_mark get_token ## 重置仓库remote url,docker专用,$1:要重置的目录,$2:要重置为的网址 reset_romote_url() { local dir_current=$(pwd) local dir_work=$1 local url=$2 if [ -d "$dir_work/.git" ]; then cd $dir_work git remote set-url origin $url >/dev/null git reset --hard >/dev/null cd $dir_current fi } ## 克隆脚本,$1:仓库地址,$2:仓库保存路径,$3:分支(可省略) git_clone_scripts() { local url=$1 local dir=$2 local branch=$3 [[ $branch ]] && local cmd="-b $branch " echo -e "开始克隆仓库 $url 到 $dir\n" git clone $cmd $url $dir exit_status=$? } ## 更新脚本,$1:仓库保存路径 git_pull_scripts() { local dir_current=$(pwd) local dir_work=$1 cd $dir_work echo -e "开始更新仓库:$dir_work\n" git fetch --all exit_status=$? git reset --hard git pull cd $dir_current } ## 检测cron的差异,$1:脚本清单文件路径,$2:cron任务清单文件路径,$3:增加任务清单文件路径,$4:删除任务清单文件路径 diff_cron() { local list_scripts="$1" local list_task="$2" local list_add="$3" local list_drop="$4" if [ -s $list_task ]; then grep -vwf $list_task $list_scripts >$list_add elif [ ! -s $list_task ] && [ -s $list_scripts ]; then cp -f $list_scripts $list_add fi if [ -s $list_scripts ]; then grep -vwf $list_scripts $list_task >$list_drop else cp -f $list_task $list_drop fi } ## 检测配置文件版本 detect_config_version() { ## 识别出两个文件的版本号 ver_config_sample=$(grep " Version: " $file_config_sample | perl -pe "s|.+v((\d+\.?){3})|\1|") [ -f $file_config_user ] && ver_config_user=$(grep " Version: " $file_config_user | perl -pe "s|.+v((\d+\.?){3})|\1|") ## 删除旧的发送记录文件 [ -f $send_mark ] && [[ $(cat $send_mark) != $ver_config_sample ]] && rm -f $send_mark ## 识别出更新日期和更新内容 update_date=$(grep " Date: " $file_config_sample | awk -F ": " '{print $2}') update_content=$(grep " Update Content: " $file_config_sample | awk -F ": " '{print $2}') ## 如果是今天,并且版本号不一致,则发送通知 if [ -f $file_config_user ] && [[ $ver_config_user != $ver_config_sample ]] && [[ $update_date == $(date "+%Y-%m-%d") ]]; then if [ ! -f $send_mark ]; then local notify_title="配置文件更新通知" local notify_content="更新日期: $update_date\n用户版本: $ver_config_user\n新的版本: $ver_config_sample\n更新内容: $update_content\n更新说明: 如需使用新功能请对照config.sample.sh,将相关新参数手动增加到你自己的config.sh中,否则请无视本消息。本消息只在该新版本配置文件更新当天发送一次。\n" echo -e $notify_content notify "$notify_title" "$notify_content" [[ $? -eq 0 ]] && echo $ver_config_sample >$send_mark fi else [ -f $send_mark ] && rm -f $send_mark fi } ## 输出是否有新的或失效的定时任务,$1:新的或失效的任务清单文件路径,$2:新/失效 output_list_add_drop() { local list=$1 local type=$2 if [ -s $list ]; then echo -e "检测到有$type的定时任务:\n" cat $list echo fi } ## 自动删除失效的脚本与定时任务,需要:1.AutoDelCron 设置为 true;2.正常更新js脚本,没有报错;3.存在失效任务 ## $1:失效任务清单文件路径 del_cron() { local list_drop=$1 local author=$2 local detail detail2 detail=$(cat $list_drop) echo -e "开始尝试自动删除失效的定时任务...\n" for cron in $detail; do local id=$(cat $list_crontab_user | grep -E "$cmd_task $cron$" | perl -pe "s|.*ID=(.*) $cmd_task $cron$|\1|") del_cron_api "$id" rm -f "$dir_scripts/${cron}" done exit_status=$? detail2=$(echo $detail | perl -pe "s| |\\\n|g") if [[ $exit_status -eq 0 ]]; then echo -e "成功删除失效的的定时任务...\n" notify "删除失效任务通知" "成功删除以下失效的定时任务:\n$detail2" else echo -e "删除定时任务出错,请手动删除...\n" notify "删除任务失败通知" "尝试自动删除以下定时任务出错,请手动删除:\n$detail2" fi } ## 自动增加定时任务,需要:1.AutoAddCron 设置为 true;2.正常更新js脚本,没有报错;3.存在新任务;4.crontab.list存在并且不为空 ## $1:新任务清单文件路径 add_cron() { local list_add=$1 local author=$2 echo -e "开始尝试自动添加定时任务...\n" local detail=$(cat $list_add) cd $dir_scripts for file in $detail; do local file_name=${file/${author}\_/} if [ -f $file ]; then cron_line=$( perl -ne "{ print if /.*([\d\*]*[\*-\/,\d]*[\d\*] ){4}[\d\*]*[\*-\/,\d]*[\d\*]( |,|\").*$file_name/ }" $file | perl -pe "{ s|[^\d\*]*(([\d\*]*[\*-\/,\d]*[\d\*] ){4}[\d\*]*[\*-\/,\d]*[\d\*])( \|,\|\").*/?$file_name.*|\1|g; s| | |g }" | sort -u | head -1 ) cron_name=$(grep "new Env" $file | awk -F "'|\"" '{print $2}' | head -1) [[ -z $cron_name ]] && cron_name="$file_name" [[ -z $cron_line ]] && cron_line="0 6 * * *" add_cron_api "$cron_line:$cmd_task $file:$cron_name" fi done exit_status=$? local detail2=$(echo $detail | perl -pe "s| |\\\n|g") if [[ $exit_status -eq 0 ]]; then echo -e "成功添加新的定时任务...\n" notify "新增任务通知" "成功添加新的定时任务:\n$detail2" else echo -e "添加新的定时任务出错,请手动添加...\n" notify "新任务添加失败通知" "尝试自动添加以下新的定时任务出错,请手动添加:\n$detail2" fi } ## 更新仓库 update_repo() { echo -e "--------------------------------------------------------------\n" local url="$1" local path="$2" local blackword="$3" local urlTmp="${url%*/}" local repoTmp="${urlTmp##*/}" local repo="${repoTmp%.*}" local tmp="${url%/*}" local authorTmp1="${tmp##*/}" local authorTmp2="${authorTmp1##*:}" local author="${authorTmp2##*.}" local repo_path="${author}_${repo}" if [ -d ${repo_path}/.git ]; then reset_romote_url ${repo_path} ${url} git_pull_scripts ${repo_path} else git_clone_scripts ${url} ${repo_path} fi if [[ $exit_status -eq 0 ]]; then echo -e "\n更新${repo_path}成功...\n" else echo -e "\n更新${repo_path}失败,请检查原因...\n" fi diff_scripts $repo_path $author $path $blackword } ## 更新所有 raw 文件 update_raw() { echo -e "--------------------------------------------------------------\n" local raw_url="$1" raw_file_name=$(echo ${raw_url} | awk -F "/" '{print $NF}') echo -e "开始下载:${raw_url} \n\n保存路径:$dir_raw/${raw_file_name}\n" wget -q --no-check-certificate -O "$dir_raw/${raw_file_name}.new" ${raw_url} if [[ $? -eq 0 ]]; then mv "$dir_raw/${raw_file_name}.new" "$dir_raw/${raw_file_name}" echo -e "下载 ${raw_file_name} 成功...\n" cd $dir_raw local filename="raw_${raw_file_name}" local cron_id=$(cat $list_crontab_user | grep -E "$cmd_task $filename$" | perl -pe "s|.*ID=(.*) $cmd_task $filename$|\1|") cp -f $raw_file_name $dir_scripts/${filename} cron_line=$( perl -ne "{ print if /.*([\d\*]*[\*-\/,\d]*[\d\*] ){4}[\d\*]*[\*-\/,\d]*[\d\*]( |,|\").*$raw_file_name/ }" $raw_file_name | perl -pe "{ s|[^\d\*]*(([\d\*]*[\*-\/,\d]*[\d\*] ){4}[\d\*]*[\*-\/,\d]*[\d\*])( \|,\|\").*/?$raw_file_name.*|\1|g; s| | |g }" | sort -u | head -1 ) cron_name=$(grep "new Env" $raw_file_name | awk -F "'|\"" '{print $2}' | head -1) [[ -z $cron_name ]] && cron_name="$raw_file_name" [[ -z $cron_line ]] && cron_line="0 6 * * *" if [[ -z $cron_id ]]; then add_cron_api "$cron_line:$cmd_task $filename:$cron_name" else # update_cron_api "$cron_line:$cmd_task $filename:$cron_name:$cron_id" fi else echo -e "下载 ${raw_file_name} 失败,保留之前正常下载的版本...\n" [ -f "$dir_raw/${raw_file_name}.new" ] && rm -f "$dir_raw/${raw_file_name}.new" fi } ## 调用用户自定义的extra.sh run_extra_shell() { if [[ ${EnableExtraShell} == true ]]; then if [ -f $file_extra_shell ]; then echo -e "--------------------------------------------------------------\n" . $file_extra_shell else echo -e "$file_extra_shell文件不存在,跳过执行...\n" fi fi } ## 脚本用法 usage() { echo -e "本脚本用法:" echo -e "1. $cmd_update update # 更新青龙,并且运行extra.sh" echo -e "2. $cmd_update rebuild # 重新编译青龙,不会运行extra.sh" echo -e "3. $cmd_update raw # 更新单个文件脚本" echo -e "4. $cmd_update repo # 更新仓库的脚本" echo -e "5. $cmd_update rmlog # 删除旧日志" echo -e "6. $cmd_update code # 获取互助码" } ## 更新qinglong update_qinglong() { echo -e "--------------------------------------------------------------\n" git_pull_scripts $dir_root if [[ $exit_status -eq 0 ]]; then echo -e "\n更新$dir_root成功...\n" cp -f $file_config_sample $dir_config/config.sample.sh detect_config_version update_depend else echo -e "\n更新$dir_root失败,请检查原因...\n" fi } ## 重新编译qinglong rebuild_qinglong() { echo -e "--------------------------------------------------------------\n" update_qinglong if [[ $exit_status -eq 0 ]]; then echo -e "重新编译青龙...\n" yarn install --network-timeout 1000000000 || yarn install --registry=https://registry.npm.taobao.org --network-timeout 1000000000 yarn build yarn build-back yarn cache clean echo -e "重新编译青龙完成...\n" echo -e "重启青龙...\n" pm2 restart panel 2>/dev/null || pm2 start $dir_root/build/app.js -n panel nginx -s reload echo -e "重启青龙完成...\n" fi } ## 对比脚本 diff_scripts() { gen_list_repo $1 $2 $3 $4 diff_cron $list_own_scripts $list_own_user $list_own_add $list_own_drop if [ -s $list_own_drop ]; then output_list_add_drop $list_own_drop "失效" if [[ ${AutoDelCron} == true ]]; then del_cron $list_own_drop $2 fi fi if [ -s $list_own_add ]; then output_list_add_drop $list_own_add "新" if [[ ${AutoAddCron} == true ]]; then add_cron $list_own_add $2 fi fi } ## 生成脚本的路径清单文件 gen_list_repo() { local dir_current=$(pwd) local repo_path="$1" local author="$2" local path="$3" local blackword="$4" rm -f $dir_list_tmp/own*.list >/dev/null 2>&1 cd ${repo_path} files=$(find . -name "*.js") if [ $path ]; then files=$(find . -name "*.js" | egrep $path) fi if [ $blackword ]; then files=$(find . -name "*.js" | egrep -v $blackword | egrep $path) fi for file in ${files}; do filename=$(basename $file) cp -f $file $dir_scripts/${author}_${filename} echo ${author}_${filename} >>$list_own_scripts done grep -E "$cmd_task $author" $list_crontab_user | perl -pe "s|.*ID=(.*) $cmd_task ($author_.*)\.*|\2|" | sort -u >$list_own_user cd $dir_current } main() { local p1=$1 local p2=$2 local p3=$3 local p4=$4 log_time=$(date "+%Y-%m-%d-%H-%M-%S") log_path="$dir_log/update/${log_time}_$p1.log" make_dir "$dir_log/update" case $p1 in update) update_qinglong | tee $log_path run_extra_shell | tee -a $log_path ;; rebuild) rebuild_qinglong | tee $log_path ;; repo) update_repo "$p2" "$p3" "$p4" | tee $log_path ;; raw) update_raw "$p2" | tee $log_path ;; rmlog) source $dir_shell/rmlog.sh "$p2" | tee $log_path ;; code) source $dir_shell/code.sh ;; *) echo -e "命令输入错误...\n" usage ;; esac } main "$@" exit 0