feat: remove frigg-client.log

This commit is contained in:
Dict Xiong 2025-04-22 17:12:26 +08:00
parent 86088ecfb1
commit 70090242be
5 changed files with 4 additions and 34 deletions

View File

@ -39,8 +39,7 @@ case $DFS_UPDATE_CHANNEL in
esac esac
if [[ ${#DFS_COMMIT} != 40 ]]; then if [[ ${#DFS_COMMIT} != 40 ]]; then
fmt_error "invalid commit id" fmt_error "invalid commit id"
apost_beacon "dfs.invalid-commit" apost_beacon "dfs.invalid-commit" "invalid commit id: ${DFS_COMMIT}"
apost_log "ERROR" "$THIS_FILE" "invalid commit id: ${DFS_COMMIT}"
exit exit
fi fi

View File

@ -187,7 +187,6 @@ dfs()
"$DOTFILES/install.sh" -i "$DOTFILES/install.sh" -i
echo 'Done. Please open a new shell to see the changes.' echo 'Done. Please open a new shell to see the changes.'
;; ;;
log ) "$DOTFILES/tools/common.sh" "post_log" "INFO" "dfs" "$2" ;;
beacon ) "$DOTFILES/tools/common.sh" "post_beacon" "$2" "$3" ;; beacon ) "$DOTFILES/tools/common.sh" "post_beacon" "$2" "$3" ;;
* ) echo "unknown command \"$1\". available: update, force-update, version, reset, cd, log" ;; * ) echo "unknown command \"$1\". available: update, force-update, version, reset, cd, log" ;;
esac esac

View File

@ -162,19 +162,6 @@ ask_for_Yn()
fi fi
} }
post_log()
{
if [[ $# != 3 || -z "$1" || -z "$2" || -z "$3" ]]; then
fmt_fatal "usage: post_log <level> <section> <content>"
fi
"${DOTFILES}/tools/frigg-client.sh" "log" "[$1][$2] $3"
}
apost_log()
{
post_log "$@" 1>/dev/null &
}
post_beacon() post_beacon()
{ {
if [[ $# < 1 || -z "$1" ]]; then if [[ $# < 1 || -z "$1" ]]; then

View File

@ -63,8 +63,8 @@ handle_resp()
post_beacon() post_beacon()
{ {
local beacon_type=$1 local beacon_type="$1"
local meta=$2 local meta="$2"
if [[ -n "$CI" && "$beacon_type" != "gh.ci" && "$beacon_type" != "dfs.invalid-commit" && "$beacon_type" != "dfs.dirty" ]]; then if [[ -n "$CI" && "$beacon_type" != "gh.ci" && "$beacon_type" != "dfs.invalid-commit" && "$beacon_type" != "dfs.dirty" ]]; then
return return
fi fi
@ -75,17 +75,6 @@ post_beacon()
handle_resp "$resp" handle_resp "$resp"
} }
post_log()
{
local log_content=$1
if [[ -z "$log_content" ]]; then
fmt_fatal "log content is required"
fi
init_uuid
resp=$(curl $DFS_CURL_OPTIONS -sSL -X POST -H "Content-Type: text/plain" -d "$log_content" "https://api.beardic.cn/post-log?hostname=$hostname&uuid=$uuid")
handle_resp "$resp"
}
update_dns() update_dns()
{ {
if [[ -z "$DFS_DDNS_IP4$DFS_DDNS_IP6" ]]; then if [[ -z "$DFS_DDNS_IP4$DFS_DDNS_IP6" ]]; then
@ -138,7 +127,7 @@ update_dns()
print_help() print_help()
{ {
fmt_info "usage: $0 <beacon|log|ddns> [beacon_type|log_content]" fmt_info "usage: $0 <beacon|ddns> [beacon_type] [beacon_meta]"
} }
router() router()
@ -150,9 +139,6 @@ router()
beacon) beacon)
post_beacon "$2" "$3" post_beacon "$2" "$3"
;; ;;
log)
post_log "$2"
;;
ddns) ddns)
update_dns update_dns
;; ;;

View File

@ -27,7 +27,6 @@ fi
# check scripts and functions # check scripts and functions
dfs version dfs version
dfs log 1
dfs beacon gh.ci $GITHUB_SHA dfs beacon gh.ci $GITHUB_SHA
z ~ z ~
test ~ -ef "$(pwd)" test ~ -ef "$(pwd)"