|
@@ -8696,6 +8696,71 @@ int handleDataTransferRequest(char *uuid, char *payload)
|
|
|
sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
|
|
|
json_object_put(response);
|
|
|
}
|
|
|
+ else if(strstr(tempmessageId, "ID_ConfigQR") != NULL)
|
|
|
+ {
|
|
|
+ json_object *data;
|
|
|
+ data = json_tokener_parse(tempdata);
|
|
|
+ if(!is_error(data))
|
|
|
+ {
|
|
|
+ json_object_object_add(response, "status", json_object_new_string("Accepted"));
|
|
|
+
|
|
|
+ if(json_object_object_get(data, "Content_Type") != NULL)
|
|
|
+ {
|
|
|
+ if((0 <= json_object_get_int(json_object_object_get(data, "Content_Type"))) && (json_object_get_int(json_object_object_get(data, "Content_Type")) <= 1))
|
|
|
+ {
|
|
|
+ ShmSysConfigAndInfo->SysConfig.QRCodeMadeMode = json_object_get_int(json_object_object_get(data, "Content_Type"));
|
|
|
+
|
|
|
+ if(json_object_object_get(data, "Customization_Conent") != NULL)
|
|
|
+ {
|
|
|
+ sprintf((char*)ShmSysConfigAndInfo->SysConfig.QRCodeContent, "%s", json_object_get_string(json_object_object_get(data, "Customization_Conent")));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ json_object_object_add(response, "status", json_object_new_string("Rejected"));
|
|
|
+ }
|
|
|
+
|
|
|
+ StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ json_object_object_add(response, "status", json_object_new_string("Rejected"));
|
|
|
+ json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
|
|
|
+ }
|
|
|
+ json_object_put(data);
|
|
|
+
|
|
|
+ sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
|
|
|
+ json_object_put(response);
|
|
|
+ }
|
|
|
+ else if(strstr(tempmessageId, "ID_DsiplayLcdPage") != NULL)
|
|
|
+ {
|
|
|
+ json_object *data;
|
|
|
+ data = json_tokener_parse(tempdata);
|
|
|
+ if(!is_error(data))
|
|
|
+ {
|
|
|
+ json_object_object_add(response, "status", json_object_new_string("Accepted"));
|
|
|
+
|
|
|
+ if(json_object_object_get(data, "Page_Index") != NULL)
|
|
|
+ {
|
|
|
+ ShmSysConfigAndInfo->SysConfig.LcdOveride.page_index = json_object_get_int(json_object_object_get(data, "Page_Index"));
|
|
|
+ }
|
|
|
+
|
|
|
+ if(json_object_object_get(data, "Duration") != NULL)
|
|
|
+ {
|
|
|
+ ShmSysConfigAndInfo->SysConfig.LcdOveride.duration = json_object_get_int(json_object_object_get(data, "Duration"));
|
|
|
+ }
|
|
|
+
|
|
|
+ ShmSysConfigAndInfo->SysConfig.LcdOveride.isOverideReq = 1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ json_object_object_add(response, "status", json_object_new_string("Rejected"));
|
|
|
+ json_object_object_add(response, "data", json_object_new_string("Configuration content something wrong."));
|
|
|
+ }
|
|
|
+ json_object_put(data);
|
|
|
+
|
|
|
+ sprintf(message,"[%d,\"%s\",%s]",MESSAGE_TYPE_CALLRESULT, uuid, json_object_to_json_string_ext(response, JSON_C_TO_STRING_PLAIN));
|
|
|
+ json_object_put(response);
|
|
|
+ }
|
|
|
else
|
|
|
{
|
|
|
// Can not find valid message id
|