Compare commits
No commits in common. "b51b314d747ee599ac9236bd0ed33e927d7a822f" and "962a06fa700f09c3d1c0d0c3ea1647e531c5a582" have entirely different histories.
b51b314d74
...
962a06fa70
51
share.sh
51
share.sh
|
@ -1,51 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# Share data to a running Shrlok instance.
|
|
||||||
|
|
||||||
socket_path="/run/shrlok/shr.sock"
|
|
||||||
|
|
||||||
usage() {
|
|
||||||
echo "Usage: $0 [-s SOCKET_PATH] [-o key1=value1,key2=value2,…] TYPE FILE"
|
|
||||||
echo " -s override shrlok socket path (default: $socket_path)"
|
|
||||||
echo " -o comma separated "k=v" pairs to add to the shrlok header"
|
|
||||||
}
|
|
||||||
|
|
||||||
header_args=
|
|
||||||
while getopts "hs:o:" OPTION; do
|
|
||||||
case $OPTION in
|
|
||||||
h) usage; exit 0 ;;
|
|
||||||
s) socket_path="$OPTARG" ;;
|
|
||||||
o) readarray -d "," -t header_args <<< "$OPTARG" ;;
|
|
||||||
*) usage; exit 1 ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
shift $(( OPTIND - 1 ))
|
|
||||||
[ $# != 2 ] && usage && exit 1
|
|
||||||
|
|
||||||
share_type="$1"
|
|
||||||
input_file="$2"
|
|
||||||
|
|
||||||
if [ ! -S "$socket_path" ]; then
|
|
||||||
echo "$socket_path is not a valid Unix socket. Is shrlok running?"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
header_args_str=""
|
|
||||||
if [[ -n "$header_args" ]]; then
|
|
||||||
for item in "${header_args[@]}"; do
|
|
||||||
readarray -d "=" -t kv <<< "$item"
|
|
||||||
key="${kv[0]}"
|
|
||||||
val="$(echo "${kv[1]}" | xargs)" # strip trailing LFs
|
|
||||||
header_args_str+=",\"$key\":\"$val\""
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
# The first thing sent through the socket is the total packet length, as ASCII
|
|
||||||
# digits for the convenience of scripts. Build the header before hand to get its
|
|
||||||
# size, then get the file length and push everything to the socket with socat.
|
|
||||||
header="{\"type\":\"$share_type\"$header_args_str}"
|
|
||||||
header_length="${#header}"
|
|
||||||
file_length="$(wc -c "$input_file" | cut -d' ' -f1)"
|
|
||||||
full_length="$(( $header_length + 1 + $file_length ))"
|
|
||||||
|
|
||||||
cat <(printf "${full_length}\x00${header}\x00") "$input_file" \
|
|
||||||
| socat - UNIX-CONNECT:"$socket_path" ; echo
|
|
|
@ -66,13 +66,9 @@ class Handler(socketserver.StreamRequestHandler):
|
||||||
|
|
||||||
file_name = None
|
file_name = None
|
||||||
if header.get("type") == "txt":
|
if header.get("type") == "txt":
|
||||||
file_name = write_text(data, title=header.get("title", ""))
|
file_name = write_text(data, title=header.get("title"))
|
||||||
elif header.get("type") == "raw":
|
elif header.get("type") == "raw":
|
||||||
file_name = write_content(
|
file_name = write_content(data)
|
||||||
data,
|
|
||||||
name=header.get("name", ""),
|
|
||||||
extension=header.get("ext", ""),
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
print("Unknown type.")
|
print("Unknown type.")
|
||||||
if file_name is None:
|
if file_name is None:
|
||||||
|
@ -104,36 +100,26 @@ class Handler(socketserver.StreamRequestHandler):
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
||||||
def write_text(data: bytes, title: str = "", name: str = ""):
|
def write_text(data: bytes, title=None):
|
||||||
content = "<pre>{}</pre>".format(data.decode(errors="replace"))
|
content = "<pre>{}</pre>".format(data.decode(errors="replace"))
|
||||||
html = HTML_TEMPLATE.format(title=title or "", content=content).encode()
|
html = HTML_TEMPLATE.format(title=title or "?", content=content).encode()
|
||||||
return write_content(html, extension="html")
|
write_content(html)
|
||||||
|
|
||||||
|
|
||||||
def write_content(data: bytes, name: str = "", extension: str = ""):
|
def write_content(data: bytes):
|
||||||
print("name", name, "extension", extension)
|
|
||||||
path = str(Path(ARGS.root) / "txt")
|
path = str(Path(ARGS.root) / "txt")
|
||||||
if not os.path.isdir(path):
|
if not os.path.isdir(path):
|
||||||
print(f"Missing '{path}' folder.")
|
print(f"Missing '{path}' folder.")
|
||||||
return None
|
return None
|
||||||
with tempfile.NamedTemporaryFile(
|
with tempfile.NamedTemporaryFile(
|
||||||
mode="wb",
|
mode="wb",
|
||||||
dir=path,
|
dir=path,
|
||||||
suffix=f".{extension}" if extension else None,
|
suffix=".html",
|
||||||
delete=False,
|
delete=False
|
||||||
) as output_file:
|
) as output_file:
|
||||||
output_file.write(data)
|
output_file.write(data)
|
||||||
os.chmod(output_file.name, 0o644)
|
os.chmod(output_file.name, 0o644)
|
||||||
file_name = output_file.name
|
return output_file.name
|
||||||
if name:
|
|
||||||
new_file_name = os.path.join(os.path.dirname(file_name), name)
|
|
||||||
try:
|
|
||||||
os.rename(file_name, name)
|
|
||||||
file_name = new_file_name
|
|
||||||
except OSError as exc:
|
|
||||||
print(f"Failed to give required name to the file: {exc}")
|
|
||||||
return None
|
|
||||||
return file_name
|
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Reference in a new issue