2006-01-03 22:13:59 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* mod_playback.c -- Raw Audio File Streaming Application Module
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <switch.h>
|
|
|
|
|
2006-01-26 17:57:25 +00:00
|
|
|
static const char modname[] = "mod_playback";
|
2006-01-03 22:13:59 +00:00
|
|
|
|
2006-01-26 17:57:25 +00:00
|
|
|
/*
|
|
|
|
dtmf handler function you can hook up to be executed when a digit is dialed during playback
|
|
|
|
if you return anything but SWITCH_STATUS_SUCCESS the playback will stop.
|
|
|
|
*/
|
2006-07-12 18:39:19 +00:00
|
|
|
static switch_status_t on_dtmf(switch_core_session_t *session, void *input, switch_input_type_t itype, void *buf, unsigned int buflen)
|
2006-01-03 22:13:59 +00:00
|
|
|
{
|
|
|
|
|
2006-07-12 18:39:19 +00:00
|
|
|
|
|
|
|
switch (itype) {
|
|
|
|
case SWITCH_INPUT_TYPE_DTMF: {
|
|
|
|
char *dtmf = (char *) input;
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Digits %s\n", dtmf);
|
|
|
|
|
|
|
|
if (*dtmf == '*') {
|
|
|
|
return SWITCH_STATUS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
2006-01-26 17:57:25 +00:00
|
|
|
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
|
2006-06-09 15:15:58 +00:00
|
|
|
static void speak_function(switch_core_session_t *session, char *data)
|
|
|
|
{
|
|
|
|
switch_channel_t *channel;
|
|
|
|
char buf[10];
|
|
|
|
char *argv[4] = {0};
|
|
|
|
int argc;
|
|
|
|
char *engine = NULL;
|
|
|
|
char *voice = NULL;
|
|
|
|
char *text = NULL;
|
|
|
|
char *timer_name = NULL;
|
|
|
|
char *mydata = NULL;
|
|
|
|
switch_codec_t *codec;
|
|
|
|
|
|
|
|
codec = switch_core_session_get_read_codec(session);
|
|
|
|
assert(codec != NULL);
|
|
|
|
|
|
|
|
channel = switch_core_session_get_channel(session);
|
|
|
|
assert(channel != NULL);
|
|
|
|
|
|
|
|
mydata = switch_core_session_strdup(session, data);
|
|
|
|
argc = switch_separate_string(mydata, '|', argv, sizeof(argv)/sizeof(argv[0]));
|
|
|
|
|
|
|
|
engine = argv[0];
|
|
|
|
voice = argv[1];
|
|
|
|
text = argv[2];
|
|
|
|
timer_name = argv[3];
|
|
|
|
|
|
|
|
if (!(engine && voice && text)) {
|
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid Params!\n");
|
|
|
|
switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_channel_answer(channel);
|
|
|
|
switch_ivr_speak_text(session, engine, voice, timer_name, codec->implementation->samples_per_second, on_dtmf, text, buf, sizeof(buf));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-04-29 06:05:03 +00:00
|
|
|
static void playback_function(switch_core_session_t *session, char *data)
|
2006-01-26 17:57:25 +00:00
|
|
|
{
|
2006-04-29 06:05:03 +00:00
|
|
|
switch_channel_t *channel;
|
2006-01-26 17:57:25 +00:00
|
|
|
char *timer_name = NULL;
|
|
|
|
char *file_name = NULL;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
2006-01-26 17:57:25 +00:00
|
|
|
file_name = switch_core_session_strdup(session, data);
|
2006-01-03 22:13:59 +00:00
|
|
|
|
2006-02-20 04:36:29 +00:00
|
|
|
if ((timer_name = strchr(file_name, ' ')) != 0) {
|
2006-01-26 17:57:25 +00:00
|
|
|
*timer_name++ = '\0';
|
2006-01-09 19:48:20 +00:00
|
|
|
}
|
|
|
|
|
2006-01-26 17:57:25 +00:00
|
|
|
channel = switch_core_session_get_channel(session);
|
|
|
|
assert(channel != NULL);
|
2006-01-03 22:13:59 +00:00
|
|
|
|
2006-04-03 21:00:13 +00:00
|
|
|
switch_channel_answer(channel);
|
|
|
|
|
2006-02-28 02:08:42 +00:00
|
|
|
if (switch_ivr_play_file(session, NULL, file_name, timer_name, on_dtmf, NULL, 0) != SWITCH_STATUS_SUCCESS) {
|
2006-04-22 03:05:25 +00:00
|
|
|
switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER);
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
2006-01-26 17:57:25 +00:00
|
|
|
|
2006-01-03 22:13:59 +00:00
|
|
|
}
|
|
|
|
|
2006-01-27 01:46:14 +00:00
|
|
|
|
2006-04-29 06:05:03 +00:00
|
|
|
static void record_function(switch_core_session_t *session, char *data)
|
2006-01-27 01:46:14 +00:00
|
|
|
{
|
2006-04-29 06:05:03 +00:00
|
|
|
switch_channel_t *channel;
|
2006-01-27 01:46:14 +00:00
|
|
|
channel = switch_core_session_get_channel(session);
|
|
|
|
assert(channel != NULL);
|
|
|
|
|
2006-03-01 04:47:34 +00:00
|
|
|
if (switch_ivr_record_file(session, NULL, data, on_dtmf, NULL, 0) != SWITCH_STATUS_SUCCESS) {
|
2006-04-22 03:05:25 +00:00
|
|
|
switch_channel_hangup(channel, SWITCH_CAUSE_DESTINATION_OUT_OF_ORDER);
|
2006-01-27 01:46:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-06-09 15:15:58 +00:00
|
|
|
|
|
|
|
static const switch_application_interface_t speak_application_interface = {
|
|
|
|
/*.interface_name */ "speak",
|
|
|
|
/*.application_function */ speak_function
|
|
|
|
};
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static const switch_application_interface_t record_application_interface = {
|
2006-01-27 01:46:14 +00:00
|
|
|
/*.interface_name */ "record",
|
2006-06-09 15:15:58 +00:00
|
|
|
/*.application_function */ record_function,
|
|
|
|
NULL,NULL,NULL,
|
|
|
|
&speak_application_interface
|
2006-01-27 01:46:14 +00:00
|
|
|
};
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static const switch_application_interface_t playback_application_interface = {
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.interface_name */ "playback",
|
2006-01-27 01:46:14 +00:00
|
|
|
/*.application_function */ playback_function,
|
|
|
|
NULL,NULL,NULL,
|
|
|
|
/*.next*/ &record_application_interface
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
static const switch_loadable_module_interface_t mod_playback_module_interface = {
|
2006-01-20 15:05:05 +00:00
|
|
|
/*.module_name = */ modname,
|
|
|
|
/*.endpoint_interface = */ NULL,
|
|
|
|
/*.timer_interface = */ NULL,
|
|
|
|
/*.dialplan_interface = */ NULL,
|
|
|
|
/*.codec_interface = */ NULL,
|
|
|
|
/*.application_interface */ &playback_application_interface
|
2006-01-03 22:13:59 +00:00
|
|
|
};
|
|
|
|
|
2006-04-30 18:24:24 +00:00
|
|
|
SWITCH_MOD_DECLARE(switch_status_t) switch_module_load(const switch_loadable_module_interface_t **module_interface, char *filename)
|
2006-01-20 15:05:05 +00:00
|
|
|
{
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
/* connect my internal structure to the blank pointer passed to me */
|
2006-04-30 18:24:24 +00:00
|
|
|
*module_interface = &mod_playback_module_interface;
|
2006-01-03 22:13:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* indicate that the module should continue to be loaded */
|
|
|
|
return SWITCH_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 'switch_module_runtime' will start up in a thread by itself just by having it exist
|
|
|
|
if it returns anything but SWITCH_STATUS_TERM it will be called again automaticly
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-04-29 23:43:28 +00:00
|
|
|
//switch_status_t switch_module_runtime(void)
|