fix shfmt issues

This commit is contained in:
ciro 2021-07-15 22:55:35 -03:00
parent 98ef51514f
commit c7ca9d7e36
1 changed files with 28 additions and 28 deletions

View File

@ -6,37 +6,37 @@
PUSHBULLET_URI="https://api.pushbullet.com/v2/pushes" PUSHBULLET_URI="https://api.pushbullet.com/v2/pushes"
pushbullet_send() { pushbullet_send() {
_subject="$1" _subject="$1"
_content="$2" _content="$2"
_statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped _statusCode="$3" #0: success, 1: error 2($RENEW_SKIP): skipped
_debug "_statusCode" "$_statusCode" _debug "_statusCode" "$_statusCode"
PUSHBULLET_TOKEN="${PUSHBULLET_TOKEN:-$(_readaccountconf_mutable PUSHBULLET_TOKEN)}" PUSHBULLET_TOKEN="${PUSHBULLET_TOKEN:-$(_readaccountconf_mutable PUSHBULLET_TOKEN)}"
if [ -z "$PUSHBULLET_TOKEN" ]; then if [ -z "$PUSHBULLET_TOKEN" ]; then
PUSHBULLET_TOKEN="" PUSHBULLET_TOKEN=""
_err "You didn't specify a Pushbullet application token yet." _err "You didn't specify a Pushbullet application token yet."
return 1 return 1
fi fi
_saveaccountconf_mutable PUSHBULLET_TOKEN "$PUSHBULLET_TOKEN"
PUSHBULLET_DEVICE="${PUSHBULLET_DEVICE:-$(_readaccountconf_mutable PUSHBULLET_DEVICE)}"
if [ -z "$PUSHBULLET_DEVICE" ]; then
_saveaccountconf_mutable PUSHBULLET_TOKEN "$PUSHBULLET_TOKEN" _saveaccountconf_mutable PUSHBULLET_TOKEN "$PUSHBULLET_TOKEN"
fi
PUSHBULLET_DEVICE="${PUSHBULLET_DEVICE:-$(_readaccountconf_mutable PUSHBULLET_DEVICE)}" export _H1="Content-Type: application/json"
if [ -z "$PUSHBULLET_DEVICE" ]; then export _H2="Access-Token: ${PUSHBULLET_TOKEN}"
_saveaccountconf_mutable PUSHBULLET_TOKEN "$PUSHBULLET_TOKEN" _content="$(printf "*%s*\n" "$_content" | _json_encode)"
fi _subject="$(printf "*%s*\n" "$_subject" | _json_encode)"
_data="{\"type\": \"note\",\"title\": \"${_subject}\",\"body\": \"${_content}\",\"device_iden\": \"${PUSHBULLET_DEVICE}\"}"
response="$(_post "$_data" "$PUSHBULLET_URI")"
export _H1="Content-Type: application/json" if [ "$?" != "0" ] || _contains "$response" "\"error_code\""; then
export _H2="Access-Token: ${PUSHBULLET_TOKEN}" _err "PUSHBULLET send error."
_content="$(printf "*%s*\n" "$_content" | _json_encode)" _err "$response"
_subject="$(printf "*%s*\n" "$_subject" | _json_encode)" return 1
_data="{\"type\": \"note\",\"title\": \"${_subject}\",\"body\": \"${_content}\",\"device_iden\": \"${PUSHBULLET_DEVICE}\"}" fi
response="$(_post "$_data" "$PUSHBULLET_URI")"
if [ "$?" != "0" ] || _contains "$response" "\"error_code\""; then _info "PUSHBULLET send success."
_err "PUSHBULLET send error." return 0
_err "$response"
return 1
fi
_info "PUSHBULLET send success."
return 0
} }