mirror of
https://github.com/jarun/nnn.git
synced 2024-11-09 21:03:12 +00:00
plugins/upload: remove inactive services
this removes ix.io and ffsend since they are no longer active. binary files are uploaded to file.io as before. selections are now tar-balled and uploaded to file.io. text files are uploaded to 0x0.st Closes: https://github.com/jarun/nnn/pull/1900
This commit is contained in:
parent
86d883eee4
commit
27e032fc96
|
@ -1,12 +1,11 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
# Description: Selections are uploaded using Firefox Send
|
# Description: Selections are archived into a tar file (uncompressed) and uploaded to file.io
|
||||||
# For single files:
|
# For single files:
|
||||||
# Upload to Firefox Send if ffsend is found, else
|
# Paste contents of a text file to http://ix.io
|
||||||
# Paste contents of a text a file http://ix.io
|
|
||||||
# Upload a binary file to file.io
|
# Upload a binary file to file.io
|
||||||
#
|
#
|
||||||
# Dependencies: ffsend (https://github.com/timvisee/ffsend), curl, jq, tr
|
# Dependencies: curl, jq, tar, file with `--mime-type` support
|
||||||
#
|
#
|
||||||
# Note: Binary file set to expire after a week
|
# Note: Binary file set to expire after a week
|
||||||
#
|
#
|
||||||
|
@ -15,25 +14,19 @@
|
||||||
|
|
||||||
selection=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
|
selection=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
|
||||||
if [ -s "$selection" ]; then
|
if [ -s "$selection" ]; then
|
||||||
if type ffsend >/dev/null 2>&1; then
|
xargs -0 tar -c < "$selection" | \
|
||||||
# File name will be randomized foo.tar
|
curl -s -F "file=@/dev/stdin;filename=selection.tar" 'https://file.io/?expires=1w' | \
|
||||||
xargs -0 < "$selection" ffsend u
|
jq '.link' | tr -d '"'
|
||||||
else
|
|
||||||
printf "ffsend is required to upload selection."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Clear selection
|
# Clear selection
|
||||||
printf "-" > "$NNN_PIPE"
|
printf "-" > "$NNN_PIPE"
|
||||||
else
|
else
|
||||||
if [ -n "$1" ] && [ -s "$1" ]; then
|
if [ -n "$1" ] && [ -s "$1" ]; then
|
||||||
if type ffsend >/dev/null 2>&1; then
|
if file --mime-type "$1" | grep -q -F "text/"; then
|
||||||
ffsend -fiq u "$1"
|
curl -F "file=@$1" https://0x0.st
|
||||||
elif [ "$(mimetype --output-format %m "$1" | awk -F '/' '{print $1}')" = "text" ]; then
|
|
||||||
curl -F "f:1=@$1" ix.io
|
|
||||||
else
|
else
|
||||||
# Upload the file, show the download link and wait till user presses any key
|
# Upload the file, show the download link and wait till user presses any key
|
||||||
curl -s -F "file=@$1" https://file.io/?expires=1w | jq '.link' | tr -d '"'
|
curl -s -F "file=@$1" https://file.io/?expires=1w | jq '.link' | tr -d '"'
|
||||||
|
|
||||||
# To write download link to "$1".loc and exit
|
# To write download link to "$1".loc and exit
|
||||||
# curl -s -F "file=@$1" https://file.io/?expires=1w -o `basename "$1"`.loc
|
# curl -s -F "file=@$1" https://file.io/?expires=1w -o `basename "$1"`.loc
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue