2012-10-29 21:38:08 -04:00
|
|
|
/*
|
2012-10-03 18:47:10 -04:00
|
|
|
* chat_session.c
|
|
|
|
*
|
2014-03-08 20:18:19 -05:00
|
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
2012-10-29 21:38:08 -04:00
|
|
|
*
|
2012-10-03 18:47:10 -04:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-10-03 18:47:10 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2015-01-04 18:40:10 -05:00
|
|
|
#include <assert.h>
|
2012-10-03 18:47:10 -04:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "chat_session.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/preferences.h"
|
2012-10-29 21:38:08 -04:00
|
|
|
#include "log.h"
|
2014-12-28 20:17:59 -05:00
|
|
|
#include "xmpp/xmpp.h"
|
2012-10-03 18:47:10 -04:00
|
|
|
|
2012-10-31 19:08:26 -04:00
|
|
|
#define PAUSED_TIMOUT 10.0
|
2012-10-31 21:40:30 -04:00
|
|
|
#define INACTIVE_TIMOUT 30.0
|
2012-10-30 21:36:52 -04:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
CHAT_STATE_STARTED,
|
|
|
|
CHAT_STATE_ACTIVE,
|
2012-10-31 19:08:26 -04:00
|
|
|
CHAT_STATE_PAUSED,
|
|
|
|
CHAT_STATE_COMPOSING,
|
2012-10-30 21:36:52 -04:00
|
|
|
CHAT_STATE_INACTIVE,
|
|
|
|
CHAT_STATE_GONE
|
|
|
|
} chat_state_t;
|
|
|
|
|
2014-12-07 17:59:13 -05:00
|
|
|
typedef struct chat_session_t {
|
2014-12-28 20:24:42 -05:00
|
|
|
char *barejid;
|
2014-12-07 17:59:13 -05:00
|
|
|
char *resource;
|
2015-01-04 18:40:10 -05:00
|
|
|
gboolean send_states;
|
2012-10-30 21:36:52 -04:00
|
|
|
chat_state_t state;
|
|
|
|
GTimer *active_timer;
|
|
|
|
gboolean sent;
|
2014-12-07 17:59:13 -05:00
|
|
|
} ChatSession;
|
2013-01-12 14:51:32 -05:00
|
|
|
|
2012-10-03 18:47:10 -04:00
|
|
|
static GHashTable *sessions;
|
|
|
|
|
2014-12-28 21:17:20 -05:00
|
|
|
static ChatSession*
|
2015-01-04 18:40:10 -05:00
|
|
|
_chat_session_new(const char * const barejid, const char * const resource, gboolean send_states)
|
2012-10-31 19:41:30 -04:00
|
|
|
{
|
2014-12-07 17:59:13 -05:00
|
|
|
ChatSession *new_session = malloc(sizeof(struct chat_session_t));
|
2014-12-28 20:24:42 -05:00
|
|
|
new_session->barejid = strdup(barejid);
|
2015-01-04 19:48:30 -05:00
|
|
|
if (resource) {
|
|
|
|
new_session->resource = strdup(resource);
|
|
|
|
} else {
|
|
|
|
new_session->resource = NULL;
|
|
|
|
}
|
2015-01-04 18:40:10 -05:00
|
|
|
new_session->send_states = send_states;
|
2012-10-31 19:41:30 -04:00
|
|
|
new_session->state = CHAT_STATE_STARTED;
|
|
|
|
new_session->active_timer = g_timer_new();
|
|
|
|
new_session->sent = FALSE;
|
2014-12-28 20:24:42 -05:00
|
|
|
|
|
|
|
return new_session;
|
2012-10-31 19:41:30 -04:00
|
|
|
}
|
|
|
|
|
2014-12-28 20:17:59 -05:00
|
|
|
static void
|
2014-12-28 21:17:20 -05:00
|
|
|
_chat_session_free(ChatSession *session)
|
2012-10-30 21:36:52 -04:00
|
|
|
{
|
2012-11-24 21:14:38 -05:00
|
|
|
if (session != NULL) {
|
2014-12-28 21:17:20 -05:00
|
|
|
free(session->barejid);
|
2015-01-04 15:19:42 -05:00
|
|
|
free(session->resource);
|
2014-12-28 21:17:20 -05:00
|
|
|
if (session->active_timer != NULL) {
|
|
|
|
g_timer_destroy(session->active_timer);
|
|
|
|
session->active_timer = NULL;
|
2012-10-31 19:08:26 -04:00
|
|
|
}
|
2014-12-28 21:17:20 -05:00
|
|
|
free(session);
|
2012-10-30 21:36:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-28 21:17:20 -05:00
|
|
|
void
|
|
|
|
chat_sessions_init(void)
|
2012-10-31 19:08:26 -04:00
|
|
|
{
|
2014-12-28 21:17:20 -05:00
|
|
|
sessions = g_hash_table_new_full(g_str_hash, g_str_equal, g_free,
|
|
|
|
(GDestroyNotify)_chat_session_free);
|
|
|
|
}
|
2012-10-31 19:08:26 -04:00
|
|
|
|
2014-12-28 21:17:20 -05:00
|
|
|
void
|
|
|
|
chat_sessions_clear(void)
|
|
|
|
{
|
|
|
|
if (sessions != NULL)
|
|
|
|
g_hash_table_remove_all(sessions);
|
2012-10-31 19:08:26 -04:00
|
|
|
}
|
|
|
|
|
2015-01-04 15:19:42 -05:00
|
|
|
gboolean
|
|
|
|
chat_session_exists(const char * const barejid)
|
|
|
|
{
|
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
2015-01-04 18:40:10 -05:00
|
|
|
|
2015-01-04 15:19:42 -05:00
|
|
|
return (session != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
char*
|
|
|
|
chat_session_get_resource(const char * const barejid)
|
|
|
|
{
|
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
2015-01-04 18:40:10 -05:00
|
|
|
assert(session != NULL);
|
|
|
|
|
|
|
|
return session->resource;
|
2015-01-04 15:19:42 -05:00
|
|
|
}
|
|
|
|
|
2014-12-28 17:40:59 -05:00
|
|
|
gboolean
|
2015-01-04 18:40:10 -05:00
|
|
|
chat_session_send_states(const char * const barejid)
|
2014-12-28 17:40:59 -05:00
|
|
|
{
|
2015-01-04 18:40:10 -05:00
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
|
|
|
assert(session != NULL);
|
2014-12-28 17:40:59 -05:00
|
|
|
|
2015-01-04 18:40:10 -05:00
|
|
|
return session->send_states;
|
2014-12-28 17:40:59 -05:00
|
|
|
}
|
|
|
|
|
2014-12-28 19:16:40 -05:00
|
|
|
void
|
2015-01-04 18:40:10 -05:00
|
|
|
chat_session_on_incoming_message(const char * const barejid, const char * const resource, gboolean send_states)
|
2014-12-28 19:16:40 -05:00
|
|
|
{
|
2014-12-28 20:54:09 -05:00
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
2014-12-28 19:16:40 -05:00
|
|
|
|
2015-01-04 19:48:30 -05:00
|
|
|
if (!session) {
|
|
|
|
session = _chat_session_new(barejid, resource, send_states);
|
|
|
|
g_hash_table_insert(sessions, strdup(barejid), session);
|
|
|
|
} else if (g_strcmp0(session->resource, resource) != 0) {
|
2015-01-04 15:19:42 -05:00
|
|
|
g_hash_table_remove(sessions, session);
|
2015-01-04 19:48:30 -05:00
|
|
|
session = _chat_session_new(barejid, resource, send_states);
|
|
|
|
g_hash_table_insert(sessions, strdup(barejid), session);
|
|
|
|
} else {
|
|
|
|
session->send_states = send_states;
|
2014-12-28 20:17:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-04 18:40:10 -05:00
|
|
|
void
|
|
|
|
chat_session_on_message_send(const char * const barejid)
|
|
|
|
{
|
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
2015-01-04 19:48:30 -05:00
|
|
|
|
|
|
|
// if no session exists, create one with no resource, and send states
|
|
|
|
if (!session) {
|
|
|
|
session = _chat_session_new(barejid, NULL, TRUE);
|
|
|
|
g_hash_table_insert(sessions, strdup(barejid), session);
|
|
|
|
}
|
2015-01-04 18:40:10 -05:00
|
|
|
|
|
|
|
session->state = CHAT_STATE_ACTIVE;
|
|
|
|
g_timer_start(session->active_timer);
|
|
|
|
session->sent = TRUE;
|
|
|
|
}
|
|
|
|
|
2015-01-04 19:48:30 -05:00
|
|
|
void
|
|
|
|
chat_session_on_window_open(const char * const barejid)
|
|
|
|
{
|
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
|
|
|
if (!session) {
|
|
|
|
session = _chat_session_new(barejid, NULL, TRUE);
|
|
|
|
g_hash_table_insert(sessions, strdup(barejid), session);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-28 20:17:59 -05:00
|
|
|
void
|
|
|
|
chat_session_on_window_close(const char * const barejid)
|
|
|
|
{
|
2015-01-04 18:40:10 -05:00
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
|
|
|
assert(session != NULL);
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_STATES) && session->send_states) {
|
2015-01-04 19:48:30 -05:00
|
|
|
GString *jid = g_string_new(session->barejid);
|
|
|
|
if (session->resource) {
|
|
|
|
g_string_append(jid, "/");
|
|
|
|
g_string_append(jid, session->resource);
|
|
|
|
}
|
|
|
|
message_send_gone(jid->str);
|
|
|
|
g_string_free(jid, TRUE);
|
2014-12-28 20:17:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chat_session_on_cancel(const char * const jid)
|
|
|
|
{
|
2015-01-04 19:48:30 -05:00
|
|
|
Jid *jidp = jid_create(jid);
|
|
|
|
if (jidp) {
|
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, jidp->barejid);
|
|
|
|
if (session) {
|
|
|
|
session->send_states = FALSE;
|
|
|
|
}
|
2014-12-28 20:17:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chat_session_on_activity(const char * const barejid)
|
|
|
|
{
|
2014-12-28 20:54:09 -05:00
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
2015-01-04 19:48:30 -05:00
|
|
|
if (!session) {
|
|
|
|
return;
|
|
|
|
}
|
2014-12-28 21:17:20 -05:00
|
|
|
|
2015-01-04 19:48:30 -05:00
|
|
|
if (session->state != CHAT_STATE_COMPOSING) {
|
|
|
|
session->sent = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
session->state = CHAT_STATE_COMPOSING;
|
|
|
|
g_timer_start(session->active_timer);
|
2014-12-28 21:17:20 -05:00
|
|
|
|
2015-01-04 19:48:30 -05:00
|
|
|
if (!session->sent || session->state == CHAT_STATE_PAUSED) {
|
|
|
|
if (prefs_get_boolean(PREF_STATES) && prefs_get_boolean(PREF_OUTTYPE) && session->send_states) {
|
|
|
|
GString *jid = g_string_new(session->barejid);
|
|
|
|
if (session->resource) {
|
|
|
|
g_string_append(jid, "/");
|
|
|
|
g_string_append(jid, session->resource);
|
2015-01-04 18:40:10 -05:00
|
|
|
}
|
2015-01-04 19:48:30 -05:00
|
|
|
message_send_composing(jid->str);
|
|
|
|
g_string_free(jid, TRUE);
|
2014-12-28 20:17:59 -05:00
|
|
|
}
|
2015-01-04 19:48:30 -05:00
|
|
|
session->sent = TRUE;
|
2014-12-28 20:17:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chat_session_on_inactivity(const char * const barejid)
|
|
|
|
{
|
2014-12-28 20:54:09 -05:00
|
|
|
ChatSession *session = g_hash_table_lookup(sessions, barejid);
|
2015-01-04 19:48:30 -05:00
|
|
|
if (!session) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (session->active_timer != NULL) {
|
|
|
|
gdouble elapsed = g_timer_elapsed(session->active_timer, NULL);
|
|
|
|
|
|
|
|
if ((prefs_get_gone() != 0) && (elapsed > (prefs_get_gone() * 60.0))) {
|
|
|
|
if (session->state != CHAT_STATE_GONE) {
|
|
|
|
session->sent = FALSE;
|
|
|
|
}
|
|
|
|
session->state = CHAT_STATE_GONE;
|
|
|
|
|
|
|
|
} else if (elapsed > INACTIVE_TIMOUT) {
|
|
|
|
if (session->state != CHAT_STATE_INACTIVE) {
|
|
|
|
session->sent = FALSE;
|
|
|
|
}
|
|
|
|
session->state = CHAT_STATE_INACTIVE;
|
|
|
|
|
|
|
|
} else if (elapsed > PAUSED_TIMOUT) {
|
|
|
|
if (session->state == CHAT_STATE_COMPOSING) {
|
|
|
|
session->sent = FALSE;
|
|
|
|
session->state = CHAT_STATE_PAUSED;
|
2014-12-28 20:17:59 -05:00
|
|
|
}
|
|
|
|
}
|
2015-01-04 19:48:30 -05:00
|
|
|
}
|
2014-12-28 20:17:59 -05:00
|
|
|
|
2015-01-04 19:48:30 -05:00
|
|
|
if (session->sent == FALSE) {
|
|
|
|
GString *jid = g_string_new(session->barejid);
|
|
|
|
if (session->resource) {
|
|
|
|
g_string_append(jid, "/");
|
|
|
|
g_string_append(jid, session->resource);
|
|
|
|
}
|
|
|
|
if (session->state == CHAT_STATE_GONE) {
|
|
|
|
if (prefs_get_boolean(PREF_STATES) && session->send_states) {
|
|
|
|
message_send_gone(jid->str);
|
2014-12-28 20:54:09 -05:00
|
|
|
}
|
2015-01-04 19:48:30 -05:00
|
|
|
session->sent = TRUE;
|
|
|
|
} else if (session->state == CHAT_STATE_INACTIVE) {
|
|
|
|
if (prefs_get_boolean(PREF_STATES) && session->send_states) {
|
|
|
|
message_send_inactive(jid->str);
|
|
|
|
}
|
|
|
|
session->sent = TRUE;
|
|
|
|
} else if (session->state == CHAT_STATE_PAUSED && prefs_get_boolean(PREF_OUTTYPE)) {
|
|
|
|
if (prefs_get_boolean(PREF_STATES) && session->send_states) {
|
|
|
|
message_send_paused(jid->str);
|
|
|
|
}
|
|
|
|
session->sent = TRUE;
|
2014-12-28 18:56:48 -05:00
|
|
|
}
|
2015-01-04 19:48:30 -05:00
|
|
|
g_string_free(jid, TRUE);
|
2014-12-28 18:56:48 -05:00
|
|
|
}
|
2014-12-28 17:40:59 -05:00
|
|
|
}
|