mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-11-03 20:38:59 +00:00 
			
		
		
		
	- restructured build tree and makefiles to eliminate recursion problems - support for embedded modules - support for static builds - simpler cross-compilation support - simpler module/loader interface (no exported symbols) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40722 65c4cc65-6c06-0410-ace0-fbb531ad65f3
		
			
				
	
	
		
			273 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			273 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Asterisk -- An open source telephony toolkit.
 | 
						|
 *
 | 
						|
 * Copyright (C) 1999 - 2006, Digium, Inc.
 | 
						|
 *
 | 
						|
 * Mark Spencer <markster@digium.com>
 | 
						|
 *
 | 
						|
 * Author: Ben Miller <bgmiller@dccinc.com>
 | 
						|
 *    With TONS of help from Mark!
 | 
						|
 *
 | 
						|
 * 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 ParkAndAnnounce application for Asterisk
 | 
						|
 *
 | 
						|
 * \author Ben Miller <bgmiller@dccinc.com>
 | 
						|
 * \arg With TONS of help from Mark!
 | 
						|
 *
 | 
						|
 * \ingroup applications
 | 
						|
 */
 | 
						|
 | 
						|
#include "asterisk.h"
 | 
						|
 | 
						|
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 | 
						|
 | 
						|
#include <stdlib.h>
 | 
						|
#include <stdio.h>
 | 
						|
#include <string.h>
 | 
						|
#include <unistd.h>
 | 
						|
#include <sys/types.h>
 | 
						|
 | 
						|
#include "asterisk/file.h"
 | 
						|
#include "asterisk/logger.h"
 | 
						|
#include "asterisk/channel.h"
 | 
						|
#include "asterisk/pbx.h"
 | 
						|
#include "asterisk/module.h"
 | 
						|
#include "asterisk/features.h"
 | 
						|
#include "asterisk/options.h"
 | 
						|
#include "asterisk/logger.h"
 | 
						|
#include "asterisk/say.h"
 | 
						|
#include "asterisk/lock.h"
 | 
						|
#include "asterisk/utils.h"
 | 
						|
 | 
						|
static char *app = "ParkAndAnnounce";
 | 
						|
 | 
						|
static char *synopsis = "Park and Announce";
 | 
						|
 | 
						|
static char *descrip =
 | 
						|
"  ParkAndAnnounce(announce:template|timeout|dial|[return_context]):\n"
 | 
						|
"Park a call into the parkinglot and announce the call to another channel.\n"
 | 
						|
"\n"
 | 
						|
"announce template: Colon-separated list of files to announce.  The word PARKED\n"
 | 
						|
"                   will be replaced by a say_digits of the extension in which\n"
 | 
						|
"                   the call is parked.\n"
 | 
						|
"timeout:           Time in seconds before the call returns into the return\n"
 | 
						|
"                   context.\n"
 | 
						|
"dial:              The app_dial style resource to call to make the\n"
 | 
						|
"                   announcement.  Console/dsp calls the console.\n"
 | 
						|
"return_context:    The goto-style label to jump the call back into after\n"
 | 
						|
"                   timeout.  Default <priority+1>.\n"
 | 
						|
"\n"
 | 
						|
"The variable ${PARKEDAT} will contain the parking extension into which the\n"
 | 
						|
"call was placed.  Use with the Local channel to allow the dialplan to make\n"
 | 
						|
"use of this information.\n";
 | 
						|
 | 
						|
 | 
						|
