You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
Bash
45 lines
1.2 KiB
Bash
#!/bin/bash
|
|
## Bash Library for sending out Pages and/or getting their State
|
|
# dependencies: curl, jq
|
|
|
|
# echo "Bericht" | send_page "http://127.0.0.1:3000" "duplex" "birdyslim" "pocsag=133701A"
|
|
send_page() {
|
|
text=$(cat -)
|
|
endpoint=$1
|
|
msgType=$2
|
|
deviceType=$3
|
|
argArr=("$@")
|
|
connectorJSON=$(for arg in "${argArr[@]}"; do echo $arg; done | jq -Rcs '{array:split("\n")|.[3:-1]|map(split("=")|[(.[0]),.[1]]?)}.array')
|
|
echo $connectorJSON |\
|
|
jq -c --arg t "$msgType" --arg d "$deviceType" --arg p "$text" '{type:$t, routing: {connectors:.,device:$d}, payload:$p}' |\
|
|
curl -s -XPOST -H "Content-type: application/json" "$endpoint/api/message/advanced" -d @- |\
|
|
jq -r .
|
|
}
|
|
|
|
|
|
msg_status() {
|
|
endpoint=$1
|
|
msgid=$2
|
|
curl -s "$endpoint/api/message/status/$msgid" |\
|
|
jq -r ._routerData
|
|
}
|
|
is_msg_recv() {
|
|
msg_status $* | jq .recvAck | grep -q "true"
|
|
return $?
|
|
}
|
|
is_msg_read() {
|
|
msg_status $* | jq .readAck | grep -q "true"
|
|
return $?
|
|
}
|
|
is_msg_resp() {
|
|
msg_status $* | jq .response | grep -vq "false"
|
|
return $?
|
|
}
|
|
|
|
ENDPOINT="http://127.0.0.1:3000"
|
|
#echo "Test" | send_page "$ENDPOINT" "duplex" "birdyslim" "pocsag=133701D" "test=123"
|
|
|
|
|
|
echo "Empty" | send_page "$ENDPOINT" "simple" "birdyslim" "pocsag=80D"
|
|
|