mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
|
#include "wsfs/response_parser.h"
|
||
|
|
||
|
void wsfs_response_parse(
|
||
|
char const * buffer,
|
||
|
size_t length,
|
||
|
struct wsfs_response * result)
|
||
|
{
|
||
|
result->status = WSFS_BAD;
|
||
|
result->id = -1;
|
||
|
result->result = NULL;
|
||
|
|
||
|
json_t * response = json_loadb(buffer, length, 0, NULL);
|
||
|
if (NULL == response)
|
||
|
{
|
||
|
result->status = WSFS_BAD_PARSEERROR;
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
json_t * id_holder = json_object_get(response, "id");
|
||
|
if ((NULL == id_holder) || (!json_is_integer(id_holder)))
|
||
|
{
|
||
|
result->status = WSFS_BAD_INVALIDID;
|
||
|
json_decref(response);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
result->status = WSFS_GOOD;
|
||
|
result->id = json_integer_value(id_holder);
|
||
|
result->result = json_object_get(response, "result");
|
||
|
if (NULL != result->result)
|
||
|
{
|
||
|
json_incref(result->result);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
result->status = WSFS_BAD_NODATA;
|
||
|
|
||
|
json_t * error = json_object_get(response, "error");
|
||
|
if (NULL != error)
|
||
|
{
|
||
|
json_t * error_code = json_object_get(error, "code");
|
||
|
if ((NULL != error_code) && (json_is_integer(error_code)))
|
||
|
{
|
||
|
result->status = json_integer_value(error_code);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
json_decref(response);
|
||
|
}
|
||
|
|