static int parkandannounce_exec(struct ast_channel *chan, void *data)
 | 
						|
{
 | 
						|
	int res=0;
 | 
						|
	char *return_context;
 | 
						|
	int l, lot, timeout = 0, dres;
 | 
						|
	char *working, *context, *exten, *priority, *dial, *dialtech, *dialstr;
 | 
						|
	char *template, *tpl_working, *tpl_current;
 | 
						|
	char *tmp[100];
 | 
						|
	char buf[13];
 | 
						|
	int looptemp=0,i=0;
 | 
						|
	char *s,*orig_s;
 | 
						|
 | 
						|
	struct ast_channel *dchan;
 | 
						|
	struct outgoing_helper oh;
 | 
						|
	int outstate;
 | 
						|
 | 
						|
	struct ast_module_user *u;
 | 
						|
 | 
						|
	if (ast_strlen_zero(data)) {
 | 
						|
		ast_log(LOG_WARNING, "ParkAndAnnounce requires arguments: (announce:template|timeout|dial|[return_context])\n");
 | 
						|
		return -1;
 | 
						|
	}
 | 
						|
  
 | 
						|
	u = ast_module_user_add(chan);
 | 
						|
 | 
						|
	l=strlen(data)+2;	
 | 
						|
	if (!(orig_s = ast_malloc(l))) {
 | 
						|
		ast_module_user_remove(u);
 | 
						|
		return -1;
 | 
						|
	}
 | 
						|
	s=orig_s;
 | 
						|
	strncpy(s,data,l);
 | 
						|
 | 
						|
	template=strsep(&s,"|");
 | 
						|
	if(! template) {
 | 
						|
		ast_log(LOG_WARNING, "PARK: An announce template must be defined\n");
 | 
						|
		free(orig_s);
 | 
						|
		ast_module_user_remove(u);
 | 
						|
		return -1;
 | 
						|
	}
 | 
						|
  
 | 
						|
	if(s) {
 | 
						|
		timeout = atoi(strsep(&s, "|"));
 | 
						|
		timeout *= 1000;
 | 
						|
	}
 | 
						|
	dial=strsep(&s, "|");
 | 
						|
	if(!dial) {
 | 
						|
		ast_log(LOG_WARNING, "PARK: A dial resource must be specified i.e: Console/dsp or Zap/g1/5551212\n");
 | 
						|
		free(orig_s);
 | 
						|
		ast_module_user_remove(u);
 | 
						|
		return -1;
 | 
						|
	} else {
 | 
						|
		dialtech=strsep(&dial, "/");
 | 
						|
		dialstr=dial;
 | 
						|
		ast_verbose( VERBOSE_PREFIX_3 "Dial Tech,String: (%s,%s)\n", dialtech,dialstr);
 | 
						|
	}
 | 
						|
 | 
						|
	return_context = s;
 | 
						|
  
 | 
						|
	if(return_context != NULL) {
 | 
						|
		/* set the return context. Code borrowed from the Goto builtin */
 | 
						|
    
 | 
						|
		working = return_context;
 | 
						|
		context = strsep(&working, "|");
 | 
						|
		exten = strsep(&working, "|");
 | 
						|
		if(!exten) {
 | 
						|
			/* Only a priority in this one */
 | 
						|
			priority = context;
 | 
						|
			exten = NULL;
 | 
						|
			context = NULL;
 | 
						|
		} else {
 | 
						|
			priority = strsep(&working, "|");
 | 
						|
			if(!priority) {
 | 
						|
				/* Only an extension and priority in this one */
 | 
						|
				priority = exten;
 | 
						|
				exten = context;
 | 
						|
				context = NULL;
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if(atoi(priority) < 0) {
 | 
						|
		ast_log(LOG_WARNING, "Priority '%s' must be a number > 0\n", priority);
 | 
						|
		free(orig_s);
 | 
						|
		ast_module_user_remove(u);
 | 
						|
		return -1;
 | 
						|
	}
 | 
						|
	/* At this point we have a priority and maybe an extension and a context */
 | 
						|
	chan->priority = atoi(priority);
 | 
						|
	if (exten)
 | 
						|
		strncpy(chan->exten, exten, sizeof(chan->exten)-1);
 | 
						|
	if (context)
 | 
						|
		strncpy(chan->context, context, sizeof(chan->context)-1);
 | 
						|
	} else {  /* increment the priority by default*/
 | 
						|
		chan->priority++;
 | 
						|
	}
 | 
						|
 | 
						|
	if(option_verbose > 2) {
 | 
						|
		ast_verbose( VERBOSE_PREFIX_3 "Return Context: (%s,%s,%d) ID: %s\n", chan->context,chan->exten, chan->priority, chan->cid.cid_num);
 | 
						|
		if(!ast_exists_extension(chan, chan->context, chan->exten, chan->priority, chan->cid.cid_num)) {
 | 
						|
			ast_verbose( VERBOSE_PREFIX_3 "Warning: Return Context Invalid, call will return to default|s\n");
 | 
						|
		}
 | 
						|
	}
 | 
						|
  
 | 
						|
	/* we are using masq_park here to protect * from touching the channel once we park it.  If the channel comes out of timeout
 | 
						|
	before we are done announcing and the channel is messed with, Kablooeee.  So we use Masq to prevent this.  */
 | 
						|
 | 
						|
	ast_masq_park_call(chan, NULL, timeout, &lot);
 | 
						|
 | 
						|
	res=-1; 
 | 
						|
 | 
						|
	ast_verbose( VERBOSE_PREFIX_3 "Call Parking Called, lot: %d, timeout: %d, context: %s\n", lot, timeout, return_context);
 | 
						|
 | 
						|
	/* Now place the call to the extention */
 | 
						|
 | 
						|
	snprintf(buf, sizeof(buf), "%d", lot);
 | 
						|
	memset(&oh, 0, sizeof(oh));
 | 
						|
	oh.parent_channel = chan;
 | 
						|
	oh.vars = ast_variable_new("_PARKEDAT", buf);
 | 
						|
	dchan = __ast_request_and_dial(dialtech, AST_FORMAT_SLINEAR, dialstr,30000, &outstate, chan->cid.cid_num, chan->cid.cid_name, &oh);
 | 
						|
 | 
						|
	if(dchan) {
 | 
						|
		if(dchan->_state == AST_STATE_UP) {
 | 
						|
			if(option_verbose > 3)
 | 
						|
				ast_verbose(VERBOSE_PREFIX_4 "Channel %s was answered.\n", dchan->name);
 | 
						|
		} else {
 | 
						|
			if(option_verbose > 3)
 | 
						|
				ast_verbose(VERBOSE_PREFIX_4 "Channel %s was never answered.\n", dchan->name);
 | 
						|
        			ast_log(LOG_WARNING, "PARK: Channel %s was never answered for the announce.\n", dchan->name);
 | 
						|
			ast_hangup(dchan);
 | 
						|
			free(orig_s);
 | 
						|
			ast_module_user_remove(u);
 | 
						|
			return -1;
 | 
						|
		}
 | 
						|
	} else {
 | 
						|
		ast_log(LOG_WARNING, "PARK: Unable to allocate announce channel.\n");
 | 
						|
		free(orig_s);
 | 
						|
		ast_module_user_remove(u);
 | 
						|
		return -1; 
 | 
						|
	}
 | 
						|
 | 
						|
	ast_stopstream(dchan);
 | 
						|
 | 
						|
	/* now we have the call placed and are ready to play stuff to it */
 | 
						|
 | 
						|
	ast_verbose(VERBOSE_PREFIX_4 "Announce Template:%s\n", template);
 | 
						|
 | 
						|
	tpl_working = template;
 | 
						|
	tpl_current=strsep(&tpl_working, ":");
 | 
						|
 | 
						|
	while(tpl_current && looptemp < sizeof(tmp)) {
 | 
						|
		tmp[looptemp]=tpl_current;
 | 
						|
		looptemp++;
 | 
						|
		tpl_current=strsep(&tpl_working,":");
 | 
						|
	}
 | 
						|
 | 
						|
	for(i=0; i<looptemp; i++) {
 | 
						|
		ast_verbose(VERBOSE_PREFIX_4 "Announce:%s\n", tmp[i]);
 | 
						|
		if(!strcmp(tmp[i], "PARKED")) {
 | 
						|
			ast_say_digits(dchan, lot, "", dchan->language);
 | 
						|
		} else {
 | 
						|
			dres = ast_streamfile(dchan, tmp[i], dchan->language);
 | 
						|
			if(!dres) {
 | 
						|
				dres = ast_waitstream(dchan, "");
 | 
						|
			} else {
 | 
						|
				ast_log(LOG_WARNING, "ast_streamfile of %s failed on %s\n", tmp[i], dchan->name);
 | 
						|
				dres = 0;
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	ast_stopstream(dchan);  
 | 
						|
	ast_hangup(dchan);
 | 
						|
	free(orig_s);
 | 
						|
	
 | 
						|
	ast_module_user_remove(u);
 | 
						|
	
 | 
						|
	return res;
 | 
						|
}
 | 
						|
 | 
						|
static int unload_module(void)
 | 
						|
{
 | 
						|
	int res;
 | 
						|
 | 
						|
	res = ast_unregister_application(app);
 | 
						|
 | 
						|
	ast_module_user_hangup_all();
 | 
						|
 | 
						|
	return res;
 | 
						|
}
 | 
						|
 | 
						|
static int load_module(void)
 | 
						|
{
 | 
						|
	/* return ast_register_application(app, park_exec); */
 | 
						|
	return ast_register_application(app, parkandannounce_exec, synopsis, descrip);
 | 
						|
}
 | 
						|
 | 
						|
AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Call Parking and Announce Application");
 |