2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2013-01-27 19:32:57 -05:00
|
|
|
* xmpp.h
|
2012-02-20 15:07:38 -05: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>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
*/
|
|
|
|
|
2013-12-14 10:34:17 -05:00
|
|
|
#ifndef XMPP_XMPP_H
|
|
|
|
#define XMPP_XMPP_H
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2019-04-10 00:21:09 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2015-09-21 16:40:04 -04:00
|
|
|
|
2013-01-20 12:16:45 -05:00
|
|
|
#include <strophe.h>
|
|
|
|
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/accounts.h"
|
2015-11-09 20:20:40 -05:00
|
|
|
#include "config/tlscerts.h"
|
2014-09-12 08:28:33 -04:00
|
|
|
#include "tools/autocomplete.h"
|
2016-04-11 14:13:18 -04:00
|
|
|
#include "tools/http_upload.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "xmpp/contact.h"
|
|
|
|
#include "xmpp/jid.h"
|
2012-12-09 17:14:38 -05:00
|
|
|
|
2013-01-27 20:06:58 -05:00
|
|
|
#define JABBER_PRIORITY_MIN -128
|
|
|
|
#define JABBER_PRIORITY_MAX 127
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
#define XMPP_FEATURE_PING "urn:xmpp:ping"
|
|
|
|
#define XMPP_FEATURE_BLOCKING "urn:xmpp:blocking"
|
|
|
|
#define XMPP_FEATURE_RECEIPTS "urn:xmpp:receipts"
|
|
|
|
#define XMPP_FEATURE_LASTACTIVITY "jabber:iq:last"
|
|
|
|
#define XMPP_FEATURE_MUC "http://jabber.org/protocol/muc"
|
|
|
|
#define XMPP_FEATURE_COMMANDS "http://jabber.org/protocol/commands"
|
|
|
|
#define XMPP_FEATURE_OMEMO_DEVICELIST_NOTIFY "eu.siacs.conversations.axolotl.devicelist+notify"
|
|
|
|
#define XMPP_FEATURE_PUBSUB "http://jabber.org/protocol/pubsub"
|
|
|
|
#define XMPP_FEATURE_PUBSUB_PUBLISH_OPTIONS "http://jabber.org/protocol/pubsub#publish-options"
|
2019-12-18 04:14:46 -05:00
|
|
|
#define XMPP_FEATURE_USER_AVATAR_METADATA_NOTIFY "urn:xmpp:avatar:metadata+notify"
|
2020-07-07 08:18:57 -04:00
|
|
|
#define XMPP_FEATURE_LAST_MESSAGE_CORRECTION "urn:xmpp:message-correct:0"
|
|
|
|
#define XMPP_FEATURE_MAM2 "urn:xmpp:mam:2"
|
2021-06-30 17:42:32 -04:00
|
|
|
#define XMPP_FEATURE_SPAM_REPORTING "urn:xmpp:reporting:1"
|
2016-05-01 14:39:39 -04:00
|
|
|
|
2012-08-25 20:50:50 -04:00
|
|
|
typedef enum {
|
|
|
|
JABBER_CONNECTING,
|
|
|
|
JABBER_CONNECTED,
|
2012-09-11 17:55:59 -04:00
|
|
|
JABBER_DISCONNECTING,
|
2021-07-04 19:02:38 -04:00
|
|
|
JABBER_DISCONNECTED,
|
|
|
|
JABBER_RAW_CONNECTING,
|
2022-01-28 10:40:18 -05:00
|
|
|
JABBER_RAW_CONNECTED,
|
|
|
|
JABBER_RECONNECT
|
2012-08-25 20:50:50 -04:00
|
|
|
} jabber_conn_status_t;
|
|
|
|
|
2012-11-11 07:00:21 -05:00
|
|
|
typedef enum {
|
|
|
|
PRESENCE_SUBSCRIBE,
|
|
|
|
PRESENCE_SUBSCRIBED,
|
|
|
|
PRESENCE_UNSUBSCRIBED
|
|
|
|
} jabber_subscr_t;
|
|
|
|
|
2013-03-24 17:46:00 -04:00
|
|
|
typedef enum {
|
|
|
|
INVITE_DIRECT,
|
|
|
|
INVITE_MEDIATED
|
|
|
|
} jabber_invite_t;
|
|
|
|
|
2021-06-30 17:42:32 -04:00
|
|
|
typedef enum {
|
|
|
|
BLOCKED_NO_REPORT,
|
|
|
|
BLOCKED_REPORT_ABUSE,
|
|
|
|
BLOCKED_REPORT_SPAM
|
|
|
|
} blocked_report;
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
typedef struct bookmark_t
|
|
|
|
{
|
|
|
|
char* barejid;
|
|
|
|
char* nick;
|
|
|
|
char* password;
|
|
|
|
char* name;
|
2016-05-03 20:19:51 -04:00
|
|
|
gboolean autojoin;
|
2022-01-27 09:49:44 -05:00
|
|
|
int ext_gajim_minimize; // 0 - non existent, 1 - true, 2 - false
|
2016-05-03 20:19:51 -04:00
|
|
|
} Bookmark;
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
typedef struct disco_identity_t
|
|
|
|
{
|
|
|
|
char* name;
|
|
|
|
char* type;
|
|
|
|
char* category;
|
2016-08-13 12:19:24 -04:00
|
|
|
} DiscoIdentity;
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
typedef struct software_version_t
|
|
|
|
{
|
|
|
|
char* software;
|
|
|
|
char* software_version;
|
|
|
|
char* os;
|
|
|
|
char* os_version;
|
2016-08-13 12:43:43 -04:00
|
|
|
} SoftwareVersion;
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
typedef struct entity_capabilities_t
|
|
|
|
{
|
|
|
|
DiscoIdentity* identity;
|
|
|
|
SoftwareVersion* software_version;
|
|
|
|
GSList* features;
|
2016-08-13 11:39:25 -04:00
|
|
|
} EntityCapabilities;
|
2013-01-27 19:57:22 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
typedef struct disco_item_t
|
|
|
|
{
|
|
|
|
char* jid;
|
|
|
|
char* name;
|
2013-03-14 18:03:38 -04:00
|
|
|
} DiscoItem;
|
|
|
|
|
2019-10-19 00:36:47 -04:00
|
|
|
typedef enum {
|
2020-03-27 19:04:41 -04:00
|
|
|
PROF_MSG_ENC_NONE,
|
2019-10-19 00:36:47 -04:00
|
|
|
PROF_MSG_ENC_OTR,
|
|
|
|
PROF_MSG_ENC_PGP,
|
2020-06-21 03:43:42 -04:00
|
|
|
PROF_MSG_ENC_OMEMO,
|
|
|
|
PROF_MSG_ENC_OX
|
2019-10-19 00:36:47 -04:00
|
|
|
} prof_enc_t;
|
|
|
|
|
2020-04-06 12:37:39 -04:00
|
|
|
typedef enum {
|
|
|
|
PROF_MSG_TYPE_UNINITIALIZED,
|
|
|
|
// regular 1:1 chat
|
|
|
|
PROF_MSG_TYPE_CHAT,
|
|
|
|
// groupchats to whole group
|
|
|
|
PROF_MSG_TYPE_MUC,
|
|
|
|
// groupchat private message
|
|
|
|
PROF_MSG_TYPE_MUCPM
|
|
|
|
} prof_msg_type_t;
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
typedef struct prof_message_t
|
|
|
|
{
|
|
|
|
Jid* from_jid;
|
|
|
|
Jid* to_jid;
|
|
|
|
/* regular <message id=""> */
|
|
|
|
char* id;
|
|
|
|
/* </origin-id> XEP-0359 */
|
|
|
|
char* originid;
|
|
|
|
/* <replace id> XEP-0308 LMC */
|
|
|
|
char* replace_id;
|
2020-07-23 08:21:27 -04:00
|
|
|
/* stanza-id from XEP 0359. Used for MAM. archive_id in our database (see database.c)
|
|
|
|
* coming in as <stanza-id> for live messages
|
|
|
|
* coming in as <result id=""> for MAM messages*/
|
2021-10-05 04:01:27 -04:00
|
|
|
char* stanzaid;
|
2020-07-07 08:18:57 -04:00
|
|
|
/* The raw body from xmpp message, either plaintext or OTR encrypted text */
|
|
|
|
char* body;
|
|
|
|
/* The encrypted message as for PGP */
|
|
|
|
char* encrypted;
|
|
|
|
/* The message that will be printed on screen and logs */
|
|
|
|
char* plain;
|
|
|
|
GDateTime* timestamp;
|
|
|
|
prof_enc_t enc;
|
|
|
|
gboolean trusted;
|
|
|
|
gboolean is_mam;
|
|
|
|
prof_msg_type_t type;
|
2019-10-19 00:36:47 -04:00
|
|
|
} ProfMessage;
|
|
|
|
|
2016-05-05 19:53:03 -04:00
|
|
|
void session_init(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
jabber_conn_status_t session_connect_with_details(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);
|
|
|
|
jabber_conn_status_t session_connect_with_account(const ProfAccount* const account);
|
2021-07-04 19:02:38 -04:00
|
|
|
|
2016-05-05 19:53:03 -04:00
|
|
|
void session_disconnect(void);
|
|
|
|
void session_shutdown(void);
|
2016-07-24 09:08:30 -04:00
|
|
|
void session_process_events(void);
|
2016-05-05 19:53:03 -04:00
|
|
|
char* session_get_account_name(void);
|
|
|
|
|
|
|
|
jabber_conn_status_t connection_get_status(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
char* connection_get_presence_msg(void);
|
|
|
|
void connection_set_presence_msg(const char* const message);
|
2016-05-05 20:12:54 -04:00
|
|
|
const char* connection_get_fulljid(void);
|
2020-05-25 07:04:19 -04:00
|
|
|
char* connection_get_barejid(void);
|
2021-03-11 07:56:06 -05:00
|
|
|
char* connection_get_user(void);
|
2016-05-05 20:16:13 -04:00
|
|
|
char* connection_create_uuid(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
void connection_free_uuid(char* uuid);
|
2016-05-05 20:47:19 -04:00
|
|
|
TLSCertificate* connection_get_tls_peer_cert(void);
|
2016-05-05 21:18:31 -04:00
|
|
|
gboolean connection_is_secured(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean connection_send_stanza(const char* const stanza);
|
2016-05-07 18:04:50 -04:00
|
|
|
GList* connection_get_available_resources(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean connection_supports(const char* const feature);
|
|
|
|
char* connection_jid_for_feature(const char* const feature);
|
2012-02-05 18:38:35 -05:00
|
|
|
|
2019-10-22 06:04:16 -04:00
|
|
|
const char* connection_get_profanity_identifier(void);
|
2019-10-18 05:23:30 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* message_send_chat(const char* const barejid, const char* const msg, const char* const oob_url, gboolean request_receipt, const char* const replace_id);
|
|
|
|
char* message_send_chat_otr(const char* const barejid, const char* const msg, gboolean request_receipt, const char* const replace_id);
|
|
|
|
char* message_send_chat_pgp(const char* const barejid, const char* const msg, gboolean request_receipt, const char* const replace_id);
|
2020-06-21 03:43:42 -04:00
|
|
|
// XEP-0373: OpenPGP for XMPP
|
2020-07-07 08:18:57 -04:00
|
|
|
char* message_send_chat_ox(const char* const barejid, const char* const msg, gboolean request_receipt, const char* const replace_id);
|
|
|
|
char* message_send_chat_omemo(const char* const jid, uint32_t sid, GList* keys, const unsigned char* const iv, size_t iv_len, const unsigned char* const ciphertext, size_t ciphertext_len, gboolean request_receipt, gboolean muc, const char* const replace_id);
|
|
|
|
char* message_send_private(const char* const fulljid, const char* const msg, const char* const oob_url);
|
|
|
|
char* message_send_groupchat(const char* const roomjid, const char* const msg, const char* const oob_url, const char* const replace_id);
|
|
|
|
void message_send_groupchat_subject(const char* const roomjid, const char* const subject);
|
|
|
|
void message_send_inactive(const char* const jid);
|
|
|
|
void message_send_composing(const char* const jid);
|
|
|
|
void message_send_paused(const char* const jid);
|
|
|
|
void message_send_gone(const char* const jid);
|
|
|
|
void message_send_invite(const char* const room, const char* const contact, const char* const reason);
|
2021-03-12 06:55:19 -05:00
|
|
|
void message_request_voice(const char* const roomjid);
|
2020-07-07 08:18:57 -04:00
|
|
|
|
|
|
|
bool message_is_sent_by_us(const ProfMessage* const message, bool checkOID);
|
|
|
|
|
|
|
|
void presence_subscription(const char* const jid, const jabber_subscr_t action);
|
2017-03-31 19:27:11 -04:00
|
|
|
GList* presence_get_subscription_requests(void);
|
2014-12-22 17:13:42 -05:00
|
|
|
gint presence_sub_request_count(void);
|
|
|
|
void presence_reset_sub_request_search(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
char* presence_sub_request_find(const char* const search_str, gboolean previous, void* context);
|
|
|
|
void presence_join_room(const char* const room, const char* const nick, const char* const passwd);
|
|
|
|
void presence_change_room_nick(const char* const room, const char* const nick);
|
|
|
|
void presence_leave_chat_room(const char* const room_jid);
|
|
|
|
void presence_send(resource_presence_t status, int idle, char* signed_status);
|
|
|
|
gboolean presence_sub_request_exists(const char* const bare_jid);
|
2013-01-28 17:24:47 -05:00
|
|
|
|
2015-10-25 20:14:23 -04:00
|
|
|
void iq_enable_carbons(void);
|
|
|
|
void iq_disable_carbons(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
void iq_send_software_version(const char* const fulljid);
|
2018-02-05 15:01:54 -05:00
|
|
|
void iq_rooms_cache_clear(void);
|
2019-06-19 17:37:54 -04:00
|
|
|
void iq_handlers_clear();
|
2020-07-07 08:18:57 -04:00
|
|
|
void iq_room_list_request(gchar* conferencejid, gchar* filter);
|
|
|
|
void iq_disco_info_request(gchar* jid);
|
|
|
|
void iq_disco_items_request(gchar* jid);
|
|
|
|
void iq_last_activity_request(gchar* jid);
|
2014-12-22 17:13:42 -05:00
|
|
|
void iq_set_autoping(int seconds);
|
2020-07-07 08:18:57 -04:00
|
|
|
void iq_confirm_instant_room(const char* const room_jid);
|
|
|
|
void iq_destroy_room(const char* const room_jid);
|
|
|
|
void iq_request_room_config_form(const char* const room_jid);
|
|
|
|
void iq_submit_room_config(ProfConfWin* confwin);
|
|
|
|
void iq_room_config_cancel(ProfConfWin* confwin);
|
|
|
|
void iq_send_ping(const char* const target);
|
|
|
|
void iq_room_info_request(const char* const room, gboolean display_result);
|
|
|
|
void iq_room_affiliation_list(const char* const room, char* affiliation, bool show);
|
|
|
|
void iq_room_affiliation_set(const char* const room, const char* const jid, char* affiliation,
|
|
|
|
const char* const reason);
|
|
|
|
void iq_room_kick_occupant(const char* const room, const char* const nick, const char* const reason);
|
|
|
|
void iq_room_role_set(const char* const room, const char* const nick, char* role, const char* const reason);
|
|
|
|
void iq_room_role_list(const char* const room, char* role);
|
2019-06-03 06:04:04 -04:00
|
|
|
void iq_autoping_timer_cancel(void);
|
2015-12-30 20:48:04 -05:00
|
|
|
void iq_autoping_check(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
void iq_http_upload_request(HTTPUpload* upload);
|
|
|
|
void iq_command_list(const char* const target);
|
|
|
|
void iq_command_exec(const char* const target, const char* const command);
|
|
|
|
void iq_mam_request(ProfChatWin* win);
|
2021-03-11 07:56:06 -05:00
|
|
|
void iq_register_change_password(const char* const user, const char* const password);
|
2021-03-18 15:32:12 -04:00
|
|
|
void iq_muc_register_nick(const char* const roomjid);
|
2013-02-16 21:10:56 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
EntityCapabilities* caps_lookup(const char* const jid);
|
2014-12-22 17:13:42 -05:00
|
|
|
void caps_close(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
void caps_destroy(EntityCapabilities* caps);
|
2016-04-30 18:00:07 -04:00
|
|
|
void caps_reset_ver(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
void caps_add_feature(char* feature);
|
|
|
|
void caps_remove_feature(char* feature);
|
|
|
|
gboolean caps_jid_has_feature(const char* const jid, const char* const feature);
|
|
|
|
|
|
|
|
gboolean bookmark_add(const char* jid, const char* nick, const char* password, const char* autojoin_str, const char* name);
|
|
|
|
gboolean bookmark_update(const char* jid, const char* nick, const char* password, const char* autojoin_str, const char* name);
|
|
|
|
gboolean bookmark_remove(const char* jid);
|
|
|
|
gboolean bookmark_join(const char* jid);
|
2016-08-21 10:25:49 -04:00
|
|
|
GList* bookmark_get_list(void);
|
2021-06-09 09:45:09 -04:00
|
|
|
Bookmark* bookmark_get_by_jid(const char* jid);
|
2020-07-07 08:18:57 -04:00
|
|
|
char* bookmark_find(const char* const search_str, gboolean previous, void* context);
|
2014-12-22 17:13:42 -05:00
|
|
|
void bookmark_autocomplete_reset(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean bookmark_exists(const char* const room);
|
2014-12-22 17:13:42 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
void roster_send_name_change(const char* const barejid, const char* const new_name, GSList* groups);
|
|
|
|
void roster_send_add_to_group(const char* const group, PContact contact);
|
|
|
|
void roster_send_remove_from_group(const char* const group, PContact contact);
|
|
|
|
void roster_send_add_new(const char* const barejid, const char* const name);
|
|
|
|
void roster_send_remove(const char* const barejid);
|
2014-12-22 17:13:42 -05:00
|
|
|
|
2016-05-01 14:39:39 -04:00
|
|
|
GList* blocked_list(void);
|
2021-06-30 17:42:32 -04:00
|
|
|
gboolean blocked_add(char* jid, blocked_report reportkind, const char* const message);
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean blocked_remove(char* jid);
|
|
|
|
char* blocked_ac_find(const char* const search_str, gboolean previous, void* context);
|
2016-05-01 14:39:39 -04:00
|
|
|
void blocked_ac_reset(void);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
void form_destroy(DataForm* form);
|
|
|
|
void form_set_value(DataForm* form, const char* const tag, char* value);
|
|
|
|
gboolean form_add_unique_value(DataForm* form, const char* const tag, char* value);
|
|
|
|
void form_add_value(DataForm* form, const char* const tag, char* value);
|
|
|
|
gboolean form_remove_value(DataForm* form, const char* const tag, char* value);
|
|
|
|
gboolean form_remove_text_multi_value(DataForm* form, const char* const tag, int index);
|
|
|
|
gboolean form_tag_exists(DataForm* form, const char* const tag);
|
|
|
|
form_field_type_t form_get_field_type(DataForm* form, const char* const tag);
|
|
|
|
gboolean form_field_contains_option(DataForm* form, const char* const tag, char* value);
|
|
|
|
int form_get_value_count(DataForm* form, const char* const tag);
|
|
|
|
FormField* form_get_field_by_tag(DataForm* form, const char* const tag);
|
|
|
|
Autocomplete form_get_value_ac(DataForm* form, const char* const tag);
|
|
|
|
void form_reset_autocompleters(DataForm* form);
|
2014-12-22 17:13:42 -05:00
|
|
|
|
2021-10-16 02:43:55 -04:00
|
|
|
void publish_user_mood(const char* const mood, const char* const text);
|
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
#endif
|