diff --git a/res/ari/ari_model_validators.c b/res/ari/ari_model_validators.c index 171cb2907f30b1a67144a2c6b7510b9bbe4de032..673864a559b794ca8cf88fd52e7f4d31bd121120 100644 --- a/res/ari/ari_model_validators.c +++ b/res/ari/ari_model_validators.c @@ -93,6 +93,76 @@ ari_validator ast_ari_validate_asterisk_info_fn(void) return ast_ari_validate_asterisk_info; } +int ast_ari_validate_asterisk_ping(struct ast_json *json) +{ + int res = 1; + struct ast_json_iter *iter; + int has_asterisk_id = 0; + int has_ping = 0; + int has_timestamp = 0; + + for (iter = ast_json_object_iter(json); iter; iter = ast_json_object_iter_next(json, iter)) { + if (strcmp("asterisk_id", ast_json_object_iter_key(iter)) == 0) { + int prop_is_valid; + has_asterisk_id = 1; + prop_is_valid = ast_ari_validate_string( + ast_json_object_iter_value(iter)); + if (!prop_is_valid) { + ast_log(LOG_ERROR, "ARI AsteriskPing field asterisk_id failed validation\n"); + res = 0; + } + } else + if (strcmp("ping", ast_json_object_iter_key(iter)) == 0) { + int prop_is_valid; + has_ping = 1; + prop_is_valid = ast_ari_validate_string( + ast_json_object_iter_value(iter)); + if (!prop_is_valid) { + ast_log(LOG_ERROR, "ARI AsteriskPing field ping failed validation\n"); + res = 0; + } + } else + if (strcmp("timestamp", ast_json_object_iter_key(iter)) == 0) { + int prop_is_valid; + has_timestamp = 1; + prop_is_valid = ast_ari_validate_string( + ast_json_object_iter_value(iter)); + if (!prop_is_valid) { + ast_log(LOG_ERROR, "ARI AsteriskPing field timestamp failed validation\n"); + res = 0; + } + } else + { + ast_log(LOG_ERROR, + "ARI AsteriskPing has undocumented field %s\n", + ast_json_object_iter_key(iter)); + res = 0; + } + } + + if (!has_asterisk_id) { + ast_log(LOG_ERROR, "ARI AsteriskPing missing required field asterisk_id\n"); + res = 0; + } + + if (!has_ping) { + ast_log(LOG_ERROR, "ARI AsteriskPing missing required field ping\n"); + res = 0; + } + + if (!has_timestamp) { + ast_log(LOG_ERROR, "ARI AsteriskPing missing required field timestamp\n"); + res = 0; + } + + return res; +} + +ari_validator ast_ari_validate_asterisk_ping_fn(void) +{ + return ast_ari_validate_asterisk_ping; +} + int ast_ari_validate_build_info(struct ast_json *json) { int res = 1; diff --git a/res/ari/ari_model_validators.h b/res/ari/ari_model_validators.h index d40a8c9d6021092e1546e1986c2a815760d10ded..64dd88a3d11f3121d475a536dd68d966ffb3ac01 100644 --- a/res/ari/ari_model_validators.h +++ b/res/ari/ari_model_validators.h @@ -170,6 +170,24 @@ int ast_ari_validate_asterisk_info(struct ast_json *json); */ ari_validator ast_ari_validate_asterisk_info_fn(void); +/*! + * \brief Validator for AsteriskPing. + * + * Asterisk ping information + * + * \param json JSON object to validate. + * \returns True (non-zero) if valid. + * \returns False (zero) if invalid. + */ +int ast_ari_validate_asterisk_ping(struct ast_json *json); + +/*! + * \brief Function pointer to ast_ari_validate_asterisk_ping(). + * + * See \ref ast_ari_model_validators.h for more details. + */ +ari_validator ast_ari_validate_asterisk_ping_fn(void); + /*! * \brief Validator for BuildInfo. * @@ -1374,6 +1392,10 @@ ari_validator ast_ari_validate_application_fn(void); * - config: ConfigInfo * - status: StatusInfo * - system: SystemInfo + * AsteriskPing + * - asterisk_id: string (required) + * - ping: string (required) + * - timestamp: string (required) * BuildInfo * - date: string (required) * - kernel: string (required) diff --git a/res/ari/resource_asterisk.c b/res/ari/resource_asterisk.c index dafe9a6027be4482c58a8fc22baa959d5339dbed..5df66330a2e7a678bb3e757e5ab896d47bcbcc42 100644 --- a/res/ari/resource_asterisk.c +++ b/res/ari/resource_asterisk.c @@ -633,6 +633,24 @@ void ast_ari_asterisk_reload_module(struct ast_variable *headers, ast_ari_response_no_content(response); } +void ast_ari_asterisk_ping(struct ast_variable *headers, + struct ast_ari_asterisk_ping_args *args, + struct ast_ari_response *response) +{ + struct ast_json *json; + char eid[20]; + + ast_assert(response != NULL); + + json = ast_json_pack("{s: s, s: o, s: s}", + "ping", "pong", + "timestamp", ast_json_timeval(ast_tvnow(), NULL), + "asterisk_id", ast_eid_to_str(eid, sizeof(eid), &ast_eid_default) + ); + + ast_ari_response_ok(response, json); +} + /*! * \brief Process logger information and append to a json array * \param channel Resource logger channel name path diff --git a/res/ari/resource_asterisk.h b/res/ari/resource_asterisk.h index a4a7da08065573165ff351968693f29893deb2a0..5b2d4944332023036fc5d0567317e2a8693b43ca 100644 --- a/res/ari/resource_asterisk.h +++ b/res/ari/resource_asterisk.h @@ -131,6 +131,17 @@ int ast_ari_asterisk_get_info_parse_body( * \param[out] response HTTP response */ void ast_ari_asterisk_get_info(struct ast_variable *headers, struct ast_ari_asterisk_get_info_args *args, struct ast_ari_response *response); +/*! Argument struct for ast_ari_asterisk_ping() */ +struct ast_ari_asterisk_ping_args { +}; +/*! + * \brief Response pong message. + * + * \param headers HTTP headers + * \param args Swagger parameters + * \param[out] response HTTP response + */ +void ast_ari_asterisk_ping(struct ast_variable *headers, struct ast_ari_asterisk_ping_args *args, struct ast_ari_response *response); /*! Argument struct for ast_ari_asterisk_list_modules() */ struct ast_ari_asterisk_list_modules_args { }; diff --git a/res/res_ari_asterisk.c b/res/res_ari_asterisk.c index 7480ac885028eed11afd135c941f2085adaa3b8e..385c6218c8dcc67800f9f35c6f8bf6f599bc922a 100644 --- a/res/res_ari_asterisk.c +++ b/res/res_ari_asterisk.c @@ -397,6 +397,56 @@ fin: __attribute__((unused)) ast_free(args.only); return; } +/*! + * \brief Parameter parsing callback for /asterisk/ping. + * \param get_params GET parameters in the HTTP request. + * \param path_vars Path variables extracted from the request. + * \param headers HTTP headers. + * \param[out] response Response to the HTTP request. + */ +static void ast_ari_asterisk_ping_cb( + struct ast_tcptls_session_instance *ser, + struct ast_variable *get_params, struct ast_variable *path_vars, + struct ast_variable *headers, struct ast_json *body, struct ast_ari_response *response) +{ + struct ast_ari_asterisk_ping_args args = {}; +#if defined(AST_DEVMODE) + int is_valid; + int code; +#endif /* AST_DEVMODE */ + + ast_ari_asterisk_ping(headers, &args, response); +#if defined(AST_DEVMODE) + code = response->response_code; + + switch (code) { + case 0: /* Implementation is still a stub, or the code wasn't set */ + is_valid = response->message == NULL; + break; + case 500: /* Internal Server Error */ + case 501: /* Not Implemented */ + is_valid = 1; + break; + default: + if (200 <= code && code <= 299) { + is_valid = ast_ari_validate_asterisk_ping( + response->message); + } else { + ast_log(LOG_ERROR, "Invalid error response %d for /asterisk/ping\n", code); + is_valid = 0; + } + } + + if (!is_valid) { + ast_log(LOG_ERROR, "Response validation failed for /asterisk/ping\n"); + ast_ari_response_error(response, 500, + "Internal Server Error", "Response validation failed"); + } +#endif /* AST_DEVMODE */ + +fin: __attribute__((unused)) + return; +} /*! * \brief Parameter parsing callback for /asterisk/modules. * \param get_params GET parameters in the HTTP request. @@ -1144,6 +1194,15 @@ static struct stasis_rest_handlers asterisk_info = { .children = { } }; /*! \brief REST handler for /api-docs/asterisk.json */ +static struct stasis_rest_handlers asterisk_ping = { + .path_segment = "ping", + .callbacks = { + [AST_HTTP_GET] = ast_ari_asterisk_ping_cb, + }, + .num_children = 0, + .children = { } +}; +/*! \brief REST handler for /api-docs/asterisk.json */ static struct stasis_rest_handlers asterisk_modules_moduleName = { .path_segment = "moduleName", .is_wildcard = 1, @@ -1209,8 +1268,8 @@ static struct stasis_rest_handlers asterisk = { .path_segment = "asterisk", .callbacks = { }, - .num_children = 5, - .children = { &asterisk_config,&asterisk_info,&asterisk_modules,&asterisk_logging,&asterisk_variable, } + .num_children = 6, + .children = { &asterisk_config,&asterisk_info,&asterisk_ping,&asterisk_modules,&asterisk_logging,&asterisk_variable, } }; static int unload_module(void) diff --git a/rest-api/api-docs/asterisk.json b/rest-api/api-docs/asterisk.json index 9ae965d3216c9eef81708e2320eb9ca8022df541..226c48e8ea7762965261c15729d05719f1e4201f 100644 --- a/rest-api/api-docs/asterisk.json +++ b/rest-api/api-docs/asterisk.json @@ -178,6 +178,18 @@ } ] }, + { + "path": "/asterisk/ping", + "description": "Asterisk ping", + "operations": [ + { + "httpMethod": "GET", + "summary": "Response pong message.", + "nickname": "ping", + "responseClass": "AsteriskPing" + } + ] + }, { "path": "/asterisk/modules", "description": "Asterisk modules", @@ -604,6 +616,27 @@ } } }, + "AsteriskPing": { + "id": "AsteriskPing", + "description": "Asterisk ping information", + "properties": { + "asterisk_id": { + "required": true, + "type": "string", + "description": "Asterisk id info" + }, + "ping": { + "required": true, + "type": "string", + "description": "Always string value is pong" + }, + "timestamp": { + "required": true, + "type": "string", + "description": "The timestamp string of request received time" + } + } + }, "Module": { "id": "Module", "description": "Details of an Asterisk module",