summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2014-03-19 12:54:25 +0000
committerJoshua Colp <jcolp@digium.com>2014-03-19 12:54:25 +0000
commit1cf74b87764fd1d0fa7d81d25d16121e1ce43f4f (patch)
treea468de791e4e8fbc927c3cc61c1acd6cf13ac0b8
parente33e003f78a7118751c5a5555ff2878f6988e4d1 (diff)
res_stasis: Extend bridge type to be a comma separated list of bridge attributes.
This change turns the bridge type field into a comma separated list of attributes. These attributes include: mixing, holding, dtmf_events, and proxy_media. By setting the various attributes a user can control the type of bridge created with the behavior they need for their application. (closes issue ASTERISK-23437) Reported by: Matt Jordan Review: https://reviewboard.asterisk.org/r/3359/ ........ Merged revisions 410904 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@410905 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--CHANGES10
-rw-r--r--res/ari/resource_bridges.h4
-rw-r--r--res/res_stasis.c28
-rw-r--r--rest-api/api-docs/bridges.json22
4 files changed, 35 insertions, 29 deletions
diff --git a/CHANGES b/CHANGES
index 8ddbf564f..2551c0b5b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -103,6 +103,16 @@ Core
* Exposed sorcery-based configuration files like pjsip.conf to dialplans via
the new AST_SORCERY diaplan function.
+=======
+ARI
+------------------
+ * The live recording object on recording events now contains a target_uri
+ field which contains the URI of what is being recorded.
+
+ * The bridge type used when creating a bridge is now a comma separated list of
+ bridge properties. Valid options are: mixing, holding, dtmf_events, and
+ proxy_media.
+
* A channelId can now be provided when creating a channel, either in the
uri (POST channels/my-channel-id) or as query parameter. A local channel
will suffix the second channel id with ';2' unless provided as query
diff --git a/res/ari/resource_bridges.h b/res/ari/resource_bridges.h
index 1b8782310..5dca82781 100644
--- a/res/ari/resource_bridges.h
+++ b/res/ari/resource_bridges.h
@@ -52,7 +52,7 @@ struct ast_ari_bridges_list_args {
void ast_ari_bridges_list(struct ast_variable *headers, struct ast_ari_bridges_list_args *args, struct ast_ari_response *response);
/*! \brief Argument struct for ast_ari_bridges_create() */
struct ast_ari_bridges_create_args {
- /*! \brief Type of bridge to create. */
+ /*! \brief Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media). */
const char *type;
/*! \brief Unique ID to give to the bridge being created. */
const char *bridge_id;
@@ -82,7 +82,7 @@ int ast_ari_bridges_create_parse_body(
void ast_ari_bridges_create(struct ast_variable *headers, struct ast_ari_bridges_create_args *args, struct ast_ari_response *response);
/*! \brief Argument struct for ast_ari_bridges_create_or_update_with_id() */
struct ast_ari_bridges_create_or_update_with_id_args {
- /*! \brief Set the type of bridge. */
+ /*! \brief Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media) to set. */
const char *type;
/*! \brief Unique ID to give to the bridge being created. */
const char *bridge_id;
diff --git a/res/res_stasis.c b/res/res_stasis.c
index e7a8d983a..cfb1a7af1 100644
--- a/res/res_stasis.c
+++ b/res/res_stasis.c
@@ -588,19 +588,29 @@ static void control_unlink(struct stasis_app_control *control)
struct ast_bridge *stasis_app_bridge_create(const char *type, const char *name, const char *id)
{
struct ast_bridge *bridge;
- int capabilities;
+ char *requested_type, *requested_types = ast_strdupa(type);
+ int capabilities = 0;
int flags = AST_BRIDGE_FLAG_MERGE_INHIBIT_FROM | AST_BRIDGE_FLAG_MERGE_INHIBIT_TO
| AST_BRIDGE_FLAG_SWAP_INHIBIT_FROM | AST_BRIDGE_FLAG_SWAP_INHIBIT_TO
| AST_BRIDGE_FLAG_TRANSFER_BRIDGE_ONLY;
- if (ast_strlen_zero(type) || !strcmp(type, "mixing")) {
- capabilities = AST_BRIDGE_CAPABILITY_1TO1MIX |
- AST_BRIDGE_CAPABILITY_MULTIMIX |
- AST_BRIDGE_CAPABILITY_NATIVE;
- flags |= AST_BRIDGE_FLAG_SMART;
- } else if (!strcmp(type, "holding")) {
- capabilities = AST_BRIDGE_CAPABILITY_HOLDING;
- } else {
+ while ((requested_type = strsep(&requested_types, ","))) {
+ requested_type = ast_strip(requested_type);
+
+ if (!strcmp(requested_type, "mixing")) {
+ capabilities |= AST_BRIDGE_CAPABILITY_1TO1MIX |
+ AST_BRIDGE_CAPABILITY_MULTIMIX |
+ AST_BRIDGE_CAPABILITY_NATIVE;
+ flags |= AST_BRIDGE_FLAG_SMART;
+ } else if (!strcmp(requested_type, "holding")) {
+ capabilities |= AST_BRIDGE_CAPABILITY_HOLDING;
+ } else if (!strcmp(requested_type, "dtmf_events") ||
+ !strcmp(requested_type, "proxy_media")) {
+ capabilities &= ~AST_BRIDGE_CAPABILITY_NATIVE;
+ }
+ }
+
+ if (!capabilities) {
return NULL;
}
diff --git a/rest-api/api-docs/bridges.json b/rest-api/api-docs/bridges.json
index 3e899788f..0038510f4 100644
--- a/rest-api/api-docs/bridges.json
+++ b/rest-api/api-docs/bridges.json
@@ -26,18 +26,11 @@
"parameters": [
{
"name": "type",
- "description": "Type of bridge to create.",
+ "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media).",
"paramType": "query",
"required": false,
"allowMultiple": false,
- "dataType": "string",
- "allowableValues": {
- "valueType": "LIST",
- "values": [
- "mixing",
- "holding"
- ]
- }
+ "dataType": "string"
},
{
"name": "bridgeId",
@@ -72,18 +65,11 @@
"parameters": [
{
"name": "type",
- "description": "Set the type of bridge.",
+ "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media) to set.",
"paramType": "query",
"required": false,
"allowMultiple": false,
- "dataType": "string",
- "allowableValues": {
- "valueType": "LIST",
- "values": [
- "mixing",
- "holding"
- ]
- }
+ "dataType": "string"
},
{
"name": "bridgeId",