weechat-xmpp/slack-user.h

75 lines
1.9 KiB
C
Raw Normal View History

2018-05-09 04:39:16 +00:00
// 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/.
2018-05-02 07:11:57 +00:00
#ifndef _SLACK_USER_H_
#define _SLACK_USER_H_
struct t_slack_user_profile
{
char *avatar_hash;
char *status_text;
char *status_emoji;
char *real_name;
char *display_name;
char *real_name_normalized;
char *email;
char *team;
2018-05-08 21:02:17 +00:00
char *bot_id;
2018-05-02 07:11:57 +00:00
};
struct t_slack_user
{
char *id;
char *name;
char *team_id;
char *real_name;
char *colour;
int deleted;
char *tz;
char *tz_label;
int tz_offset;
char *locale;
struct t_slack_user_profile profile;
int updated;
2018-05-02 15:55:41 +00:00
int is_away;
2018-05-02 07:11:57 +00:00
int is_admin;
int is_owner;
int is_primary_owner;
int is_restricted;
int is_ultra_restricted;
int is_bot;
int is_stranger;
int is_app_user;
int has_2fa;
struct t_slack_user *prev_user;
struct t_slack_user *next_user;
};
2018-05-09 16:35:55 +00:00
const char *slack_user_get_colour(struct t_slack_user *user);
2018-05-04 00:31:06 +00:00
const char *slack_user_as_prefix(struct t_slack_workspace *workspace,
2018-05-08 21:02:17 +00:00
struct t_slack_user *user,
const char *name);
struct t_slack_user *slack_user_bot_search(struct t_slack_workspace *workspace,
const char *bot_id);
2018-05-04 00:31:06 +00:00
2018-05-02 07:11:57 +00:00
struct t_slack_user *slack_user_search(struct t_slack_workspace *workspace,
const char *id);
struct t_slack_user *slack_user_new(struct t_slack_workspace *workspace,
2018-05-02 15:55:41 +00:00
const char *id, const char *display_name);
2018-05-02 07:11:57 +00:00
2018-05-02 15:55:41 +00:00
void slack_user_free_all(struct t_slack_workspace *workspace);
2018-05-02 07:11:57 +00:00
2018-05-07 17:08:34 +00:00
void slack_user_nicklist_add(struct t_slack_workspace *workspace,
struct t_slack_channel *channel,
struct t_slack_user *user);
2018-05-02 07:11:57 +00:00
#endif /*SLACK_USER_H*/