mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Add recording agent's calls patch. Basically the call starts recording when the agent picks up and the file is stamped with the agent's id and the timestamp. Also optionally a URL link to that file may be inserted in the userfield of the CDR record. By default the recorded file will be mixed if soxmix is available.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2121 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -72,6 +72,7 @@ static char *descrip2 =
|
|||||||
static char moh[80] = "default";
|
static char moh[80] = "default";
|
||||||
|
|
||||||
#define AST_MAX_AGENT 80 /* Agent ID or Password max length */
|
#define AST_MAX_AGENT 80 /* Agent ID or Password max length */
|
||||||
|
#define AST_MAX_BUF 256
|
||||||
|
|
||||||
static int capability = -1;
|
static int capability = -1;
|
||||||
|
|
||||||
@@ -86,6 +87,13 @@ static ast_mutex_t usecnt_lock = AST_MUTEX_INITIALIZER;
|
|||||||
/* Protect the interface list (of sip_pvt's) */
|
/* Protect the interface list (of sip_pvt's) */
|
||||||
static ast_mutex_t agentlock = AST_MUTEX_INITIALIZER;
|
static ast_mutex_t agentlock = AST_MUTEX_INITIALIZER;
|
||||||
|
|
||||||
|
int recordagentcalls = 0;
|
||||||
|
char recordformat[AST_MAX_BUF];
|
||||||
|
char recordformatext[AST_MAX_BUF];
|
||||||
|
int createlink = 0;
|
||||||
|
char urlprefix[AST_MAX_BUF];
|
||||||
|
char savecallsin[AST_MAX_BUF];
|
||||||
|
|
||||||
static struct agent_pvt {
|
static struct agent_pvt {
|
||||||
ast_mutex_t lock; /* Channel private lock */
|
ast_mutex_t lock; /* Channel private lock */
|
||||||
int dead; /* Poised for destruction? */
|
int dead; /* Poised for destruction? */
|
||||||
@@ -164,7 +172,7 @@ static void agent_unlink(struct agent_pvt *agent)
|
|||||||
|
|
||||||
static struct agent_pvt *add_agent(char *agent, int pending)
|
static struct agent_pvt *add_agent(char *agent, int pending)
|
||||||
{
|
{
|
||||||
char tmp[256];
|
char tmp[AST_MAX_BUF];
|
||||||
char *password=NULL, *name=NULL;
|
char *password=NULL, *name=NULL;
|
||||||
struct agent_pvt *p, *prev;
|
struct agent_pvt *p, *prev;
|
||||||
|
|
||||||
@@ -244,6 +252,33 @@ static int agent_answer(struct ast_channel *ast)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int agent_start_monitoring(struct ast_channel *ast, int needlock)
|
||||||
|
{
|
||||||
|
struct agent_pvt *p = ast->pvt->pvt;
|
||||||
|
char tmp[AST_MAX_BUF],tmp2[AST_MAX_BUF], *pointer;
|
||||||
|
char filename[AST_MAX_BUF];
|
||||||
|
int res = -1;
|
||||||
|
if (!p)
|
||||||
|
return -1;
|
||||||
|
if (!ast->monitor) {
|
||||||
|
snprintf(filename, sizeof(filename), "agent-%s-%s",p->agent, ast->uniqueid);
|
||||||
|
snprintf(tmp, sizeof(tmp), "%s%s",savecallsin ? savecallsin : "", filename);
|
||||||
|
if ((pointer = strchr(tmp, '.')))
|
||||||
|
*pointer = '-';
|
||||||
|
ast_monitor_start(ast, recordformat, tmp, needlock);
|
||||||
|
ast_monitor_setjoinfiles(ast, 1);
|
||||||
|
snprintf(tmp2, sizeof(tmp2), "%s%s.%s", urlprefix ? urlprefix : "", filename, recordformatext);
|
||||||
|
#if 0
|
||||||
|
ast_verbose("name is %s, link is %s\n",tmp, tmp2);
|
||||||
|
#endif
|
||||||
|
if (!ast->cdr)
|
||||||
|
ast->cdr = ast_cdr_alloc();
|
||||||
|
ast_cdr_setuserfield(ast, tmp2);
|
||||||
|
res = 0;
|
||||||
|
} else
|
||||||
|
ast_log(LOG_ERROR, "Recording already started on that call.\n");
|
||||||
|
return res;
|
||||||
|
}
|
||||||
static struct ast_frame *agent_read(struct ast_channel *ast)
|
static struct ast_frame *agent_read(struct ast_channel *ast)
|
||||||
{
|
{
|
||||||
struct agent_pvt *p = ast->pvt->pvt;
|
struct agent_pvt *p = ast->pvt->pvt;
|
||||||
@@ -302,6 +337,8 @@ static struct ast_frame *agent_read(struct ast_channel *ast)
|
|||||||
}
|
}
|
||||||
CLEANUP(ast,p);
|
CLEANUP(ast,p);
|
||||||
ast_mutex_unlock(&p->lock);
|
ast_mutex_unlock(&p->lock);
|
||||||
|
if (f == &answer_frame)
|
||||||
|
agent_start_monitoring(ast,0);
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -430,6 +467,7 @@ static int agent_call(struct ast_channel *ast, char *dest, int timeout)
|
|||||||
ast_setstate(ast, AST_STATE_RINGING);
|
ast_setstate(ast, AST_STATE_RINGING);
|
||||||
else {
|
else {
|
||||||
ast_setstate(ast, AST_STATE_UP);
|
ast_setstate(ast, AST_STATE_UP);
|
||||||
|
agent_start_monitoring(ast,0);
|
||||||
p->acknowledged = 1;
|
p->acknowledged = 1;
|
||||||
}
|
}
|
||||||
res = 0;
|
res = 0;
|
||||||
@@ -703,6 +741,14 @@ static int read_agent_config(void)
|
|||||||
p = p->next;
|
p = p->next;
|
||||||
}
|
}
|
||||||
strcpy(moh, "default");
|
strcpy(moh, "default");
|
||||||
|
/* set the default recording values */
|
||||||
|
recordagentcalls = 0;
|
||||||
|
createlink = 0;
|
||||||
|
strcpy(recordformat, "wav");
|
||||||
|
strcpy(recordformatext, "wav");
|
||||||
|
strcpy(urlprefix, "");
|
||||||
|
strcpy(savecallsin, "");
|
||||||
|
|
||||||
v = ast_variable_browse(cfg, "agents");
|
v = ast_variable_browse(cfg, "agents");
|
||||||
while(v) {
|
while(v) {
|
||||||
/* Create the interface list */
|
/* Create the interface list */
|
||||||
@@ -727,6 +773,27 @@ static int read_agent_config(void)
|
|||||||
wrapuptime = 0;
|
wrapuptime = 0;
|
||||||
} else if (!strcasecmp(v->name, "musiconhold")) {
|
} else if (!strcasecmp(v->name, "musiconhold")) {
|
||||||
strncpy(moh, v->value, sizeof(moh) - 1);
|
strncpy(moh, v->value, sizeof(moh) - 1);
|
||||||
|
} else if (!strcasecmp(v->name, "recordagentcalls")) {
|
||||||
|
recordagentcalls = ast_true(v->value);
|
||||||
|
} else if (!strcasecmp(v->name, "createlink")) {
|
||||||
|
createlink = ast_true(v->value);
|
||||||
|
} else if (!strcasecmp(v->name, "recordformat")) {
|
||||||
|
strncpy(recordformat, v->value, sizeof(recordformat) - 1);
|
||||||
|
if (!strcasecmp(v->value, "wav49"))
|
||||||
|
strcpy(recordformatext, "WAV");
|
||||||
|
else
|
||||||
|
strncpy(recordformatext, v->value, sizeof(recordformat) - 1);
|
||||||
|
} else if (!strcasecmp(v->name, "urlprefix")) {
|
||||||
|
strncpy(urlprefix, v->value, sizeof(urlprefix) - 2);
|
||||||
|
if (urlprefix[strlen(urlprefix) - 1] != '/')
|
||||||
|
strcat(urlprefix, "/");
|
||||||
|
} else if (!strcasecmp(v->name, "savecallsin")) {
|
||||||
|
if (v->value[0] == '/')
|
||||||
|
strncpy(savecallsin, v->value, sizeof(savecallsin) - 2);
|
||||||
|
else
|
||||||
|
snprintf(savecallsin, sizeof(savecallsin) - 2, "/%s", v->value);
|
||||||
|
if (savecallsin[strlen(savecallsin) - 1] != '/')
|
||||||
|
strcat(savecallsin, "/");
|
||||||
}
|
}
|
||||||
v = v->next;
|
v = v->next;
|
||||||
}
|
}
|
||||||
@@ -965,10 +1032,10 @@ static int powerof(unsigned int v)
|
|||||||
static int agents_show(int fd, int argc, char **argv)
|
static int agents_show(int fd, int argc, char **argv)
|
||||||
{
|
{
|
||||||
struct agent_pvt *p;
|
struct agent_pvt *p;
|
||||||
char username[256];
|
char username[AST_MAX_BUF];
|
||||||
char location[256];
|
char location[AST_MAX_BUF];
|
||||||
char talkingto[256];
|
char talkingto[AST_MAX_BUF];
|
||||||
char moh[256];
|
char moh[AST_MAX_BUF];
|
||||||
|
|
||||||
if (argc != 2)
|
if (argc != 2)
|
||||||
return RESULT_SHOWUSAGE;
|
return RESULT_SHOWUSAGE;
|
||||||
@@ -1107,7 +1174,7 @@ static int __login_exec(struct ast_channel *chan, void *data, int callbackmode)
|
|||||||
!strcmp(p->password, pass) && !p->pending) {
|
!strcmp(p->password, pass) && !p->pending) {
|
||||||
if (!p->chan) {
|
if (!p->chan) {
|
||||||
if (callbackmode) {
|
if (callbackmode) {
|
||||||
char tmpchan[256] = "";
|
char tmpchan[AST_MAX_BUF] = "";
|
||||||
int pos = 0;
|
int pos = 0;
|
||||||
/* Retrieve login chan */
|
/* Retrieve login chan */
|
||||||
for (;;) {
|
for (;;) {
|
||||||
|
@@ -33,6 +33,29 @@
|
|||||||
;group=1,2
|
;group=1,2
|
||||||
;group=
|
;group=
|
||||||
;
|
;
|
||||||
|
; --------------------------------------------------
|
||||||
|
; This section is devoted to recording agent's calls
|
||||||
|
; The keywords are global to the chan_agent channel driver
|
||||||
|
;
|
||||||
|
; Enable recording calls addressed to agents. It's turned off by default.
|
||||||
|
;recordagentcalls=yes
|
||||||
|
;
|
||||||
|
; The format to be used to record the calls: wav, gsm, wav49.
|
||||||
|
; By default its "wav".
|
||||||
|
;recordformat=gsm
|
||||||
|
;
|
||||||
|
; Insert into CDR userfield a name of the the created recording
|
||||||
|
; By default it's turned off.
|
||||||
|
;createlink=yes
|
||||||
|
;
|
||||||
|
; The text to be added to the name of the recording. Allows forming a url link.
|
||||||
|
;urlprefix=http://localhost/calls/
|
||||||
|
;
|
||||||
|
; The optional directory to save the conversations in. The default is
|
||||||
|
; /var/spool/asterisk/monitor
|
||||||
|
;savecallsin=/var/calls
|
||||||
|
; --------------------------------------------------
|
||||||
|
;
|
||||||
; This section contains the agent definitions, in the form:
|
; This section contains the agent definitions, in the form:
|
||||||
;
|
;
|
||||||
; agent => agentid,agentpassword,name
|
; agent => agentid,agentpassword,name
|
||||||
|
@@ -33,11 +33,18 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "msgsm.h"
|
#include "msgsm.h"
|
||||||
|
|
||||||
|
|
||||||
/* Some Ideas for this code came from makegsme.c by Jeffrey Chilton */
|
/* Some Ideas for this code came from makegsme.c by Jeffrey Chilton */
|
||||||
|
|
||||||
/* Portions of the conversion code are by guido@sienanet.it */
|
/* Portions of the conversion code are by guido@sienanet.it */
|
||||||
|
|
||||||
|
/* silent gsm frame */
|
||||||
|
/* begin binary data: */
|
||||||
|
char gsm_silence[] = /* 33 */
|
||||||
|
{0xD8,0x20,0xA2,0xE1,0x5A,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49
|
||||||
|
,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24
|
||||||
|
,0x92,0x49,0x24};
|
||||||
|
/* end binary data. size = 33 bytes */
|
||||||
|
|
||||||
struct ast_filestream {
|
struct ast_filestream {
|
||||||
void *reserved[AST_RESERVED_POINTERS];
|
void *reserved[AST_RESERVED_POINTERS];
|
||||||
/* Believe it or not, we must decode/recode to account for the
|
/* Believe it or not, we must decode/recode to account for the
|
||||||
@@ -193,6 +200,12 @@ static int gsm_seek(struct ast_filestream *fs, long sample_offset, int whence)
|
|||||||
if (whence != SEEK_FORCECUR) {
|
if (whence != SEEK_FORCECUR) {
|
||||||
offset = (offset > max)?max:offset;
|
offset = (offset > max)?max:offset;
|
||||||
offset = (offset < min)?min:offset;
|
offset = (offset < min)?min:offset;
|
||||||
|
} else if (offset > max) {
|
||||||
|
int i;
|
||||||
|
lseek(fs->fd, 0, SEEK_END);
|
||||||
|
for (i=0; i< (offset - max) / 33; i++) {
|
||||||
|
write(fs->fd, gsm_silence, 33);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return lseek(fs->fd, offset, SEEK_SET);
|
return lseek(fs->fd, offset, SEEK_SET);
|
||||||
}
|
}
|
||||||
|
@@ -37,6 +37,15 @@
|
|||||||
|
|
||||||
/* Portions of the conversion code are by guido@sienanet.it */
|
/* Portions of the conversion code are by guido@sienanet.it */
|
||||||
|
|
||||||
|
/* begin binary data: */
|
||||||
|
char msgsm_silence[] = /* 65 */
|
||||||
|
{0x48,0x17,0xD6,0x84,0x02,0x80,0x24,0x49,0x92,0x24,0x89,0x02,0x80,0x24,0x49
|
||||||
|
,0x92,0x24,0x89,0x02,0x80,0x24,0x49,0x92,0x24,0x89,0x02,0x80,0x24,0x49,0x92
|
||||||
|
,0x24,0x09,0x82,0x74,0x61,0x4D,0x28,0x00,0x48,0x92,0x24,0x49,0x92,0x28,0x00
|
||||||
|
,0x48,0x92,0x24,0x49,0x92,0x28,0x00,0x48,0x92,0x24,0x49,0x92,0x28,0x00,0x48
|
||||||
|
,0x92,0x24,0x49,0x92,0x00};
|
||||||
|
/* end binary data. size = 65 bytes */
|
||||||
|
|
||||||
struct ast_filestream {
|
struct ast_filestream {
|
||||||
void *reserved[AST_RESERVED_POINTERS];
|
void *reserved[AST_RESERVED_POINTERS];
|
||||||
/* Believe it or not, we must decode/recode to account for the
|
/* Believe it or not, we must decode/recode to account for the
|
||||||
@@ -487,6 +496,12 @@ static int wav_seek(struct ast_filestream *fs, long sample_offset, int whence)
|
|||||||
if (whence != SEEK_FORCECUR) {
|
if (whence != SEEK_FORCECUR) {
|
||||||
offset = (offset < min)?min:offset;
|
offset = (offset < min)?min:offset;
|
||||||
offset = (offset > max)?max:offset;
|
offset = (offset > max)?max:offset;
|
||||||
|
} else if (offset > max) {
|
||||||
|
int i;
|
||||||
|
lseek(fs->fd, 0, SEEK_END);
|
||||||
|
for (i=0; i< (offset - max) / 65; i++) {
|
||||||
|
write(fs->fd, msgsm_silence, 65);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
fs->secondhalf = 0;
|
fs->secondhalf = 0;
|
||||||
return lseek(fs->fd, offset, SEEK_SET);
|
return lseek(fs->fd, offset, SEEK_SET);
|
||||||
|
@@ -15,7 +15,9 @@ struct ast_channel_monitor
|
|||||||
char read_filename[ FILENAME_MAX ];
|
char read_filename[ FILENAME_MAX ];
|
||||||
char write_filename[ FILENAME_MAX ];
|
char write_filename[ FILENAME_MAX ];
|
||||||
char filename_base[ FILENAME_MAX ];
|
char filename_base[ FILENAME_MAX ];
|
||||||
|
int filename_changed;
|
||||||
char *format;
|
char *format;
|
||||||
|
int joinfiles;
|
||||||
int (*stop)( struct ast_channel *chan, int need_lock);
|
int (*stop)( struct ast_channel *chan, int need_lock);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -30,4 +32,6 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock);
|
|||||||
int ast_monitor_change_fname( struct ast_channel *chan,
|
int ast_monitor_change_fname( struct ast_channel *chan,
|
||||||
const char *fname_base, int need_lock );
|
const char *fname_base, int need_lock );
|
||||||
|
|
||||||
|
void ast_monitor_setjoinfiles(struct ast_channel *chan, int turnon);
|
||||||
|
|
||||||
#endif /* _MONITOR_H */
|
#endif /* _MONITOR_H */
|
||||||
|
@@ -4,6 +4,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
#include <libgen.h> //dirname()
|
||||||
|
|
||||||
#include <asterisk/lock.h>
|
#include <asterisk/lock.h>
|
||||||
#include <asterisk/channel.h>
|
#include <asterisk/channel.h>
|
||||||
@@ -48,6 +49,7 @@ int ast_monitor_start( struct ast_channel *chan, const char *format_spec,
|
|||||||
const char *fname_base, int need_lock )
|
const char *fname_base, int need_lock )
|
||||||
{
|
{
|
||||||
int res = 0;
|
int res = 0;
|
||||||
|
char tmp[256];
|
||||||
|
|
||||||
if( need_lock ) {
|
if( need_lock ) {
|
||||||
if (ast_mutex_lock(&chan->lock)) {
|
if (ast_mutex_lock(&chan->lock)) {
|
||||||
@@ -73,11 +75,19 @@ int ast_monitor_start( struct ast_channel *chan, const char *format_spec,
|
|||||||
|
|
||||||
/* Determine file names */
|
/* Determine file names */
|
||||||
if( fname_base && strlen( fname_base ) ) {
|
if( fname_base && strlen( fname_base ) ) {
|
||||||
|
int directory = strchr(fname_base, '/') ? 1 : 0;
|
||||||
|
/* try creating the directory just in case it doesn't exist */
|
||||||
|
if (directory) {
|
||||||
|
char *name = strdup(fname_base);
|
||||||
|
snprintf(tmp, sizeof(tmp), "mkdir -p %s",dirname(name));
|
||||||
|
free(name);
|
||||||
|
system(tmp);
|
||||||
|
}
|
||||||
snprintf( monitor->read_filename, FILENAME_MAX, "%s/%s-in",
|
snprintf( monitor->read_filename, FILENAME_MAX, "%s/%s-in",
|
||||||
AST_MONITOR_DIR, fname_base );
|
directory ? "" : AST_MONITOR_DIR, fname_base );
|
||||||
snprintf( monitor->write_filename, FILENAME_MAX, "%s/%s-out",
|
snprintf( monitor->write_filename, FILENAME_MAX, "%s/%s-out",
|
||||||
AST_MONITOR_DIR, fname_base );
|
directory ? "" : AST_MONITOR_DIR, fname_base );
|
||||||
*monitor->filename_base = 0;
|
strncpy(monitor->filename_base, fname_base, sizeof(monitor->filename_base) - 1);
|
||||||
} else {
|
} else {
|
||||||
ast_mutex_lock( &monitorlock );
|
ast_mutex_lock( &monitorlock );
|
||||||
snprintf( monitor->read_filename, FILENAME_MAX, "%s/audio-in-%ld",
|
snprintf( monitor->read_filename, FILENAME_MAX, "%s/audio-in-%ld",
|
||||||
@@ -93,6 +103,7 @@ int ast_monitor_start( struct ast_channel *chan, const char *format_spec,
|
|||||||
}
|
}
|
||||||
snprintf( monitor->filename_base, FILENAME_MAX, "%s/%s",
|
snprintf( monitor->filename_base, FILENAME_MAX, "%s/%s",
|
||||||
AST_MONITOR_DIR, channel_name );
|
AST_MONITOR_DIR, channel_name );
|
||||||
|
monitor->filename_changed = 1;
|
||||||
free( channel_name );
|
free( channel_name );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -164,7 +175,7 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock )
|
|||||||
ast_closestream( chan->monitor->write_stream );
|
ast_closestream( chan->monitor->write_stream );
|
||||||
}
|
}
|
||||||
|
|
||||||
if(chan->monitor->filename_base&&strlen(chan->monitor->filename_base)) {
|
if(chan->monitor->filename_changed&&strlen(chan->monitor->filename_base)) {
|
||||||
if( ast_fileexists(chan->monitor->read_filename,NULL,NULL) > 0 ) {
|
if( ast_fileexists(chan->monitor->read_filename,NULL,NULL) > 0 ) {
|
||||||
snprintf( filename, FILENAME_MAX, "%s-in",
|
snprintf( filename, FILENAME_MAX, "%s-in",
|
||||||
chan->monitor->filename_base );
|
chan->monitor->filename_base );
|
||||||
@@ -191,7 +202,19 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock )
|
|||||||
chan->monitor->write_filename );
|
chan->monitor->write_filename );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (chan->monitor->joinfiles && strlen(chan->monitor->filename_base)) {
|
||||||
|
char tmp[255];
|
||||||
|
char *format = !strcasecmp(chan->monitor->format,"wav49") ? "WAV" : chan->monitor->format;
|
||||||
|
char *name = chan->monitor->filename_base;
|
||||||
|
int directory = strchr(name, '/') ? 1 : 0;
|
||||||
|
char *dir = directory ? "" : AST_MONITOR_DIR;
|
||||||
|
snprintf(tmp, sizeof(tmp), "nice -n 19 soxmix %s/%s-in.%s %s/%s-out.%s %s/%s.%s && rm -rf %s/%s-* &", dir, name, format, dir, name, format, dir, name, format, dir, name);
|
||||||
|
#if 0
|
||||||
|
ast_verbose("executing %s\n",tmp);
|
||||||
|
#endif
|
||||||
|
if (system(tmp) == -1)
|
||||||
|
ast_log(LOG_WARNING, "You might not have the soxmix installed and available in the path, please check.\n");
|
||||||
|
}
|
||||||
free( chan->monitor->format );
|
free( chan->monitor->format );
|
||||||
free( chan->monitor );
|
free( chan->monitor );
|
||||||
chan->monitor = NULL;
|
chan->monitor = NULL;
|
||||||
@@ -207,6 +230,7 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock )
|
|||||||
int ast_monitor_change_fname( struct ast_channel *chan,
|
int ast_monitor_change_fname( struct ast_channel *chan,
|
||||||
const char *fname_base, int need_lock )
|
const char *fname_base, int need_lock )
|
||||||
{
|
{
|
||||||
|
char tmp[256];
|
||||||
if( (!fname_base) || (!strlen(fname_base)) ) {
|
if( (!fname_base) || (!strlen(fname_base)) ) {
|
||||||
ast_log( LOG_WARNING,
|
ast_log( LOG_WARNING,
|
||||||
"Cannot change monitor filename of channel %s to null",
|
"Cannot change monitor filename of channel %s to null",
|
||||||
@@ -222,8 +246,17 @@ int ast_monitor_change_fname( struct ast_channel *chan,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if( chan->monitor ) {
|
if( chan->monitor ) {
|
||||||
|
int directory = strchr(fname_base, '/') ? 1 : 0;
|
||||||
|
/* try creating the directory just in case it doesn't exist */
|
||||||
|
if (directory) {
|
||||||
|
char *name = strdup(fname_base);
|
||||||
|
snprintf(tmp, sizeof(tmp), "mkdir -p %s",dirname(name));
|
||||||
|
free(name);
|
||||||
|
system(tmp);
|
||||||
|
}
|
||||||
|
|
||||||
snprintf( chan->monitor->filename_base, FILENAME_MAX, "%s/%s",
|
snprintf( chan->monitor->filename_base, FILENAME_MAX, "%s/%s",
|
||||||
AST_MONITOR_DIR, fname_base );
|
directory ? "" : AST_MONITOR_DIR, fname_base );
|
||||||
} else {
|
} else {
|
||||||
ast_log( LOG_WARNING,
|
ast_log( LOG_WARNING,
|
||||||
"Cannot change monitor filename of channel %s to %s, monitoring not started",
|
"Cannot change monitor filename of channel %s to %s, monitoring not started",
|
||||||
@@ -379,6 +412,12 @@ static int change_monitor_action(struct mansession *s, struct message *m)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ast_monitor_setjoinfiles(struct ast_channel *chan, int turnon)
|
||||||
|
{
|
||||||
|
if (chan->monitor)
|
||||||
|
chan->monitor->joinfiles = turnon;
|
||||||
|
}
|
||||||
|
|
||||||
int load_module(void)
|
int load_module(void)
|
||||||
{
|
{
|
||||||
ast_register_application( "Monitor", start_monitor_exec, monitor_synopsis, monitor_descrip );
|
ast_register_application( "Monitor", start_monitor_exec, monitor_synopsis, monitor_descrip );
|
||||||
|
@@ -234,6 +234,18 @@ int ast_bridge_call(struct ast_channel *chan, struct ast_channel *peer, int allo
|
|||||||
return -1;
|
return -1;
|
||||||
peer->appl = "Bridged Call";
|
peer->appl = "Bridged Call";
|
||||||
peer->data = chan->name;
|
peer->data = chan->name;
|
||||||
|
/* copy the userfield from the B-leg to A-leg if applicable */
|
||||||
|
if (chan->cdr && peer->cdr && strlen(peer->cdr->userfield)) {
|
||||||
|
char tmp[256];
|
||||||
|
if (strlen(chan->cdr->userfield)) {
|
||||||
|
snprintf(tmp, sizeof(tmp), "%s;%s",chan->cdr->userfield, peer->cdr->userfield);
|
||||||
|
ast_cdr_appenduserfield(chan, tmp);
|
||||||
|
} else
|
||||||
|
ast_cdr_setuserfield(chan, peer->cdr->userfield);
|
||||||
|
/* free the peer's cdr without ast_cdr_free complaining */
|
||||||
|
free(peer->cdr);
|
||||||
|
peer->cdr = NULL;
|
||||||
|
}
|
||||||
for (;;) {
|
for (;;) {
|
||||||
res = ast_channel_bridge(chan, peer, (allowdisconnect||allowredirect_out ? AST_BRIDGE_DTMF_CHANNEL_0 : 0) + (allowredirect_in ? AST_BRIDGE_DTMF_CHANNEL_1 : 0), &f, &who);
|
res = ast_channel_bridge(chan, peer, (allowdisconnect||allowredirect_out ? AST_BRIDGE_DTMF_CHANNEL_0 : 0) + (allowredirect_in ? AST_BRIDGE_DTMF_CHANNEL_1 : 0), &f, &who);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
|
Reference in New Issue
Block a user