lander/landerctl

53 lines
1.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env sh
API_KEY=test
URL=http://localhost:18080
if [[ "$2" != '-' ]]; then
filename="$2"
content_type="$(file --mime-type --brief $2)"
fi
2022-11-21 21:02:33 +01:00
if [ "$1" = g ]; then
curl -is "$URL/$2" |
sed -En 's/^[lL]ocation: (.*)/\1/p'
elif [ "$1" = s ] || [ "$1" = sl ]; then
curl \
--fail \
-w "${URL}%header{location}" \
-XPOST \
2022-11-21 12:03:16 +01:00
-d "$2" \
-H "X-Api-Key: $API_KEY" \
"$URL/$1/$3"
2022-11-21 16:22:52 +01:00
elif [ "$1" = p ] || [ "$1" = pl ]; then
2022-11-21 21:02:33 +01:00
curl \
--fail \
-w "${URL}%header{location}" \
2022-11-21 21:02:33 +01:00
-XPOST \
-H "X-Api-Key: $API_KEY" \
-H "X-Lander-Filename: ${filename}" \
2022-11-21 21:02:33 +01:00
--data-binary @"$2" \
"$URL/$1/$3"
elif [ "$1" = f ] || [ "$1" = fl ]; then
curl \
--fail \
-w "${URL}%header{location}" \
-XPOST \
-H "X-Api-Key: $API_KEY" \
-H "X-Lander-Content-Type: ${content_type}" \
-H "X-Lander-Filename: ${filename}" \
--data-binary @"$2" \
"$URL/$1/$3"
2023-11-12 15:00:20 +01:00
elif [ "$1" = d ]; then
curl \
--fail \
2023-11-12 15:00:20 +01:00
-XDELETE \
-H "X-Api-Key: $API_KEY" \
"$URL/$2"
fi