瀏覽代碼

[Add][Modularization][Module_OcppBackend / Module_OcppBackend20]

2021.09.15 / Folus Wen

Actions:
1. Add authoentication configure by DataTransfer.

Files:
1. As follow commit history

Image version: D0.00.XX.XXXX.XX
Image checksum: XXXXXXXX

Hardware PWB P/N : XXXXXXX
Hardware Version : XXXXXXX
FolusWen 3 年之前
父節點
當前提交
aa8a124922

+ 15 - 0
EVSE/Modularization/ocpp20/MessageHandler.c

@@ -13088,6 +13088,21 @@ int handleDataTransferRequest(char *uuid, char *payload)
 					}
 				}
 
+				if(json_object_object_get(data, "isAuthentication") != NULL)
+				{
+					switch(json_object_get_int(json_object_object_get(data, "isAuthentication")))
+					{
+						case 0:
+						case 1:
+							ShmSysConfigAndInfo->SysConfig.AuthorisationMode = json_object_get_int(json_object_object_get(data, "isAuthentication"))^1;
+							break;
+						default:
+							strcpy((char*)ShmOCPP20Data->DataTransfer[0].Response_status, DataTransferStatusEnumTypeStr[DataTransferStatusEnumType_Rejected]);
+							sprintf((char*)ShmOCPP20Data->DataTransfer[0].Response_data, "Configuration content something wrong.");
+							break;
+					}
+				}
+
 				if(strstr((char*)ShmOCPP20Data->DataTransfer[0].Response_status, DataTransferStatusEnumTypeStr[DataTransferStatusEnumType_Accepted]) != NULL)
 					StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
 			}

+ 15 - 0
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -10042,6 +10042,21 @@ int handleDataTransferRequest(char *uuid, char *payload)
 					}
 				}
 
+				if(json_object_object_get(data, "isAuthentication") != NULL)
+				{
+					switch(json_object_get_int(json_object_object_get(data, "isAuthentication")))
+					{
+						case 0:
+						case 1:
+							ShmSysConfigAndInfo->SysConfig.AuthorisationMode = json_object_get_int(json_object_object_get(data, "isAuthentication"))^1;
+							break;
+						default:
+							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."));
+							break;
+					}
+				}
+
 				if(strstr(json_object_get_string(json_object_object_get(response, "status")), "Accepted") != NULL)
 					StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
 			}

+ 15 - 0
EVSE/Modularization/ocppph/MessageHandler.c

@@ -9778,6 +9778,21 @@ int handleDataTransferRequest(char *uuid, char *payload)
 					}
 				}
 
+				if(json_object_object_get(data, "isAuthentication") != NULL)
+				{
+					switch(json_object_get_int(json_object_object_get(data, "isAuthentication")))
+					{
+						case 0:
+						case 1:
+							ShmSysConfigAndInfo->SysConfig.AuthorisationMode = json_object_get_int(json_object_object_get(data, "isAuthentication"))^1;
+							break;
+						default:
+							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."));
+							break;
+					}
+				}
+
 				if(strstr(json_object_get_string(json_object_object_get(response, "status")), "Accepted") != NULL)
 					StoreUsrConfigData(&ShmSysConfigAndInfo->SysConfig);
 			}