Asterisk - The Open Source Telephony Project
18.5.0
|
Endpoint resources. More...
#include "asterisk.h"
#include "asterisk/app.h"
#include "asterisk/module.h"
#include "asterisk/stasis_app.h"
#include "ari/resource_endpoints.h"
#include "ari/ari_model_validators.h"
Go to the source code of this file.
Macros | |
#define | MAX_VALS 128 |
Functions | |
static void | __reg_module (void) |
static void | __unreg_module (void) |
static void | ast_ari_endpoints_get_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) |
Parameter parsing callback for /endpoints/{tech}/{resource}. More... | |
static void | ast_ari_endpoints_list_by_tech_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) |
Parameter parsing callback for /endpoints/{tech}. More... | |
static void | ast_ari_endpoints_list_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) |
Parameter parsing callback for /endpoints. More... | |
static void | ast_ari_endpoints_send_message_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) |
Parameter parsing callback for /endpoints/sendMessage. More... | |
int | ast_ari_endpoints_send_message_parse_body (struct ast_json *body, struct ast_ari_endpoints_send_message_args *args) |
Body parsing function for /endpoints/sendMessage. More... | |
static void | ast_ari_endpoints_send_message_to_endpoint_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) |
Parameter parsing callback for /endpoints/{tech}/{resource}/sendMessage. More... | |
int | ast_ari_endpoints_send_message_to_endpoint_parse_body (struct ast_json *body, struct ast_ari_endpoints_send_message_to_endpoint_args *args) |
Body parsing function for /endpoints/{tech}/{resource}/sendMessage. More... | |
struct ast_module * | AST_MODULE_SELF_SYM (void) |
static int | load_module (void) |
static int | unload_module (void) |
Variables | |
static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_DEFAULT , .description = "RESTful API module - Endpoint resources" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = "30ef0c93b36035ec78c9cfd712d36d9b" , .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, .requires = "res_ari,res_ari_model,res_stasis", } |
static const struct ast_module_info * | ast_module_info = &__mod_info |
static struct stasis_rest_handlers | endpoints |
REST handler for /api-docs/endpoints.json. More... | |
static struct stasis_rest_handlers | endpoints_sendMessage |
REST handler for /api-docs/endpoints.json. More... | |
static struct stasis_rest_handlers | endpoints_tech |
REST handler for /api-docs/endpoints.json. More... | |
static struct stasis_rest_handlers | endpoints_tech_resource |
REST handler for /api-docs/endpoints.json. More... | |
static struct stasis_rest_handlers | endpoints_tech_resource_sendMessage |
REST handler for /api-docs/endpoints.json. More... | |
Endpoint resources.
Definition in file res_ari_endpoints.c.
#define MAX_VALS 128 |
Definition at line 51 of file res_ari_endpoints.c.
|
static |
Definition at line 473 of file res_ari_endpoints.c.
|
static |
Definition at line 473 of file res_ari_endpoints.c.
|
static |
Parameter parsing callback for /endpoints/{tech}/{resource}.
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
[out] | response | Response to the HTTP request. |
Definition at line 255 of file res_ari_endpoints.c.
References ast_ari_endpoints_get(), ast_ari_response_error(), ast_ari_validate_endpoint(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_endpoints_get_args::resource, ast_ari_response::response_code, ast_ari_endpoints_get_args::tech, and ast_variable::value.
|
static |
Parameter parsing callback for /endpoints/{tech}.
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
[out] | response | Response to the HTTP request. |
Definition at line 197 of file res_ari_endpoints.c.
References ast_ari_endpoints_list_by_tech(), ast_ari_response_error(), ast_ari_validate_endpoint_fn(), ast_ari_validate_list(), ast_log, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, ast_ari_endpoints_list_by_tech_args::tech, and ast_variable::value.
|
static |
Parameter parsing callback for /endpoints.
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
[out] | response | Response to the HTTP request. |
Definition at line 60 of file res_ari_endpoints.c.
References ast_ari_endpoints_list(), ast_ari_response_error(), ast_ari_validate_endpoint_fn(), ast_ari_validate_list(), ast_log, LOG_ERROR, ast_ari_response::message, NULL, and ast_ari_response::response_code.
|
static |
Parameter parsing callback for /endpoints/sendMessage.
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
[out] | response | Response to the HTTP request. |
Definition at line 131 of file res_ari_endpoints.c.
References ast_ari_endpoints_send_message(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, ast_ari_endpoints_send_message_args::body, ast_ari_endpoints_send_message_args::from, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_response::response_code, ast_ari_endpoints_send_message_args::to, ast_variable::value, and ast_ari_endpoints_send_message_args::variables.
int ast_ari_endpoints_send_message_parse_body | ( | struct ast_json * | body, |
struct ast_ari_endpoints_send_message_args * | args | ||
) |
Body parsing function for /endpoints/sendMessage.
body | The JSON body from which to parse parameters. | |
[out] | args | The args structure to parse into. |
zero | on success |
non-zero | on failure |
Definition at line 103 of file res_ari_endpoints.c.
References ast_json_object_get(), ast_json_string_get(), ast_ari_endpoints_send_message_args::body, ast_ari_endpoints_send_message_args::from, and ast_ari_endpoints_send_message_args::to.
Referenced by ast_ari_endpoints_send_message().
|
static |
Parameter parsing callback for /endpoints/{tech}/{resource}/sendMessage.
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
[out] | response | Response to the HTTP request. |
Definition at line 334 of file res_ari_endpoints.c.
References ast_ari_endpoints_send_message_to_endpoint(), ast_ari_response_error(), ast_ari_validate_void(), ast_log, ast_ari_endpoints_send_message_to_endpoint_args::body, ast_ari_endpoints_send_message_to_endpoint_args::from, LOG_ERROR, ast_ari_response::message, ast_variable::name, ast_variable::next, NULL, ast_ari_endpoints_send_message_to_endpoint_args::resource, ast_ari_response::response_code, ast_ari_endpoints_send_message_to_endpoint_args::tech, ast_variable::value, and ast_ari_endpoints_send_message_to_endpoint_args::variables.
int ast_ari_endpoints_send_message_to_endpoint_parse_body | ( | struct ast_json * | body, |
struct ast_ari_endpoints_send_message_to_endpoint_args * | args | ||
) |
Body parsing function for /endpoints/{tech}/{resource}/sendMessage.
body | The JSON body from which to parse parameters. | |
[out] | args | The args structure to parse into. |
zero | on success |
non-zero | on failure |
Definition at line 310 of file res_ari_endpoints.c.
References ast_json_object_get(), ast_json_string_get(), ast_ari_endpoints_send_message_to_endpoint_args::body, and ast_ari_endpoints_send_message_to_endpoint_args::from.
Referenced by ast_ari_endpoints_send_message_to_endpoint().
struct ast_module* AST_MODULE_SELF_SYM | ( | void | ) |
Definition at line 473 of file res_ari_endpoints.c.
|
static |
Definition at line 454 of file res_ari_endpoints.c.
References ast_ari_add_handler(), AST_MODFLAG_DEFAULT, AST_MODULE_INFO(), AST_MODULE_LOAD_DECLINE, AST_MODULE_LOAD_SUCCESS, AST_MODULE_SUPPORT_CORE, ASTERISK_GPL_KEY, and unload_module().
|
static |
Definition at line 448 of file res_ari_endpoints.c.
References ast_ari_remove_handler().
Referenced by load_module().
|
static |
Definition at line 473 of file res_ari_endpoints.c.
|
static |
Definition at line 473 of file res_ari_endpoints.c.
|
static |
REST handler for /api-docs/endpoints.json.
Definition at line 439 of file res_ari_endpoints.c.
|
static |
REST handler for /api-docs/endpoints.json.
Definition at line 401 of file res_ari_endpoints.c.
|
static |
REST handler for /api-docs/endpoints.json.
Definition at line 429 of file res_ari_endpoints.c.
|
static |
REST handler for /api-docs/endpoints.json.
Definition at line 419 of file res_ari_endpoints.c.
|
static |
REST handler for /api-docs/endpoints.json.
Definition at line 410 of file res_ari_endpoints.c.