2014-01-05 15:52:45 -05:00
|
|
|
/*
|
|
|
|
* server_events.c
|
|
|
|
*
|
2015-02-10 18:16:09 -05:00
|
|
|
* Copyright (C) 2012 - 2015 James Booth <boothj5@gmail.com>
|
2014-01-05 15:52:45 -05: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.
|
|
|
|
*
|
2014-01-05 15:52:45 -05:00
|
|
|
*/
|
|
|
|
|
2015-10-31 19:38:08 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
#include <string.h>
|
2014-01-19 12:51:32 -05:00
|
|
|
#include <stdlib.h>
|
2015-09-29 18:30:23 -04:00
|
|
|
#include <assert.h>
|
2014-01-05 16:48:04 -05:00
|
|
|
|
2014-01-05 16:04:30 -05:00
|
|
|
#include "chat_session.h"
|
2014-01-05 15:58:19 -05:00
|
|
|
#include "log.h"
|
2014-01-05 15:52:45 -05:00
|
|
|
#include "muc.h"
|
2014-01-05 16:33:12 -05:00
|
|
|
#include "config/preferences.h"
|
2014-01-22 17:22:01 -05:00
|
|
|
#include "config/account.h"
|
2015-10-14 20:19:24 -04:00
|
|
|
#include "config/scripts.h"
|
2014-01-05 16:04:30 -05:00
|
|
|
#include "roster_list.h"
|
2015-06-21 13:29:20 -04:00
|
|
|
#include "window_list.h"
|
2015-09-23 19:18:18 -04:00
|
|
|
#include "config/tlscerts.h"
|
2015-11-10 18:14:59 -05:00
|
|
|
#include "profanity.h"
|
2015-12-14 18:53:35 -05:00
|
|
|
#include "event/client_events.h"
|
2014-01-19 12:51:32 -05:00
|
|
|
|
2014-01-11 21:15:16 -05:00
|
|
|
#ifdef HAVE_LIBOTR
|
2014-02-12 17:19:21 -05:00
|
|
|
#include "otr/otr.h"
|
2014-01-11 21:15:16 -05:00
|
|
|
#endif
|
2015-05-07 17:22:28 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
#include "pgp/gpg.h"
|
|
|
|
#endif
|
2014-01-05 15:52:45 -05:00
|
|
|
|
2014-04-06 16:35:17 -04:00
|
|
|
#include "ui/ui.h"
|
|
|
|
|
2014-01-05 15:58:19 -05:00
|
|
|
void
|
2015-10-13 19:23:12 -04:00
|
|
|
sv_ev_login_account_success(char *account_name, int secured)
|
2014-01-05 15:58:19 -05:00
|
|
|
{
|
|
|
|
ProfAccount *account = accounts_get_account(account_name);
|
2014-04-07 15:41:06 -04:00
|
|
|
|
2016-01-04 19:06:50 -05:00
|
|
|
roster_create();
|
|
|
|
|
2014-01-11 21:15:16 -05:00
|
|
|
#ifdef HAVE_LIBOTR
|
2014-01-11 10:48:22 -05:00
|
|
|
otr_on_connect(account);
|
2014-01-11 21:15:16 -05:00
|
|
|
#endif
|
2014-01-05 15:58:19 -05:00
|
|
|
|
2015-06-23 18:29:10 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
p_gpg_on_connect(account->jid);
|
|
|
|
#endif
|
|
|
|
|
2015-10-13 19:23:12 -04:00
|
|
|
ui_handle_login_account_success(account, secured);
|
2014-04-07 15:41:06 -04:00
|
|
|
|
2014-04-23 17:19:14 -04:00
|
|
|
// attempt to rejoin rooms with passwords
|
2014-09-28 17:09:20 -04:00
|
|
|
GList *curr = muc_rooms();
|
2015-05-04 17:51:15 -04:00
|
|
|
while (curr) {
|
2014-09-28 17:09:20 -04:00
|
|
|
char *password = muc_password(curr->data);
|
2015-05-04 17:51:15 -04:00
|
|
|
if (password) {
|
2014-09-28 17:09:20 -04:00
|
|
|
char *nick = muc_nick(curr->data);
|
2014-04-23 17:19:14 -04:00
|
|
|
presence_join_room(curr->data, nick, password);
|
|
|
|
}
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(curr);
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
log_info("%s logged in successfully", account->jid);
|
2015-10-14 20:19:24 -04:00
|
|
|
|
|
|
|
if (account->startscript) {
|
|
|
|
scripts_exec(account->startscript);
|
|
|
|
}
|
|
|
|
|
2014-01-22 17:22:01 -05:00
|
|
|
account_free(account);
|
2014-11-19 19:32:33 -05:00
|
|
|
}
|
2014-11-10 18:23:02 -05:00
|
|
|
|
2014-11-19 19:32:33 -05:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_roster_received(void)
|
2014-11-19 19:32:33 -05:00
|
|
|
{
|
2014-11-10 18:23:02 -05:00
|
|
|
if (prefs_get_boolean(PREF_ROSTER)) {
|
|
|
|
ui_show_roster();
|
|
|
|
}
|
2015-12-14 18:53:35 -05:00
|
|
|
|
2015-12-14 19:38:16 -05:00
|
|
|
char *account_name = jabber_get_account_name();
|
|
|
|
|
2015-12-21 05:53:41 -05:00
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-12-14 19:38:16 -05:00
|
|
|
// check pgp key valid if specified
|
|
|
|
ProfAccount *account = accounts_get_account(account_name);
|
|
|
|
if (account && account->pgp_keyid) {
|
|
|
|
char *err_str = NULL;
|
|
|
|
if (!p_gpg_valid_key(account->pgp_keyid, &err_str)) {
|
2015-12-19 17:55:33 -05:00
|
|
|
cons_show_error("Invalid PGP key ID specified: %s, %s", account->pgp_keyid, err_str);
|
2015-12-14 19:38:16 -05:00
|
|
|
}
|
|
|
|
free(err_str);
|
|
|
|
}
|
2015-12-21 05:53:41 -05:00
|
|
|
#endif
|
2015-12-14 18:53:35 -05:00
|
|
|
|
|
|
|
// send initial presence
|
2015-12-14 19:38:16 -05:00
|
|
|
resource_presence_t conn_presence = accounts_get_login_presence(account_name);
|
|
|
|
char *last_activity_str = accounts_get_last_activity(account_name);
|
2015-12-14 18:53:35 -05:00
|
|
|
if (last_activity_str) {
|
|
|
|
GDateTime *nowdt = g_date_time_new_now_utc();
|
|
|
|
|
|
|
|
GTimeVal lasttv;
|
|
|
|
gboolean res = g_time_val_from_iso8601(last_activity_str, &lasttv);
|
|
|
|
if (res) {
|
|
|
|
GDateTime *lastdt = g_date_time_new_from_timeval_utc(&lasttv);
|
|
|
|
GTimeSpan diff_micros = g_date_time_difference(nowdt, lastdt);
|
|
|
|
int diff_secs = (diff_micros / 1000) / 1000;
|
|
|
|
if (prefs_get_boolean(PREF_LASTACTIVITY)) {
|
|
|
|
cl_ev_presence_send(conn_presence, NULL, diff_secs);
|
|
|
|
} else {
|
|
|
|
cl_ev_presence_send(conn_presence, NULL, 0);
|
|
|
|
}
|
|
|
|
g_date_time_unref(lastdt);
|
|
|
|
} else {
|
|
|
|
cl_ev_presence_send(conn_presence, NULL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(last_activity_str);
|
|
|
|
g_date_time_unref(nowdt);
|
|
|
|
} else {
|
|
|
|
cl_ev_presence_send(conn_presence, NULL, 0);
|
|
|
|
}
|
2014-01-05 15:58:19 -05:00
|
|
|
}
|
|
|
|
|
2014-01-05 16:04:30 -05:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_lost_connection(void)
|
2014-01-05 16:04:30 -05:00
|
|
|
{
|
|
|
|
cons_show_error("Lost connection.");
|
2016-01-03 12:23:36 -05:00
|
|
|
|
2016-01-07 19:22:17 -05:00
|
|
|
#ifdef HAVE_LIBOTR
|
|
|
|
GSList *recipients = wins_get_chat_recipients();
|
|
|
|
GSList *curr = recipients;
|
|
|
|
while (curr) {
|
|
|
|
char *barejid = curr->data;
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin && otr_is_secure(barejid)) {
|
|
|
|
chatwin_otr_unsecured(chatwin);
|
|
|
|
otr_end_session(barejid);
|
|
|
|
}
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
if (recipients) {
|
|
|
|
g_slist_free(recipients);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_invites_clear();
|
2014-01-05 16:04:30 -05:00
|
|
|
chat_sessions_clear();
|
|
|
|
ui_disconnected();
|
2016-01-07 19:13:12 -05:00
|
|
|
roster_destroy();
|
2015-06-23 18:29:10 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
p_gpg_on_disconnect();
|
|
|
|
#endif
|
2014-01-05 16:04:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_failed_login(void)
|
2014-01-05 16:04:30 -05:00
|
|
|
{
|
|
|
|
cons_show_error("Login failed.");
|
|
|
|
log_info("Login failed");
|
2015-11-09 18:31:21 -05:00
|
|
|
tlscerts_clear_current();
|
2014-01-05 16:04:30 -05:00
|
|
|
}
|
|
|
|
|
2014-01-05 16:33:12 -05:00
|
|
|
void
|
2016-01-04 19:06:50 -05:00
|
|
|
sv_ev_room_invite(jabber_invite_t invite_type, const char *const invitor, const char *const room,
|
2015-10-25 18:32:46 -04:00
|
|
|
const char *const reason, const char *const password)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
if (!muc_active(room) && !muc_invites_contain(room)) {
|
2014-01-05 16:33:12 -05:00
|
|
|
cons_show_room_invite(invitor, room, reason);
|
2015-03-28 22:16:41 -04:00
|
|
|
muc_invites_add(room, password);
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_broadcast(const char *const room_jid, const char *const message)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
if (muc_roster_complete(room_jid)) {
|
2015-11-01 19:36:25 -05:00
|
|
|
ProfMucWin *mucwin = wins_get_muc(room_jid);
|
|
|
|
if (mucwin) {
|
|
|
|
mucwin_broadcast(mucwin, message);
|
|
|
|
}
|
2014-05-05 15:13:22 -04:00
|
|
|
} else {
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_pending_broadcasts_add(room_jid, message);
|
2014-05-05 15:13:22 -04:00
|
|
|
}
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_subject(const char *const room, const char *const nick, const char *const subject)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2014-10-04 22:05:46 -04:00
|
|
|
muc_set_subject(room, subject);
|
2015-11-01 19:29:35 -05:00
|
|
|
ProfMucWin *mucwin = wins_get_muc(room);
|
|
|
|
if (mucwin && muc_roster_complete(room)) {
|
|
|
|
mucwin_subject(mucwin, nick, subject);
|
2014-05-05 15:13:22 -04:00
|
|
|
}
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_history(const char *const room_jid, const char *const nick,
|
|
|
|
GDateTime *timestamp, const char *const message)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2015-11-01 19:19:46 -05:00
|
|
|
ProfMucWin *mucwin = wins_get_muc(room_jid);
|
|
|
|
if (mucwin) {
|
|
|
|
mucwin_history(mucwin, nick, timestamp, message);
|
|
|
|
}
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-01-24 18:06:22 -05:00
|
|
|
sv_ev_room_message(const char *const room_jid, const char *const nick, const char *const message)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
|
|
|
if (prefs_get_boolean(PREF_GRLOG)) {
|
|
|
|
Jid *jid = jid_create(jabber_get_fulljid());
|
|
|
|
groupchat_log_chat(jid->barejid, room_jid, nick, message);
|
|
|
|
jid_destroy(jid);
|
|
|
|
}
|
2015-12-19 19:54:17 -05:00
|
|
|
|
|
|
|
ProfMucWin *mucwin = wins_get_muc(room_jid);
|
|
|
|
if (!mucwin) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-01-24 18:06:22 -05:00
|
|
|
char *mynick = muc_nick(mucwin->roomjid);
|
|
|
|
|
|
|
|
gboolean mention = FALSE;
|
|
|
|
char *message_lower = g_utf8_strdown(message, -1);
|
|
|
|
char *mynick_lower = g_utf8_strdown(mynick, -1);
|
|
|
|
if (g_strrstr(message_lower, mynick_lower)) {
|
|
|
|
mention = TRUE;
|
|
|
|
}
|
|
|
|
g_free(message_lower);
|
|
|
|
g_free(mynick_lower);
|
|
|
|
|
|
|
|
GList *triggers = prefs_message_get_triggers(message);
|
|
|
|
|
|
|
|
mucwin_message(mucwin, nick, message, mention, triggers != NULL);
|
2015-12-19 19:54:17 -05:00
|
|
|
|
|
|
|
ProfWin *window = (ProfWin*)mucwin;
|
|
|
|
gboolean is_current = wins_is_current(window);
|
|
|
|
int num = wins_get_num(window);
|
2016-01-24 18:06:22 -05:00
|
|
|
gboolean notify = prefs_do_room_notify(is_current, mucwin->roomjid, mynick, message, mention, triggers != NULL);
|
2015-12-19 19:54:17 -05:00
|
|
|
|
|
|
|
// currently in groupchat window
|
|
|
|
if (wins_is_current(window)) {
|
|
|
|
status_bar_active(num);
|
|
|
|
|
|
|
|
// not currently on groupchat window
|
|
|
|
} else {
|
|
|
|
status_bar_new(num);
|
2016-01-24 18:47:17 -05:00
|
|
|
|
|
|
|
cons_show_incoming_room_message(nick, mucwin->roomjid, num, mention, triggers, mucwin->unread);
|
2015-12-19 19:54:17 -05:00
|
|
|
|
2016-01-24 18:06:22 -05:00
|
|
|
if (prefs_get_boolean(PREF_FLASH) && (strcmp(nick, mynick) != 0)) {
|
2015-12-19 19:54:17 -05:00
|
|
|
flash();
|
|
|
|
}
|
|
|
|
|
|
|
|
mucwin->unread++;
|
|
|
|
if (notify) {
|
|
|
|
mucwin->notify = TRUE;
|
|
|
|
}
|
2016-01-24 19:19:26 -05:00
|
|
|
|
|
|
|
if (mention) {
|
|
|
|
mucwin->unread_mentions = TRUE;
|
|
|
|
}
|
|
|
|
if (triggers) {
|
|
|
|
mucwin->unread_triggers = TRUE;
|
|
|
|
}
|
2015-12-19 19:54:17 -05:00
|
|
|
}
|
|
|
|
|
2016-01-24 18:47:17 -05:00
|
|
|
if (triggers) {
|
|
|
|
g_list_free_full(triggers, free);
|
|
|
|
}
|
|
|
|
|
2016-01-01 21:41:51 -05:00
|
|
|
rosterwin_roster();
|
|
|
|
|
2015-12-19 19:54:17 -05:00
|
|
|
// don't notify self messages
|
2016-01-24 18:06:22 -05:00
|
|
|
if (strcmp(nick, mynick) == 0) {
|
2015-12-19 19:54:17 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
|
|
beep();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!notify) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Jid *jidp = jid_create(mucwin->roomjid);
|
|
|
|
int ui_index = num;
|
|
|
|
if (ui_index == 10) {
|
|
|
|
ui_index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_ROOM_TEXT)) {
|
|
|
|
notify_room_message(nick, jidp->localpart, ui_index, message);
|
|
|
|
} else {
|
|
|
|
notify_room_message(nick, jidp->localpart, ui_index, NULL);
|
|
|
|
}
|
|
|
|
jid_destroy(jidp);
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_incoming_private_message(const char *const fulljid, char *message)
|
2014-12-10 17:23:33 -05:00
|
|
|
{
|
2015-11-08 17:01:51 -05:00
|
|
|
ProfPrivateWin *privatewin = wins_get_private(fulljid);
|
|
|
|
if (privatewin == NULL) {
|
|
|
|
ProfWin *window = wins_new_private(fulljid);
|
|
|
|
privatewin = (ProfPrivateWin*)window;
|
|
|
|
}
|
2015-11-08 17:08:29 -05:00
|
|
|
privwin_incoming_msg(privatewin, message, NULL);
|
2016-01-23 19:33:24 -05:00
|
|
|
rosterwin_roster();
|
2015-11-08 17:01:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sv_ev_delayed_private_message(const char *const fulljid, char *message, GDateTime *timestamp)
|
|
|
|
{
|
|
|
|
ProfPrivateWin *privatewin = wins_get_private(fulljid);
|
|
|
|
if (privatewin == NULL) {
|
|
|
|
ProfWin *window = wins_new_private(fulljid);
|
|
|
|
privatewin = (ProfPrivateWin*)window;
|
|
|
|
}
|
2015-11-08 17:08:29 -05:00
|
|
|
privwin_incoming_msg(privatewin, message, timestamp);
|
2014-12-10 17:23:33 -05:00
|
|
|
}
|
|
|
|
|
2015-02-02 05:10:05 -05:00
|
|
|
void
|
2015-06-21 15:08:46 -04:00
|
|
|
sv_ev_outgoing_carbon(char *barejid, char *message)
|
2015-03-14 19:10:51 -04:00
|
|
|
{
|
2015-10-27 19:25:18 -04:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (!chatwin) {
|
|
|
|
chatwin = chatwin_new(barejid);
|
|
|
|
}
|
|
|
|
|
|
|
|
chat_state_active(chatwin->state);
|
|
|
|
|
|
|
|
chatwin_outgoing_carbon(chatwin, message);
|
2015-02-02 05:10:05 -05:00
|
|
|
}
|
|
|
|
|
2014-12-10 17:23:33 -05:00
|
|
|
void
|
2015-06-21 15:08:46 -04:00
|
|
|
sv_ev_incoming_carbon(char *barejid, char *resource, char *message)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2015-06-21 13:29:20 -04:00
|
|
|
gboolean new_win = FALSE;
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (!chatwin) {
|
|
|
|
ProfWin *window = wins_new_chat(barejid);
|
|
|
|
chatwin = (ProfChatWin*)window;
|
|
|
|
new_win = TRUE;
|
|
|
|
}
|
|
|
|
|
2015-10-27 19:18:42 -04:00
|
|
|
chatwin_incoming_msg(chatwin, resource, message, NULL, new_win, PROF_MSG_PLAIN);
|
2015-09-08 15:18:31 -04:00
|
|
|
chat_log_msg_in(barejid, message, NULL);
|
2015-06-21 15:08:46 -04:00
|
|
|
}
|
|
|
|
|
2015-08-26 18:15:10 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
static void
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_pgp(ProfChatWin *chatwin, gboolean new_win, char *barejid, char *resource, char *message, char *pgp_message, GDateTime *timestamp)
|
2015-08-26 18:15:10 -04:00
|
|
|
{
|
2015-08-26 18:23:12 -04:00
|
|
|
char *decrypted = p_gpg_decrypt(pgp_message);
|
2015-08-26 18:15:10 -04:00
|
|
|
if (decrypted) {
|
2015-10-27 19:18:42 -04:00
|
|
|
chatwin_incoming_msg(chatwin, resource, decrypted, timestamp, new_win, PROF_MSG_PGP);
|
2015-09-08 15:18:31 -04:00
|
|
|
chat_log_pgp_msg_in(barejid, decrypted, timestamp);
|
2015-08-29 20:32:13 -04:00
|
|
|
chatwin->pgp_recv = TRUE;
|
2015-08-26 18:15:10 -04:00
|
|
|
p_gpg_free_decrypted(decrypted);
|
|
|
|
} else {
|
2015-10-27 19:18:42 -04:00
|
|
|
chatwin_incoming_msg(chatwin, resource, message, timestamp, new_win, PROF_MSG_PLAIN);
|
2015-09-08 15:18:31 -04:00
|
|
|
chat_log_msg_in(barejid, message, timestamp);
|
2015-08-29 20:32:13 -04:00
|
|
|
chatwin->pgp_recv = FALSE;
|
2015-08-26 18:15:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBOTR
|
|
|
|
static void
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_otr(ProfChatWin *chatwin, gboolean new_win, char *barejid, char *resource, char *message, GDateTime *timestamp)
|
2015-08-26 18:15:10 -04:00
|
|
|
{
|
|
|
|
gboolean decrypted = FALSE;
|
|
|
|
char *otr_res = otr_on_message_recv(barejid, resource, message, &decrypted);
|
|
|
|
if (otr_res) {
|
2015-08-26 19:37:48 -04:00
|
|
|
if (decrypted) {
|
2015-10-27 19:18:42 -04:00
|
|
|
chatwin_incoming_msg(chatwin, resource, otr_res, timestamp, new_win, PROF_MSG_OTR);
|
2015-08-29 20:32:13 -04:00
|
|
|
chatwin->pgp_send = FALSE;
|
2015-08-26 18:15:10 -04:00
|
|
|
} else {
|
2015-10-27 19:18:42 -04:00
|
|
|
chatwin_incoming_msg(chatwin, resource, otr_res, timestamp, new_win, PROF_MSG_PLAIN);
|
2015-08-26 18:15:10 -04:00
|
|
|
}
|
2015-09-08 15:18:31 -04:00
|
|
|
chat_log_otr_msg_in(barejid, otr_res, decrypted, timestamp);
|
2015-08-26 18:15:10 -04:00
|
|
|
otr_free_message(otr_res);
|
2015-08-29 20:32:13 -04:00
|
|
|
chatwin->pgp_recv = FALSE;
|
2015-08-26 18:15:10 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-08-29 20:32:13 -04:00
|
|
|
#ifndef HAVE_LIBOTR
|
2015-08-26 18:15:10 -04:00
|
|
|
static void
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_plain(ProfChatWin *chatwin, gboolean new_win, char *barejid, char *resource, char *message, GDateTime *timestamp)
|
2015-08-26 18:15:10 -04:00
|
|
|
{
|
2015-10-27 19:18:42 -04:00
|
|
|
chatwin_incoming_msg(chatwin, resource, message, timestamp, new_win, PROF_MSG_PLAIN);
|
2015-09-08 15:18:31 -04:00
|
|
|
chat_log_msg_in(barejid, message, timestamp);
|
2015-08-29 20:32:13 -04:00
|
|
|
chatwin->pgp_recv = FALSE;
|
2015-08-26 18:15:10 -04:00
|
|
|
}
|
2015-08-29 20:32:13 -04:00
|
|
|
#endif
|
2015-08-26 18:15:10 -04:00
|
|
|
|
2015-06-21 15:08:46 -04:00
|
|
|
void
|
2015-09-08 15:18:31 -04:00
|
|
|
sv_ev_incoming_message(char *barejid, char *resource, char *message, char *pgp_message, GDateTime *timestamp)
|
2015-06-21 15:08:46 -04:00
|
|
|
{
|
|
|
|
gboolean new_win = FALSE;
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (!chatwin) {
|
|
|
|
ProfWin *window = wins_new_chat(barejid);
|
|
|
|
chatwin = (ProfChatWin*)window;
|
|
|
|
new_win = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// OTR suported, PGP supported
|
|
|
|
#ifdef HAVE_LIBOTR
|
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-08-26 18:23:12 -04:00
|
|
|
if (pgp_message) {
|
2015-08-29 20:32:13 -04:00
|
|
|
if (chatwin->is_otr) {
|
2015-07-29 18:48:28 -04:00
|
|
|
win_println((ProfWin*)chatwin, 0, "PGP encrypted message received whilst in OTR session.");
|
2015-06-21 15:08:46 -04:00
|
|
|
} else { // PROF_ENC_NONE, PROF_ENC_PGP
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_pgp(chatwin, new_win, barejid, resource, message, pgp_message, timestamp);
|
2015-06-21 15:08:46 -04:00
|
|
|
}
|
|
|
|
} else {
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_otr(chatwin, new_win, barejid, resource, message, timestamp);
|
2015-06-21 15:08:46 -04:00
|
|
|
}
|
2016-01-14 17:54:50 -05:00
|
|
|
rosterwin_roster();
|
2015-06-21 15:08:46 -04:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// OTR supported, PGP unsupported
|
2014-01-11 12:03:01 -05:00
|
|
|
#ifdef HAVE_LIBOTR
|
2015-06-21 15:08:46 -04:00
|
|
|
#ifndef HAVE_LIBGPGME
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_otr(chatwin, new_win, barejid, resource, message, timestamp);
|
2016-01-14 17:54:50 -05:00
|
|
|
rosterwin_roster();
|
2015-06-21 15:08:46 -04:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// OTR unsupported, PGP supported
|
|
|
|
#ifndef HAVE_LIBOTR
|
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-08-26 18:23:12 -04:00
|
|
|
if (pgp_message) {
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_pgp(chatwin, new_win, barejid, resource, message, pgp_message, timestamp);
|
2015-06-21 15:08:46 -04:00
|
|
|
} else {
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_plain(chatwin, new_win, barejid, resource, message, timestamp);
|
2015-06-21 15:08:46 -04:00
|
|
|
}
|
2016-01-14 17:54:50 -05:00
|
|
|
rosterwin_roster();
|
2015-06-21 15:08:46 -04:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// OTR unsupported, PGP unsupported
|
|
|
|
#ifndef HAVE_LIBOTR
|
|
|
|
#ifndef HAVE_LIBGPGME
|
2015-09-08 15:18:31 -04:00
|
|
|
_sv_ev_incoming_plain(chatwin, new_win, barejid, resource, message, timestamp);
|
2016-01-14 17:54:50 -05:00
|
|
|
rosterwin_roster();
|
2015-06-21 15:08:46 -04:00
|
|
|
return;
|
|
|
|
#endif
|
2014-01-11 12:03:01 -05:00
|
|
|
#endif
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
2015-03-11 19:18:28 -04:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_message_receipt(char *barejid, char *id)
|
2015-03-11 19:18:28 -04:00
|
|
|
{
|
2015-10-26 18:54:06 -04:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (!chatwin)
|
|
|
|
return;
|
|
|
|
|
2015-10-27 17:23:56 -04:00
|
|
|
chatwin_receipt_received(chatwin, id);
|
2015-03-11 19:18:28 -04:00
|
|
|
}
|
|
|
|
|
2014-01-05 16:33:12 -05:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_typing(char *barejid, char *resource)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2015-01-11 18:04:22 -05:00
|
|
|
ui_contact_typing(barejid, resource);
|
2015-10-26 18:43:32 -04:00
|
|
|
if (wins_chat_exists(barejid)) {
|
2015-01-11 18:04:22 -05:00
|
|
|
chat_session_recipient_typing(barejid, resource);
|
2015-01-11 15:20:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_paused(char *barejid, char *resource)
|
2015-01-11 15:20:17 -05:00
|
|
|
{
|
2015-10-26 18:43:32 -04:00
|
|
|
if (wins_chat_exists(barejid)) {
|
2015-01-11 18:04:22 -05:00
|
|
|
chat_session_recipient_paused(barejid, resource);
|
2015-01-11 15:20:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_inactive(char *barejid, char *resource)
|
2015-01-11 15:20:17 -05:00
|
|
|
{
|
2015-10-26 18:43:32 -04:00
|
|
|
if (wins_chat_exists(barejid)) {
|
2015-01-11 18:04:22 -05:00
|
|
|
chat_session_recipient_inactive(barejid, resource);
|
2015-01-11 15:20:17 -05:00
|
|
|
}
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_gone(const char *const barejid, const char *const resource)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2015-10-27 19:05:20 -04:00
|
|
|
if (barejid && resource) {
|
|
|
|
gboolean show_message = TRUE;
|
|
|
|
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin) {
|
|
|
|
ChatSession *session = chat_session_get(barejid);
|
|
|
|
if (session && g_strcmp0(session->resource, resource) != 0) {
|
|
|
|
show_message = FALSE;
|
|
|
|
}
|
|
|
|
if (show_message) {
|
2015-10-27 19:06:27 -04:00
|
|
|
chatwin_recipient_gone(chatwin);
|
2015-10-27 19:05:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 18:43:32 -04:00
|
|
|
if (wins_chat_exists(barejid)) {
|
2015-01-11 18:04:22 -05:00
|
|
|
chat_session_recipient_gone(barejid, resource);
|
|
|
|
}
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
2014-01-05 16:48:04 -05:00
|
|
|
|
2015-01-11 15:20:17 -05:00
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_activity(const char *const barejid, const char *const resource, gboolean send_states)
|
2015-01-11 15:20:17 -05:00
|
|
|
{
|
2015-10-26 18:43:32 -04:00
|
|
|
if (wins_chat_exists(barejid)) {
|
2015-01-11 18:04:22 -05:00
|
|
|
chat_session_recipient_active(barejid, resource, send_states);
|
|
|
|
}
|
2015-01-11 15:20:17 -05:00
|
|
|
}
|
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_subscription(const char *barejid, jabber_subscr_t type)
|
2014-01-05 16:48:04 -05:00
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case PRESENCE_SUBSCRIBE:
|
|
|
|
/* TODO: auto-subscribe if needed */
|
2014-12-19 19:52:35 -05:00
|
|
|
cons_show("Received authorization request from %s", barejid);
|
|
|
|
log_info("Received authorization request from %s", barejid);
|
|
|
|
ui_print_system_msg_from_recipient(barejid, "Authorization request, type '/sub allow' to accept or '/sub deny' to reject");
|
2014-01-05 16:48:04 -05:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_SUB)) {
|
2014-12-19 19:52:35 -05:00
|
|
|
notify_subscription(barejid);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PRESENCE_SUBSCRIBED:
|
2014-12-19 19:52:35 -05:00
|
|
|
cons_show("Subscription received from %s", barejid);
|
|
|
|
log_info("Subscription received from %s", barejid);
|
|
|
|
ui_print_system_msg_from_recipient(barejid, "Subscribed");
|
2014-01-05 16:48:04 -05:00
|
|
|
break;
|
|
|
|
case PRESENCE_UNSUBSCRIBED:
|
2014-12-19 19:52:35 -05:00
|
|
|
cons_show("%s deleted subscription", barejid);
|
|
|
|
log_info("%s deleted subscription", barejid);
|
|
|
|
ui_print_system_msg_from_recipient(barejid, "Unsubscribed");
|
2014-01-05 16:48:04 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* unknown type */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_contact_offline(char *barejid, char *resource, char *status)
|
2014-01-05 16:48:04 -05:00
|
|
|
{
|
2014-01-19 12:51:32 -05:00
|
|
|
gboolean updated = roster_contact_offline(barejid, resource, status);
|
2014-01-05 16:48:04 -05:00
|
|
|
|
2015-05-04 17:51:15 -04:00
|
|
|
if (resource && updated) {
|
2015-01-11 15:20:17 -05:00
|
|
|
ui_contact_offline(barejid, resource, status);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
2014-11-09 19:31:11 -05:00
|
|
|
|
2016-01-02 21:01:01 -05:00
|
|
|
#ifdef HAVE_LIBOTR
|
2016-01-02 20:32:37 -05:00
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
|
|
if (chatwin && otr_is_secure(barejid)) {
|
|
|
|
chatwin_otr_unsecured(chatwin);
|
|
|
|
otr_end_session(chatwin->barejid);
|
|
|
|
}
|
2016-01-02 21:01:01 -05:00
|
|
|
#endif
|
2016-01-02 20:32:37 -05:00
|
|
|
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2015-01-07 19:57:25 -05:00
|
|
|
chat_session_remove(barejid);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-05-07 17:22:28 -04:00
|
|
|
sv_ev_contact_online(char *barejid, Resource *resource, GDateTime *last_activity, char *pgpsig)
|
2014-01-05 16:48:04 -05:00
|
|
|
{
|
2014-01-19 12:51:32 -05:00
|
|
|
gboolean updated = roster_update_presence(barejid, resource, last_activity);
|
2014-01-05 16:48:04 -05:00
|
|
|
|
2014-01-20 13:40:48 -05:00
|
|
|
if (updated) {
|
2015-05-07 17:05:36 -04:00
|
|
|
ui_contact_online(barejid, resource, last_activity);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
2014-11-09 19:31:11 -05:00
|
|
|
|
2015-05-07 17:22:28 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
if (pgpsig) {
|
|
|
|
p_gpg_verify(barejid, pgpsig);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2015-01-07 19:57:25 -05:00
|
|
|
chat_session_remove(barejid);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_leave_room(const char *const room)
|
2014-01-05 16:48:04 -05:00
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_leave(room);
|
2014-10-05 15:52:34 -04:00
|
|
|
ui_leave_room(room);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
|
|
|
|
2014-09-03 17:00:08 -04:00
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_destroy(const char *const room)
|
2014-09-03 17:00:08 -04:00
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_leave(room);
|
2014-10-05 15:52:34 -04:00
|
|
|
ui_room_destroy(room);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_destroyed(const char *const room, const char *const new_jid, const char *const password,
|
|
|
|
const char *const reason)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
|
|
|
muc_leave(room);
|
|
|
|
ui_room_destroyed(room, reason, new_jid, password);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_kicked(const char *const room, const char *const actor, const char *const reason)
|
2014-10-05 15:52:34 -04:00
|
|
|
{
|
|
|
|
muc_leave(room);
|
|
|
|
ui_room_kicked(room, actor, reason);
|
2014-09-03 17:00:08 -04:00
|
|
|
}
|
|
|
|
|
2014-10-06 17:59:25 -04:00
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_banned(const char *const room, const char *const actor, const char *const reason)
|
2014-10-06 17:59:25 -04:00
|
|
|
{
|
|
|
|
muc_leave(room);
|
|
|
|
ui_room_banned(room, actor, reason);
|
|
|
|
}
|
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
void
|
2015-10-25 18:32:46 -04:00
|
|
|
sv_ev_room_occupant_offline(const char *const room, const char *const nick,
|
|
|
|
const char *const show, const char *const status)
|
2014-01-05 16:48:04 -05:00
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_roster_remove(room, nick);
|
2014-03-15 18:25:15 -04:00
|
|
|
|
|
|
|
char *muc_status_pref = prefs_get_string(PREF_STATUSES_MUC);
|
|