1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/event/server_events.c

1048 lines
30 KiB
C
Raw Normal View History

2014-01-05 20:52:45 +00:00
/*
* server_events.c
*
2016-02-14 22:54:46 +00:00
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
2014-01-05 20:52:45 +00: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/>.
*
* 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 20:52:45 +00:00
*/
#include "prof_config.h"
2015-10-31 23:38:08 +00:00
#include <string.h>
#include <stdlib.h>
2015-09-29 22:30:23 +00:00
#include <assert.h>
#include "chat_session.h"
#include "log.h"
2014-01-05 20:52:45 +00:00
#include "muc.h"
#include "config/preferences.h"
2014-01-22 22:22:01 +00:00
#include "config/account.h"
#include "config/scripts.h"
#include "roster_list.h"
#include "plugins/plugins.h"
#include "window_list.h"
#include "config/tlscerts.h"
#include "profanity.h"
#include "event/client_events.h"
#ifdef PROF_HAVE_LIBOTR
2014-02-12 22:19:21 +00:00
#include "otr/otr.h"
#endif
#ifdef PROF_HAVE_LIBGPGME
#include "pgp/gpg.h"
#endif
2014-01-05 20:52:45 +00:00
2014-04-06 20:35:17 +00:00
#include "ui/ui.h"
void
2015-10-13 23:23:12 +00:00
sv_ev_login_account_success(char *account_name, int secured)
{
ProfAccount *account = accounts_get_account(account_name);
2014-04-07 19:41:06 +00:00
roster_create();
#ifdef PROF_HAVE_LIBOTR
otr_on_connect(account);
#endif
#ifdef PROF_HAVE_LIBGPGME
2015-06-23 22:29:10 +00:00
p_gpg_on_connect(account->jid);
#endif
2015-10-13 23:23:12 +00:00
ui_handle_login_account_success(account, secured);
2014-04-07 19:41:06 +00:00
// attempt to rejoin rooms with passwords
2014-09-28 21:09:20 +00:00
GList *curr = muc_rooms();
while (curr) {
2014-09-28 21:09:20 +00:00
char *password = muc_password(curr->data);
if (password) {
2014-09-28 21:09:20 +00:00
char *nick = muc_nick(curr->data);
presence_join_room(curr->data, nick, password);
}
curr = g_list_next(curr);
}
g_list_free(curr);
2014-04-07 19:41:06 +00:00
log_info("%s logged in successfully", account->jid);
if (account->startscript) {
scripts_exec(account->startscript);
}
2014-01-22 22:22:01 +00:00
account_free(account);
2014-11-20 00:32:33 +00:00
}
2014-11-20 00:32:33 +00:00
void
2015-04-28 22:38:56 +00:00
sv_ev_roster_received(void)
2014-11-20 00:32:33 +00:00
{
if (prefs_get_boolean(PREF_ROSTER)) {
ui_show_roster();
}
2015-12-15 00:38:16 +00:00
char *account_name = jabber_get_account_name();
#ifdef PROF_HAVE_LIBGPGME
2015-12-15 00:38:16 +00: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 22:55:33 +00:00
cons_show_error("Invalid PGP key ID specified: %s, %s", account->pgp_keyid, err_str);
2015-12-15 00:38:16 +00:00
}
free(err_str);
}
2016-02-14 01:49:57 +00:00
account_free(account);
#endif
// send initial presence
2015-12-15 00:38:16 +00:00
resource_presence_t conn_presence = accounts_get_login_presence(account_name);
char *last_activity_str = accounts_get_last_activity(account_name);
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);
}
const char *fulljid = jabber_get_fulljid();
plugins_on_connect(account_name, fulljid);
}
void
2015-04-28 22:38:56 +00:00
sv_ev_lost_connection(void)
{
cons_show_error("Lost connection.");
2016-01-03 17:23:36 +00:00
#ifdef PROF_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 21:09:20 +00:00
muc_invites_clear();
chat_sessions_clear();
ui_disconnected();
roster_destroy();
#ifdef PROF_HAVE_LIBGPGME
2015-06-23 22:29:10 +00:00
p_gpg_on_disconnect();
#endif
}
void
2015-04-28 22:38:56 +00:00
sv_ev_failed_login(void)
{
cons_show_error("Login failed.");
log_info("Login failed");
tlscerts_clear_current();
}
void
sv_ev_room_invite(jabber_invite_t invite_type, const char *const invitor, const char *const room,
2015-10-25 22:32:46 +00:00
const char *const reason, const char *const password)
{
2014-09-28 21:09:20 +00:00
if (!muc_active(room) && !muc_invites_contain(room)) {
cons_show_room_invite(invitor, room, reason);
2015-03-29 02:16:41 +00:00
muc_invites_add(room, password);
}
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_broadcast(const char *const room_jid, const char *const message)
{
2014-09-28 21:09:20 +00:00
if (muc_roster_complete(room_jid)) {
2015-11-02 00:36:25 +00:00
ProfMucWin *mucwin = wins_get_muc(room_jid);
if (mucwin) {
mucwin_broadcast(mucwin, message);
}
} else {
2014-09-28 21:09:20 +00:00
muc_pending_broadcasts_add(room_jid, message);
}
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_subject(const char *const room, const char *const nick, const char *const subject)
{
2014-10-05 02:05:46 +00:00
muc_set_subject(room, subject);
2015-11-02 00:29:35 +00:00
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && muc_roster_complete(room)) {
mucwin_subject(mucwin, nick, subject);
}
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_history(const char *const room_jid, const char *const nick,
GDateTime *timestamp, const char *const message)
{
2015-11-02 00:19:46 +00:00
ProfMucWin *mucwin = wins_get_muc(room_jid);
if (mucwin) {
mucwin_history(mucwin, nick, timestamp, message);
2015-11-02 00:19:46 +00:00
}
}
void
sv_ev_room_message(const char *const room_jid, const char *const nick, const char *const 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);
}
ProfMucWin *mucwin = wins_get_muc(room_jid);
if (!mucwin) {
return;
}
char *new_message = plugins_pre_room_message_display(room_jid, nick, message);
char *mynick = muc_nick(mucwin->roomjid);
gboolean mention = FALSE;
char *message_lower = g_utf8_strdown(new_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(new_message);
mucwin_message(mucwin, nick, new_message, mention, triggers);
ProfWin *window = (ProfWin*)mucwin;
int num = wins_get_num(window);
gboolean is_current = FALSE;
// currently in groupchat window
if (wins_is_current(window)) {
is_current = TRUE;
status_bar_active(num);
if ((g_strcmp0(mynick, nick) != 0) && (prefs_get_boolean(PREF_BEEP))) {
beep();
}
// not currently on groupchat window
} else {
status_bar_new(num);
if ((g_strcmp0(mynick, nick) != 0) && (prefs_get_boolean(PREF_FLASH))) {
flash();
}
cons_show_incoming_room_message(nick, mucwin->roomjid, num, mention, triggers, mucwin->unread);
mucwin->unread++;
if (mention) {
mucwin->unread_mentions = TRUE;
}
if (triggers) {
mucwin->unread_triggers = TRUE;
}
}
if (prefs_do_room_notify(is_current, mucwin->roomjid, mynick, nick, new_message, mention, triggers != NULL)) {
Jid *jidp = jid_create(mucwin->roomjid);
notify_room_message(nick, jidp->localpart, num, new_message);
jid_destroy(jidp);
}
if (triggers) {
g_list_free_full(triggers, free);
}
2016-01-02 02:41:51 +00:00
rosterwin_roster();
plugins_post_room_message_display(room_jid, nick, new_message);
free(new_message);
}
void
2015-10-25 22:32:46 +00:00
sv_ev_incoming_private_message(const char *const fulljid, char *message)
{
char *plugin_message = plugins_pre_priv_message_display(fulljid, message);
ProfPrivateWin *privatewin = wins_get_private(fulljid);
if (privatewin == NULL) {
ProfWin *window = wins_new_private(fulljid);
privatewin = (ProfPrivateWin*)window;
}
privwin_incoming_msg(privatewin, plugin_message, NULL);
plugins_post_priv_message_display(fulljid, plugin_message);
free(plugin_message);
2016-01-24 00:33:24 +00:00
rosterwin_roster();
}
void
sv_ev_delayed_private_message(const char *const fulljid, char *message, GDateTime *timestamp)
{
char *new_message = plugins_pre_priv_message_display(fulljid, message);
ProfPrivateWin *privatewin = wins_get_private(fulljid);
if (privatewin == NULL) {
ProfWin *window = wins_new_private(fulljid);
privatewin = (ProfPrivateWin*)window;
}
privwin_incoming_msg(privatewin, new_message, timestamp);
plugins_post_priv_message_display(fulljid, new_message);
free(new_message);
}
2015-02-02 10:10:05 +00:00
void
sv_ev_outgoing_carbon(char *barejid, char *message)
{
2015-10-27 23:25:18 +00: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 10:10:05 +00:00
}
void
sv_ev_incoming_carbon(char *barejid, char *resource, char *message)
{
gboolean new_win = FALSE;
ProfChatWin *chatwin = wins_get_chat(barejid);
if (!chatwin) {
ProfWin *window = wins_new_chat(barejid);
chatwin = (ProfChatWin*)window;
new_win = TRUE;
}
chatwin_incoming_msg(chatwin, resource, message, NULL, new_win, PROF_MSG_PLAIN);
chat_log_msg_in(barejid, message, NULL);
}
#ifdef PROF_HAVE_LIBGPGME
2015-08-26 22:15:10 +00:00
static void
_sv_ev_incoming_pgp(ProfChatWin *chatwin, gboolean new_win, char *barejid, char *resource, char *message, char *pgp_message, GDateTime *timestamp)
2015-08-26 22:15:10 +00:00
{
char *decrypted = p_gpg_decrypt(pgp_message);
2015-08-26 22:15:10 +00:00
if (decrypted) {
chatwin_incoming_msg(chatwin, resource, decrypted, timestamp, new_win, PROF_MSG_PGP);
chat_log_pgp_msg_in(barejid, decrypted, timestamp);
chatwin->pgp_recv = TRUE;
2015-08-26 22:15:10 +00:00
p_gpg_free_decrypted(decrypted);
} else {
chatwin_incoming_msg(chatwin, resource, message, timestamp, new_win, PROF_MSG_PLAIN);
chat_log_msg_in(barejid, message, timestamp);
chatwin->pgp_recv = FALSE;
2015-08-26 22:15:10 +00:00
}
}
#endif
#ifdef PROF_HAVE_LIBOTR
2015-08-26 22:15:10 +00:00
static void
_sv_ev_incoming_otr(ProfChatWin *chatwin, gboolean new_win, char *barejid, char *resource, char *message, GDateTime *timestamp)
2015-08-26 22:15:10 +00:00
{
gboolean decrypted = FALSE;
char *otr_res = otr_on_message_recv(barejid, resource, message, &decrypted);
if (otr_res) {
2015-08-26 23:37:48 +00:00
if (decrypted) {
chatwin_incoming_msg(chatwin, resource, otr_res, timestamp, new_win, PROF_MSG_OTR);
chatwin->pgp_send = FALSE;
2015-08-26 22:15:10 +00:00
} else {
chatwin_incoming_msg(chatwin, resource, otr_res, timestamp, new_win, PROF_MSG_PLAIN);
2015-08-26 22:15:10 +00:00
}
chat_log_otr_msg_in(barejid, otr_res, decrypted, timestamp);
2015-08-26 22:15:10 +00:00
otr_free_message(otr_res);
chatwin->pgp_recv = FALSE;
2015-08-26 22:15:10 +00:00
}
}
#endif
#ifndef PROF_HAVE_LIBOTR
2015-08-26 22:15:10 +00:00
static void
_sv_ev_incoming_plain(ProfChatWin *chatwin, gboolean new_win, char *barejid, char *resource, char *message, GDateTime *timestamp)
2015-08-26 22:15:10 +00:00
{
chatwin_incoming_msg(chatwin, resource, message, timestamp, new_win, PROF_MSG_PLAIN);
chat_log_msg_in(barejid, message, timestamp);
chatwin->pgp_recv = FALSE;
2015-08-26 22:15:10 +00:00
}
#endif
2015-08-26 22:15:10 +00:00
void
sv_ev_incoming_message(char *barejid, char *resource, char *message, char *pgp_message, GDateTime *timestamp)
{
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 PROF_HAVE_LIBOTR
#ifdef PROF_HAVE_LIBGPGME
if (pgp_message) {
if (chatwin->is_otr) {
2015-07-29 22:48:28 +00:00
win_println((ProfWin*)chatwin, 0, "PGP encrypted message received whilst in OTR session.");
} else { // PROF_ENC_NONE, PROF_ENC_PGP
_sv_ev_incoming_pgp(chatwin, new_win, barejid, resource, message, pgp_message, timestamp);
}
} else {
_sv_ev_incoming_otr(chatwin, new_win, barejid, resource, message, timestamp);
}
2016-01-14 22:54:50 +00:00
rosterwin_roster();
return;
#endif
#endif
// OTR supported, PGP unsupported
#ifdef PROF_HAVE_LIBOTR
#ifndef PROF_HAVE_LIBGPGME
_sv_ev_incoming_otr(chatwin, new_win, barejid, resource, message, timestamp);
2016-01-14 22:54:50 +00:00
rosterwin_roster();
return;
#endif
#endif
// OTR unsupported, PGP supported
#ifndef PROF_HAVE_LIBOTR
#ifdef PROF_HAVE_LIBGPGME
if (pgp_message) {
_sv_ev_incoming_pgp(chatwin, new_win, barejid, resource, message, pgp_message, timestamp);
} else {
_sv_ev_incoming_plain(chatwin, new_win, barejid, resource, message, timestamp);
}
2016-01-14 22:54:50 +00:00
rosterwin_roster();
return;
#endif
#endif
// OTR unsupported, PGP unsupported
#ifndef PROF_HAVE_LIBOTR
#ifndef PROF_HAVE_LIBGPGME
_sv_ev_incoming_plain(chatwin, new_win, barejid, resource, message, timestamp);
2016-01-14 22:54:50 +00:00
rosterwin_roster();
return;
#endif
#endif
}
2015-03-11 23:18:28 +00:00
void
2015-04-28 22:38:56 +00:00
sv_ev_message_receipt(char *barejid, char *id)
2015-03-11 23:18:28 +00:00
{
2015-10-26 22:54:06 +00:00
ProfChatWin *chatwin = wins_get_chat(barejid);
if (!chatwin)
return;
2015-10-27 21:23:56 +00:00
chatwin_receipt_received(chatwin, id);
2015-03-11 23:18:28 +00:00
}
void
2015-04-28 22:38:56 +00:00
sv_ev_typing(char *barejid, char *resource)
{
ui_contact_typing(barejid, resource);
2015-10-26 22:43:32 +00:00
if (wins_chat_exists(barejid)) {
chat_session_recipient_typing(barejid, resource);
2015-01-11 20:20:17 +00:00
}
}
void
2015-04-28 22:38:56 +00:00
sv_ev_paused(char *barejid, char *resource)
2015-01-11 20:20:17 +00:00
{
2015-10-26 22:43:32 +00:00
if (wins_chat_exists(barejid)) {
chat_session_recipient_paused(barejid, resource);
2015-01-11 20:20:17 +00:00
}
}
void
2015-04-28 22:38:56 +00:00
sv_ev_inactive(char *barejid, char *resource)
2015-01-11 20:20:17 +00:00
{
2015-10-26 22:43:32 +00:00
if (wins_chat_exists(barejid)) {
chat_session_recipient_inactive(barejid, resource);
2015-01-11 20:20:17 +00:00
}
}
void
2015-10-25 22:32:46 +00:00
sv_ev_gone(const char *const barejid, const char *const resource)
{
2015-10-27 23:05:20 +00: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) {
chatwin_recipient_gone(chatwin);
2015-10-27 23:05:20 +00:00
}
}
}
2015-10-26 22:43:32 +00:00
if (wins_chat_exists(barejid)) {
chat_session_recipient_gone(barejid, resource);
}
}
2015-01-11 20:20:17 +00:00
void
2015-10-25 22:32:46 +00:00
sv_ev_activity(const char *const barejid, const char *const resource, gboolean send_states)
2015-01-11 20:20:17 +00:00
{
2015-10-26 22:43:32 +00:00
if (wins_chat_exists(barejid)) {
chat_session_recipient_active(barejid, resource, send_states);
}
2015-01-11 20:20:17 +00:00
}
void
2015-04-28 22:38:56 +00:00
sv_ev_subscription(const char *barejid, jabber_subscr_t type)
{
switch (type) {
case PRESENCE_SUBSCRIBE:
/* TODO: auto-subscribe if needed */
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");
if (prefs_get_boolean(PREF_NOTIFY_SUB)) {
notify_subscription(barejid);
}
break;
case PRESENCE_SUBSCRIBED:
cons_show("Subscription received from %s", barejid);
log_info("Subscription received from %s", barejid);
ui_print_system_msg_from_recipient(barejid, "Subscribed");
break;
case PRESENCE_UNSUBSCRIBED:
cons_show("%s deleted subscription", barejid);
log_info("%s deleted subscription", barejid);
ui_print_system_msg_from_recipient(barejid, "Unsubscribed");
break;
default:
/* unknown type */
break;
}
}
void
2015-04-28 22:38:56 +00:00
sv_ev_contact_offline(char *barejid, char *resource, char *status)
{
gboolean updated = roster_contact_offline(barejid, resource, status);
if (resource && updated) {
2015-01-11 20:20:17 +00:00
ui_contact_offline(barejid, resource, status);
}
2014-11-10 00:31:11 +00:00
#ifdef PROF_HAVE_LIBOTR
ProfChatWin *chatwin = wins_get_chat(barejid);
if (chatwin && otr_is_secure(barejid)) {
chatwin_otr_unsecured(chatwin);
otr_end_session(chatwin->barejid);
}
2016-01-03 02:01:01 +00:00
#endif
2014-12-16 23:00:05 +00:00
rosterwin_roster();
chat_session_remove(barejid);
}
void
sv_ev_contact_online(char *barejid, Resource *resource, GDateTime *last_activity, char *pgpsig)
{
gboolean updated = roster_update_presence(barejid, resource, last_activity);
2014-01-20 18:40:48 +00:00
if (updated) {
2015-05-07 21:05:36 +00:00
ui_contact_online(barejid, resource, last_activity);
}
2014-11-10 00:31:11 +00:00
#ifdef PROF_HAVE_LIBGPGME
if (pgpsig) {
p_gpg_verify(barejid, pgpsig);
}
#endif
2014-12-16 23:00:05 +00:00
rosterwin_roster();
chat_session_remove(barejid);
}
void
2015-10-25 22:32:46 +00:00
sv_ev_leave_room(const char *const room)
{
2014-09-28 21:09:20 +00:00
muc_leave(room);
2014-10-05 19:52:34 +00:00
ui_leave_room(room);
}
2014-09-03 21:00:08 +00:00
void
2015-10-25 22:32:46 +00:00
sv_ev_room_destroy(const char *const room)
2014-09-03 21:00:08 +00:00
{
2014-09-28 21:09:20 +00:00
muc_leave(room);
2014-10-05 19:52:34 +00:00
ui_room_destroy(room);
}
void
2015-10-25 22:32:46 +00: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 19:52:34 +00:00
{
muc_leave(room);
ui_room_destroyed(room, reason, new_jid, password);
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_kicked(const char *const room, const char *const actor, const char *const reason)
2014-10-05 19:52:34 +00:00
{
muc_leave(room);
ui_room_kicked(room, actor, reason);
2014-09-03 21:00:08 +00:00
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_banned(const char *const room, const char *const actor, const char *const reason)
{
muc_leave(room);
ui_room_banned(room, actor, reason);
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_occupant_offline(const char *const room, const char *const nick,
const char *const show, const char *const status)
{
2014-09-28 21:09:20 +00:00
muc_roster_remove(room, nick);
char *muc_status_pref = prefs_get_string(PREF_STATUSES_MUC);
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && (g_strcmp0(muc_status_pref, "none") != 0)) {
mucwin_occupant_offline(mucwin, nick);
}
prefs_free_string(muc_status_pref);
Jid *jidp = jid_create_from_bare_and_resource(room, nick);
ProfPrivateWin *privwin = wins_get_private(jidp->fulljid);
jid_destroy(jidp);
if (privwin != NULL) {
privwin_occupant_offline(privwin);
}
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
rosterwin_roster();
}
2014-10-05 19:52:34 +00:00
void
2015-10-25 22:32:46 +00:00
sv_ev_room_occupent_kicked(const char *const room, const char *const nick, const char *const actor,
const char *const reason)
2014-10-05 19:52:34 +00:00
{
muc_roster_remove(room, nick);
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin) {
mucwin_occupant_kicked(mucwin, nick, actor, reason);
}
Jid *jidp = jid_create_from_bare_and_resource(room, nick);
ProfPrivateWin *privwin = wins_get_private(jidp->fulljid);
jid_destroy(jidp);
if (privwin != NULL) {
privwin_occupant_kicked(privwin, actor, reason);
}
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
rosterwin_roster();
2014-10-05 19:52:34 +00:00
}
void
2015-10-25 22:32:46 +00:00
sv_ev_room_occupent_banned(const char *const room, const char *const nick, const char *const actor,
const char *const reason)
{
muc_roster_remove(room, nick);
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin) {
mucwin_occupant_banned(mucwin, nick, actor, reason);
}
Jid *jidp = jid_create_from_bare_and_resource(room, nick);
ProfPrivateWin *privwin = wins_get_private(jidp->fulljid);
jid_destroy(jidp);
if (privwin != NULL) {
privwin_occupant_banned(privwin, actor, reason);
}
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
rosterwin_roster();
}
2014-10-05 19:52:34 +00:00
2014-11-13 00:22:22 +00:00
void
2015-10-25 22:32:46 +00:00
sv_ev_roster_update(const char *const barejid, const char *const name,
GSList *groups, const char *const subscription, gboolean pending_out)
2014-11-13 00:22:22 +00:00
{
roster_update(barejid, name, groups, subscription, pending_out);
2014-12-16 23:00:05 +00:00
rosterwin_roster();
2014-11-13 00:22:22 +00:00
}
void
2015-10-25 22:32:46 +00:00
sv_ev_xmpp_stanza(const char *const msg)
{
2015-11-01 19:45:35 +00:00
ProfXMLWin *xmlwin = wins_get_xmlconsole();
if (xmlwin) {
xmlwin_show(xmlwin, msg);
}
}
2014-09-04 00:08:10 +00:00
void
2015-10-25 22:32:46 +00:00
sv_ev_muc_self_online(const char *const room, const char *const nick, gboolean config_required,
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 23:22:39 +00:00
{
2014-10-07 00:16:46 +00:00
muc_roster_add(room, nick, jid, role, affiliation, show, status);
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-07 00:16:46 +00:00
2014-10-06 23:22:39 +00:00
// handle self nick change
if (muc_nick_change_pending(room)) {
2014-10-06 23:46:08 +00:00
muc_nick_change_complete(room, nick);
2015-11-02 00:17:46 +00:00
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin) {
mucwin_nick_change(mucwin, nick);
}
2014-10-06 23:22:39 +00:00
// handle roster complete
} else if (!muc_roster_complete(room)) {
2014-10-06 23:46:08 +00:00
if (muc_autojoin(room)) {
ui_room_join(room, FALSE);
} else {
ui_room_join(room, TRUE);
}
iq_room_info_request(room, FALSE);
2014-10-06 23:46:08 +00:00
muc_invites_remove(room);
muc_roster_set_complete(room);
2014-10-09 21:39:57 +00:00
// show roster if occupants list disabled by default
2015-11-01 23:41:45 +00:00
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && !prefs_get_boolean(PREF_OCCUPANTS)) {
GList *occupants = muc_roster(room);
2015-11-01 23:41:45 +00:00
mucwin_roster(mucwin, occupants, NULL);
g_list_free(occupants);
2014-10-09 21:39:57 +00:00
}
2014-10-06 23:46:08 +00:00
char *subject = muc_subject(room);
2015-11-02 00:29:35 +00:00
if (mucwin && subject) {
mucwin_subject(mucwin, NULL, subject);
2014-10-06 23:46:08 +00:00
}
GList *pending_broadcasts = muc_pending_broadcasts(room);
2015-11-02 00:36:25 +00:00
if (mucwin && pending_broadcasts) {
2014-10-06 23:46:08 +00:00
GList *curr = pending_broadcasts;
while (curr) {
2015-11-02 00:36:25 +00:00
mucwin_broadcast(mucwin, curr->data);
2014-10-06 23:46:08 +00:00
curr = g_list_next(curr);
}
}
2014-10-06 23:22:39 +00:00
// room configuration required
if (config_required) {
2014-10-06 23:46:08 +00:00
muc_set_requires_config(room, TRUE);
if (mucwin) {
mucwin_requires_config(mucwin);
}
2014-10-06 23:22:39 +00:00
}
2016-01-02 01:22:19 +00:00
rosterwin_roster();
// check for change in role/affiliation
} else {
2015-11-01 23:10:07 +00:00
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
// both changed
if ((g_strcmp0(role, old_role) != 0) && (g_strcmp0(affiliation, old_affiliation) != 0)) {
2015-11-01 23:10:07 +00:00
mucwin_role_and_affiliation_change(mucwin, role, affiliation, actor, reason);
// role changed
} else if (g_strcmp0(role, old_role) != 0) {
2015-11-01 23:10:07 +00:00
mucwin_role_change(mucwin, role, actor, reason);
// affiliation changed
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {
2015-11-01 23:10:07 +00:00
mucwin_affiliation_change(mucwin, affiliation, actor, reason);
}
}
}
2014-10-07 15:37:14 +00:00
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
2014-10-06 23:22:39 +00:00
}
void
2015-10-25 22:32:46 +00:00
sv_ev_muc_occupant_online(const char *const room, const char *const nick, const char *const jid,
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 23:22:39 +00: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 23:57:51 +00:00
gboolean updated = muc_roster_add(room, nick, jid, role, affiliation, show, status);
// not yet finished joining room
2014-10-06 23:22:39 +00:00
if (!muc_roster_complete(room)) {
2014-10-06 23:57:51 +00:00
return;
}
2014-10-06 23:22:39 +00:00
// handle nickname change
2014-10-06 23:57:51 +00:00
char *old_nick = muc_roster_nick_change_complete(room, nick);
if (old_nick) {
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin) {
mucwin_occupant_nick_change(mucwin, old_nick, nick);
}
wins_private_nick_change(mucwin->roomjid, old_nick, nick);
2014-10-06 23:57:51 +00:00
free(old_nick);
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
rosterwin_roster();
2014-10-06 23:57:51 +00:00
return;
}
2014-10-06 23:46:08 +00:00
// joined room
if (!occupant) {
2014-10-06 23:57:51 +00:00
char *muc_status_pref = prefs_get_string(PREF_STATUSES_MUC);
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && g_strcmp0(muc_status_pref, "none") != 0) {
mucwin_occupant_online(mucwin, nick, role, affiliation, show, status);
2014-10-06 23:57:51 +00:00
}
prefs_free_string(muc_status_pref);
Jid *jidp = jid_create_from_bare_and_resource(mucwin->roomjid, nick);
ProfPrivateWin *privwin = wins_get_private(jidp->fulljid);
jid_destroy(jidp);
if (privwin) {
privwin_occupant_online(privwin);
}
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
rosterwin_roster();
2014-10-06 23:57:51 +00:00
return;
}
// presence updated
2014-10-06 23:57:51 +00:00
if (updated) {
char *muc_status_pref = prefs_get_string(PREF_STATUSES_MUC);
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && (g_strcmp0(muc_status_pref, "all") == 0)) {
mucwin_occupant_presence(mucwin, nick, show, status);
2014-10-06 23:22:39 +00:00
}
2014-10-06 23:57:51 +00:00
prefs_free_string(muc_status_pref);
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
// presence unchanged, check for role/affiliation change
2014-10-11 23:43:58 +00:00
} else {
2015-11-01 23:26:47 +00:00
ProfMucWin *mucwin = wins_get_muc(room);
if (mucwin && prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
// both changed
if ((g_strcmp0(role, old_role) != 0) && (g_strcmp0(affiliation, old_affiliation) != 0)) {
2015-11-01 23:26:47 +00:00
mucwin_occupant_role_and_affiliation_change(mucwin, nick, role, affiliation, actor, reason);
// role changed
} else if (g_strcmp0(role, old_role) != 0) {
2015-11-01 23:26:47 +00:00
mucwin_occupant_role_change(mucwin, nick, role, actor, reason);
// affiliation changed
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {
2015-11-01 23:26:47 +00:00
mucwin_occupant_affiliation_change(mucwin, nick, affiliation, actor, reason);
}
}
2014-12-16 23:37:23 +00:00
occupantswin_occupants(room);
2014-10-06 23:22:39 +00:00
}
rosterwin_roster();
}
2015-09-22 19:55:41 +00:00
int
2015-11-10 01:20:40 +00:00
sv_ev_certfail(const char *const errormsg, TLSCertificate *cert)
2015-09-22 19:55:41 +00:00
{
// check profanity trusted certs
2015-11-10 01:20:40 +00:00
if (tlscerts_exists(cert->fingerprint)) {
2015-09-22 21:44:18 +00:00
return 1;
}
// check current cert
char *current_fp = tlscerts_get_current();
2015-11-10 01:20:40 +00:00
if (current_fp && g_strcmp0(current_fp, cert->fingerprint) == 0) {
return 1;
}
2015-09-22 19:55:41 +00:00
cons_show("");
2015-09-23 19:38:52 +00:00
cons_show_error("TLS certificate verification failed: %s", errormsg);
2015-11-10 01:20:40 +00:00
cons_show_tlscert(cert);
2015-09-22 19:55:41 +00:00
cons_show("");
cons_show("Use '/tls allow' to accept this certificate.");
cons_show("Use '/tls always' to accept this certificate permanently.");
cons_show("Use '/tls deny' to reject this certificate.");
cons_show("");
ui_update();
char *cmd = ui_get_line();
2015-09-22 21:44:18 +00:00
while ((g_strcmp0(cmd, "/tls allow") != 0)
&& (g_strcmp0(cmd, "/tls always") != 0)
&& (g_strcmp0(cmd, "/tls deny") != 0)
&& (g_strcmp0(cmd, "/quit") != 0)) {
cons_show("Use '/tls allow' to accept this certificate.");
cons_show("Use '/tls always' to accept this certificate permanently.");
cons_show("Use '/tls deny' to reject this certificate.");
cons_show("");
ui_update();
free(cmd);
cmd = ui_get_line();
}
2015-09-22 19:55:41 +00:00
if (g_strcmp0(cmd, "/tls allow") == 0) {
cons_show("Coninuing with connection.");
2015-11-10 01:20:40 +00:00
tlscerts_set_current(cert->fingerprint);
free(cmd);
return 1;
2015-09-22 21:44:18 +00:00
} else if (g_strcmp0(cmd, "/tls always") == 0) {
cons_show("Adding %s to trusted certificates.", cert->fingerprint);
2015-11-10 01:20:40 +00:00
if (!tlscerts_exists(cert->fingerprint)) {
tlscerts_add(cert);
}
2015-09-22 21:44:18 +00:00
free(cmd);
return 1;
} else if (g_strcmp0(cmd, "/quit") == 0) {
prof_set_quit();
free(cmd);
return 0;
} else {
cons_show("Aborting connection.");
free(cmd);
return 0;
}
2015-09-22 19:55:41 +00:00
}
void
2015-10-25 22:32:46 +00:00
sv_ev_lastactivity_response(const char *const from, const int seconds, const char *const msg)
{
Jid *jidp = jid_create(from);
if (!jidp) {
return;
}
2015-09-29 22:30:23 +00:00
GDateTime *now = g_date_time_new_now_local();
GDateTime *active = g_date_time_add_seconds(now, 0 - seconds);
gchar *date_fmt = NULL;
char *time_pref = prefs_get_string(PREF_TIME_LASTACTIVITY);
date_fmt = g_date_time_format(active, time_pref);
prefs_free_string(time_pref);
assert(date_fmt != NULL);
// full jid - last activity
if (jidp->resourcepart) {
if (seconds == 0) {
if (msg) {
cons_show("%s currently active, status: %s", from, msg);
} else {
2015-09-29 22:30:23 +00:00
cons_show("%s currently active", from);
}
} else {
if (msg) {
2015-09-29 22:30:23 +00:00
cons_show("%s last active %s, status: %s", from, date_fmt, msg);
} else {
2015-09-29 22:30:23 +00:00
cons_show("%s last active %s", from, date_fmt);
}
}
// barejid - last logged in
} else if (jidp->localpart) {
if (seconds == 0) {
if (msg) {
cons_show("%s currently logged in, status: %s", from, msg);
} else {
2015-09-29 23:07:35 +00:00
cons_show("%s currently logged in", from);
}
} else {
if (msg) {
2015-09-29 22:30:23 +00:00
cons_show("%s last logged in %s, status: %s", from, date_fmt, msg);
} else {
2015-09-29 22:30:23 +00:00
cons_show("%s last logged in %s", from, date_fmt);
}
}
// domain only - uptime
} else {
2015-09-29 22:30:23 +00:00
int left = seconds;
int days = seconds / 86400;
left = left - days * 86400;
int hours = left / 3600;
left = left - hours * 3600;
int minutes = left / 60;
left = left - minutes * 60;
int seconds = left;
cons_show("%s up since %s, uptime %d days, %d hrs, %d mins, %d secs", from, date_fmt, days, hours, minutes, seconds);
}
2015-09-29 22:30:23 +00:00
g_date_time_unref(now);
g_date_time_unref(active);
g_free(date_fmt);
jid_destroy(jidp);
}