2015-04-19 14:40:15 -04:00
|
|
|
/*
|
|
|
|
* client_events.c
|
2019-11-13 06:11:05 -05:00
|
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
2015-04-19 14:40:15 -04:00
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
2021-01-08 10:36:30 -05:00
|
|
|
* Copyright (C) 2019 - 2021 Michael Vetter <jubalh@iodoru.org>
|
2015-04-19 14:40:15 -04:00
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2015-04-19 14:40:15 -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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2015-10-31 19:38:08 -04:00
|
|
|
|
2020-07-07 03:43:28 -04:00
|
|
|
#include <stdlib.h>
|
2020-07-07 07:53:30 -04:00
|
|
|
#include <glib.h>
|
2015-04-19 14:40:15 -04:00
|
|
|
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "log.h"
|
2020-07-07 03:43:28 -04:00
|
|
|
#include "database.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "config/preferences.h"
|
2019-05-19 16:22:58 -04:00
|
|
|
#include "event/common.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "plugins/plugins.h"
|
2016-07-24 10:14:46 -04:00
|
|
|
#include "ui/window_list.h"
|
2016-07-24 09:23:55 -04:00
|
|
|
#include "xmpp/chat_session.h"
|
2019-05-19 16:22:58 -04:00
|
|
|
#include "xmpp/xmpp.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBOTR
|
2015-04-19 14:40:15 -04:00
|
|
|
#include "otr/otr.h"
|
|
|
|
#endif
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-05-07 19:07:21 -04:00
|
|
|
#include "pgp/gpg.h"
|
|
|
|
#endif
|
2015-04-19 14:40:15 -04:00
|
|
|
|
2019-02-26 13:53:06 -05:00
|
|
|
#ifdef HAVE_OMEMO
|
|
|
|
#include "omemo/omemo.h"
|
|
|
|
#endif
|
|
|
|
|
2015-04-21 19:29:37 -04:00
|
|
|
jabber_conn_status_t
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_connect_jid(const char* const jid, const char* const passwd, const char* const altdomain, const int port, const char* const tls_policy, const char* const auth_policy)
|
2015-04-21 19:29:37 -04:00
|
|
|
{
|
|
|
|
cons_show("Connecting as %s", jid);
|
2020-02-26 18:22:05 -05:00
|
|
|
return session_connect_with_details(jid, passwd, altdomain, port, tls_policy, auth_policy);
|
2015-04-21 19:29:37 -04:00
|
|
|
}
|
|
|
|
|
2015-04-23 16:56:48 -04:00
|
|
|
jabber_conn_status_t
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_connect_account(ProfAccount* account)
|
2015-04-21 19:29:37 -04:00
|
|
|
{
|
2016-11-21 19:39:52 -05:00
|
|
|
if (account->resource) {
|
|
|
|
cons_show("Connecting with account %s as %s/%s", account->name, account->jid, account->resource);
|
|
|
|
} else if (g_strcmp0(account->name, account->jid) == 0) {
|
|
|
|
cons_show("Connecting with account %s", account->name);
|
|
|
|
} else {
|
|
|
|
cons_show("Connecting with account %s as %s", account->name, account->jid);
|
|
|
|
}
|
2015-04-21 19:29:37 -04:00
|
|
|
|
2016-05-05 19:53:03 -04:00
|
|
|
return session_connect_with_account(account);
|
2015-04-21 19:29:37 -04:00
|
|
|
}
|
|
|
|
|
2016-01-03 12:23:36 -05:00
|
|
|
void
|
|
|
|
cl_ev_disconnect(void)
|
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* mybarejid = connection_get_barejid();
|
2020-05-25 07:04:19 -04:00
|
|
|
cons_show("%s logged out successfully.", mybarejid);
|
|
|
|
free(mybarejid);
|
2016-01-03 12:23:36 -05:00
|
|
|
|
2019-05-27 06:52:04 -04:00
|
|
|
ui_close_all_wins();
|
2019-05-19 16:22:58 -04:00
|
|
|
ev_disconnect_cleanup();
|
2019-07-03 03:19:24 -04:00
|
|
|
// on intentional disconnect reset the counter
|
|
|
|
ev_reset_connection_counter();
|
2016-01-03 12:23:36 -05:00
|
|
|
}
|
|
|
|
|
2015-05-07 18:21:48 -04:00
|
|
|
void
|
2017-01-15 18:59:31 -05:00
|
|
|
cl_ev_presence_send(const resource_presence_t presence_type, const int idle_secs)
|
2015-05-07 18:21:48 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* signed_status = NULL;
|
2015-05-07 19:07:21 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
2020-07-07 08:18:57 -04:00
|
|
|
char* account_name = session_get_account_name();
|
|
|
|
ProfAccount* account = accounts_get_account(account_name);
|
2015-05-07 19:07:21 -04:00
|
|
|
if (account->pgp_keyid) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* msg = connection_get_presence_msg();
|
2015-05-07 19:07:21 -04:00
|
|
|
signed_status = p_gpg_sign(msg, account->pgp_keyid);
|
|
|
|
}
|
2015-06-24 17:02:29 -04:00
|
|
|
account_free(account);
|
2015-05-07 19:07:21 -04:00
|
|
|
#endif
|
|
|
|
|
2017-01-15 18:59:31 -05:00
|
|
|
presence_send(presence_type, idle_secs, signed_status);
|
2015-05-07 19:07:21 -04:00
|
|
|
|
|
|
|
free(signed_status);
|
2015-05-07 18:21:48 -04:00
|
|
|
}
|
|
|
|
|
2015-04-19 14:40:15 -04:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_send_msg_correct(ProfChatWin* chatwin, const char* const msg, const char* const oob_url, gboolean correct_last_msg)
|
2015-04-19 14:40:15 -04:00
|
|
|
{
|
2015-04-29 17:59:44 -04:00
|
|
|
chat_state_active(chatwin->state);
|
2016-08-18 17:51:06 -04:00
|
|
|
|
2020-02-13 06:21:22 -05:00
|
|
|
gboolean request_receipt = prefs_get_boolean(PREF_RECEIPTS_REQUEST);
|
2016-08-18 17:51:06 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* plugin_msg = plugins_pre_chat_message_send(chatwin->barejid, msg);
|
2017-01-22 13:08:29 -05:00
|
|
|
if (plugin_msg == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2015-04-29 17:59:44 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* replace_id = NULL;
|
2020-02-10 10:17:01 -05:00
|
|
|
if (correct_last_msg) {
|
|
|
|
replace_id = chatwin->last_msg_id;
|
|
|
|
}
|
|
|
|
|
2019-02-26 13:53:06 -05:00
|
|
|
if (chatwin->is_omemo) {
|
2019-03-15 01:58:05 -04:00
|
|
|
#ifdef HAVE_OMEMO
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = omemo_on_message_send((ProfWin*)chatwin, plugin_msg, request_receipt, FALSE, replace_id);
|
2021-03-29 16:10:18 -04:00
|
|
|
if (id != NULL) {
|
|
|
|
chat_log_omemo_msg_out(chatwin->barejid, plugin_msg, NULL);
|
|
|
|
log_database_add_outgoing_chat(id, chatwin->barejid, plugin_msg, replace_id, PROF_MSG_ENC_OMEMO);
|
|
|
|
chatwin_outgoing_msg(chatwin, plugin_msg, id, PROF_MSG_ENC_OMEMO, request_receipt, replace_id);
|
|
|
|
free(id);
|
|
|
|
}
|
2020-06-21 03:43:42 -04:00
|
|
|
#endif
|
|
|
|
} else if (chatwin->is_ox) {
|
|
|
|
#ifdef HAVE_LIBGPGME
|
|
|
|
// XEP-0373: OpenPGP for XMPP
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = message_send_chat_ox(chatwin->barejid, plugin_msg, request_receipt, replace_id);
|
2021-03-29 16:10:18 -04:00
|
|
|
if (id != NULL) {
|
|
|
|
chat_log_pgp_msg_out(chatwin->barejid, plugin_msg, NULL);
|
|
|
|
log_database_add_outgoing_chat(id, chatwin->barejid, plugin_msg, replace_id, PROF_MSG_ENC_OX);
|
|
|
|
chatwin_outgoing_msg(chatwin, plugin_msg, id, PROF_MSG_ENC_OX, request_receipt, replace_id);
|
|
|
|
free(id);
|
|
|
|
}
|
2019-03-15 01:58:05 -04:00
|
|
|
#endif
|
|
|
|
} else if (chatwin->pgp_send) {
|
|
|
|
#ifdef HAVE_LIBGPGME
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = message_send_chat_pgp(chatwin->barejid, plugin_msg, request_receipt, replace_id);
|
2021-03-29 16:10:18 -04:00
|
|
|
if (id != NULL) {
|
|
|
|
chat_log_pgp_msg_out(chatwin->barejid, plugin_msg, NULL);
|
|
|
|
log_database_add_outgoing_chat(id, chatwin->barejid, plugin_msg, replace_id, PROF_MSG_ENC_PGP);
|
|
|
|
chatwin_outgoing_msg(chatwin, plugin_msg, id, PROF_MSG_ENC_PGP, request_receipt, replace_id);
|
|
|
|
free(id);
|
|
|
|
}
|
2020-06-19 16:05:31 -04:00
|
|
|
#endif
|
2019-03-15 01:58:05 -04:00
|
|
|
} else {
|
2020-06-19 16:05:31 -04:00
|
|
|
gboolean handled = FALSE;
|
|
|
|
#ifdef HAVE_LIBOTR
|
2020-07-07 08:18:57 -04:00
|
|
|
handled = otr_on_message_send(chatwin, plugin_msg, request_receipt, replace_id);
|
2020-06-19 16:05:31 -04:00
|
|
|
#endif
|
2019-03-15 01:58:05 -04:00
|
|
|
if (!handled) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = message_send_chat(chatwin->barejid, plugin_msg, oob_url, request_receipt, replace_id);
|
2019-10-28 18:36:42 -04:00
|
|
|
chat_log_msg_out(chatwin->barejid, plugin_msg, NULL);
|
2020-03-27 20:16:31 -04:00
|
|
|
log_database_add_outgoing_chat(id, chatwin->barejid, plugin_msg, replace_id, PROF_MSG_ENC_NONE);
|
2020-03-27 19:04:41 -04:00
|
|
|
chatwin_outgoing_msg(chatwin, plugin_msg, id, PROF_MSG_ENC_NONE, request_receipt, replace_id);
|
2019-03-15 01:58:05 -04:00
|
|
|
free(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
plugins_post_chat_message_send(chatwin->barejid, plugin_msg);
|
|
|
|
free(plugin_msg);
|
|
|
|
return;
|
2015-04-21 16:57:39 -04:00
|
|
|
}
|
|
|
|
|
2020-02-10 10:17:01 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_send_msg(ProfChatWin* chatwin, const char* const msg, const char* const oob_url)
|
2020-02-10 10:17:01 -05:00
|
|
|
{
|
|
|
|
cl_ev_send_msg_correct(chatwin, msg, oob_url, FALSE);
|
|
|
|
}
|
|
|
|
|
2015-04-21 16:57:39 -04:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_send_muc_msg_corrected(ProfMucWin* mucwin, const char* const msg, const char* const oob_url, gboolean correct_last_msg)
|
2015-04-21 16:57:39 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
char* plugin_msg = plugins_pre_room_message_send(mucwin->roomjid, msg);
|
2017-01-22 13:08:29 -05:00
|
|
|
if (plugin_msg == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* replace_id = NULL;
|
2020-02-12 08:06:00 -05:00
|
|
|
if (correct_last_msg) {
|
|
|
|
replace_id = mucwin->last_msg_id;
|
|
|
|
}
|
|
|
|
|
2019-03-18 01:31:19 -04:00
|
|
|
#ifdef HAVE_OMEMO
|
|
|
|
if (mucwin->is_omemo) {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = omemo_on_message_send((ProfWin*)mucwin, plugin_msg, FALSE, TRUE, replace_id);
|
2019-03-18 14:50:28 -04:00
|
|
|
groupchat_log_omemo_msg_out(mucwin->roomjid, plugin_msg);
|
2020-03-27 20:16:31 -04:00
|
|
|
log_database_add_outgoing_muc(id, mucwin->roomjid, plugin_msg, replace_id, PROF_MSG_ENC_OMEMO);
|
2020-02-12 08:06:00 -05:00
|
|
|
mucwin_outgoing_msg(mucwin, plugin_msg, id, PROF_MSG_ENC_OMEMO, replace_id);
|
2019-03-18 14:50:28 -04:00
|
|
|
free(id);
|
2019-03-18 01:31:19 -04:00
|
|
|
} else {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = message_send_groupchat(mucwin->roomjid, plugin_msg, oob_url, replace_id);
|
2019-03-18 14:50:28 -04:00
|
|
|
groupchat_log_msg_out(mucwin->roomjid, plugin_msg);
|
2020-03-27 20:16:31 -04:00
|
|
|
log_database_add_outgoing_muc(id, mucwin->roomjid, plugin_msg, replace_id, PROF_MSG_ENC_NONE);
|
2020-03-27 19:04:41 -04:00
|
|
|
mucwin_outgoing_msg(mucwin, plugin_msg, id, PROF_MSG_ENC_NONE, replace_id);
|
2019-04-01 13:19:39 -04:00
|
|
|
free(id);
|
2019-03-18 01:31:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
plugins_post_room_message_send(mucwin->roomjid, plugin_msg);
|
|
|
|
free(plugin_msg);
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_OMEMO
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = message_send_groupchat(mucwin->roomjid, plugin_msg, oob_url, replace_id);
|
2019-03-18 14:50:28 -04:00
|
|
|
groupchat_log_msg_out(mucwin->roomjid, plugin_msg);
|
2020-03-29 13:56:25 -04:00
|
|
|
log_database_add_outgoing_muc(id, mucwin->roomjid, plugin_msg, replace_id, PROF_MSG_ENC_NONE);
|
2020-03-27 19:04:41 -04:00
|
|
|
mucwin_outgoing_msg(mucwin, plugin_msg, id, PROF_MSG_ENC_NONE, replace_id);
|
2019-04-01 13:19:39 -04:00
|
|
|
free(id);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
|
|
|
plugins_post_room_message_send(mucwin->roomjid, plugin_msg);
|
|
|
|
free(plugin_msg);
|
2019-03-18 01:31:19 -04:00
|
|
|
return;
|
|
|
|
#endif
|
2015-04-21 16:57:39 -04:00
|
|
|
}
|
|
|
|
|
2020-02-12 08:06:00 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_send_muc_msg(ProfMucWin* mucwin, const char* const msg, const char* const oob_url)
|
2020-02-12 08:06:00 -05:00
|
|
|
{
|
|
|
|
cl_ev_send_muc_msg_corrected(mucwin, msg, oob_url, FALSE);
|
|
|
|
}
|
|
|
|
|
2015-04-21 16:57:39 -04:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
cl_ev_send_priv_msg(ProfPrivateWin* privwin, const char* const msg, const char* const oob_url)
|
2015-04-21 16:57:39 -04:00
|
|
|
{
|
2016-02-02 16:52:13 -05:00
|
|
|
if (privwin->occupant_offline) {
|
|
|
|
privwin_message_occupant_offline(privwin);
|
2016-02-02 19:11:38 -05:00
|
|
|
} else if (privwin->room_left) {
|
|
|
|
privwin_message_left_room(privwin);
|
2016-02-02 16:52:13 -05:00
|
|
|
} else {
|
2020-07-07 08:18:57 -04:00
|
|
|
char* plugin_msg = plugins_pre_priv_message_send(privwin->fulljid, msg);
|
|
|
|
Jid* jidp = jid_create(privwin->fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* id = message_send_private(privwin->fulljid, plugin_msg, oob_url);
|
2019-10-28 18:36:42 -04:00
|
|
|
chat_log_msg_out(jidp->barejid, plugin_msg, jidp->resourcepart);
|
2020-03-27 20:16:31 -04:00
|
|
|
log_database_add_outgoing_muc_pm(id, privwin->fulljid, plugin_msg, NULL, PROF_MSG_ENC_NONE);
|
2020-02-13 03:25:11 -05:00
|
|
|
privwin_outgoing_msg(privwin, plugin_msg);
|
2020-03-27 20:16:31 -04:00
|
|
|
free(id);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
|
|
|
plugins_post_priv_message_send(privwin->fulljid, plugin_msg);
|
2019-10-28 18:36:42 -04:00
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
free(plugin_msg);
|
2019-10-28 18:36:42 -04:00
|
|
|
jid_destroy(jidp);
|
2016-02-02 16:52:13 -05:00
|
|
|
}
|
2015-05-23 23:13:28 -04:00
|
|
|
}
|