2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2004 - 2005
6 * See http://www.asterisk.org for more information about
7 * the Asterisk project. Please do not directly contact
8 * any of the maintainers of this project for assistance;
9 * the project provides a web site, mailing lists and IRC
10 * channels for your use.
12 * This program is free software, distributed under the terms of
13 * the GNU General Public License Version 2. See the LICENSE file
14 * at the top of the source tree.
19 * \brief Asterisk Call Manager CDR records.
24 * \arg \ref Config_ami
25 * \ingroup cdr_drivers
30 ASTERISK_FILE_VERSION(__FILE__
, "$Revision$")
32 #include <sys/types.h>
37 #include "asterisk/channel.h"
38 #include "asterisk/cdr.h"
39 #include "asterisk/module.h"
40 #include "asterisk/logger.h"
41 #include "asterisk/utils.h"
42 #include "asterisk/manager.h"
43 #include "asterisk/config.h"
45 #define DATE_FORMAT "%Y-%m-%d %T"
46 #define CONF_FILE "cdr_manager.conf"
48 static char *name
= "cdr_manager";
50 static int enablecdr
= 0;
52 static int loadconfigurationfile(void)
55 struct ast_config
*cfg
;
56 struct ast_variable
*v
;
58 cfg
= ast_config_load(CONF_FILE
);
60 /* Standard configuration */
65 cat
= ast_category_browse(cfg
, NULL
);
67 if (!strcasecmp(cat
, "general")) {
68 v
= ast_variable_browse(cfg
, cat
);
70 if (!strcasecmp(v
->name
, "enabled")) {
71 enablecdr
= ast_true(v
->value
);
79 cat
= ast_category_browse(cfg
, cat
);
82 ast_config_destroy(cfg
);
86 static int manager_log(struct ast_cdr
*cdr
)
90 char strStartTime
[80] = "";
91 char strAnswerTime
[80] = "";
92 char strEndTime
[80] = "";
97 t
= cdr
->start
.tv_sec
;
98 localtime_r(&t
, &timeresult
);
99 strftime(strStartTime
, sizeof(strStartTime
), DATE_FORMAT
, &timeresult
);
101 if (cdr
->answer
.tv_sec
) {
102 t
= cdr
->answer
.tv_sec
;
103 localtime_r(&t
, &timeresult
);
104 strftime(strAnswerTime
, sizeof(strAnswerTime
), DATE_FORMAT
, &timeresult
);
108 localtime_r(&t
, &timeresult
);
109 strftime(strEndTime
, sizeof(strEndTime
), DATE_FORMAT
, &timeresult
);
111 manager_event(EVENT_FLAG_CALL
, "Cdr",
112 "AccountCode: %s\r\n"
114 "Destination: %s\r\n"
115 "DestinationContext: %s\r\n"
118 "DestinationChannel: %s\r\n"
119 "LastApplication: %s\r\n"
125 "BillableSeconds: %ld\r\n"
126 "Disposition: %s\r\n"
130 cdr
->accountcode
, cdr
->src
, cdr
->dst
, cdr
->dcontext
, cdr
->clid
, cdr
->channel
,
131 cdr
->dstchannel
, cdr
->lastapp
, cdr
->lastdata
, strStartTime
, strAnswerTime
, strEndTime
,
132 cdr
->duration
, cdr
->billsec
, ast_cdr_disp2str(cdr
->disposition
),
133 ast_cdr_flags2str(cdr
->amaflags
), cdr
->uniqueid
, cdr
->userfield
);
138 static int unload_module(void)
140 ast_cdr_unregister(name
);
144 static int load_module(void)
148 /* Configuration file */
149 if (!loadconfigurationfile())
150 return AST_MODULE_LOAD_DECLINE
;
152 res
= ast_cdr_register(name
, "Asterisk Manager Interface CDR Backend", manager_log
);
154 ast_log(LOG_ERROR
, "Unable to register Asterisk Call Manager CDR handling\n");
160 static int reload(void)
162 loadconfigurationfile();
166 AST_MODULE_INFO(ASTERISK_GPL_KEY
, AST_MODFLAG_DEFAULT
, "Asterisk Manager Interface CDR Backend",
168 .unload
= unload_module
,