Compare commits

...

2 Commits

Author SHA1 Message Date
7d2923c276 fixed typo in README 2022-06-25 12:15:30 +02:00
70a23c0d55 added direct image link in share script 2022-06-24 13:27:18 +02:00
2 changed files with 8 additions and 2 deletions

View File

@ -12,7 +12,7 @@ Run `make` and the binary together with the web frontend will be in the `build`
# Usage # Usage
Run the `s3browser` binary with the `--help` flag to see the available options. Run the `s3share` binary with the `--help` flag to see the available options.
The `public` directory needs to be in the same directory as the binary. The `public` directory needs to be in the same directory as the binary.
S3Share requires two things: S3Share requires two things:

View File

@ -36,4 +36,10 @@ SLUG=$(curl -s -u "$API_USERNAME:$API_PASSWORD" -X POST --header "Content-Type
--data "{\"key\":\"$UPLOAD_FILENAME\"}" \ --data "{\"key\":\"$UPLOAD_FILENAME\"}" \
"$ENDPOINT/api/share" | jq -r ".slug") "$ENDPOINT/api/share" | jq -r ".slug")
MIME=$(file -i -b "$UPLOAD_FILE")
if echo "$MIME" | grep "image" &> /dev/null; then
printf "%s/s/%s.%s\n" "$ENDPOINT" "$SLUG" "${UPLOAD_FILENAME##*.}"
else
printf "%s/%s\n" "$ENDPOINT" "$SLUG" printf "%s/%s\n" "$ENDPOINT" "$SLUG"
fi