Update 'post.sh'
This commit is contained in:
parent
daf2a87ad6
commit
5494badd0e
11
post.sh
11
post.sh
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ -z $(which jq) ]
|
if [ -z $(which jq) ]
|
||||||
then
|
then
|
||||||
echo "Missing jq package, please install"
|
echo "Missing jq package, please install"
|
||||||
|
@ -21,6 +22,11 @@ then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ 0 -eq $(ls ./music | wc -l) ];
|
||||||
|
then
|
||||||
|
mv posted_already/* music/
|
||||||
|
fi
|
||||||
|
|
||||||
api_base_url="https://udongein.xyz/"
|
api_base_url="https://udongein.xyz/"
|
||||||
access_token="$(cat ${token_dat})"
|
access_token="$(cat ${token_dat})"
|
||||||
|
|
||||||
|
@ -51,10 +57,13 @@ media_music_id=$(jq -r ".id" <<< ${media_music_json})
|
||||||
|
|
||||||
echo $media_json
|
echo $media_json
|
||||||
|
|
||||||
curl -X POST -d '{"status":" :mikulove: '"${full_title}"' by '"${full_artist}"' '"${link}"'", "visibility":"'unlisted'", "media_ids":'[\"${media_cover_id}\",\"${media_music_id}\"]'}' \
|
curl -X POST -d '{"status":"'"${full_title}"' by '"${full_artist}"' :mikulove: '"${link}"'", "visibility":"'unlisted'", "media_ids":'[\"${media_cover_id}\",\"${media_music_id}\"]'}' \
|
||||||
-H "Authorization: Bearer ${access_token}" \
|
-H "Authorization: Bearer ${access_token}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
"${api_base_url}/api/v1/statuses"
|
"${api_base_url}/api/v1/statuses"
|
||||||
|
|
||||||
rm -f temp.opus
|
rm -f temp.opus
|
||||||
rm -f cover.*
|
rm -f cover.*
|
||||||
|
|
||||||
|
mkdir -p posted_already/
|
||||||
|
mv music/"$folder_name" posted_today/
|
Loading…
Reference in New Issue