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
|
|
|
*/
|
|
|
|
|
2014-01-05 16:48:04 -05:00
|
|
|
#include <string.h>
|
2014-01-19 12:51:32 -05:00
|
|
|
#include <stdlib.h>
|
2014-01-05 16:48:04 -05:00
|
|
|
|
2014-05-19 16:25:21 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
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"
|
2014-01-05 16:04:30 -05:00
|
|
|
#include "roster_list.h"
|
2015-06-21 13:29:20 -04:00
|
|
|
#include "window_list.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-04-28 18:38:56 -04:00
|
|
|
sv_ev_login_account_success(char *account_name)
|
2014-01-05 15:58:19 -05:00
|
|
|
{
|
|
|
|
ProfAccount *account = accounts_get_account(account_name);
|
2014-04-07 15:41:06 -04:00
|
|
|
|
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
|
|
|
|
|
2014-04-07 15:41:06 -04:00
|
|
|
ui_handle_login_account_success(account);
|
|
|
|
|
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);
|
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();
|
|
|
|
}
|
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.");
|
|
|
|
roster_clear();
|
2014-09-28 17:09:20 -04:00
|
|
|
muc_invites_clear();
|
2014-01-05 16:04:30 -05:00
|
|
|
chat_sessions_clear();
|
|
|
|
ui_disconnected();
|
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");
|
|
|
|
}
|
|
|
|
|
2014-01-05 16:33:12 -05:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_invite(jabber_invite_t invite_type,
|
2014-01-05 16:33:12 -05:00
|
|
|
const char * const invitor, const char * const room,
|
2015-03-28 22:16:41 -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-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_broadcast(const char *const room_jid,
|
2014-01-05 16:33:12 -05:00
|
|
|
const char * const message)
|
|
|
|
{
|
2014-09-28 17:09:20 -04:00
|
|
|
if (muc_roster_complete(room_jid)) {
|
2014-05-05 15:13:22 -04:00
|
|
|
ui_room_broadcast(room_jid, message);
|
|
|
|
} 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-04-28 18:38:56 -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);
|
|
|
|
if (muc_roster_complete(room)) {
|
|
|
|
ui_room_subject(room, nick, subject);
|
2014-05-05 15:13:22 -04:00
|
|
|
}
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_history(const char * const room_jid, const char * const nick,
|
2015-06-29 18:48:41 -04:00
|
|
|
GDateTime *timestamp, const char * const message)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2015-06-29 18:48:41 -04:00
|
|
|
ui_room_history(room_jid, nick, timestamp, message);
|
2014-01-05 16:33:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_message(const char * const room_jid, const char * const nick,
|
2014-01-05 16:33:12 -05:00
|
|
|
const char * const message)
|
|
|
|
{
|
|
|
|
ui_room_message(room_jid, nick, message);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-05-02 20:25:33 -04:00
|
|
|
sv_ev_incoming_private_message(const char * const fulljid, char *message)
|
2014-12-10 17:23:33 -05:00
|
|
|
{
|
|
|
|
ui_incoming_private_msg(fulljid, message, NULL);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
ui_outgoing_chat_msg_carbon(barejid, 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-08-29 20:32:13 -04:00
|
|
|
ui_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-09-08 15:18:31 -04:00
|
|
|
ui_incoming_msg(chatwin, resource, decrypted, timestamp, new_win, PROF_MSG_PGP);
|
|
|
|
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-09-08 15:18:31 -04:00
|
|
|
ui_incoming_msg(chatwin, resource, message, timestamp, new_win, PROF_MSG_PLAIN);
|
|
|
|
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-09-08 15:18:31 -04:00
|
|
|
ui_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-09-08 15:18:31 -04:00
|
|
|
ui_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-09-08 15:18:31 -04:00
|
|
|
ui_incoming_msg(chatwin, resource, message, timestamp, new_win, PROF_MSG_PLAIN);
|
|
|
|
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
|
|
|
}
|
|
|
|
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);
|
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
|
|
|
}
|
|
|
|
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);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-06-29 18:48:41 -04:00
|
|
|
sv_ev_delayed_private_message(const char * const fulljid, char *message, GDateTime *timestamp)
|
2014-12-10 17:23:33 -05:00
|
|
|
{
|
2015-06-29 18:48:41 -04:00
|
|
|
ui_incoming_private_msg(fulljid, message, timestamp);
|
2014-12-10 17:23:33 -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
|
|
|
{
|
|
|
|
ui_message_receipt(barejid, id);
|
|
|
|
}
|
|
|
|
|
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-01-11 15:20:17 -05:00
|
|
|
if (ui_chat_win_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
|
|
|
{
|
|
|
|
if (ui_chat_win_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
|
|
|
{
|
|
|
|
if (ui_chat_win_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-04-28 18:38:56 -04:00
|
|
|
sv_ev_gone(const char * const barejid, const char * const resource)
|
2014-01-05 16:33:12 -05:00
|
|
|
{
|
2015-01-11 18:04:22 -05:00
|
|
|
ui_recipient_gone(barejid, resource);
|
|
|
|
if (ui_chat_win_exists(barejid)) {
|
|
|
|
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-04-28 18:38:56 -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-01-11 18:04:22 -05:00
|
|
|
if (ui_chat_win_exists(barejid)) {
|
|
|
|
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
|
|
|
|
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-04-28 18:38:56 -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-04-28 18:38:56 -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-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_destroyed(const char * const room, const char * const new_jid, const char * const password,
|
2014-10-05 15:52:34 -04:00
|
|
|
const char * const reason)
|
|
|
|
{
|
|
|
|
muc_leave(room);
|
|
|
|
ui_room_destroyed(room, reason, new_jid, password);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -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-04-28 18:38:56 -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-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_occupant_offline(const char * const room, const char * const nick,
|
2014-01-05 16:48:04 -05:00
|
|
|
const char * const show, const char * const status)
|
|
|
|
{
|
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);
|
|
|
|
if (g_strcmp0(muc_status_pref, "none") != 0) {
|
|
|
|
ui_room_member_offline(room, nick);
|
|
|
|
}
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(muc_status_pref);
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-01-05 16:48:04 -05:00
|
|
|
}
|
|
|
|
|
2014-10-05 15:52:34 -04:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_occupent_kicked(const char * const room, const char * const nick, const char * const actor,
|
2014-10-05 15:52:34 -04:00
|
|
|
const char * const reason)
|
|
|
|
{
|
|
|
|
muc_roster_remove(room, nick);
|
|
|
|
ui_room_member_kicked(room, nick, actor, reason);
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-05 15:52:34 -04:00
|
|
|
}
|
|
|
|
|
2014-10-06 17:59:25 -04:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_room_occupent_banned(const char * const room, const char * const nick, const char * const actor,
|
2014-10-06 17:59:25 -04:00
|
|
|
const char * const reason)
|
|
|
|
{
|
|
|
|
muc_roster_remove(room, nick);
|
|
|
|
ui_room_member_banned(room, nick, actor, reason);
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-06 17:59:25 -04:00
|
|
|
}
|
2014-10-05 15:52:34 -04:00
|
|
|
|
2014-11-12 19:22:22 -05:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_roster_update(const char * const barejid, const char * const name,
|
2014-11-12 19:22:22 -05:00
|
|
|
GSList *groups, const char * const subscription, gboolean pending_out)
|
|
|
|
{
|
|
|
|
roster_update(barejid, name, groups, subscription, pending_out);
|
2014-12-16 18:00:05 -05:00
|
|
|
rosterwin_roster();
|
2014-11-12 19:22:22 -05:00
|
|
|
}
|
|
|
|
|
2014-04-14 20:08:41 -04:00
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_xmpp_stanza(const char * const msg)
|
2014-04-14 20:08:41 -04:00
|
|
|
{
|
|
|
|
ui_handle_stanza(msg);
|
|
|
|
}
|
2014-09-03 20:08:10 -04:00
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_muc_self_online(const char * const room, const char * const nick, gboolean config_required,
|
2014-10-17 20:37:52 -04:00
|
|
|
const char * const role, const char * const affiliation, const char * const actor, const char * const reason,
|
|
|
|
const char * const jid, const char * const show, const char * const status)
|
2014-10-06 19:22:39 -04:00
|
|
|
{
|
2014-10-06 20:16:46 -04:00
|
|
|
muc_roster_add(room, nick, jid, role, affiliation, show, status);
|
2014-10-11 21:10:46 -04:00
|
|
|
char *old_role = muc_role_str(room);
|
|
|
|
char *old_affiliation = muc_affiliation_str(room);
|
|
|
|
muc_set_role(room, role);
|
|
|
|
muc_set_affiliation(room, affiliation);
|
2014-10-06 20:16:46 -04:00
|
|
|
|
2014-10-06 19:22:39 -04:00
|
|
|
// handle self nick change
|
|
|
|
if (muc_nick_change_pending(room)) {
|
2014-10-06 19:46:08 -04:00
|
|
|
muc_nick_change_complete(room, nick);
|
|
|
|
ui_room_nick_change(room, nick);
|
2014-10-06 19:22:39 -04:00
|
|
|
|
|
|
|
// handle roster complete
|
|
|
|
} else if (!muc_roster_complete(room)) {
|
2014-10-06 19:46:08 -04:00
|
|
|
if (muc_autojoin(room)) {
|
|
|
|
ui_room_join(room, FALSE);
|
|
|
|
} else {
|
|
|
|
ui_room_join(room, TRUE);
|
|
|
|
}
|
2015-03-28 18:51:41 -04:00
|
|
|
|
2015-03-28 20:55:33 -04:00
|
|
|
iq_room_info_request(room, FALSE);
|
2015-03-28 18:51:41 -04:00
|
|
|
|
2014-10-06 19:46:08 -04:00
|
|
|
muc_invites_remove(room);
|
|
|
|
muc_roster_set_complete(room);
|
|
|
|
|
2014-10-09 17:39:57 -04:00
|
|
|
// show roster if occupants list disabled by default
|
|
|
|
if (!prefs_get_boolean(PREF_OCCUPANTS)) {
|
2014-11-03 16:27:41 -05:00
|
|
|
GList *occupants = muc_roster(room);
|
|
|
|
ui_room_roster(room, occupants, NULL);
|
|
|
|
g_list_free(occupants);
|
2014-10-09 17:39:57 -04:00
|
|
|
}
|
|
|
|
|
2014-10-06 19:46:08 -04:00
|
|
|
char *subject = muc_subject(room);
|
2015-05-04 17:51:15 -04:00
|
|
|
if (subject) {
|
2014-10-06 19:46:08 -04:00
|
|
|
ui_room_subject(room, NULL, subject);
|
|
|
|
}
|
|
|
|
|
|
|
|
GList *pending_broadcasts = muc_pending_broadcasts(room);
|
2015-05-04 17:51:15 -04:00
|
|
|
if (pending_broadcasts) {
|
2014-10-06 19:46:08 -04:00
|
|
|
GList *curr = pending_broadcasts;
|
2015-05-04 17:51:15 -04:00
|
|
|
while (curr) {
|
2014-10-06 19:46:08 -04:00
|
|
|
ui_room_broadcast(room, curr->data);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
}
|
2014-10-06 19:22:39 -04:00
|
|
|
|
|
|
|
// room configuration required
|
|
|
|
if (config_required) {
|
2014-10-06 19:46:08 -04:00
|
|
|
muc_set_requires_config(room, TRUE);
|
|
|
|
ui_room_requires_config(room);
|
2014-10-06 19:22:39 -04:00
|
|
|
}
|
|
|
|
|
2014-10-11 21:10:46 -04:00
|
|
|
// check for change in role/affiliation
|
|
|
|
} else {
|
2014-10-18 15:22:34 -04:00
|
|
|
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
|
|
|
// both changed
|
|
|
|
if ((g_strcmp0(role, old_role) != 0) && (g_strcmp0(affiliation, old_affiliation) != 0)) {
|
|
|
|
ui_room_role_and_affiliation_change(room, role, affiliation, actor, reason);
|
|
|
|
|
|
|
|
// role changed
|
|
|
|
} else if (g_strcmp0(role, old_role) != 0) {
|
|
|
|
ui_room_role_change(room, role, actor, reason);
|
|
|
|
|
|
|
|
// affiliation changed
|
|
|
|
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {
|
|
|
|
ui_room_affiliation_change(room, affiliation, actor, reason);
|
|
|
|
}
|
2014-10-11 21:10:46 -04:00
|
|
|
}
|
|
|
|
}
|
2014-10-07 11:37:14 -04:00
|
|
|
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-06 19:22:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-28 18:38:56 -04:00
|
|
|
sv_ev_muc_occupant_online(const char * const room, const char * const nick, const char * const jid,
|
2014-10-18 14:10:50 -04:00
|
|
|
const char * const role, const char * const affiliation, const char * const actor, const char * const reason,
|
|
|
|
const char * const show, const char * const status)
|
2014-10-06 19:22:39 -04:00
|
|
|
{
|
2014-10-18 14:10:50 -04:00
|
|
|
Occupant *occupant = muc_roster_item(room, nick);
|
|
|
|
|
|
|
|
const char *old_role = NULL;
|
|
|
|
const char *old_affiliation = NULL;
|
|
|
|
if (occupant) {
|
|
|
|
old_role = muc_occupant_role_str(occupant);
|
|
|
|
old_affiliation = muc_occupant_affiliation_str(occupant);
|
|
|
|
}
|
|
|
|
|
2014-10-06 19:57:51 -04:00
|
|
|
gboolean updated = muc_roster_add(room, nick, jid, role, affiliation, show, status);
|
|
|
|
|
2014-10-18 14:10:50 -04:00
|
|
|
// not yet finished joining room
|
2014-10-06 19:22:39 -04:00
|
|
|
if (!muc_roster_complete(room)) {
|
2014-10-06 19:57:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-10-06 19:22:39 -04:00
|
|
|
|
2014-10-18 14:10:50 -04:00
|
|
|
// handle nickname change
|
2014-10-06 19:57:51 -04:00
|
|
|
char *old_nick = muc_roster_nick_change_complete(room, nick);
|
|
|
|
if (old_nick) {
|
|
|
|
ui_room_member_nick_change(room, old_nick, nick);
|
|
|
|
free(old_nick);
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-06 19:57:51 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-10-06 19:46:08 -04:00
|
|
|
|
2014-10-18 14:10:50 -04:00
|
|
|
// joined room
|
|
|
|
if (!occupant) {
|
2014-10-06 19:57:51 -04:00
|
|
|
char *muc_status_pref = prefs_get_string(PREF_STATUSES_MUC);
|
|
|
|
if (g_strcmp0(muc_status_pref, "none") != 0) {
|
2014-10-17 19:52:42 -04:00
|
|
|
ui_room_member_online(room, nick, role, affiliation, show, status);
|
2014-10-06 19:57:51 -04:00
|
|
|
}
|
|
|
|
prefs_free_string(muc_status_pref);
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-06 19:57:51 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-18 14:10:50 -04:00
|
|
|
// presence updated
|
2014-10-06 19:57:51 -04:00
|
|
|
if (updated) {
|
|
|
|
char *muc_status_pref = prefs_get_string(PREF_STATUSES_MUC);
|
|
|
|
if (g_strcmp0(muc_status_pref, "all") == 0) {
|
|
|
|
ui_room_member_presence(room, nick, show, status);
|
2014-10-06 19:22:39 -04:00
|
|
|
}
|
2014-10-06 19:57:51 -04:00
|
|
|
prefs_free_string(muc_status_pref);
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-18 14:10:50 -04:00
|
|
|
|
|
|
|
// presence unchanged, check for role/affiliation change
|
2014-10-11 19:43:58 -04:00
|
|
|
} else {
|
2014-10-18 15:22:34 -04:00
|
|
|
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
|
|
|
// both changed
|
|
|
|
if ((g_strcmp0(role, old_role) != 0) && (g_strcmp0(affiliation, old_affiliation) != 0)) {
|
|
|
|
ui_room_occupant_role_and_affiliation_change(room, nick, role, affiliation, actor, reason);
|
|
|
|
|
|
|
|
// role changed
|
|
|
|
} else if (g_strcmp0(role, old_role) != 0) {
|
|
|
|
ui_room_occupant_role_change(room, nick, role, actor, reason);
|
|
|
|
|
|
|
|
// affiliation changed
|
|
|
|
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {
|
|
|
|
ui_room_occupant_affiliation_change(room, nick, affiliation, actor, reason);
|
|
|
|
}
|
2014-10-18 14:10:50 -04:00
|
|
|
}
|
2014-12-16 18:37:23 -05:00
|
|
|
occupantswin_occupants(room);
|
2014-10-06 19:22:39 -04:00
|
|
|
}
|
2015-03-14 19:10:51 -04:00
|
|
|
}
|
2015-09-22 15:55:41 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
sv_ev_certfail(const char * const errormsg, const char * const certname, const char * const certfp,
|
|
|
|
const char * const notbefore, const char * const notafter)
|
|
|
|
{
|
2015-09-22 17:44:18 -04:00
|
|
|
GList *trusted = prefs_get_trusted_certs();
|
|
|
|
if (g_list_find_custom(trusted, certfp, (GCompareFunc)g_strcmp0)) {
|
|
|
|
prefs_free_trusted_certs(trusted);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
prefs_free_trusted_certs(trusted);
|
|
|
|
|
2015-09-22 15:55:41 -04:00
|
|
|
cons_show("");
|
2015-09-23 15:38:52 -04:00
|
|
|
cons_show_error("TLS certificate verification failed: %s", errormsg);
|
2015-09-22 19:17:10 -04:00
|
|
|
cons_show(" Subject : %s", certname);
|
2015-09-22 15:55:41 -04:00
|
|
|
cons_show(" Fingerprint : %s", certfp);
|
|
|
|
cons_show(" Start : %s", notbefore);
|
|
|
|
cons_show(" End : %s", notafter);
|
|
|
|
cons_show("");
|
2015-09-22 16:42:05 -04:00
|
|
|
cons_show("Use '/tls allow' to accept this certificate");
|
2015-09-22 17:44:18 -04:00
|
|
|
cons_show("Use '/tls always' to accept this certificate permanently");
|
2015-09-22 16:42:05 -04:00
|
|
|
cons_show("Use '/tls deny' to reject this certificate");
|
|
|
|
cons_show("");
|
|
|
|
ui_update();
|
|
|
|
|
|
|
|
char *cmd = ui_get_line();
|
|
|
|
|
2015-09-22 17:44:18 -04:00
|
|
|
while ((g_strcmp0(cmd, "/tls allow") != 0)
|
|
|
|
&& (g_strcmp0(cmd, "/tls always") != 0)
|
|
|
|
&& (g_strcmp0(cmd, "/tls deny") != 0)) {
|
2015-09-22 16:42:05 -04:00
|
|
|
cons_show("Use '/tls allow' to accept this certificate");
|
2015-09-22 17:44:18 -04:00
|
|
|
cons_show("Use '/tls always' to accept this certificate permanently");
|
2015-09-22 16:42:05 -04:00
|
|
|
cons_show("Use '/tls deny' to reject this certificate");
|
|
|
|
cons_show("");
|
|
|
|
ui_update();
|
|
|
|
free(cmd);
|
|
|
|
cmd = ui_get_line();
|
|
|
|
}
|
2015-09-22 15:55:41 -04:00
|
|
|
|
2015-09-22 16:42:05 -04:00
|
|
|
if (g_strcmp0(cmd, "/tls allow") == 0) {
|
|
|
|
free(cmd);
|
|
|
|
return 1;
|
2015-09-22 17:44:18 -04:00
|
|
|
} else if (g_strcmp0(cmd, "/tls always") == 0) {
|
|
|
|
prefs_add_trusted_cert(certfp);
|
|
|
|
free(cmd);
|
|
|
|
return 1;
|
2015-09-22 16:42:05 -04:00
|
|
|
} else {
|
|
|
|
free(cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-22 15:55:41 -04:00
|
|
|
}
|