small changes
ci/awsome b 詳細

このコミットが含まれているのは:
mrbesen 2021-01-24 22:08:44 +01:00
コミット 9565482b65
2個のファイルの変更15行の追加8行の削除

ファイルの表示

@ -9,4 +9,4 @@ pwd
. config.sh
. func.sh
send "Server%20started."
send "boot" "Server%20started."

21
func.sh
ファイルの表示

@ -26,17 +26,24 @@ send() {
#echo "Sending $2 to ${userid}"
#request
raw=$(curl --data "${params}" "https://api.telegram.org/bot${token}/${method}" 2> /dev/null)
#raw=$(curl --data "${params}" "https://api.telegram.org/bot${token}/${method}" 2> /dev/null)
request="${apiurl}${token}/${method}"
#echo "request: $request - $params"
raw=$(curl --data "${params}" "${request}" -s 2> /dev/null)
#parse response
#echo "recieved: $raw"
echo "recieved: $raw"
msgid=$(python3 -c "import sys, json; print(json.loads('$raw'.replace('\n',''))['result']['message_id'])")
#echo "msgid: ${msgid}, count: ${count}"
if [ "$?" -ne "0" ]; then
resetFile
else
echo "msgid: ${msgid}, count: ${count}"
#write to file
echo "$1" > $fname #ident
echo "${msgid}" >> $fname #msgid
echo "${count}" >> $fname #count
#write to file
echo "$1" > $fname #ident
echo "${msgid}" >> $fname #msgid
echo "${count}" >> $fname #count
fi
}
#used to rset the file, when nothing is sent