upd: Postmessage channel emergency interop

This commit is contained in:
SeekDaSky 2017-12-07 21:06:09 +01:00 committed by xdrm-brackets
parent 3434ac229c
commit cb5482950f
2 changed files with 7 additions and 4 deletions

View File

@ -17,16 +17,19 @@ class message
public function POST_emergency($argv){
extract($argv);
$wsi = new wsinterop("localhost",9997);
$wsi = new wsinterop("localhost",9998);
$wsi->send([
"operation" => "PostMessage",
"message" => $message,
"username" => $username,
"location" => $location,
"channelType" => "Emergency",
"channelName" => $URL_0
"channelName" => is_null($URL_0) ? "" : "$URL_0"
]);
$wsi->close();
return ["sent" => true];
//TODO: tout poster dans la BDD
}

View File

@ -108,7 +108,7 @@
"parameters": {
"URL_0": {
"description": "code departement, si le paramètre n'est pas fourni le message est envoyé en broadcast",
"type" : "varchar(2,2)",
"type" : "numeric",
"optional" : true
},
@ -126,7 +126,7 @@
"location": {
"description": "coordonés GPS du message, des coordonnées invalide ne seront pas affiché",
"type": "array<float>"
"type": "array<numeric>"
}
}
}