app_sayunixtime.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Asterisk -- A telephony toolkit for Linux.
  3. *
  4. * SayUnixTime application
  5. *
  6. * Copyright (c) 2003 Tilghman Lesher. All rights reserved.
  7. *
  8. * Tilghman Lesher <app_sayunixtime__200309@the-tilghman.com>
  9. *
  10. * This code is released by the author with no restrictions on usage.
  11. *
  12. */
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <unistd.h>
  16. #include <string.h>
  17. #include <asterisk/file.h>
  18. #include <asterisk/logger.h>
  19. #include <asterisk/options.h>
  20. #include <asterisk/channel.h>
  21. #include <asterisk/pbx.h>
  22. #include <asterisk/module.h>
  23. #include <asterisk/say.h>
  24. static char *tdesc = "Say time";
  25. static char *app_sayunixtime = "SayUnixTime";
  26. static char *sayunixtime_synopsis = "Says a specified time in a custom format";
  27. static char *sayunixtime_descrip =
  28. "SayUnixTime([unixtime][|[timezone][|format]])\n"
  29. " unixtime: time, in seconds since Jan 1, 1970. May be negative.\n"
  30. " defaults to now.\n"
  31. " timezone: timezone, see /usr/share/zoneinfo for a list.\n"
  32. " defaults to machine default.\n"
  33. " format: a format the time is to be said in. See voicemail.conf.\n"
  34. " defaults to \"ABdY 'digits/at' IMp\"\n"
  35. " Returns 0 or -1 on hangup.\n";
  36. STANDARD_LOCAL_USER;
  37. LOCAL_USER_DECL;
  38. static int sayunixtime_exec(struct ast_channel *chan, void *data)
  39. {
  40. int res=0;
  41. struct localuser *u;
  42. char *s,*zone=NULL,*timec;
  43. time_t unixtime;
  44. char *format = "ABdY 'digits/at' IMp";
  45. struct timeval tv;
  46. LOCAL_USER_ADD(u);
  47. gettimeofday(&tv,NULL);
  48. unixtime = (time_t)tv.tv_sec;
  49. if (data) {
  50. s = data;
  51. s = ast_strdupa(s);
  52. if (s) {
  53. timec = strsep(&s,"|");
  54. if ((timec) && (*timec != '\0')) {
  55. long timein;
  56. if (sscanf(timec,"%ld",&timein) == 1) {
  57. unixtime = (time_t)timein;
  58. }
  59. }
  60. if (s) {
  61. zone = strsep(&s,"|");
  62. if (zone && (*zone == '\0'))
  63. zone = NULL;
  64. if (s) {
  65. format = s;
  66. }
  67. }
  68. } else {
  69. ast_log(LOG_ERROR, "Out of memory error\n");
  70. }
  71. }
  72. if (chan->_state != AST_STATE_UP) {
  73. res = ast_answer(chan);
  74. }
  75. if (!res)
  76. res = ast_say_date_with_format(chan, unixtime, AST_DIGIT_ANY, chan->language, format, zone);
  77. LOCAL_USER_REMOVE(u);
  78. return res;
  79. }
  80. int unload_module(void)
  81. {
  82. STANDARD_HANGUP_LOCALUSERS;
  83. return ast_unregister_application(app_sayunixtime);
  84. }
  85. int load_module(void)
  86. {
  87. return ast_register_application(app_sayunixtime, sayunixtime_exec, sayunixtime_synopsis, sayunixtime_descrip);
  88. }
  89. char *description(void)
  90. {
  91. return tdesc;
  92. }
  93. int usecount(void)
  94. {
  95. int res;
  96. STANDARD_USECOUNT(res);
  97. return res;
  98. }
  99. char *key()
  100. {
  101. return ASTERISK_GPL_KEY;
  102. }