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.

64 lines
1.6 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
3 years ago
2 years ago
#include <optional>
#include <string>
#include <tl/optional.hpp>
2 years ago
3 years ago
struct t_user_profile
{
char *avatar_hash;
char *status_text;
3 years ago
char *status;
tl::optional<std::string> idle;
3 years ago
char *display_name;
char *email;
3 years ago
char *role;
char *affiliation;
char *pgp_id;
int omemo;
3 years ago
};
struct t_user
{
char *id;
char *name;
struct t_user_profile profile;
int updated;
int is_away;
struct t_user *prev_user;
struct t_user *next_user;
};
3 years ago
struct t_channel;
const char *user__get_colour(struct t_user *user);
3 years ago
const char *user__as_prefix_raw(struct t_account *account,
const char *name);
3 years ago
const char *user__as_prefix(struct t_account *account,
3 years ago
struct t_user *user,
const char *name);
3 years ago
struct t_user *user__search(struct t_account *account,
3 years ago
const char *id);
3 years ago
struct t_user *user__new(struct t_account *account,
3 years ago
const char *id, const char *display_name);
3 years ago
void user__free_all(struct t_account *account);
void user__nicklist_add(struct t_account *account,
3 years ago
struct t_channel *channel,
struct t_user *user);
3 years ago
void user__nicklist_remove(struct t_account *account,
struct t_channel *channel,
struct t_user *user);