mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
fix the bug for Real PCF unable to PATCH (#1086)
This commit is contained in:
parent
dde0785375
commit
005cd30e02
11 changed files with 240 additions and 29 deletions
|
|
@ -1,168 +0,0 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include "patch_item.h"
|
||||
|
||||
OpenAPI_patch_item_t *OpenAPI_patch_item_create(
|
||||
OpenAPI_patch_operation_e op,
|
||||
char *path,
|
||||
char *from,
|
||||
char *value
|
||||
)
|
||||
{
|
||||
OpenAPI_patch_item_t *patch_item_local_var = OpenAPI_malloc(sizeof(OpenAPI_patch_item_t));
|
||||
if (!patch_item_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
patch_item_local_var->op = op;
|
||||
patch_item_local_var->path = path;
|
||||
patch_item_local_var->from = from;
|
||||
patch_item_local_var->value = value;
|
||||
|
||||
return patch_item_local_var;
|
||||
}
|
||||
|
||||
void OpenAPI_patch_item_free(OpenAPI_patch_item_t *patch_item)
|
||||
{
|
||||
if (NULL == patch_item) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
ogs_free(patch_item->path);
|
||||
ogs_free(patch_item->from);
|
||||
ogs_free(patch_item->value);
|
||||
ogs_free(patch_item);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_patch_item_convertToJSON(OpenAPI_patch_item_t *patch_item)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
|
||||
if (patch_item == NULL) {
|
||||
ogs_error("OpenAPI_patch_item_convertToJSON() failed [PatchItem]");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (cJSON_AddStringToObject(item, "op", OpenAPI_patch_operation_ToString(patch_item->op)) == NULL) {
|
||||
ogs_error("OpenAPI_patch_item_convertToJSON() failed [op]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (cJSON_AddStringToObject(item, "path", patch_item->path) == NULL) {
|
||||
ogs_error("OpenAPI_patch_item_convertToJSON() failed [path]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (patch_item->from) {
|
||||
if (cJSON_AddStringToObject(item, "from", patch_item->from) == NULL) {
|
||||
ogs_error("OpenAPI_patch_item_convertToJSON() failed [from]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
if (patch_item->value) {
|
||||
if (cJSON_AddStringToObject(item, "value", patch_item->value) == NULL) {
|
||||
ogs_error("OpenAPI_patch_item_convertToJSON() failed [value]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
end:
|
||||
return item;
|
||||
}
|
||||
|
||||
OpenAPI_patch_item_t *OpenAPI_patch_item_parseFromJSON(cJSON *patch_itemJSON)
|
||||
{
|
||||
OpenAPI_patch_item_t *patch_item_local_var = NULL;
|
||||
cJSON *op = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "op");
|
||||
if (!op) {
|
||||
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [op]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_patch_operation_e opVariable;
|
||||
|
||||
if (!cJSON_IsString(op)) {
|
||||
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [op]");
|
||||
goto end;
|
||||
}
|
||||
opVariable = OpenAPI_patch_operation_FromString(op->valuestring);
|
||||
|
||||
cJSON *path = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "path");
|
||||
if (!path) {
|
||||
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [path]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
||||
if (!cJSON_IsString(path)) {
|
||||
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [path]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *from = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "from");
|
||||
|
||||
if (from) {
|
||||
if (!cJSON_IsString(from)) {
|
||||
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [from]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *value = cJSON_GetObjectItemCaseSensitive(patch_itemJSON, "value");
|
||||
|
||||
if (value) {
|
||||
if (!cJSON_IsString(value)) {
|
||||
ogs_error("OpenAPI_patch_item_parseFromJSON() failed [value]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
patch_item_local_var = OpenAPI_patch_item_create (
|
||||
opVariable,
|
||||
ogs_strdup_or_assert(path->valuestring),
|
||||
from ? ogs_strdup_or_assert(from->valuestring) : NULL,
|
||||
value ? ogs_strdup_or_assert(value->valuestring) : NULL
|
||||
);
|
||||
|
||||
return patch_item_local_var;
|
||||
end:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_patch_item_t *OpenAPI_patch_item_copy(OpenAPI_patch_item_t *dst, OpenAPI_patch_item_t *src)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
char *content = NULL;
|
||||
|
||||
ogs_assert(src);
|
||||
item = OpenAPI_patch_item_convertToJSON(src);
|
||||
if (!item) {
|
||||
ogs_error("OpenAPI_patch_item_convertToJSON() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
content = cJSON_Print(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
if (!content) {
|
||||
ogs_error("cJSON_Print() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
item = cJSON_Parse(content);
|
||||
ogs_free(content);
|
||||
if (!item) {
|
||||
ogs_error("cJSON_Parse() failed");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
OpenAPI_patch_item_free(dst);
|
||||
dst = OpenAPI_patch_item_parseFromJSON(item);
|
||||
cJSON_Delete(item);
|
||||
|
||||
return dst;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue