#include #include #include #include "problem_details.h" OpenAPI_problem_details_t *OpenAPI_problem_details_create( char *type, char *title, int status, char *detail, char *instance, char *cause, OpenAPI_list_t *invalid_params, char *supported_features, char *target_scp ) { OpenAPI_problem_details_t *problem_details_local_var = OpenAPI_malloc(sizeof(OpenAPI_problem_details_t)); if (!problem_details_local_var) { return NULL; } problem_details_local_var->type = type; problem_details_local_var->title = title; problem_details_local_var->status = status; problem_details_local_var->detail = detail; problem_details_local_var->instance = instance; problem_details_local_var->cause = cause; problem_details_local_var->invalid_params = invalid_params; problem_details_local_var->supported_features = supported_features; problem_details_local_var->target_scp = target_scp; return problem_details_local_var; } void OpenAPI_problem_details_free(OpenAPI_problem_details_t *problem_details) { if (NULL == problem_details) { return; } OpenAPI_lnode_t *node; ogs_free(problem_details->type); ogs_free(problem_details->title); ogs_free(problem_details->detail); ogs_free(problem_details->instance); ogs_free(problem_details->cause); OpenAPI_list_for_each(problem_details->invalid_params, node) { OpenAPI_invalid_param_free(node->data); } OpenAPI_list_free(problem_details->invalid_params); ogs_free(problem_details->supported_features); ogs_free(problem_details->target_scp); ogs_free(problem_details); } cJSON *OpenAPI_problem_details_convertToJSON(OpenAPI_problem_details_t *problem_details) { cJSON *item = NULL; if (problem_details == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [ProblemDetails]"); return NULL; } item = cJSON_CreateObject(); if (problem_details->type) { if (cJSON_AddStringToObject(item, "type", problem_details->type) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [type]"); goto end; } } if (problem_details->title) { if (cJSON_AddStringToObject(item, "title", problem_details->title) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [title]"); goto end; } } if (problem_details->status) { if (cJSON_AddNumberToObject(item, "status", problem_details->status) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [status]"); goto end; } } if (problem_details->detail) { if (cJSON_AddStringToObject(item, "detail", problem_details->detail) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [detail]"); goto end; } } if (problem_details->instance) { if (cJSON_AddStringToObject(item, "instance", problem_details->instance) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [instance]"); goto end; } } if (problem_details->cause) { if (cJSON_AddStringToObject(item, "cause", problem_details->cause) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [cause]"); goto end; } } if (problem_details->invalid_params) { cJSON *invalid_paramsList = cJSON_AddArrayToObject(item, "invalidParams"); if (invalid_paramsList == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [invalid_params]"); goto end; } OpenAPI_lnode_t *invalid_params_node; if (problem_details->invalid_params) { OpenAPI_list_for_each(problem_details->invalid_params, invalid_params_node) { cJSON *itemLocal = OpenAPI_invalid_param_convertToJSON(invalid_params_node->data); if (itemLocal == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [invalid_params]"); goto end; } cJSON_AddItemToArray(invalid_paramsList, itemLocal); } } } if (problem_details->supported_features) { if (cJSON_AddStringToObject(item, "supportedFeatures", problem_details->supported_features) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [supported_features]"); goto end; } } if (problem_details->target_scp) { if (cJSON_AddStringToObject(item, "targetScp", problem_details->target_scp) == NULL) { ogs_error("OpenAPI_problem_details_convertToJSON() failed [target_scp]"); goto end; } } end: return item; } OpenAPI_problem_details_t *OpenAPI_problem_details_parseFromJSON(cJSON *problem_detailsJSON) { OpenAPI_problem_details_t *problem_details_local_var = NULL; cJSON *type = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "type"); if (type) { if (!cJSON_IsString(type)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [type]"); goto end; } } cJSON *title = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "title"); if (title) { if (!cJSON_IsString(title)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [title]"); goto end; } } cJSON *status = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "status"); if (status) { if (!cJSON_IsNumber(status)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [status]"); goto end; } } cJSON *detail = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "detail"); if (detail) { if (!cJSON_IsString(detail)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [detail]"); goto end; } } cJSON *instance = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "instance"); if (instance) { if (!cJSON_IsString(instance)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [instance]"); goto end; } } cJSON *cause = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "cause"); if (cause) { if (!cJSON_IsString(cause)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [cause]"); goto end; } } cJSON *invalid_params = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "invalidParams"); OpenAPI_list_t *invalid_paramsList; if (invalid_params) { cJSON *invalid_params_local_nonprimitive; if (!cJSON_IsArray(invalid_params)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [invalid_params]"); goto end; } invalid_paramsList = OpenAPI_list_create(); cJSON_ArrayForEach(invalid_params_local_nonprimitive, invalid_params ) { if (!cJSON_IsObject(invalid_params_local_nonprimitive)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [invalid_params]"); goto end; } OpenAPI_invalid_param_t *invalid_paramsItem = OpenAPI_invalid_param_parseFromJSON(invalid_params_local_nonprimitive); OpenAPI_list_add(invalid_paramsList, invalid_paramsItem); } } cJSON *supported_features = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "supportedFeatures"); if (supported_features) { if (!cJSON_IsString(supported_features)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [supported_features]"); goto end; } } cJSON *target_scp = cJSON_GetObjectItemCaseSensitive(problem_detailsJSON, "targetScp"); if (target_scp) { if (!cJSON_IsString(target_scp)) { ogs_error("OpenAPI_problem_details_parseFromJSON() failed [target_scp]"); goto end; } } problem_details_local_var = OpenAPI_problem_details_create ( type ? ogs_strdup(type->valuestring) : NULL, title ? ogs_strdup(title->valuestring) : NULL, status ? status->valuedouble : 0, detail ? ogs_strdup(detail->valuestring) : NULL, instance ? ogs_strdup(instance->valuestring) : NULL, cause ? ogs_strdup(cause->valuestring) : NULL, invalid_params ? invalid_paramsList : NULL, supported_features ? ogs_strdup(supported_features->valuestring) : NULL, target_scp ? ogs_strdup(target_scp->valuestring) : NULL ); return problem_details_local_var; end: return NULL; } OpenAPI_problem_details_t *OpenAPI_problem_details_copy(OpenAPI_problem_details_t *dst, OpenAPI_problem_details_t *src) { cJSON *item = NULL; char *content = NULL; ogs_assert(src); item = OpenAPI_problem_details_convertToJSON(src); if (!item) { ogs_error("OpenAPI_problem_details_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_problem_details_free(dst); dst = OpenAPI_problem_details_parseFromJSON(item); cJSON_Delete(item); return dst; }