1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/src/xmpp/xmpp.h

291 lines
12 KiB
C
Raw Normal View History

/*
2013-01-28 00:32:57 +00:00
* xmpp.h
2012-02-20 20:07:38 +00:00
*
2019-01-22 10:31:45 +00:00
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
2020-01-03 18:52:31 +00:00
* Copyright (C) 2019 - 2020 Michael Vetter <jubalh@iodoru.org>
*
2012-02-20 20:07:38 +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
2016-07-24 00:14:49 +00:00
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
2012-02-20 20:07:38 +00: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 20:07:38 +00:00
*/
#ifndef XMPP_XMPP_H
#define XMPP_XMPP_H
2012-02-05 23:29:09 +00:00
2019-04-10 04:21:09 +00:00
#include <stdint.h>
2016-03-31 20:05:02 +00:00
#include "config.h"
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBMESODE
#include <mesode.h>
#endif
2016-07-24 14:43:51 +00:00
2016-03-31 20:05:02 +00:00
#ifdef HAVE_LIBSTROPHE
#include <strophe.h>
#endif
2013-02-02 21:59:29 +00:00
#include "config/accounts.h"
2015-11-10 01:20:40 +00:00
#include "config/tlscerts.h"
#include "tools/autocomplete.h"
2016-04-11 18:13:18 +00:00
#include "tools/http_upload.h"
2016-07-24 14:43:51 +00:00
#include "xmpp/contact.h"
#include "xmpp/jid.h"
2012-12-09 22:14:38 +00:00
2013-01-28 01:06:58 +00:00
#define JABBER_PRIORITY_MIN -128
#define JABBER_PRIORITY_MAX 127
#define XMPP_FEATURE_PING "urn:xmpp:ping"
2016-05-01 18:39:39 +00:00
#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"
#define XMPP_FEATURE_USER_AVATAR_METADATA_NOTIFY "urn:xmpp:avatar:metadata+notify"
#define XMPP_FEATURE_LAST_MESSAGE_CORRECTION "urn:xmpp:message-correct:0"
2020-04-11 22:24:00 +00:00
#define XMPP_FEATURE_MAM2 "urn:xmpp:mam:2"
2016-05-01 18:39:39 +00:00
2012-08-26 00:50:50 +00:00
typedef enum {
JABBER_CONNECTING,
JABBER_CONNECTED,
JABBER_DISCONNECTING,
2012-08-26 00:50:50 +00:00
JABBER_DISCONNECTED
} jabber_conn_status_t;
2012-11-11 12:00:21 +00:00
typedef enum {
PRESENCE_SUBSCRIBE,
PRESENCE_SUBSCRIBED,
PRESENCE_UNSUBSCRIBED
} jabber_subscr_t;
typedef enum {
INVITE_DIRECT,
INVITE_MEDIATED
} jabber_invite_t;
2016-05-04 00:19:51 +00:00
typedef struct bookmark_t {
char *barejid;
2016-05-04 00:19:51 +00:00
char *nick;
char *password;
char *name;
2016-05-04 00:19:51 +00:00
gboolean autojoin;
int ext_gajim_minimize; //0 - non existant, 1 - true, 2 - false
2016-05-04 00:19:51 +00:00
} Bookmark;
typedef struct disco_identity_t {
char *name;
char *type;
char *category;
} DiscoIdentity;
typedef struct software_version_t {
char *software;
char *software_version;
char *os;
char *os_version;
} SoftwareVersion;
typedef struct entity_capabilities_t {
DiscoIdentity *identity;
SoftwareVersion *software_version;
2013-02-17 01:04:10 +00:00
GSList *features;
} EntityCapabilities;
2013-01-28 00:57:22 +00:00
2013-03-14 22:03:38 +00:00
typedef struct disco_item_t {
char *jid;
char *name;
} DiscoItem;
typedef enum {
PROF_MSG_ENC_NONE,
PROF_MSG_ENC_OTR,
PROF_MSG_ENC_PGP,
PROF_MSG_ENC_OMEMO
} prof_enc_t;
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;
typedef struct prof_message_t {
Jid *from_jid;
Jid *to_jid;
2020-04-06 19:15:51 +00:00
/* regular <message id=""> */
char *id;
/* </origin-id> XEP-0359 */
char *originid;
/* <replace id> XEP-0308 LMC */
char *replace_id;
2020-04-06 20:34:45 +00:00
/* for MAM we will need archive_id (stanza-id in XEP-0359) (see database.c) */
/* 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;
} ProfMessage;
2016-05-05 23:53:03 +00:00
void session_init(void);
jabber_conn_status_t session_connect_with_details(const char *const jid, const char *const passwd,
2015-10-26 00:14:23 +00:00
const char *const altdomain, const int port, const char *const tls_policy);
2016-05-05 23:53:03 +00:00
jabber_conn_status_t session_connect_with_account(const ProfAccount *const account);
void session_disconnect(void);
void session_shutdown(void);
void session_process_events(void);
2016-05-05 23:53:03 +00:00
char* session_get_account_name(void);
jabber_conn_status_t connection_get_status(void);
char *connection_get_presence_msg(void);
void connection_set_presence_msg(const char *const message);
2016-05-06 00:12:54 +00:00
const char* connection_get_fulljid(void);
2016-05-06 00:16:13 +00:00
char* connection_create_uuid(void);
void connection_free_uuid(char *uuid);
2016-05-06 00:47:19 +00:00
#ifdef HAVE_LIBMESODE
TLSCertificate* connection_get_tls_peer_cert(void);
#endif
2016-05-06 01:18:31 +00:00
gboolean connection_is_secured(void);
2016-05-06 00:51:58 +00:00
gboolean connection_send_stanza(const char *const stanza);
GList* connection_get_available_resources(void);
2016-05-07 22:28:16 +00:00
gboolean connection_supports(const char *const feature);
char* connection_jid_for_feature(const char *const feature);
2012-02-05 23:38:35 +00:00
const char* connection_get_profanity_identifier(void);
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);
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);
2015-10-26 00:14:23 +00:00
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);
2013-01-29 00:21:04 +00:00
bool message_is_sent_by_us(const ProfMessage *const message, bool checkOID);
2015-10-26 00:14:23 +00:00
void presence_subscription(const char *const jid, const jabber_subscr_t action);
GList* presence_get_subscription_requests(void);
2014-12-22 22:13:42 +00:00
gint presence_sub_request_count(void);
void presence_reset_sub_request_search(void);
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);
2015-10-26 00:14:23 +00:00
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);
2015-10-26 00:14:23 +00:00
gboolean presence_sub_request_exists(const char *const bare_jid);
2013-01-28 22:24:47 +00:00
2015-10-26 00:14:23 +00:00
void iq_enable_carbons(void);
void iq_disable_carbons(void);
void iq_send_software_version(const char *const fulljid);
2018-02-05 20:01:54 +00:00
void iq_rooms_cache_clear(void);
void iq_handlers_clear();
2018-01-27 23:51:03 +00:00
void iq_room_list_request(gchar *conferencejid, gchar *filter);
2014-12-22 22:13:42 +00:00
void iq_disco_info_request(gchar *jid);
void iq_disco_items_request(gchar *jid);
void iq_last_activity_request(gchar *jid);
2014-12-22 22:13:42 +00:00
void iq_set_autoping(int seconds);
2015-10-26 00:14:23 +00: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);
2018-05-30 17:25:06 +00:00
void iq_submit_room_config(ProfConfWin *confwin);
void iq_room_config_cancel(ProfConfWin *confwin);
2015-10-26 00:14:23 +00:00
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);
2015-10-26 00:14:23 +00:00
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);
2014-12-22 22:13:42 +00:00
void iq_room_role_list(const char * const room, char *role);
void iq_autoping_timer_cancel(void);
2015-12-31 01:48:04 +00:00
void iq_autoping_check(void);
2016-04-11 18:13:18 +00: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);
EntityCapabilities* caps_lookup(const char *const jid);
2014-12-22 22:13:42 +00:00
void caps_close(void);
void caps_destroy(EntityCapabilities *caps);
void caps_reset_ver(void);
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);
2014-12-22 22:13:42 +00:00
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);
2014-12-22 22:13:42 +00:00
gboolean bookmark_remove(const char *jid);
gboolean bookmark_join(const char *jid);
2016-08-21 14:25:49 +00:00
GList* bookmark_get_list(void);
char* bookmark_find(const char *const search_str, gboolean previous, void *context);
2014-12-22 22:13:42 +00:00
void bookmark_autocomplete_reset(void);
gboolean bookmark_exists(const char *const room);
2014-12-22 22:13:42 +00:00
2015-10-26 00:14:23 +00: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 22:13:42 +00:00
2016-05-01 18:39:39 +00:00
GList* blocked_list(void);
gboolean blocked_add(char *jid);
gboolean blocked_remove(char *jid);
char* blocked_ac_find(const char *const search_str, gboolean previous, void *context);
2016-05-01 18:39:39 +00:00
void blocked_ac_reset(void);
2014-12-22 22:13:42 +00:00
void form_destroy(DataForm *form);
2015-10-26 00:14:23 +00:00
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);
2014-12-22 22:13:42 +00:00
void form_reset_autocompleters(DataForm *form);
2012-02-05 23:29:09 +00:00
#endif