12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124 |
- /*
- * Asterisk -- An open source telephony toolkit.
- *
- * Copyright (C) 2012 - 2013, Digium, Inc.
- *
- * David M. Lee, II <dlee@digium.com>
- *
- * See http://www.asterisk.org for more information about
- * the Asterisk project. Please do not directly contact
- * any of the maintainers of this project for assistance;
- * the project provides a web site, mailing lists and IRC
- * channels for your use.
- *
- * This program is free software, distributed under the terms of
- * the GNU General Public License Version 2. See the LICENSE file
- * at the top of the source tree.
- */
- /*! \file
- *
- * \brief Implementation for ARI stubs.
- *
- * \author David M. Lee, II <dlee@digium.com>
- */
- /*** MODULEINFO
- <depend type="module">res_stasis_app_playback</depend>
- <support_level>core</support_level>
- ***/
- #include "asterisk.h"
- ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
- #include "asterisk/file.h"
- #include "asterisk/pbx.h"
- #include "asterisk/bridge.h"
- #include "asterisk/callerid.h"
- #include "asterisk/stasis_app.h"
- #include "asterisk/stasis_app_playback.h"
- #include "asterisk/stasis_app_recording.h"
- #include "asterisk/stasis_app_snoop.h"
- #include "asterisk/stasis_channels.h"
- #include "asterisk/causes.h"
- #include "asterisk/format_cache.h"
- #include "asterisk/core_local.h"
- #include "resource_channels.h"
- #include <limits.h>
- /*!
- * \brief Finds the control object for a channel, filling the response with an
- * error, if appropriate.
- * \param[out] response Response to fill with an error if control is not found.
- * \param channel_id ID of the channel to lookup.
- * \return Channel control object.
- * \return \c NULL if control object does not exist.
- */
- static struct stasis_app_control *find_control(
- struct ast_ari_response *response,
- const char *channel_id)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- ast_assert(response != NULL);
- control = stasis_app_control_find_by_channel_id(channel_id);
- if (control == NULL) {
- /* Distinguish between 404 and 409 errors */
- RAII_VAR(struct ast_channel *, chan, NULL, ao2_cleanup);
- chan = ast_channel_get_by_name(channel_id);
- if (chan == NULL) {
- ast_ari_response_error(response, 404, "Not Found",
- "Channel not found");
- return NULL;
- }
- ast_ari_response_error(response, 409, "Conflict",
- "Channel not in Stasis application");
- return NULL;
- }
- ao2_ref(control, +1);
- return control;
- }
- void ast_ari_channels_continue_in_dialplan(
- struct ast_variable *headers,
- struct ast_ari_channels_continue_in_dialplan_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- ast_assert(response != NULL);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- if (stasis_app_control_continue(control, args->context, args->extension, args->priority)) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_answer(struct ast_variable *headers,
- struct ast_ari_channels_answer_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- if (stasis_app_control_answer(control) != 0) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Failed to answer channel");
- return;
- }
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_ring(struct ast_variable *headers,
- struct ast_ari_channels_ring_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- stasis_app_control_ring(control);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_ring_stop(struct ast_variable *headers,
- struct ast_ari_channels_ring_stop_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- stasis_app_control_ring_stop(control);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_mute(struct ast_variable *headers,
- struct ast_ari_channels_mute_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- unsigned int direction = 0;
- enum ast_frame_type frametype = AST_FRAME_VOICE;
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- if (ast_strlen_zero(args->direction)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Direction is required");
- return;
- }
- if (!strcmp(args->direction, "in")) {
- direction = AST_MUTE_DIRECTION_READ;
- } else if (!strcmp(args->direction, "out")) {
- direction = AST_MUTE_DIRECTION_WRITE;
- } else if (!strcmp(args->direction, "both")) {
- direction = AST_MUTE_DIRECTION_READ | AST_MUTE_DIRECTION_WRITE;
- } else {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Invalid direction specified");
- return;
- }
- stasis_app_control_mute(control, direction, frametype);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_unmute(struct ast_variable *headers,
- struct ast_ari_channels_unmute_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- unsigned int direction = 0;
- enum ast_frame_type frametype = AST_FRAME_VOICE;
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- if (ast_strlen_zero(args->direction)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Direction is required");
- return;
- }
- if (!strcmp(args->direction, "in")) {
- direction = AST_MUTE_DIRECTION_READ;
- } else if (!strcmp(args->direction, "out")) {
- direction = AST_MUTE_DIRECTION_WRITE;
- } else if (!strcmp(args->direction, "both")) {
- direction = AST_MUTE_DIRECTION_READ | AST_MUTE_DIRECTION_WRITE;
- } else {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Invalid direction specified");
- return;
- }
- stasis_app_control_unmute(control, direction, frametype);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_send_dtmf(struct ast_variable *headers,
- struct ast_ari_channels_send_dtmf_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- return;
- }
- if (ast_strlen_zero(args->dtmf)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "DTMF is required");
- return;
- }
- stasis_app_control_dtmf(control, args->dtmf, args->before, args->between, args->duration, args->after);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_hold(struct ast_variable *headers,
- struct ast_ari_channels_hold_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- stasis_app_control_hold(control);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_unhold(struct ast_variable *headers,
- struct ast_ari_channels_unhold_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- stasis_app_control_unhold(control);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_start_moh(struct ast_variable *headers,
- struct ast_ari_channels_start_moh_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- stasis_app_control_moh_start(control, args->moh_class);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_stop_moh(struct ast_variable *headers,
- struct ast_ari_channels_stop_moh_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- stasis_app_control_moh_stop(control);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_start_silence(struct ast_variable *headers,
- struct ast_ari_channels_start_silence_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- stasis_app_control_silence_start(control);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_stop_silence(struct ast_variable *headers,
- struct ast_ari_channels_stop_silence_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- stasis_app_control_silence_stop(control);
- ast_ari_response_no_content(response);
- }
- static void ari_channels_handle_play(
- const char *args_channel_id,
- const char *args_media,
- const char *args_lang,
- int args_offsetms,
- int args_skipms,
- const char *args_playback_id,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- RAII_VAR(struct ast_channel_snapshot *, snapshot, NULL, ao2_cleanup);
- RAII_VAR(struct stasis_app_playback *, playback, NULL, ao2_cleanup);
- RAII_VAR(char *, playback_url, NULL, ast_free);
- struct ast_json *json;
- const char *language;
- ast_assert(response != NULL);
- control = find_control(response, args_channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- snapshot = stasis_app_control_get_snapshot(control);
- if (!snapshot) {
- ast_ari_response_error(
- response, 404, "Not Found",
- "Channel not found");
- return;
- }
- if (args_skipms < 0) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "skipms cannot be negative");
- return;
- }
- if (args_offsetms < 0) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "offsetms cannot be negative");
- return;
- }
- language = S_OR(args_lang, snapshot->language);
- playback = stasis_app_control_play_uri(control, args_media, language,
- args_channel_id, STASIS_PLAYBACK_TARGET_CHANNEL, args_skipms, args_offsetms, args_playback_id);
- if (!playback) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Failed to queue media for playback");
- return;
- }
- if (ast_asprintf(&playback_url, "/playback/%s",
- stasis_app_playback_get_id(playback)) == -1) {
- playback_url = NULL;
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- return;
- }
- json = stasis_app_playback_to_json(playback);
- if (!json) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- return;
- }
- ast_ari_response_created(response, playback_url, json);
- }
- void ast_ari_channels_play(struct ast_variable *headers,
- struct ast_ari_channels_play_args *args,
- struct ast_ari_response *response)
- {
- ari_channels_handle_play(
- args->channel_id,
- args->media,
- args->lang,
- args->offsetms,
- args->skipms,
- args->playback_id,
- response);
- }
- void ast_ari_channels_play_with_id(struct ast_variable *headers,
- struct ast_ari_channels_play_with_id_args *args,
- struct ast_ari_response *response)
- {
- ari_channels_handle_play(
- args->channel_id,
- args->media,
- args->lang,
- args->offsetms,
- args->skipms,
- args->playback_id,
- response);
- }
- void ast_ari_channels_record(struct ast_variable *headers,
- struct ast_ari_channels_record_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- RAII_VAR(struct stasis_app_recording *, recording, NULL, ao2_cleanup);
- RAII_VAR(char *, recording_url, NULL, ast_free);
- struct ast_json *json;
- RAII_VAR(struct stasis_app_recording_options *, options, NULL,
- ao2_cleanup);
- RAII_VAR(char *, uri_encoded_name, NULL, ast_free);
- size_t uri_name_maxlen;
- ast_assert(response != NULL);
- if (args->max_duration_seconds < 0) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "max_duration_seconds cannot be negative");
- return;
- }
- if (args->max_silence_seconds < 0) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "max_silence_seconds cannot be negative");
- return;
- }
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* Response filled in by find_control */
- return;
- }
- options = stasis_app_recording_options_create(args->name, args->format);
- if (options == NULL) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- }
- ast_string_field_build(options, target, "channel:%s", args->channel_id);
- options->max_silence_seconds = args->max_silence_seconds;
- options->max_duration_seconds = args->max_duration_seconds;
- options->terminate_on =
- stasis_app_recording_termination_parse(args->terminate_on);
- options->if_exists =
- stasis_app_recording_if_exists_parse(args->if_exists);
- options->beep = args->beep;
- if (options->terminate_on == STASIS_APP_RECORDING_TERMINATE_INVALID) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "terminateOn invalid");
- return;
- }
- if (options->if_exists == -1) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "ifExists invalid");
- return;
- }
- if (!ast_get_format_for_file_ext(options->format)) {
- ast_ari_response_error(
- response, 422, "Unprocessable Entity",
- "specified format is unknown on this system");
- return;
- }
- recording = stasis_app_control_record(control, options);
- if (recording == NULL) {
- switch(errno) {
- case EINVAL:
- /* While the arguments are invalid, we should have
- * caught them prior to calling record.
- */
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Error parsing request");
- break;
- case EEXIST:
- ast_ari_response_error(response, 409, "Conflict",
- "Recording '%s' already exists and can not be overwritten",
- args->name);
- break;
- case ENOMEM:
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- break;
- case EPERM:
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Recording name invalid");
- break;
- default:
- ast_log(LOG_WARNING,
- "Unrecognized recording error: %s\n",
- strerror(errno));
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Internal Server Error");
- break;
- }
- return;
- }
- uri_name_maxlen = strlen(args->name) * 3;
- uri_encoded_name = ast_malloc(uri_name_maxlen);
- if (!uri_encoded_name) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- return;
- }
- ast_uri_encode(args->name, uri_encoded_name, uri_name_maxlen,
- ast_uri_http);
- if (ast_asprintf(&recording_url, "/recordings/live/%s",
- uri_encoded_name) == -1) {
- recording_url = NULL;
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- return;
- }
- json = stasis_app_recording_to_json(recording);
- if (!json) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Out of memory");
- return;
- }
- ast_ari_response_created(response, recording_url, json);
- }
- void ast_ari_channels_get(struct ast_variable *headers,
- struct ast_ari_channels_get_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);
- struct stasis_cache *cache;
- struct ast_channel_snapshot *snapshot;
- cache = ast_channel_cache();
- if (!cache) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Message bus not initialized");
- return;
- }
- msg = stasis_cache_get(cache, ast_channel_snapshot_type(),
- args->channel_id);
- if (!msg) {
- ast_ari_response_error(
- response, 404, "Not Found",
- "Channel not found");
- return;
- }
- snapshot = stasis_message_data(msg);
- ast_assert(snapshot != NULL);
- ast_ari_response_ok(response,
- ast_channel_snapshot_to_json(snapshot, NULL));
- }
- void ast_ari_channels_hangup(struct ast_variable *headers,
- struct ast_ari_channels_hangup_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct ast_channel *, chan, NULL, ao2_cleanup);
- int cause;
- chan = ast_channel_get_by_name(args->channel_id);
- if (chan == NULL) {
- ast_ari_response_error(
- response, 404, "Not Found",
- "Channel not found");
- return;
- }
- if (ast_strlen_zero(args->reason) || !strcmp(args->reason, "normal")) {
- cause = AST_CAUSE_NORMAL;
- } else if (!strcmp(args->reason, "busy")) {
- cause = AST_CAUSE_BUSY;
- } else if (!strcmp(args->reason, "congestion")) {
- cause = AST_CAUSE_CONGESTION;
- } else {
- ast_ari_response_error(
- response, 400, "Invalid Reason",
- "Invalid reason for hangup provided");
- return;
- }
- ast_channel_hangupcause_set(chan, cause);
- ast_softhangup(chan, AST_SOFTHANGUP_EXPLICIT);
- ast_ari_response_no_content(response);
- }
- void ast_ari_channels_list(struct ast_variable *headers,
- struct ast_ari_channels_list_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_cache *, cache, NULL, ao2_cleanup);
- RAII_VAR(struct ao2_container *, snapshots, NULL, ao2_cleanup);
- RAII_VAR(struct ast_json *, json, NULL, ast_json_unref);
- struct ao2_iterator i;
- void *obj;
- struct stasis_message_sanitizer *sanitize = stasis_app_get_sanitizer();
- cache = ast_channel_cache();
- if (!cache) {
- ast_ari_response_error(
- response, 500, "Internal Server Error",
- "Message bus not initialized");
- return;
- }
- ao2_ref(cache, +1);
- snapshots = stasis_cache_dump(cache, ast_channel_snapshot_type());
- if (!snapshots) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- json = ast_json_array_create();
- if (!json) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- i = ao2_iterator_init(snapshots, 0);
- while ((obj = ao2_iterator_next(&i))) {
- RAII_VAR(struct stasis_message *, msg, obj, ao2_cleanup);
- struct ast_channel_snapshot *snapshot = stasis_message_data(msg);
- int r;
- if (sanitize && sanitize->channel_snapshot
- && sanitize->channel_snapshot(snapshot)) {
- continue;
- }
- r = ast_json_array_append(
- json, ast_channel_snapshot_to_json(snapshot, NULL));
- if (r != 0) {
- ast_ari_response_alloc_failed(response);
- ao2_iterator_destroy(&i);
- return;
- }
- }
- ao2_iterator_destroy(&i);
- ast_ari_response_ok(response, ast_json_ref(json));
- }
- static void ari_channels_handle_originate_with_id(const char *args_endpoint,
- const char *args_extension,
- const char *args_context,
- long args_priority,
- const char *args_app,
- const char *args_app_args,
- const char *args_caller_id,
- int args_timeout,
- struct ast_variable *variables,
- const char *args_channel_id,
- const char *args_other_channel_id,
- struct ast_ari_response *response)
- {
- char *dialtech;
- char dialdevice[AST_CHANNEL_NAME];
- char *caller_id = NULL;
- char *cid_num = NULL;
- char *cid_name = NULL;
- int timeout = 30000;
- RAII_VAR(struct ast_format_cap *, cap,
- ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT), ao2_cleanup);
- char *stuff;
- struct ast_channel *chan;
- RAII_VAR(struct ast_channel_snapshot *, snapshot, NULL, ao2_cleanup);
- struct ast_assigned_ids assignedids = {
- .uniqueid = args_channel_id,
- .uniqueid2 = args_other_channel_id,
- };
- if (!cap) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- ast_format_cap_append(cap, ast_format_slin, 0);
- if ((assignedids.uniqueid && AST_MAX_PUBLIC_UNIQUEID < strlen(assignedids.uniqueid))
- || (assignedids.uniqueid2 && AST_MAX_PUBLIC_UNIQUEID < strlen(assignedids.uniqueid2))) {
- ast_ari_response_error(response, 400, "Bad Request",
- "Uniqueid length exceeds maximum of %d", AST_MAX_PUBLIC_UNIQUEID);
- return;
- }
- if (ast_strlen_zero(args_endpoint)) {
- ast_ari_response_error(response, 400, "Bad Request",
- "Endpoint must be specified");
- return;
- }
- dialtech = ast_strdupa(args_endpoint);
- if ((stuff = strchr(dialtech, '/'))) {
- *stuff++ = '\0';
- ast_copy_string(dialdevice, stuff, sizeof(dialdevice));
- }
- if (ast_strlen_zero(dialtech) || ast_strlen_zero(dialdevice)) {
- ast_ari_response_error(response, 400, "Bad Request",
- "Invalid endpoint specified");
- return;
- }
- if (args_timeout > 0) {
- timeout = args_timeout * 1000;
- } else if (args_timeout == -1) {
- timeout = -1;
- }
- if (!ast_strlen_zero(args_caller_id)) {
- caller_id = ast_strdupa(args_caller_id);
- ast_callerid_parse(caller_id, &cid_name, &cid_num);
- if (ast_is_shrinkable_phonenumber(cid_num)) {
- ast_shrink_phone_number(cid_num);
- }
- }
- if (!ast_strlen_zero(args_app)) {
- const char *app = "Stasis";
- RAII_VAR(struct ast_str *, appdata, ast_str_create(64), ast_free);
- if (!appdata) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- ast_str_set(&appdata, 0, "%s", args_app);
- if (!ast_strlen_zero(args_app_args)) {
- ast_str_append(&appdata, 0, ",%s", args_app_args);
- }
- /* originate a channel, putting it into an application */
- if (ast_pbx_outgoing_app(dialtech, cap, dialdevice, timeout, app, ast_str_buffer(appdata), NULL, 0, cid_num, cid_name, variables, NULL, &chan, &assignedids)) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- } else if (!ast_strlen_zero(args_extension)) {
- /* originate a channel, sending it to an extension */
- if (ast_pbx_outgoing_exten(dialtech, cap, dialdevice, timeout, S_OR(args_context, "default"), args_extension, args_priority ? args_priority : 1, NULL, 0, cid_num, cid_name, variables, NULL, &chan, 0, &assignedids)) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- } else {
- ast_ari_response_error(response, 400, "Bad Request",
- "Application or extension must be specified");
- return;
- }
- if (!ast_strlen_zero(args_app)) {
- struct ast_channel *local_peer;
- stasis_app_subscribe_channel(args_app, chan);
- /* Subscribe to the Local channel peer also. */
- local_peer = ast_local_get_peer(chan);
- if (local_peer) {
- stasis_app_subscribe_channel(args_app, local_peer);
- ast_channel_unref(local_peer);
- }
- }
- snapshot = ast_channel_snapshot_get_latest(ast_channel_uniqueid(chan));
- ast_channel_unlock(chan);
- ast_ari_response_ok(response, ast_channel_snapshot_to_json(snapshot, NULL));
- ast_channel_unref(chan);
- }
- void ast_ari_channels_originate_with_id(struct ast_variable *headers,
- struct ast_ari_channels_originate_with_id_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct ast_variable *, variables, NULL, ast_variables_destroy);
- /* Parse any query parameters out of the body parameter */
- if (args->variables) {
- struct ast_json *json_variables;
- ast_ari_channels_originate_with_id_parse_body(args->variables, args);
- json_variables = ast_json_object_get(args->variables, "variables");
- if (json_variables) {
- if (ast_json_to_ast_variables(json_variables, &variables)) {
- ast_log(AST_LOG_ERROR, "Unable to convert 'variables' in JSON body to channel variables\n");
- ast_ari_response_alloc_failed(response);
- return;
- }
- }
- }
- ari_channels_handle_originate_with_id(
- args->endpoint,
- args->extension,
- args->context,
- args->priority,
- args->app,
- args->app_args,
- args->caller_id,
- args->timeout,
- variables,
- args->channel_id,
- args->other_channel_id,
- response);
- }
- void ast_ari_channels_originate(struct ast_variable *headers,
- struct ast_ari_channels_originate_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct ast_variable *, variables, NULL, ast_variables_destroy);
- /* Parse any query parameters out of the body parameter */
- if (args->variables) {
- struct ast_json *json_variables;
- ast_ari_channels_originate_parse_body(args->variables, args);
- json_variables = ast_json_object_get(args->variables, "variables");
- if (json_variables) {
- if (ast_json_to_ast_variables(json_variables, &variables)) {
- ast_log(AST_LOG_ERROR, "Unable to convert 'variables' in JSON body to channel variables\n");
- ast_ari_response_alloc_failed(response);
- return;
- }
- }
- }
- ari_channels_handle_originate_with_id(
- args->endpoint,
- args->extension,
- args->context,
- args->priority,
- args->app,
- args->app_args,
- args->caller_id,
- args->timeout,
- variables,
- args->channel_id,
- args->other_channel_id,
- response);
- }
- void ast_ari_channels_get_channel_var(struct ast_variable *headers,
- struct ast_ari_channels_get_channel_var_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct ast_json *, json, NULL, ast_json_unref);
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- RAII_VAR(struct ast_str *, value, ast_str_create(32), ast_free);
- RAII_VAR(struct ast_channel *, channel, NULL, ast_channel_cleanup);
- ast_assert(response != NULL);
- if (ast_strlen_zero(args->variable)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Variable name is required");
- return;
- }
- if (ast_strlen_zero(args->channel_id)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Channel ID is required");
- return;
- }
- channel = ast_channel_get_by_name(args->channel_id);
- if (!channel) {
- ast_ari_response_error(
- response, 404, "Channel Not Found",
- "Provided channel was not found");
- return;
- }
- /* You may be tempted to lock the channel you're about to read from. You
- * would be wrong. Some dialplan functions put the channel into
- * autoservice, which deadlocks if the channel is already locked.
- * ast_str_retrieve_variable() does its own locking, and the dialplan
- * functions need to as well. We should be fine without the lock.
- */
- if (args->variable[strlen(args->variable) - 1] == ')') {
- if (ast_func_read2(channel, args->variable, &value, 0)) {
- ast_ari_response_error(
- response, 500, "Error With Function",
- "Unable to read provided function");
- return;
- }
- } else {
- if (!ast_str_retrieve_variable(&value, 0, channel, NULL, args->variable)) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- }
- if (!(json = ast_json_pack("{s: s}", "value", S_OR(ast_str_buffer(value), "")))) {
- ast_ari_response_alloc_failed(response);
- return;
- }
- ast_ari_response_ok(response, ast_json_ref(json));
- }
- void ast_ari_channels_set_channel_var(struct ast_variable *headers,
- struct ast_ari_channels_set_channel_var_args *args,
- struct ast_ari_response *response)
- {
- RAII_VAR(struct stasis_app_control *, control, NULL, ao2_cleanup);
- ast_assert(response != NULL);
- if (ast_strlen_zero(args->variable)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Variable name is required");
- return;
- }
- control = find_control(response, args->channel_id);
- if (control == NULL) {
- /* response filled in by find_control */
- return;
- }
- if (stasis_app_control_set_channel_var(control, args->variable, args->value)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Failed to execute function");
- return;
- }
- ast_ari_response_no_content(response);
- }
- static void ari_channels_handle_snoop_channel(
- const char *args_channel_id,
- const char *args_spy,
- const char *args_whisper,
- const char *args_app,
- const char *args_app_args,
- const char *args_snoop_id,
- struct ast_ari_response *response)
- {
- enum stasis_app_snoop_direction spy, whisper;
- RAII_VAR(struct ast_channel *, chan, NULL, ast_channel_cleanup);
- RAII_VAR(struct ast_channel *, snoop, NULL, ast_channel_cleanup);
- RAII_VAR(struct ast_channel_snapshot *, snapshot, NULL, ao2_cleanup);
- ast_assert(response != NULL);
- if (ast_strlen_zero(args_spy) || !strcmp(args_spy, "none")) {
- spy = STASIS_SNOOP_DIRECTION_NONE;
- } else if (!strcmp(args_spy, "both")) {
- spy = STASIS_SNOOP_DIRECTION_BOTH;
- } else if (!strcmp(args_spy, "out")) {
- spy = STASIS_SNOOP_DIRECTION_OUT;
- } else if (!strcmp(args_spy, "in")) {
- spy = STASIS_SNOOP_DIRECTION_IN;
- } else {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Invalid direction specified for spy");
- return;
- }
- if (ast_strlen_zero(args_whisper) || !strcmp(args_whisper, "none")) {
- whisper = STASIS_SNOOP_DIRECTION_NONE;
- } else if (!strcmp(args_whisper, "both")) {
- whisper = STASIS_SNOOP_DIRECTION_BOTH;
- } else if (!strcmp(args_whisper, "out")) {
- whisper = STASIS_SNOOP_DIRECTION_OUT;
- } else if (!strcmp(args_whisper, "in")) {
- whisper = STASIS_SNOOP_DIRECTION_IN;
- } else {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Invalid direction specified for whisper");
- return;
- }
- if (spy == STASIS_SNOOP_DIRECTION_NONE && whisper == STASIS_SNOOP_DIRECTION_NONE) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Direction must be specified for at least spy or whisper");
- return;
- } else if (ast_strlen_zero(args_app)) {
- ast_ari_response_error(
- response, 400, "Bad Request",
- "Application name is required");
- return;
- }
- chan = ast_channel_get_by_name(args_channel_id);
- if (chan == NULL) {
- ast_ari_response_error(
- response, 404, "Channel Not Found",
- "Provided channel was not found");
- return;
- }
- snoop = stasis_app_control_snoop(chan, spy, whisper, args_app, args_app_args,
- args_snoop_id);
- if (snoop == NULL) {
- ast_ari_response_error(
- response, 500, "Internal error",
- "Snoop channel could not be created");
- return;
- }
- snapshot = ast_channel_snapshot_get_latest(ast_channel_uniqueid(snoop));
- ast_ari_response_ok(response, ast_channel_snapshot_to_json(snapshot, NULL));
- }
- void ast_ari_channels_snoop_channel(struct ast_variable *headers,
- struct ast_ari_channels_snoop_channel_args *args,
- struct ast_ari_response *response)
- {
- ari_channels_handle_snoop_channel(
- args->channel_id,
- args->spy,
- args->whisper,
- args->app,
- args->app_args,
- args->snoop_id,
- response);
- }
- void ast_ari_channels_snoop_channel_with_id(struct ast_variable *headers,
- struct ast_ari_channels_snoop_channel_with_id_args *args,
- struct ast_ari_response *response)
- {
- ari_channels_handle_snoop_channel(
- args->channel_id,
- args->spy,
- args->whisper,
- args->app,
- args->app_args,
- args->snoop_id,
- response);
- }
|