You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
5.8 KiB
C++

3 years ago
// This Source Code Form is subject to the terms of the Mozilla Public
// License, version 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#pragma once
#include <ctime>
#include <cstdint>
2 years ago
#include <memory>
2 years ago
#include <unordered_map>
#include <strophe.h>
2 years ago
#include "omemo.hh"
3 years ago
2 years ago
extern std::unordered_map<std::string, struct t_account *> accounts;
3 years ago
enum t_account_option
{
ACCOUNT_OPTION_JID,
ACCOUNT_OPTION_PASSWORD,
ACCOUNT_OPTION_TLS,
ACCOUNT_OPTION_NICKNAME,
3 years ago
ACCOUNT_OPTION_AUTOCONNECT,
3 years ago
ACCOUNT_OPTION_RESOURCE,
3 years ago
ACCOUNT_OPTION_STATUS,
2 years ago
ACCOUNT_OPTION_PGP_PATH,
3 years ago
ACCOUNT_OPTION_PGP_KEYID,
3 years ago
ACCOUNT_NUM_OPTIONS,
};
3 years ago
#define account__option_string(account, option) \
weechat_config_string(account->options[ACCOUNT_OPTION_ ## option])
#define account__option_integer(account, option) \
weechat_config_integer(account->options[ACCOUNT_OPTION_ ## option])
#define account__option_boolean(account, option) \
weechat_config_boolean(account->options[ACCOUNT_OPTION_ ## option])
#define account_option_set(account, option, value) \
weechat_config_option_set(account->options[option], value, 1)
#define account_jid(account) \
account->connection && xmpp_conn_is_connected(account->connection) ? \
xmpp_jid_bare(account->context, xmpp_conn_get_bound_jid(account->connection)) : \
weechat_config_string(account->options[ACCOUNT_OPTION_JID])
3 years ago
#define account_jid_device(account) \
account->connection && xmpp_conn_is_connected(account->connection) ? \
xmpp_conn_get_bound_jid(account->connection) : \
xmpp_jid_new(account->context, \
xmpp_jid_node(account->context, \
weechat_config_string(account->options[ACCOUNT_OPTION_JID])), \
xmpp_jid_domain(account->context, \
weechat_config_string(account->options[ACCOUNT_OPTION_JID])), \
"weechat")
3 years ago
#define account_password(account) \
weechat_config_string(account->options[ACCOUNT_OPTION_PASSWORD])
#define account_tls(account) \
weechat_config_integer(account->options[ACCOUNT_OPTION_TLS])
#define account_nickname(account) \
weechat_config_string(account->options[ACCOUNT_OPTION_NICKNAME])
#define account_autoconnect(account) \
weechat_config_boolean(account->options[ACCOUNT_OPTION_AUTOCONNECT])
3 years ago
#define account_resource(account) \
weechat_config_string(account->options[ACCOUNT_OPTION_RESOURCE])
3 years ago
#define account_status(account) \
weechat_config_string(account->options[ACCOUNT_OPTION_STATUS])
2 years ago
#define account_pgp_path(account) \
weechat_config_string(account->options[ACCOUNT_OPTION_PGP_PATH])
3 years ago
#define account_pgp_keyid(account) \
weechat_config_string(account->options[ACCOUNT_OPTION_PGP_KEYID])
3 years ago
3 years ago
struct t_account_device
3 years ago
{
uint32_t id;
3 years ago
char *name;
char *label;
3 years ago
3 years ago
struct t_account_device *prev_device;
struct t_account_device *next_device;
3 years ago
};
3 years ago
struct t_account_mam_query
{
char *id;
char *with;
int has_start;
time_t start;
int has_end;
time_t end;
struct t_account_mam_query *prev_mam_query;
struct t_account_mam_query *next_mam_query;
};
3 years ago
struct t_account
{
3 years ago
char *name;
3 years ago
struct t_config_option *options[ACCOUNT_NUM_OPTIONS];
int reloading_from_config;
int is_connected;
int disconnected;
3 years ago
int current_retry;
int reconnect_delay;
int reconnect_start;
2 years ago
xmpp_mem_t memory;
3 years ago
xmpp_log_t logger;
3 years ago
xmpp_ctx_t *context;
xmpp_conn_t *connection;
3 years ago
struct t_gui_buffer *buffer;
char *buffer_as_string;
3 years ago
2 years ago
weechat::xmpp::omemo omemo;
3 years ago
struct t_pgp *pgp;
3 years ago
3 years ago
struct t_account_device *devices;
struct t_account_device *last_device;
3 years ago
struct t_account_mam_query *mam_queries;
struct t_account_mam_query *last_mam_query;
3 years ago
struct t_user *users;
struct t_user *last_user;
struct t_channel *channels;
struct t_channel *last_channel;
3 years ago
3 years ago
struct t_account *prev_account;
struct t_account *next_account;
};
extern char *account_options[][2];
struct t_account *account__search(const char *account_name);
struct t_account *account__casesearch (const char *account_name);
int account__search_option(const char *option_name);
struct t_account_device *account__search_device(struct t_account *account,
uint32_t id);
void account__add_device(struct t_account *account,
struct t_account_device *device);
void account__free_device(struct t_account *account,
struct t_account_device *device);
3 years ago
void account__free_device_all(struct t_account *account);
xmpp_stanza_t *account__get_devicelist(struct t_account *account);
3 years ago
struct t_account_mam_query *account__add_mam_query(struct t_account *account,
struct t_channel *channel,
const char *id,
time_t *start, time_t *end);
struct t_account_mam_query *account__mam_query_search(struct t_account *account,
const char *id);
void account__mam_query_free(struct t_account *account,
struct t_account_mam_query *mam_query);
void account__mam_query_free_all(struct t_account *account);
3 years ago
struct t_account *account__alloc(const char *name);
void account__free_data(struct t_account *account);
void account__free(struct t_account *account);
void account__free_all();
void account__disconnect(struct t_account *account, int reconnect);
void account__disconnect_all();
void account__close_connection(struct t_account *account);
int account__connect(struct t_account *account);
int account__timer_cb(const void *pointer, void *data, int remaining_calls);