mirror of https://github.com/bqv/weechat-xmpp
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.
77 lines
2.3 KiB
C
77 lines
2.3 KiB
C
// 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/.
|
|
|
|
#ifndef _SLACK_WORKSPACE_H_
|
|
#define _SLACK_WORKSPACE_H_
|
|
|
|
extern struct t_slack_workspace *slack_workspaces;
|
|
extern struct t_slack_workspace *last_slack_workspace;
|
|
|
|
enum t_slack_workspace_option
|
|
{
|
|
SLACK_WORKSPACE_OPTION_TOKEN,
|
|
SLACK_WORKSPACE_NUM_OPTIONS,
|
|
};
|
|
|
|
struct t_json_chunk
|
|
{
|
|
char *data;
|
|
struct t_json_chunk *next;
|
|
};
|
|
|
|
struct t_slack_workspace
|
|
{
|
|
char *id;
|
|
char *name;
|
|
char *domain;
|
|
struct t_config_option *options[SLACK_WORKSPACE_NUM_OPTIONS];
|
|
|
|
int reloading_from_config;
|
|
int reloaded_from_config;
|
|
|
|
int is_connected;
|
|
int disconnected;
|
|
|
|
int idx;
|
|
char *uri;
|
|
char *ws_url;
|
|
struct lws *client_wsi;
|
|
struct lws_context *context;
|
|
struct t_json_chunk *json_chunks;
|
|
struct t_slack_request *requests;
|
|
struct t_slack_request *last_request;
|
|
|
|
char *user;
|
|
char *nick;
|
|
|
|
struct t_gui_buffer *buffer;
|
|
char *buffer_as_string;
|
|
struct t_slack_user *users;
|
|
struct t_slack_user *last_user;
|
|
struct t_slack_channel *channels;
|
|
struct t_slack_channel *last_channel;
|
|
struct t_slack_workspace *prev_workspace;
|
|
struct t_slack_workspace *next_workspace;
|
|
};
|
|
|
|
extern char *slack_workspace_options[][2];
|
|
|
|
struct t_slack_workspace *slack_workspace_search(const char *workspace_domain);
|
|
struct t_slack_workspace *slack_workspace_casesearch (const char *workspace_domain);
|
|
int slack_workspace_search_option(const char *option_name);
|
|
struct t_slack_workspace *slack_workspace_alloc(const char *domain);
|
|
void slack_workspace_free_data(struct t_slack_workspace *workspace);
|
|
void slack_workspace_free(struct t_slack_workspace *workspace);
|
|
void slack_workspace_free_all();
|
|
void slack_workspace_disconnect(struct t_slack_workspace *workspace,
|
|
int reconnect);
|
|
void slack_workspace_disconnect_all();
|
|
void slack_workspace_close_connection(struct t_slack_workspace *workspace);
|
|
int slack_workspace_connect(struct t_slack_workspace *workspace);
|
|
int slack_workspace_timer_cb(const void *pointer, void *data, int remaining_calls);
|
|
void slack_workspace_register_request(struct t_slack_workspace *workspace,
|
|
struct t_slack_request *request);
|
|
|
|
#endif /*SLACK_WORKSPACE_H*/
|