[bin] Rewrite drop in plain bash

Ruby no likey ed25519 keys. :-(
This commit is contained in:
Sebastian Schulze 2021-07-29 12:39:01 +02:00
parent e557543c4f
commit 2d027bf66f
No known key found for this signature in database
GPG Key ID: F6BA63C6A7D3044E
1 changed files with 13 additions and 17 deletions

View File

@ -1,21 +1,17 @@
#! /usr/bin/env nix-shell
#! nix-shell -i ruby -p ruby -p rubyPackages.net-scp
#!/usr/bin/env bash
require 'open3'
require 'pathname'
require 'securerandom'
require 'net/scp'
file = Pathname.new(ARGV[0])
new_name = SecureRandom.hex(12) + File.extname(file)
abort "Och komm." unless file.exist? and file.readable?
file="${1}"
filename=$(basename -- "$file")
extension="${filename##*.}"
new_name="$(openssl rand -hex 12).${extension}"
url="https://drop.bascht.space/${new_name}"
url = "https://drop.bascht.space/#{new_name}"
if [[ ! -f "${file}" ]]; then
echo "File ${file} not readable. Aborting."
exit 1
fi
Net::SCP.start("drop.bascht.space", "bascht") do |scp|
scp.upload(file.expand_path.to_s, "/home/bascht/drop/#{new_name}")
end
system "wl-copy #{url}"
system("notify-send -t 1000 'Uploaded successfully' '<a href=\'#{url}\'>drop.bascht.space</a>'")
scp "${file}" "drop.bascht.space:/home/bascht/drop/${new_name}"
wl-copy "${url}"
notify-send -t 1000 "Uploaded successfully" "<a href=\'${url}\'>drop.bascht.space</a>"