summaryrefslogtreecommitdiff
path: root/res/ari/resource_bridges.c
diff options
context:
space:
mode:
authorKevin Harwell <kharwell@digium.com>2013-12-13 16:38:57 +0000
committerKevin Harwell <kharwell@digium.com>2013-12-13 16:38:57 +0000
commitce18946de46a6f16463391a9c07af02b8ee4e925 (patch)
tree3679fcee389fa7725b00389e6bd7f99cf058bb2e /res/ari/resource_bridges.c
parentfc8c0ef28f669a53bcab3a862b4ef71b33665b2e (diff)
ARI: Adding a channel to a bridge while a live recording is active blocks
Added the ability to have rules that are checked when adding and/or removing channels to/from a bridge. In this case, if a channel is currently recording and someone attempts to add it to a bridge an "is recording" rule is checked, fails, and a 409 conflict is returned. Also command functions now return an integer value that can be descriptive of what kind of problems, if any, occurred before or during execution. (closes issue ASTERISK-22624) Reported by: Joshua Colp Review: https://reviewboard.asterisk.org/r/2947/ ........ Merged revisions 403749 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@403750 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/ari/resource_bridges.c')
-rw-r--r--res/ari/resource_bridges.c27
1 files changed, 25 insertions, 2 deletions
diff --git a/res/ari/resource_bridges.c b/res/ari/resource_bridges.c
index e09bea6b5..c07471816 100644
--- a/res/ari/resource_bridges.c
+++ b/res/ari/resource_bridges.c
@@ -172,6 +172,22 @@ static struct control_list *control_list_create(struct ast_ari_response *respons
return list;
}
+static int check_add_remove_channel(struct ast_ari_response *response,
+ struct stasis_app_control *control,
+ enum stasis_app_control_channel_result result)
+{
+ switch (result) {
+ case STASIS_APP_CHANNEL_RECORDING :
+ ast_ari_response_error(
+ response, 409, "Conflict", "Channel %s currently recording",
+ stasis_app_control_get_channel_id(control));
+ return -1;
+ case STASIS_APP_CHANNEL_OKAY:
+ return 0;
+ }
+ return 0;
+}
+
void ast_ari_bridges_add_channel(struct ast_variable *headers,
struct ast_ari_bridges_add_channel_args *args,
struct ast_ari_response *response)
@@ -179,6 +195,7 @@ void ast_ari_bridges_add_channel(struct ast_variable *headers,
RAII_VAR(struct ast_bridge *, bridge, find_bridge(response, args->bridge_id), ao2_cleanup);
RAII_VAR(struct control_list *, list, NULL, ao2_cleanup);
size_t i;
+ int has_error = 0;
if (!bridge) {
/* Response filled in by find_bridge() */
@@ -202,10 +219,16 @@ void ast_ari_bridges_add_channel(struct ast_variable *headers,
}
for (i = 0; i < list->count; ++i) {
- stasis_app_control_add_channel_to_bridge(list->controls[i], bridge);
+ if ((has_error = check_add_remove_channel(response, list->controls[i],
+ stasis_app_control_add_channel_to_bridge(
+ list->controls[i], bridge)))) {
+ break;
+ }
}
- ast_ari_response_no_content(response);
+ if (!has_error) {
+ ast_ari_response_no_content(response);
+ }
}
void ast_ari_bridges_remove_channel(struct ast_variable *headers,