mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-08 08:51:50 +00:00
xmas presence
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3720 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
fc85d8aa21
commit
55d0882f90
@ -190,6 +190,7 @@ static switch_status_t channel_kill_channel(switch_core_session_t *session, int
|
|||||||
static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsession, ldl_signal_t dl_signal, char *to, char *from, char *subject, char *msg);
|
static ldl_status handle_signalling(ldl_handle_t *handle, ldl_session_t *dlsession, ldl_signal_t dl_signal, char *to, char *from, char *subject, char *msg);
|
||||||
static ldl_status handle_response(ldl_handle_t *handle, char *id);
|
static ldl_status handle_response(ldl_handle_t *handle, char *id);
|
||||||
static switch_status_t load_config(void);
|
static switch_status_t load_config(void);
|
||||||
|
static int sin_callback(void *pArg, int argc, char **argv, char **columnNames);
|
||||||
|
|
||||||
#define is_special(s) (s && (strstr(s, "ext+") || strstr(s, "user+")))
|
#define is_special(s) (s && (strstr(s, "ext+") || strstr(s, "user+")))
|
||||||
|
|
||||||
@ -305,6 +306,25 @@ static void pres_event_handler(switch_event_t *event)
|
|||||||
}
|
}
|
||||||
|
|
||||||
switch(event->event_id) {
|
switch(event->event_id) {
|
||||||
|
case SWITCH_EVENT_PRESENCE_PROBE: {
|
||||||
|
char *sql;
|
||||||
|
switch_core_db_t *db;
|
||||||
|
char *errmsg;
|
||||||
|
char *to = switch_event_get_header(event, "to");
|
||||||
|
|
||||||
|
if (to && (sql = switch_mprintf("select * from subscriptions where sub_to='%q'", to))) {
|
||||||
|
if (!(db = switch_core_db_open_file(profile->dbname))) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Opening DB %s\n", profile->dbname);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switch_mutex_lock(profile->mutex);
|
||||||
|
switch_core_db_exec(db, sql, sin_callback, profile, &errmsg);
|
||||||
|
switch_mutex_unlock(profile->mutex);
|
||||||
|
switch_core_db_close(db);
|
||||||
|
switch_safe_free(sql);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
case SWITCH_EVENT_PRESENCE_IN:
|
case SWITCH_EVENT_PRESENCE_IN:
|
||||||
if (!status) {
|
if (!status) {
|
||||||
status = "Available";
|
status = "Available";
|
||||||
@ -1618,6 +1638,11 @@ SWITCH_MOD_DECLARE(switch_status_t) switch_module_load(const switch_loadable_mod
|
|||||||
return SWITCH_STATUS_GENERR;
|
return SWITCH_STATUS_GENERR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (switch_event_bind((char *) modname, SWITCH_EVENT_PRESENCE_PROBE, SWITCH_EVENT_SUBCLASS_ANY, pres_event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
||||||
|
return SWITCH_STATUS_GENERR;
|
||||||
|
}
|
||||||
|
|
||||||
if (switch_event_bind((char *) modname, SWITCH_EVENT_PRESENCE_OUT, SWITCH_EVENT_SUBCLASS_ANY, pres_event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
|
if (switch_event_bind((char *) modname, SWITCH_EVENT_PRESENCE_OUT, SWITCH_EVENT_SUBCLASS_ANY, pres_event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
||||||
return SWITCH_STATUS_GENERR;
|
return SWITCH_STATUS_GENERR;
|
||||||
|
@ -5326,6 +5326,35 @@ static void pres_event_handler(switch_event_t *event)
|
|||||||
|
|
||||||
|
|
||||||
switch(event->event_id) {
|
switch(event->event_id) {
|
||||||
|
case SWITCH_EVENT_PRESENCE_PROBE: {
|
||||||
|
switch_core_db_t *db;
|
||||||
|
char *to = switch_event_get_header(event, "to");
|
||||||
|
char *user, *host;
|
||||||
|
|
||||||
|
if (!to || !(user = strdup(to))) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(db = switch_core_db_open_file(profile->dbname))) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error Opening DB %s\n", profile->dbname);
|
||||||
|
switch_safe_free(user);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((host = strchr(user, '@'))) {
|
||||||
|
*host++ = '\0';
|
||||||
|
}
|
||||||
|
if (user && host &&
|
||||||
|
(sql = switch_mprintf("select user,host,'Registered','unknown','' from sip_registrations where user='%q' and host='%q'", user, host))) {
|
||||||
|
switch_mutex_lock(profile->ireg_mutex);
|
||||||
|
switch_core_db_exec(db, sql, resub_callback, profile, &errmsg);
|
||||||
|
switch_mutex_unlock(profile->ireg_mutex);
|
||||||
|
switch_safe_free(sql);
|
||||||
|
}
|
||||||
|
switch_safe_free(user);
|
||||||
|
switch_core_db_close(db);
|
||||||
|
}
|
||||||
|
return;
|
||||||
case SWITCH_EVENT_PRESENCE_IN:
|
case SWITCH_EVENT_PRESENCE_IN:
|
||||||
sql = switch_mprintf("select 1,'%q','%q',* from sip_subscriptions where proto='%q' and event='%q' and sub_to_user='%q' and sub_to_host='%q'",
|
sql = switch_mprintf("select 1,'%q','%q',* from sip_subscriptions where proto='%q' and event='%q' and sub_to_user='%q' and sub_to_host='%q'",
|
||||||
status , rpid, proto, event_type, euser, host);
|
status , rpid, proto, event_type, euser, host);
|
||||||
@ -5406,6 +5435,11 @@ SWITCH_MOD_DECLARE(switch_status_t) switch_module_load(const switch_loadable_mod
|
|||||||
return SWITCH_STATUS_GENERR;
|
return SWITCH_STATUS_GENERR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (switch_event_bind((char *) modname, SWITCH_EVENT_PRESENCE_PROBE, SWITCH_EVENT_SUBCLASS_ANY, pres_event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
||||||
|
return SWITCH_STATUS_GENERR;
|
||||||
|
}
|
||||||
|
|
||||||
if (switch_event_bind((char *) modname, SWITCH_EVENT_ROSTER, SWITCH_EVENT_SUBCLASS_ANY, pres_event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
|
if (switch_event_bind((char *) modname, SWITCH_EVENT_ROSTER, SWITCH_EVENT_SUBCLASS_ANY, pres_event_handler, NULL) != SWITCH_STATUS_SUCCESS) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't bind!\n");
|
||||||
return SWITCH_STATUS_GENERR;
|
return SWITCH_STATUS_GENERR;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user