Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
47fe62a7c8 | |||
639a97f43e | |||
784ad95215 | |||
58e1b63fb7 | |||
65fdd688bf | |||
488fdc0a5a | |||
14af6b720f | |||
c22e34afb2 | |||
d7f1104f82 |
14
ufw
14
ufw
@@ -388,8 +388,18 @@ main() {
|
||||
done
|
||||
|
||||
case "${action:-upload}" in
|
||||
upload) upload "$1";;
|
||||
url) get_shortlink "$1";;
|
||||
upload)
|
||||
for t in "$@"; do
|
||||
upload "$t"
|
||||
done
|
||||
;;
|
||||
|
||||
url)
|
||||
for t in "$@"; do
|
||||
get_shortlink "$1"
|
||||
done
|
||||
;;
|
||||
|
||||
getmyip) get_my_ip;;
|
||||
login) login;;
|
||||
esac
|
||||
|
91
ufwd
91
ufwd
@@ -6,10 +6,6 @@ if ! [[ "$XDG_RUNTIME_DIR" ]]; then
|
||||
XDG_RUNTIME_DIR="/run/user/$UID"
|
||||
fi
|
||||
|
||||
# Defaults
|
||||
cfg_workdir="$XDG_RUNTIME_DIR/ufwd"
|
||||
cfg_scan_delay='30'
|
||||
|
||||
msg() { printf '%s\n' "$*"; }
|
||||
err() { echo "$*" >&2; }
|
||||
|
||||
@@ -18,51 +14,12 @@ usage() {
|
||||
printf ' -h # Show this message.\n'
|
||||
printf ' -n # Enable notifications with notify-send. Must be installed.\n'
|
||||
printf ' -d [path] # Set the dir that is to be watched.\n'
|
||||
printf ' -D [sec] # Set the check interval.\n'
|
||||
}
|
||||
|
||||
main() {
|
||||
while (( $# )); do
|
||||
case "$1" in
|
||||
(--help|-h) usage; return 0;;
|
||||
upload() {
|
||||
declare file=$1; shift
|
||||
|
||||
(--workdir|-d) cfg_workdir="$2"; shift;;
|
||||
(--scan-delay|-D) cfg_scan_delay="$2"; shift;;
|
||||
|
||||
(--notify|-n) flag_enable_notifications=1;;
|
||||
|
||||
(--) shift; break;;
|
||||
(-*)
|
||||
err "Unknown key: $1"
|
||||
usage
|
||||
return 1
|
||||
;;
|
||||
|
||||
(*) break;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if (( flag_enable_notifications )); then
|
||||
if type -P notify-send &>/dev/null; then
|
||||
msg "Found notify-send."
|
||||
else
|
||||
err "notify-send not found in PATH, disabling notifications."
|
||||
flag_enable_notifications=0
|
||||
fi
|
||||
fi
|
||||
|
||||
mkdir -p "$cfg_workdir" || {
|
||||
return 1
|
||||
}
|
||||
|
||||
cd "$cfg_workdir" || {
|
||||
return 1
|
||||
}
|
||||
|
||||
while sleep "$cfg_scan_delay"; do
|
||||
for i in *; do
|
||||
upload_output=$( ufw "$@" -R "$i" )
|
||||
upload_output=$( ufw -R "$@" "$file" )
|
||||
upload_return=$?
|
||||
|
||||
if (( flag_enable_notifications )); then
|
||||
@@ -73,9 +30,51 @@ main() {
|
||||
fi
|
||||
fi
|
||||
|
||||
if (( flag_enable_clipboard )); then
|
||||
read -r fl <<< "$upload_output"
|
||||
xclip <<< "$fl"
|
||||
fi
|
||||
|
||||
printf '%s\n' "$upload_output"
|
||||
}
|
||||
|
||||
main() {
|
||||
while (( $# )); do
|
||||
case "$1" in
|
||||
(--help|-h) usage; return 0;;
|
||||
(--notify|-n) flag_enable_notifications=1;;
|
||||
(--clipboard|-c) flag_enable_clipboard=1;;
|
||||
|
||||
(--workdir|-d) cfg_workdir+=( "$2" ); shift;;
|
||||
|
||||
(--) shift; break;;
|
||||
(-*) err "Unknown key: $1"; usage; return 1;;
|
||||
(*) break;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
[[ $cfg_workdir ]] || cfg_workdir="$XDG_RUNTIME_DIR/ufwd"
|
||||
|
||||
if (( flag_enable_notifications )); then
|
||||
if type -P notify-send &>/dev/null; then
|
||||
msg "Found notify-send."
|
||||
else
|
||||
err "notify-send not found in PATH, disabling notifications."
|
||||
flag_enable_notifications=0
|
||||
fi
|
||||
fi
|
||||
|
||||
for p in "${cfg_workdir[@]}"; do
|
||||
[[ -d "$p" ]] || return 1
|
||||
done
|
||||
|
||||
printf 'Working in:\n'
|
||||
printf ' - %s\n' "${cfg_workdir[@]}"
|
||||
|
||||
while read -r d e f; do
|
||||
upload "$d$f" "$@" &
|
||||
done < <( inotifywait -m -e close_write "${cfg_workdir[@]}" )
|
||||
}
|
||||
|
||||
main "$@"
|
||||
|
Reference in New Issue
Block a user