64 lines
1.8 KiB
Bash
64 lines
1.8 KiB
Bash
#!/bin/bash
|
|
|
|
function upload_to_mixdrop () {
|
|
api_login=$1
|
|
api_key=$2
|
|
filepath=$3
|
|
|
|
filepath=$( readlink -f "$filepath" )
|
|
echo "filepath: $filepath" >&2
|
|
|
|
filesize=$(stat -c%s "$filepath")
|
|
echo "filesize: $filesize" >&2
|
|
|
|
hoster_url=$(curl -X POST -F email=$api_login -F key=$api_key -F "file=@\"$filepath\"" "https://ul.mixdrop.co/api")
|
|
|
|
echo "hoster_url: $hoster_url" >&2
|
|
|
|
hoster_url=$(echo $hoster_url | jq ".result")
|
|
# hoster_filename=$(echo $hoster_url | jq ".name")
|
|
# hoster_url=$(echo $hoster_url | jq ".[0]")
|
|
hoster_url=$(echo $hoster_url | jq ".fileref")
|
|
hoster_url=${hoster_url//\"}
|
|
hoster_url="https://mixdrop.co/f/$hoster_url/"
|
|
>&2 echo "hoster_url: $hoster_url"
|
|
|
|
if [ "$hoster_url" != "" ] && [ "$hoster_url" != "null" ] && [ "$hoster_url" != "https://mixdrop.co/f//" ] && [ "$hoster_url" != "https://mixdrop.co/f/" ]; then
|
|
echo "$hoster_url"
|
|
else
|
|
echo ""
|
|
fi
|
|
}
|
|
|
|
function mixdrop_check_if_file_is_alive () {
|
|
api_login=$1
|
|
api_key=$2
|
|
file_url=$3
|
|
|
|
>&2 echo "file_url: $file_url"
|
|
|
|
file_id=${file_url%/*}
|
|
# >&2 echo "File ID: $file_id"
|
|
file_id=${file_id##*/}
|
|
>&2 echo "File ID: $file_id"
|
|
|
|
>&2 echo "URL to call: https://api.highload.to/file/info?file=$file_id&login=$api_login&key=$api_key"
|
|
|
|
response=$(curl -s -X GET "https://api.mixdrop.co/fileinfo?email=$api_login&key=$api_key&ref[]=$file_id" -H "Content-Type: multipart/form-data")
|
|
>&2 echo "Response: $response"
|
|
|
|
is_alive=$(echo $response | jq ".success")
|
|
# is_alive=$(echo $is_alive | jq ".[0]")
|
|
# is_alive=$(echo $is_alive | jq "first(.[])")
|
|
# is_alive=$(echo $is_alive | jq ".deleted")
|
|
|
|
# >&2 echo $is_alive
|
|
|
|
if [ "$is_alive" == "false" ]; then
|
|
echo "false"
|
|
# elif [ $is_alive = '500' ]; then
|
|
# echo "false"
|
|
else
|
|
echo "true"
|
|
fi
|
|
}
|