|
|
|
@@ -25,8 +25,6 @@ err() { printf '(error) %s\n' "$*" >&2; }
|
|
|
|
|
|
|
|
|
|
curl() { command curl -sL "$@"; }
|
|
|
|
|
|
|
|
|
|
secret() { shift; secret=( "$@" ); }
|
|
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
|
_cat <<- EOF
|
|
|
|
|
Usage: ufw [-RsF] [-D num] [file/url]
|
|
|
|
@@ -45,6 +43,7 @@ usage() {
|
|
|
|
|
-t|--tags "<tag1[, tag2,..]>" # Add tags to the file.
|
|
|
|
|
-q|--quiet # Be quiet.
|
|
|
|
|
-v|--void # Don't add the file to my files.
|
|
|
|
|
-c|--clipboard # Throw the result into the clipboard
|
|
|
|
|
|
|
|
|
|
Config options (~/.config/ufw):
|
|
|
|
|
secret # Your personal token. Get it at https://zfh.so/settings_form
|
|
|
|
@@ -85,7 +84,10 @@ get_max_filesize() {
|
|
|
|
|
get_album_id() {
|
|
|
|
|
declare api_response api_status api_status_message
|
|
|
|
|
|
|
|
|
|
api_response=$( curl -f "$cfg_service_url/albumctl.json?m=new&name=$1&secret=$secret" )
|
|
|
|
|
api_response=$( curl --get \
|
|
|
|
|
--data-urlencode "name=$1" \
|
|
|
|
|
--data-urlencode "secret=$secret" \
|
|
|
|
|
"$cfg_service_url/albumctl.json?m=new" )
|
|
|
|
|
|
|
|
|
|
get_api_status <<< "$api_response"
|
|
|
|
|
|
|
|
|
@@ -142,7 +144,7 @@ upload() {
|
|
|
|
|
|
|
|
|
|
api_response=$( curl \
|
|
|
|
|
-F file="@$file" \
|
|
|
|
|
-F api_format='json' \
|
|
|
|
|
-F format='json' \
|
|
|
|
|
-F flag_private="$flag_private" \
|
|
|
|
|
-F secret="$secret" \
|
|
|
|
|
-F tags="$tags" \
|
|
|
|
@@ -172,6 +174,8 @@ upload() {
|
|
|
|
|
(( flag_directlink )) || file_link="${file_link#*.}"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(( flag_clipboard )) && xclip "${xclip_args[@]}" <<< "$file_link"
|
|
|
|
|
|
|
|
|
|
printf '%s\n' "$file_link"
|
|
|
|
|
|
|
|
|
|
if (( flag_rm )); then
|
|
|
|
@@ -187,7 +191,10 @@ upload() {
|
|
|
|
|
get_shortlink() {
|
|
|
|
|
declare url=$1 api_response api_status api_status_message
|
|
|
|
|
|
|
|
|
|
api_response=$( curl "$cfg_service_url/shrink.json?url=${url}&secret=$secret" )
|
|
|
|
|
api_response=$( curl --data-urlencode "url=$url" \
|
|
|
|
|
--data-urlencode "secret=$secret" \
|
|
|
|
|
"$cfg_service_url/shrink.json" )
|
|
|
|
|
|
|
|
|
|
get_api_status <<< "$api_response"
|
|
|
|
|
|
|
|
|
|
if (( api_status == 200 )); then
|
|
|
|
@@ -195,6 +202,7 @@ get_shortlink() {
|
|
|
|
|
jq -r '.data.short_url' <<< "$api_response"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
(( flag_clipboard )) && xclip "${xclip_args[@]}" <<< "$short_url"
|
|
|
|
|
printf '%s\n' "$short_url"
|
|
|
|
|
else
|
|
|
|
|
printf 'Error: %s %s\n' "$api_status" "$api_status_message"
|
|
|
|
@@ -235,6 +243,7 @@ get_my_ip() {
|
|
|
|
|
|
|
|
|
|
if (( api_status == 200 )); then
|
|
|
|
|
my_ip=$( jq -r '.data.ip' <<< "$api_response" )
|
|
|
|
|
(( flag_clipboard )) && xclip "${xclip_args[@]}" <<< "$my_ip"
|
|
|
|
|
printf '%s\n' "$my_ip"
|
|
|
|
|
else
|
|
|
|
|
printf 'Error: %s %s\n' "$api_status" "$api_status_message"
|
|
|
|
@@ -292,7 +301,7 @@ set_argv() {
|
|
|
|
|
unset -v arg opt c
|
|
|
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
|
(--) argv+=( "$1" ); break;;
|
|
|
|
|
(--) argv+=( "$1" ); shift; break;;
|
|
|
|
|
|
|
|
|
|
(--*)
|
|
|
|
|
IFS='=' read arg opt <<< "$1"
|
|
|
|
@@ -317,6 +326,10 @@ set_argv() {
|
|
|
|
|
esac
|
|
|
|
|
shift
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
if (( $# )); then
|
|
|
|
|
argv+=( "$@" )
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main() {
|
|
|
|
@@ -344,7 +357,7 @@ main() {
|
|
|
|
|
if [[ -f "$cfg_file" ]]; then
|
|
|
|
|
if ! source "$cfg_file"; then
|
|
|
|
|
printf 'Failed to source configuration file: %s\n' "$cfg_file"
|
|
|
|
|
return $?
|
|
|
|
|
return 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
@@ -355,6 +368,8 @@ main() {
|
|
|
|
|
: ${cfg_max_filesize:='200M'}
|
|
|
|
|
: ${flag_shortlink:=0}
|
|
|
|
|
: ${flag_directlink:=1}
|
|
|
|
|
: ${flag_clipboard:=0}
|
|
|
|
|
: ${xclip_selector:='clipboard'}
|
|
|
|
|
|
|
|
|
|
while [[ "$1" ]]; do
|
|
|
|
|
case "$1" in
|
|
|
|
@@ -377,6 +392,10 @@ main() {
|
|
|
|
|
(-q|--quiet) flag_quiet=1;;
|
|
|
|
|
(-v|--void) flag_void=1;;
|
|
|
|
|
|
|
|
|
|
# Clipboard
|
|
|
|
|
(-c|--clipboard) flag_clipboard=1;;
|
|
|
|
|
(-C|--xclip-selector) xclip_selector=$2; shift;;
|
|
|
|
|
|
|
|
|
|
(--notify) flag_notify=1;;
|
|
|
|
|
(--no-notify|-n) flag_notify=0;;
|
|
|
|
|
|
|
|
|
@@ -398,11 +417,19 @@ main() {
|
|
|
|
|
return 1
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*) break;;
|
|
|
|
|
*) args+=( "$1" );;
|
|
|
|
|
esac
|
|
|
|
|
shift
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
xclip_args+=( -selection "$xclip_selector" )
|
|
|
|
|
|
|
|
|
|
# Catch the args after --
|
|
|
|
|
if (( $# )); then
|
|
|
|
|
args+=( "$@" )
|
|
|
|
|
shift
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
TEMPDIR="$cfg_tmp_dir"
|
|
|
|
|
|
|
|
|
|
for i in "$cfg_tmp_dir"; do
|
|
|
|
@@ -412,21 +439,18 @@ main() {
|
|
|
|
|
case "${action:-upload}" in
|
|
|
|
|
upload)
|
|
|
|
|
get_token || return $?
|
|
|
|
|
(( ${#args[@]} )) || return 1
|
|
|
|
|
|
|
|
|
|
if (( $# )); then
|
|
|
|
|
for t in "$@"; do
|
|
|
|
|
for t in "${args[@]}"; do
|
|
|
|
|
upload "$t"
|
|
|
|
|
done
|
|
|
|
|
else
|
|
|
|
|
upload
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
url)
|
|
|
|
|
get_token || return $?
|
|
|
|
|
|
|
|
|
|
for t in "$@"; do
|
|
|
|
|
get_shortlink "$1"
|
|
|
|
|
for t in "${args[@]}"; do
|
|
|
|
|
get_shortlink "$t"
|
|
|
|
|
done
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|