cdr_manager.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2004 - 2005
  5. *
  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.
  11. *
  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.
  15. */
  16. /*!
  17. * \file
  18. * \brief Asterisk Call Manager CDR records.
  19. *
  20. * See also
  21. * \arg \ref AstCDR
  22. * \arg \ref AstAMI
  23. * \arg \ref Config_ami
  24. * \ingroup cdr_drivers
  25. */
  26. /*! \li \ref cdr_manager.c uses the configuration file \ref cdr_manager.conf
  27. * \addtogroup configuration_file Configuration Files
  28. */
  29. /*!
  30. * \page cdr_manager.conf cdr_manager.conf
  31. * \verbinclude cdr_manager.conf.sample
  32. */
  33. /*** MODULEINFO
  34. <support_level>core</support_level>
  35. ***/
  36. #include "asterisk.h"
  37. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  38. #include <time.h>
  39. #include "asterisk/channel.h"
  40. #include "asterisk/cdr.h"
  41. #include "asterisk/module.h"
  42. #include "asterisk/utils.h"
  43. #include "asterisk/manager.h"
  44. #include "asterisk/config.h"
  45. #include "asterisk/pbx.h"
  46. #define DATE_FORMAT "%Y-%m-%d %T"
  47. #define CONF_FILE "cdr_manager.conf"
  48. #define CUSTOM_FIELDS_BUF_SIZE 1024
  49. static const char name[] = "cdr_manager";
  50. static int enablecdr = 0;
  51. static struct ast_str *customfields;
  52. AST_RWLOCK_DEFINE_STATIC(customfields_lock);
  53. static int manager_log(struct ast_cdr *cdr);
  54. static int load_config(int reload)
  55. {
  56. char *cat = NULL;
  57. struct ast_config *cfg;
  58. struct ast_variable *v;
  59. struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
  60. int newenablecdr = 0;
  61. cfg = ast_config_load(CONF_FILE, config_flags);
  62. if (cfg == CONFIG_STATUS_FILEUNCHANGED) {
  63. return 0;
  64. }
  65. if (cfg == CONFIG_STATUS_FILEINVALID) {
  66. ast_log(LOG_ERROR, "Config file '%s' could not be parsed\n", CONF_FILE);
  67. return -1;
  68. }
  69. if (!cfg) {
  70. /* Standard configuration */
  71. ast_log(LOG_WARNING, "Failed to load configuration file. Module not activated.\n");
  72. if (enablecdr) {
  73. ast_cdr_backend_suspend(name);
  74. }
  75. enablecdr = 0;
  76. return -1;
  77. }
  78. if (reload) {
  79. ast_rwlock_wrlock(&customfields_lock);
  80. }
  81. if (reload && customfields) {
  82. ast_free(customfields);
  83. customfields = NULL;
  84. }
  85. while ( (cat = ast_category_browse(cfg, cat)) ) {
  86. if (!strcasecmp(cat, "general")) {
  87. v = ast_variable_browse(cfg, cat);
  88. while (v) {
  89. if (!strcasecmp(v->name, "enabled"))
  90. newenablecdr = ast_true(v->value);
  91. v = v->next;
  92. }
  93. } else if (!strcasecmp(cat, "mappings")) {
  94. customfields = ast_str_create(CUSTOM_FIELDS_BUF_SIZE);
  95. v = ast_variable_browse(cfg, cat);
  96. while (v) {
  97. if (customfields && !ast_strlen_zero(v->name) && !ast_strlen_zero(v->value)) {
  98. if ((ast_str_strlen(customfields) + strlen(v->value) + strlen(v->name) + 14) < ast_str_size(customfields)) {
  99. ast_str_append(&customfields, -1, "%s: ${CDR(%s)}\r\n", v->value, v->name);
  100. ast_log(LOG_NOTICE, "Added mapping %s: ${CDR(%s)}\n", v->value, v->name);
  101. } else {
  102. ast_log(LOG_WARNING, "No more buffer space to add other custom fields\n");
  103. break;
  104. }
  105. }
  106. v = v->next;
  107. }
  108. }
  109. }
  110. if (reload) {
  111. ast_rwlock_unlock(&customfields_lock);
  112. }
  113. ast_config_destroy(cfg);
  114. if (!newenablecdr) {
  115. ast_cdr_backend_suspend(name);
  116. } else if (newenablecdr) {
  117. ast_cdr_backend_unsuspend(name);
  118. }
  119. enablecdr = newenablecdr;
  120. return 0;
  121. }
  122. static int manager_log(struct ast_cdr *cdr)
  123. {
  124. struct ast_tm timeresult;
  125. char strStartTime[80] = "";
  126. char strAnswerTime[80] = "";
  127. char strEndTime[80] = "";
  128. char buf[CUSTOM_FIELDS_BUF_SIZE];
  129. if (!enablecdr)
  130. return 0;
  131. ast_localtime(&cdr->start, &timeresult, NULL);
  132. ast_strftime(strStartTime, sizeof(strStartTime), DATE_FORMAT, &timeresult);
  133. if (cdr->answer.tv_sec) {
  134. ast_localtime(&cdr->answer, &timeresult, NULL);
  135. ast_strftime(strAnswerTime, sizeof(strAnswerTime), DATE_FORMAT, &timeresult);
  136. }
  137. ast_localtime(&cdr->end, &timeresult, NULL);
  138. ast_strftime(strEndTime, sizeof(strEndTime), DATE_FORMAT, &timeresult);
  139. buf[0] = '\0';
  140. ast_rwlock_rdlock(&customfields_lock);
  141. if (customfields && ast_str_strlen(customfields)) {
  142. struct ast_channel *dummy = ast_dummy_channel_alloc();
  143. if (!dummy) {
  144. ast_log(LOG_ERROR, "Unable to allocate channel for variable substitution.\n");
  145. return 0;
  146. }
  147. ast_channel_cdr_set(dummy, ast_cdr_dup(cdr));
  148. pbx_substitute_variables_helper(dummy, ast_str_buffer(customfields), buf, sizeof(buf) - 1);
  149. ast_channel_unref(dummy);
  150. }
  151. ast_rwlock_unlock(&customfields_lock);
  152. manager_event(EVENT_FLAG_CDR, "Cdr",
  153. "AccountCode: %s\r\n"
  154. "Source: %s\r\n"
  155. "Destination: %s\r\n"
  156. "DestinationContext: %s\r\n"
  157. "CallerID: %s\r\n"
  158. "Channel: %s\r\n"
  159. "DestinationChannel: %s\r\n"
  160. "LastApplication: %s\r\n"
  161. "LastData: %s\r\n"
  162. "StartTime: %s\r\n"
  163. "AnswerTime: %s\r\n"
  164. "EndTime: %s\r\n"
  165. "Duration: %ld\r\n"
  166. "BillableSeconds: %ld\r\n"
  167. "Disposition: %s\r\n"
  168. "AMAFlags: %s\r\n"
  169. "UniqueID: %s\r\n"
  170. "UserField: %s\r\n"
  171. "%s",
  172. cdr->accountcode, cdr->src, cdr->dst, cdr->dcontext, cdr->clid, cdr->channel,
  173. cdr->dstchannel, cdr->lastapp, cdr->lastdata, strStartTime, strAnswerTime, strEndTime,
  174. cdr->duration, cdr->billsec, ast_cdr_disp2str(cdr->disposition),
  175. ast_channel_amaflags2string(cdr->amaflags), cdr->uniqueid, cdr->userfield,buf);
  176. return 0;
  177. }
  178. static int unload_module(void)
  179. {
  180. if (ast_cdr_unregister(name)) {
  181. return -1;
  182. }
  183. if (customfields)
  184. ast_free(customfields);
  185. return 0;
  186. }
  187. static int load_module(void)
  188. {
  189. if (ast_cdr_register(name, "Asterisk Manager Interface CDR Backend", manager_log)) {
  190. return AST_MODULE_LOAD_DECLINE;
  191. }
  192. if (load_config(0)) {
  193. ast_cdr_unregister(name);
  194. return AST_MODULE_LOAD_DECLINE;
  195. }
  196. return AST_MODULE_LOAD_SUCCESS;
  197. }
  198. static int reload(void)
  199. {
  200. return load_config(1);
  201. }
  202. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Asterisk Manager Interface CDR Backend",
  203. .load = load_module,
  204. .unload = unload_module,
  205. .reload = reload,
  206. .load_pri = AST_MODPRI_CDR_DRIVER,
  207. );