Asterisk - The Open Source Telephony Project
21.4.1
|
Playback control resources. More...
#include "asterisk.h"
#include "asterisk/app.h"
#include "asterisk/module.h"
#include "asterisk/stasis_app.h"
#include "ari/resource_playbacks.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_playbacks_control_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 /playbacks/{playbackId}/control. More... | |
int | ast_ari_playbacks_control_parse_body (struct ast_json *body, struct ast_ari_playbacks_control_args *args) |
Body parsing function for /playbacks/{playbackId}/control. More... | |
static void | ast_ari_playbacks_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 /playbacks/{playbackId}. More... | |
static void | ast_ari_playbacks_stop_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 /playbacks/{playbackId}. 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 - Playback control 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 = "da6642af068ee5e6490c5b1d2cc1d238" , .support_level = AST_MODULE_SUPPORT_CORE, .load = load_module, .unload = unload_module, .requires = "res_ari,res_ari_model,res_stasis,res_stasis_playback", } |
static const struct ast_module_info * | ast_module_info = &__mod_info |
static struct stasis_rest_handlers | playbacks |
REST handler for /api-docs/playbacks.json. | |
static struct stasis_rest_handlers | playbacks_playbackId |
REST handler for /api-docs/playbacks.json. | |
static struct stasis_rest_handlers | playbacks_playbackId_control |
REST handler for /api-docs/playbacks.json. | |
Playback control resources.
Definition in file res_ari_playbacks.c.
|
static |
Parameter parsing callback for /playbacks/{playbackId}/control.
ser | TCP/TLS session object | |
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
body | ||
[out] | response | Response to the HTTP request. |
Definition at line 196 of file res_ari_playbacks.c.
References ast_ari_playbacks_control(), ast_ari_playbacks_control_parse_body(), ast_ari_response_alloc_failed(), ast_ari_response_error(), ast_ari_validate_void(), ast_ari_response::message, ast_variable::name, ast_variable::next, ast_ari_playbacks_control_args::operation, ast_ari_playbacks_control_args::playback_id, ast_ari_response::response_code, and ast_variable::value.
int ast_ari_playbacks_control_parse_body | ( | struct ast_json * | body, |
struct ast_ari_playbacks_control_args * | args | ||
) |
Body parsing function for /playbacks/{playbackId}/control.
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 174 of file res_ari_playbacks.c.
References ast_json_object_get(), ast_json_string_get(), and ast_ari_playbacks_control_args::operation.
Referenced by ast_ari_playbacks_control_cb().
|
static |
Parameter parsing callback for /playbacks/{playbackId}.
ser | TCP/TLS session object | |
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
body | ||
[out] | response | Response to the HTTP request. |
Definition at line 63 of file res_ari_playbacks.c.
References ast_ari_playbacks_get(), ast_ari_response_error(), ast_ari_validate_playback(), ast_ari_response::message, ast_variable::name, ast_variable::next, ast_ari_playbacks_get_args::playback_id, ast_ari_response::response_code, and ast_variable::value.
|
static |
Parameter parsing callback for /playbacks/{playbackId}.
ser | TCP/TLS session object | |
get_params | GET parameters in the HTTP request. | |
path_vars | Path variables extracted from the request. | |
headers | HTTP headers. | |
body | ||
[out] | response | Response to the HTTP request. |
Definition at line 123 of file res_ari_playbacks.c.
References ast_ari_playbacks_stop(), ast_ari_response_error(), ast_ari_validate_void(), ast_ari_response::message, ast_variable::name, ast_variable::next, ast_ari_playbacks_stop_args::playback_id, ast_ari_response::response_code, and ast_variable::value.