Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
3f094a2b47 | |||
cd5f695936 | |||
8aea6446bb | |||
fb38496fe9 | |||
df4e1d0370 | |||
b63ae67204 | |||
f103e564dc | |||
176b80fcf6 |
@@ -18,6 +18,8 @@ Call ufw -h for help.
|
||||
|
||||
Dependencies: curl, jq
|
||||
|
||||
The config goes into `$XDG_CONFIG_DIR/ufw`.
|
||||
|
||||
ufwd
|
||||
----
|
||||
|
||||
|
@@ -1,5 +1,11 @@
|
||||
# Put your actual secret here, this is just a random string
|
||||
secret = 'rooxoosh7Aese7phiPh3Choh3uthiTha'
|
||||
secret='rooxoosh7Aese7phiPh3Choh3uthiTha'
|
||||
|
||||
# Override the default common curl behaviour:
|
||||
#curl() { command curl -sL "$@"; }
|
||||
|
||||
#cfg_tmp_dir="$XDG_RUNTIME_DIR/ufw"
|
||||
#cfg_service_url='https://8fw.me'
|
||||
#cfg_max_filesize='200M' # Local limit, doesn't affect the server one :)
|
||||
#flag_shortlink=0 # Display short links
|
||||
#flag_directlink=1 # Display direct file links
|
||||
|
48
ufw
48
ufw
@@ -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
|
||||
@@ -142,7 +141,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 +171,8 @@ upload() {
|
||||
(( flag_directlink )) || file_link="${file_link#*.}"
|
||||
}
|
||||
|
||||
(( flag_clipboard )) && xclip "${xclip_args[@]}" <<< "$file_link"
|
||||
|
||||
printf '%s\n' "$file_link"
|
||||
|
||||
if (( flag_rm )); then
|
||||
@@ -194,7 +195,8 @@ get_shortlink() {
|
||||
read -r short_url real_url < <(
|
||||
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 +237,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 +295,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 +320,10 @@ set_argv() {
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if (( $# )); then
|
||||
argv+=( "$@" )
|
||||
fi
|
||||
}
|
||||
|
||||
main() {
|
||||
@@ -344,7 +351,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 +362,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 +386,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 +411,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,20 +433,17 @@ main() {
|
||||
case "${action:-upload}" in
|
||||
upload)
|
||||
get_token || return $?
|
||||
(( ${#args[@]} )) || return 1
|
||||
|
||||
if (( $# )); then
|
||||
for t in "$@"; do
|
||||
upload "$t"
|
||||
done
|
||||
else
|
||||
upload
|
||||
fi
|
||||
for t in "${args[@]}"; do
|
||||
upload "$t"
|
||||
done
|
||||
;;
|
||||
|
||||
url)
|
||||
get_token || return $?
|
||||
|
||||
for t in "$@"; do
|
||||
for t in "${args[@]}"; do
|
||||
get_shortlink "$1"
|
||||
done
|
||||
;;
|
||||
|
Reference in New Issue
Block a user