small changes
ci/awsome b 详情

这个提交包含在:
mrbesen 2021-01-24 22:08:44 +01:00
父节点 ab9a0541a5
当前提交 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