added error messages on invalid incoming communication messages

This commit is contained in:
kremsy 2020-06-07 16:17:20 +02:00
parent f91d93ba2a
commit 650afc500a
1 changed files with 3 additions and 1 deletions

View File

@ -266,8 +266,10 @@ class CommunicationManager implements CallbackListener, UsageInformationAble {
$data = json_decode($data);
if ($data == null) {
$data = array("error" => true, "data" => "Data is not provided as an valid AES-196-encrypted encrypted JSON");
Logger::log("[CommunicationManager] Error: Data is not provided as an valid AES-196 encrypted JSON");
$data = array("error" => true, "data" => "Data is not provided as an valid AES-196 encrypted JSON");
} else if (!property_exists($data, "method") || !property_exists($data, "data")) {
Logger::log("[CommunicationManager] Invalid Communication Message Received");
$data = array("error" => true, "data" => "Invalid Message");
} else {
$answer = $this->triggerCommuncationCallback($data->method, $data->data);