res_pjsip_pidf_eyebeam_body_supplement.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2014, Digium, Inc.
  5. *
  6. * Mark Michelson <mmichelson@digium.com>
  7. *
  8. * See http://www.asterisk.org for more information about
  9. * the Asterisk project. Please do not directly contact
  10. * any of the maintainers of this project for assistance;
  11. * the project provides a web site, mailing lists and IRC
  12. * channels for your use.
  13. *
  14. * This program is free software, distributed under the terms of
  15. * the GNU General Public License Version 2. See the LICENSE file
  16. * at the top of the source tree.
  17. */
  18. /*** MODULEINFO
  19. <depend>pjproject</depend>
  20. <depend>res_pjsip</depend>
  21. <depend>res_pjsip_pubsub</depend>
  22. <support_level>core</support_level>
  23. ***/
  24. #include "asterisk.h"
  25. #include <pjsip.h>
  26. #include <pjsip_simple.h>
  27. #include <pjlib.h>
  28. #include "asterisk/module.h"
  29. #include "asterisk/res_pjsip.h"
  30. #include "asterisk/res_pjsip_pubsub.h"
  31. #include "asterisk/res_pjsip_presence_xml.h"
  32. #include "asterisk/res_pjsip_body_generator_types.h"
  33. /*!
  34. * \internal
  35. * \brief Adds non standard elements to the xml body
  36. *
  37. * This is some code that was part of the original chan_sip implementation
  38. * that is not part of the RFC 3863 definition, but we are keeping available
  39. * for backward compatability. The original comment stated that Eyebeam
  40. * supports this format.
  41. */
  42. static void add_eyebeam(pj_pool_t *pool, pj_xml_node *node, const char *pidfstate)
  43. {
  44. static const char *XMLNS_DM_PREFIX = "xmlns:dm";
  45. static const char *XMLNS_DM = "urn:ietf:params:xml:ns:pidf:data-model";
  46. static const char *XMLNS_RPID_PREFIX = "xmlns:rpid";
  47. static const char *XMLNS_RPID = "urn:ietf:params:xml:ns:pidf:rpid";
  48. pj_xml_node *person = ast_sip_presence_xml_create_node(pool, node, "dm:person");
  49. if (pidfstate[0] != '-') {
  50. pj_xml_node *activities = ast_sip_presence_xml_create_node(pool, person, "rpid:activities");
  51. size_t str_size = sizeof("rpid:") + strlen(pidfstate);
  52. char *act_str = ast_alloca(str_size);
  53. /* Safe */
  54. strcpy(act_str, "rpid:");
  55. strcat(act_str, pidfstate);
  56. ast_sip_presence_xml_create_node(pool, activities, act_str);
  57. }
  58. ast_sip_presence_xml_create_attr(pool, node, XMLNS_DM_PREFIX, XMLNS_DM);
  59. ast_sip_presence_xml_create_attr(pool, node, XMLNS_RPID_PREFIX, XMLNS_RPID);
  60. }
  61. static int pidf_supplement_body(void *body, void *data)
  62. {
  63. pjpidf_pres *pres = body;
  64. struct ast_sip_exten_state_data *state_data = data;
  65. char *statestring = NULL, *pidfstate = NULL, *pidfnote = NULL;
  66. enum ast_sip_pidf_state local_state;
  67. ast_sip_presence_exten_state_to_str(state_data->exten_state, &statestring,
  68. &pidfstate, &pidfnote, &local_state, 0);
  69. add_eyebeam(state_data->pool, pres, pidfstate);
  70. return 0;
  71. }
  72. static struct ast_sip_pubsub_body_supplement pidf_supplement = {
  73. .type = "application",
  74. .subtype = "pidf+xml",
  75. .supplement_body = pidf_supplement_body,
  76. };
  77. static int load_module(void)
  78. {
  79. CHECK_PJSIP_PUBSUB_MODULE_LOADED();
  80. if (ast_sip_pubsub_register_body_supplement(&pidf_supplement)) {
  81. return AST_MODULE_LOAD_DECLINE;
  82. }
  83. return AST_MODULE_LOAD_SUCCESS;
  84. }
  85. static int unload_module(void)
  86. {
  87. ast_sip_pubsub_unregister_body_supplement(&pidf_supplement);
  88. return 0;
  89. }
  90. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP PIDF Eyebeam supplement",
  91. .support_level = AST_MODULE_SUPPORT_CORE,
  92. .load = load_module,
  93. .unload = unload_module,
  94. .load_pri = AST_MODPRI_CHANNEL_DEPEND,
  95. );