Files
cproof/src/ui/mucwin.c
jabber.developer2 9feff00ead refactor: clean narrowing conversions and harden unsigned arithmetic
Cleanup of the conversion-safety warnings exposed by enabling
-Wconversion / -Wsign-compare in the previous commit, plus guard
clauses at the few places where unsigned arithmetic could actually
misbehave.

Build:
- configure.ac drops -Wno-error=conversion and
  -Wno-error=float-conversion. Only -Wno-error=sign-conversion and
  -Wno-error=sign-compare remain, gating the ~230 sign warnings
  inherited from upstream that will be cleaned up in follow-ups.

Type / conversion fixes (no behaviour change):
- Length-like locals in command/cmd_ac.c, command/cmd_funcs.c,
  pgp/gpg.c, tools/autocomplete.c, tools/parser.c and ui/mucwin.c
  switched from int to size_t / glong (matching strlen /
  g_utf8_strlen return type) so we no longer need an (int) cast and
  loop counters / array sizes stay in their natural unsigned domain.
- g_timer_elapsed / GTimeSpan -> int casts in session.c, iq.c,
  core.c, server_events.c, window.c.
- _win_print_wrapped: indent parameter and local curx/maxx switched
  from size_t to int to match _win_indent / getcurx / getmaxx.
- Port casts (int -> unsigned short) at the libstrophe boundary in
  connection.c and session.c, each preceded by
  g_assert(port >= 0 && port <= UINT16_MAX) so the truncation is
  documented at the call-site.
- curl_off_t / fread size_t results cast at usage in http_upload.c,
  http_download.c, omemo/crypto.c.
- strtoul results cast to uint32_t in xmpp/omemo.c and omemo/omemo.c
  where device/prekey IDs are genuinely 32-bit.
- config/color.c: fg/bg/palette indices switched to `short`
  end-to-end (find_col, color_hash, find_closest_col,
  _color_pair_cache_get, cache.pairs), so the ncurses init_pair
  boundary needs at most one (short)i cast for the cache index. Also
  TODO-noted: init_extended_pair is needed for >15-bit palettes.
- xmpp/avatar.c: float arithmetic explicitly casts its int operands.
- tests/functionaltests/proftest.c: read() result handling uses
  size_t for the accumulator, _read_output returns ssize_t, and the
  buffer-shift check happens before space subtraction so the
  expression cannot underflow.

Real-risk guard clauses (the part that actually fixes bugs):
- src/ui/statusbar.c _tabs_width: `end > opened_tabs - 1` rewritten
  as `end < opened_tabs` so opened_tabs == 0 no longer underflows.
- src/ui/statusbar.c _status_bar_draw_extended_tabs: the mirror
  comparison rewritten as `end >= opened_tabs`.
- src/ui/statusbar.c status_bar_draw: replaced
  `MAX(0, getmaxx - (int)_tabs_width)` with an explicit precheck
  before subtraction.
- src/omemo/omemo.c prekey selection: prekey_index is now uint32_t
  and randomized into an unsigned buffer, so modulo with prekeys_len
  cannot yield a negative index for g_list_nth_data.
- src/omemo/crypto.c omemo_decrypt_func: PKCS#5/PKCS#7 unpadding
  reads `plaintext[plaintext_len - 1]`, which would underflow on a
  malformed empty ciphertext and read past the heap buffer. Reject
  plaintext_len == 0 before the padding peek and validate the
  padding byte against the buffer length before the unpad loop.
  Initialise plaintext = NULL so the early `goto out` cannot free
  uninitialised memory.
- src/ui/inputwin.c (4 mbrlen sites) and src/ui/window.c
  _win_print_wrapped: mbrlen() returns 0 for the null wide
  character. The existing checks rejected (size_t)-1 / -2 but
  treated 0 as a valid step, so the surrounding loops would either
  advance by SIZE_MAX (i += ch_len - 1) or spin in place
  (word_pos += 0 forever). Add `|| ch_len == 0` to each guard;
  inside the spell-check word-emission loop also fall back to a
  one-byte advance.
- Defensive `len > 0 ? len - 1 : 0` prechecks at the strlen-based
  g_strndup / loop sites in ui/console.c, plugins/c_api.c and
  plugins/python_plugins.c.
2026-04-28 10:24:52 +03:00

986 lines
30 KiB
C

/*
* mucwin.c
* vim: expandtab:ts=4:sts=4:sw=4
*
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
* Copyright (C) 2019 - 2026 Michael Vetter <jubalh@iodoru.org>
*
* SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception
*/
#include "config.h"
#include "ui.h"
#include <string.h>
#include <assert.h>
#include <stdlib.h>
#include "log.h"
#include "config/preferences.h"
#include "plugins/plugins.h"
#include "ui/window.h"
#include "ui/win_types.h"
#include "ui/window_list.h"
#ifdef HAVE_OMEMO
#include "omemo/omemo.h"
#endif
static void _mucwin_set_last_message(ProfMucWin* mucwin, const char* const id, const char* const message);
ProfMucWin*
mucwin_new(const char* const barejid)
{
ProfWin* window = wins_new_muc(barejid);
ProfMucWin* mucwin = (ProfMucWin*)window;
mucwin->last_msg_timestamp = NULL;
#ifdef HAVE_OMEMO
if (muc_anonymity_type(mucwin->roomjid) == MUC_ANONYMITY_TYPE_NONANONYMOUS && omemo_automatic_start(barejid)) {
omemo_start_muc_sessions(barejid);
mucwin->is_omemo = TRUE;
}
#endif
// Force redraw here to show correct offline users; before this point muc_members returns a wrong list
ui_redraw_all_room_rosters();
return mucwin;
}
void
mucwin_role_change(ProfMucWin* mucwin, const char* const role, const char* const actor, const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ROOMINFO, "!", "Your role has been changed to: %s", role);
if (actor) {
win_append(window, THEME_ROOMINFO, ", by: %s", actor);
}
if (reason) {
win_append(window, THEME_ROOMINFO, ", reason: %s", reason);
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_affiliation_change(ProfMucWin* mucwin, const char* const affiliation, const char* const actor,
const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ROOMINFO, "!", "Your affiliation has been changed to: %s", affiliation);
if (actor) {
win_append(window, THEME_ROOMINFO, ", by: %s", actor);
}
if (reason) {
win_append(window, THEME_ROOMINFO, ", reason: %s", reason);
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_role_and_affiliation_change(ProfMucWin* mucwin, const char* const role, const char* const affiliation,
const char* const actor, const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ROOMINFO, "!", "Your role and affiliation have been changed, role: %s, affiliation: %s", role, affiliation);
if (actor) {
win_append(window, THEME_ROOMINFO, ", by: %s", actor);
}
if (reason) {
win_append(window, THEME_ROOMINFO, ", reason: %s", reason);
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_occupant_role_change(ProfMucWin* mucwin, const char* const nick, const char* const role,
const char* const actor, const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ROOMINFO, "!", "%s's role has been changed to: %s", nick, role);
if (actor) {
win_append(window, THEME_ROOMINFO, ", by: %s", actor);
}
if (reason) {
win_append(window, THEME_ROOMINFO, ", reason: %s", reason);
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_occupant_affiliation_change(ProfMucWin* mucwin, const char* const nick, const char* const affiliation,
const char* const actor, const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ROOMINFO, "!", "%s's affiliation has been changed to: %s", nick, affiliation);
if (actor) {
win_append(window, THEME_ROOMINFO, ", by: %s", actor);
}
if (reason) {
win_append(window, THEME_ROOMINFO, ", reason: %s", reason);
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_occupant_role_and_affiliation_change(ProfMucWin* mucwin, const char* const nick, const char* const role,
const char* const affiliation, const char* const actor, const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ROOMINFO, "!", "%s's role and affiliation have been changed, role: %s, affiliation: %s", nick, role, affiliation);
if (actor) {
win_append(window, THEME_ROOMINFO, ", by: %s", actor);
}
if (reason) {
win_append(window, THEME_ROOMINFO, ", reason: %s", reason);
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_room_info_error(ProfMucWin* mucwin, const char* const error)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_DEFAULT, "!", "Room info request failed: %s", error);
win_println(window, THEME_DEFAULT, "-", "");
}
void
mucwin_room_disco_info(ProfMucWin* mucwin, GSList* identities, GSList* features)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if ((identities && (g_slist_length(identities) > 0)) || (features && (g_slist_length(features) > 0))) {
if (identities) {
win_println(window, THEME_DEFAULT, "!", "Identities:");
}
while (identities) {
DiscoIdentity* identity = identities->data; // name, type, category
GString* identity_str = g_string_new(" ");
if (identity->name) {
identity_str = g_string_append(identity_str, identity->name);
identity_str = g_string_append(identity_str, " ");
}
if (identity->type) {
identity_str = g_string_append(identity_str, identity->type);
identity_str = g_string_append(identity_str, " ");
}
if (identity->category) {
identity_str = g_string_append(identity_str, identity->category);
}
win_println(window, THEME_DEFAULT, "!", "%s", identity_str->str);
g_string_free(identity_str, TRUE);
identities = g_slist_next(identities);
}
if (features) {
win_println(window, THEME_DEFAULT, "!", "Features:");
}
while (features) {
win_println(window, THEME_DEFAULT, "!", " %s", (char*)features->data);
features = g_slist_next(features);
}
win_println(window, THEME_DEFAULT, "-", "");
}
}
void
mucwin_roster(ProfMucWin* mucwin, GList* roster, const char* const presence)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if ((roster == NULL) || (g_list_length(roster) == 0)) {
if (presence == NULL) {
win_println(window, THEME_ROOMINFO, "!", "Room is empty.");
} else {
win_println(window, THEME_ROOMINFO, "!", "No occupants %s.", presence);
}
} else {
int length = g_list_length(roster);
if (presence == NULL) {
win_print(window, THEME_ROOMINFO, "!", "%d occupants: ", length);
} else {
win_print(window, THEME_ROOMINFO, "!", "%d %s: ", length, presence);
}
while (roster) {
Occupant* occupant = roster->data;
const char* presence_str = string_from_resource_presence(occupant->presence);
theme_item_t presence_colour = theme_main_presence_attrs(presence_str);
win_append(window, presence_colour, "%s", occupant->nick);
if (roster->next) {
win_append(window, THEME_DEFAULT, ", ");
}
roster = g_list_next(roster);
}
win_appendln(window, THEME_ONLINE, "");
}
}
void
mucwin_occupant_offline(ProfMucWin* mucwin, const char* const nick)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_OFFLINE, "!", "<- %s has left the room.", nick);
}
void
mucwin_occupant_kicked(ProfMucWin* mucwin, const char* const nick, const char* const actor,
const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
GString* message = g_string_new(nick);
g_string_append(message, " has been kicked from the room");
if (actor) {
g_string_append(message, " by ");
g_string_append(message, actor);
}
if (reason) {
g_string_append(message, ", reason: ");
g_string_append(message, reason);
}
win_println(window, THEME_OFFLINE, "!", "<- %s", message->str);
g_string_free(message, TRUE);
}
void
mucwin_occupant_banned(ProfMucWin* mucwin, const char* const nick, const char* const actor,
const char* const reason)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
GString* message = g_string_new(nick);
g_string_append(message, " has been banned from the room");
if (actor) {
g_string_append(message, " by ");
g_string_append(message, actor);
}
if (reason) {
g_string_append(message, ", reason: ");
g_string_append(message, reason);
}
win_println(window, THEME_OFFLINE, "!", "<- %s", message->str);
g_string_free(message, TRUE);
}
void
mucwin_occupant_online(ProfMucWin* mucwin, const char* const nick, const char* const role,
const char* const affiliation, const char* const show, const char* const status)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_print(window, THEME_ONLINE, "!", "-> %s has joined the room", nick);
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
if (role) {
win_append(window, THEME_ONLINE, ", role: %s", role);
}
if (affiliation) {
win_append(window, THEME_ONLINE, ", affiliation: %s", affiliation);
}
}
win_appendln(window, THEME_ROOMINFO, "");
}
void
mucwin_occupant_presence(ProfMucWin* mucwin, const char* const nick,
const char* const show, const char* const status)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_show_status_string(window, nick, show, status, NULL, "++", "online");
}
void
mucwin_occupant_nick_change(ProfMucWin* mucwin, const char* const old_nick, const char* const nick)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_THEM, "!", "** %s is now known as %s", old_nick, nick);
}
void
mucwin_nick_change(ProfMucWin* mucwin, const char* const nick)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_ME, "!", "** You are now known as %s", nick);
}
void
mucwin_history(ProfMucWin* mucwin, const ProfMessage* const message)
{
assert(mucwin != NULL);
char* nick = message->from_jid->resourcepart;
const char* const mynick = muc_nick(mucwin->roomjid);
GSList* mentions = get_mentions(prefs_get_boolean(PREF_NOTIFY_MENTION_WHOLE_WORD), prefs_get_boolean(PREF_NOTIFY_MENTION_CASE_SENSITIVE), message->plain, mynick);
GList* triggers = prefs_message_get_triggers(message->plain);
mucwin_incoming_msg(mucwin, message, mentions, triggers, FALSE);
g_slist_free(mentions);
g_list_free_full(triggers, free);
plugins_on_room_history_message(mucwin->roomjid, nick, message->plain, message->timestamp);
}
static void
_mucwin_print_mention(ProfWin* window, const char* const message, const char* const from, const char* const mynick, GSList* mentions, const char* const ch, int flags)
{
int last_pos = 0;
int pos;
GSList* curr = mentions;
glong mynick_len = g_utf8_strlen(mynick, -1);
while (curr) {
pos = GPOINTER_TO_INT(curr->data);
auto_gchar gchar* before_str = g_utf8_substring(message, last_pos, pos);
if (last_pos == 0 && strncmp(before_str, "/me ", 4) == 0) {
win_print_them(window, THEME_ROOMMENTION, ch, flags, "");
win_append_highlight(window, THEME_ROOMMENTION, "*%s ", from);
win_append_highlight(window, THEME_ROOMMENTION, "%s", before_str + 4);
} else {
// print time and nick only once at beginning of the line
if (last_pos == 0) {
win_print_them(window, THEME_ROOMMENTION, ch, flags, from);
}
win_append_highlight(window, THEME_ROOMMENTION, "%s", before_str);
}
auto_gchar gchar* mynick_str = g_utf8_substring(message, pos, pos + mynick_len);
win_append_highlight(window, THEME_ROOMMENTION_TERM, "%s", mynick_str);
last_pos = pos + (int)mynick_len;
curr = g_slist_next(curr);
}
glong message_len = g_utf8_strlen(message, -1);
if (last_pos < message_len) {
// get tail without allocating a new string
gchar* rest = g_utf8_offset_to_pointer(message, last_pos);
win_appendln_highlight(window, THEME_ROOMMENTION, "%s", rest);
} else {
win_appendln_highlight(window, THEME_ROOMMENTION, "");
}
}
gint
_cmp_trigger_weight(gconstpointer a, gconstpointer b)
{
size_t alen = strlen((char*)a);
size_t blen = strlen((char*)b);
if (alen > blen)
return -1;
if (alen < blen)
return 1;
return 0;
}
static void
_mucwin_print_triggers(ProfWin* window, const char* const message, GList* triggers)
{
GList* weighted_triggers = NULL;
GList* curr = triggers;
while (curr) {
weighted_triggers = g_list_insert_sorted(weighted_triggers, curr->data, (GCompareFunc)_cmp_trigger_weight);
curr = g_list_next(curr);
}
auto_gchar gchar* message_lower = g_utf8_strdown(message, -1);
// find earliest trigger in message
int first_trigger_pos = -1;
int first_trigger_len = -1;
curr = weighted_triggers;
while (curr) {
auto_gchar gchar* trigger_lower = g_utf8_strdown(curr->data, -1);
gchar* trigger_ptr = g_strstr_len(message_lower, -1, trigger_lower);
// not found, try next
if (trigger_ptr == NULL) {
curr = g_list_next(curr);
continue;
}
// found, replace vars if earlier than previous
int trigger_pos = (int)(trigger_ptr - message_lower);
if (first_trigger_pos == -1 || trigger_pos < first_trigger_pos) {
first_trigger_pos = trigger_pos;
first_trigger_len = (int)strlen(trigger_lower);
}
curr = g_list_next(curr);
}
g_list_free(weighted_triggers);
// no triggers found
if (first_trigger_pos == -1) {
win_appendln_highlight(window, THEME_ROOMTRIGGER, "%s", message);
} else {
if (first_trigger_pos > 0) {
char message_section[strlen(message) + 1];
int i = 0;
while (i < first_trigger_pos) {
message_section[i] = message[i];
i++;
}
message_section[i] = '\0';
win_append_highlight(window, THEME_ROOMTRIGGER, "%s", message_section);
}
char trigger_section[first_trigger_len + 1];
int i = 0;
while (i < first_trigger_len) {
trigger_section[i] = message[first_trigger_pos + i];
i++;
}
trigger_section[i] = '\0';
if (first_trigger_pos + first_trigger_len < (int)strlen(message)) {
win_append_highlight(window, THEME_ROOMTRIGGER_TERM, "%s", trigger_section);
_mucwin_print_triggers(window, &message[first_trigger_pos + first_trigger_len], triggers);
} else {
win_appendln_highlight(window, THEME_ROOMTRIGGER_TERM, "%s", trigger_section);
}
}
}
void
mucwin_outgoing_msg(ProfMucWin* mucwin, const char* const message, const char* const id, prof_enc_t enc_mode, const char* const replace_id)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
const char* const mynick = muc_nick(mucwin->roomjid);
// displayed message char
auto_char char* ch = get_enc_char(enc_mode, mucwin->message_char);
win_print_outgoing_muc_msg(window, ch, mynick, id, replace_id, message);
// save last id and message for LMC
if (id) {
_mucwin_set_last_message(mucwin, id, message);
}
wins_add_quotes_ac(window, message, FALSE);
}
void
mucwin_incoming_msg(ProfMucWin* mucwin, const ProfMessage* const message, GSList* mentions, GList* triggers, gboolean filter_reflection)
{
assert(mucwin != NULL);
int flags = 0;
if (message->plain == NULL) {
log_error("mucwin_incoming_msg: Message with no plain field from: %s", message->from_jid->fulljid);
return;
}
if (filter_reflection && message_is_sent_by_us(message, TRUE)) {
/* Ignore reflection messages */
return;
}
if (!message->trusted) {
flags |= UNTRUSTED;
}
ProfWin* window = (ProfWin*)mucwin;
const char* const mynick = muc_nick(mucwin->roomjid);
auto_char char* ch = get_enc_char(message->enc, mucwin->message_char);
win_insert_last_read_position_marker((ProfWin*)mucwin, mucwin->roomjid);
wins_add_urls_ac(window, message, FALSE);
wins_add_quotes_ac(window, message->plain, FALSE);
if (g_slist_length(mentions) > 0) {
_mucwin_print_mention(window, message->plain, message->from_jid->resourcepart, mynick, mentions, ch, flags);
} else if (triggers) {
win_print_them(window, THEME_ROOMTRIGGER, ch, flags, message->from_jid->resourcepart);
_mucwin_print_triggers(window, message->plain, triggers);
} else {
win_println_incoming_muc_msg(window, ch, flags, message);
}
}
void
mucwin_requires_config(ProfMucWin* mucwin)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
int num = wins_get_num(window);
win_println(window, THEME_DEFAULT, "-", "");
win_println(window, THEME_ROOMINFO, "!", "Room locked, requires configuration.");
win_println(window, THEME_ROOMINFO, "!", "Use '/room accept' to accept the defaults");
win_println(window, THEME_ROOMINFO, "!", "Use '/room destroy' to cancel and destroy the room");
win_println(window, THEME_ROOMINFO, "!", "Use '/room config' to edit the room configuration");
win_println(window, THEME_DEFAULT, "-", "");
// currently in groupchat window
if (wins_is_current(window)) {
status_bar_active(num, WIN_MUC, mucwin->roomjid);
// not currently on groupchat window
} else {
status_bar_new(num, WIN_MUC, mucwin->roomjid);
}
}
void
mucwin_subject(ProfMucWin* mucwin, const char* const nick, const char* const subject)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if (subject) {
if (nick) {
win_print(window, THEME_ROOMINFO, "!", "*%s has set the room subject: ", nick);
win_appendln(window, THEME_DEFAULT, "%s", subject);
} else {
win_print(window, THEME_ROOMINFO, "!", "Room subject: ");
win_appendln(window, THEME_DEFAULT, "%s", subject);
}
} else {
if (nick) {
win_println(window, THEME_ROOMINFO, "!", "*%s has cleared the room subject.", nick);
} else {
win_println(window, THEME_ROOMINFO, "!", "Room subject cleared");
}
}
}
void
mucwin_kick_error(ProfMucWin* mucwin, const char* const nick, const char* const error)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_ERROR, "!", "Error kicking %s: %s", nick, error);
}
void
mucwin_broadcast(ProfMucWin* mucwin, const char* const message)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
int num = wins_get_num(window);
win_print(window, THEME_ROOMINFO, "!", "Room message: ");
win_appendln(window, THEME_DEFAULT, "%s", message);
// currently in groupchat window
if (wins_is_current(window)) {
status_bar_active(num, WIN_MUC, mucwin->roomjid);
// not currently on groupchat window
} else {
status_bar_new(num, WIN_MUC, mucwin->roomjid);
}
}
void
mucwin_affiliation_list_error(ProfMucWin* mucwin, const char* const affiliation,
const char* const error)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_ERROR, "!", "Error retrieving %s list: %s", affiliation, error);
}
void
mucwin_handle_affiliation_list(ProfMucWin* mucwin, const char* const affiliation, GSList* jids)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if (jids) {
win_println(window, THEME_DEFAULT, "!", "Affiliation: %s", affiliation);
GSList* curr_jid = jids;
while (curr_jid) {
const char* jid = curr_jid->data;
win_println(window, THEME_DEFAULT, "!", " %s", jid);
curr_jid = g_slist_next(curr_jid);
}
win_println(window, THEME_DEFAULT, "!", "");
} else {
win_println(window, THEME_DEFAULT, "!", "No users found with affiliation: %s", affiliation);
win_println(window, THEME_DEFAULT, "!", "");
}
}
void
mucwin_show_affiliation_list(ProfMucWin* mucwin, muc_affiliation_t affiliation)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
GSList* occupants = muc_occupants_by_affiliation(mucwin->roomjid, affiliation);
if (!occupants) {
switch (affiliation) {
case MUC_AFFILIATION_OWNER:
win_println(window, THEME_DEFAULT, "!", "No owners found.");
break;
case MUC_AFFILIATION_ADMIN:
win_println(window, THEME_DEFAULT, "!", "No admins found.");
break;
case MUC_AFFILIATION_MEMBER:
win_println(window, THEME_DEFAULT, "!", "No members found.");
break;
case MUC_AFFILIATION_OUTCAST:
win_println(window, THEME_DEFAULT, "!", "No outcasts found.");
break;
case MUC_AFFILIATION_NONE:
win_println(window, THEME_DEFAULT, "!", "No nones found.");
break;
default:
break;
}
win_println(window, THEME_DEFAULT, "-", "");
} else {
switch (affiliation) {
case MUC_AFFILIATION_OWNER:
win_println(window, THEME_DEFAULT, "!", "Owners:");
break;
case MUC_AFFILIATION_ADMIN:
win_println(window, THEME_DEFAULT, "!", "Admins:");
break;
case MUC_AFFILIATION_MEMBER:
win_println(window, THEME_DEFAULT, "!", "Members:");
break;
case MUC_AFFILIATION_OUTCAST:
win_println(window, THEME_DEFAULT, "!", "Outcasts:");
break;
case MUC_AFFILIATION_NONE:
win_println(window, THEME_DEFAULT, "!", "Nones:");
break;
default:
break;
}
GSList* curr_occupant = occupants;
while (curr_occupant) {
Occupant* occupant = curr_occupant->data;
if (occupant->affiliation == affiliation) {
if (occupant->jid) {
win_println(window, THEME_DEFAULT, "!", " %s (%s)", occupant->nick, occupant->jid);
} else {
win_println(window, THEME_DEFAULT, "!", " %s", occupant->nick);
}
}
curr_occupant = g_slist_next(curr_occupant);
}
win_println(window, THEME_DEFAULT, "-", "");
}
}
void
mucwin_role_list_error(ProfMucWin* mucwin, const char* const role, const char* const error)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_ERROR, "!", "Error retrieving %s list: %s", role, error);
}
void
mucwin_handle_role_list(ProfMucWin* mucwin, const char* const role, GSList* nicks)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if (nicks) {
win_println(window, THEME_DEFAULT, "!", "Role: %s", role);
GSList* curr_nick = nicks;
while (curr_nick) {
const char* nick = curr_nick->data;
Occupant* occupant = muc_roster_item(mucwin->roomjid, nick);
if (occupant) {
if (occupant->jid) {
win_println(window, THEME_DEFAULT, "!", " %s (%s)", nick, occupant->jid);
} else {
win_println(window, THEME_DEFAULT, "!", " %s", nick);
}
} else {
win_println(window, THEME_DEFAULT, "!", " %s", nick);
}
curr_nick = g_slist_next(curr_nick);
}
win_println(window, THEME_DEFAULT, "!", "");
} else {
win_println(window, THEME_DEFAULT, "!", "No occupants found with role: %s", role);
win_println(window, THEME_DEFAULT, "!", "");
}
}
void
mucwin_show_role_list(ProfMucWin* mucwin, muc_role_t role)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
GSList* occupants = muc_occupants_by_role(mucwin->roomjid, role);
if (!occupants) {
switch (role) {
case MUC_ROLE_MODERATOR:
win_println(window, THEME_DEFAULT, "!", "No moderators found.");
break;
case MUC_ROLE_PARTICIPANT:
win_println(window, THEME_DEFAULT, "!", "No participants found.");
break;
case MUC_ROLE_VISITOR:
win_println(window, THEME_DEFAULT, "!", "No visitors found.");
break;
default:
break;
}
win_println(window, THEME_DEFAULT, "-", "");
} else {
switch (role) {
case MUC_ROLE_MODERATOR:
win_println(window, THEME_DEFAULT, "!", "Moderators:");
break;
case MUC_ROLE_PARTICIPANT:
win_println(window, THEME_DEFAULT, "!", "Participants:");
break;
case MUC_ROLE_VISITOR:
win_println(window, THEME_DEFAULT, "!", "Visitors:");
break;
default:
break;
}
GSList* curr_occupant = occupants;
while (curr_occupant) {
Occupant* occupant = curr_occupant->data;
if (occupant->role == role) {
if (occupant->jid) {
win_println(window, THEME_DEFAULT, "!", " %s (%s)", occupant->nick, occupant->jid);
} else {
win_println(window, THEME_DEFAULT, "!", " %s", occupant->nick);
}
}
curr_occupant = g_slist_next(curr_occupant);
}
win_println(window, THEME_DEFAULT, "-", "");
}
}
void
mucwin_affiliation_set_error(ProfMucWin* mucwin, const char* const jid, const char* const affiliation,
const char* const error)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_ERROR, "!", "Error setting %s affiliation for %s: %s", affiliation, jid, error);
}
void
mucwin_role_set_error(ProfMucWin* mucwin, const char* const nick, const char* const role,
const char* const error)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_ERROR, "!", "Error setting %s role for %s: %s", role, nick, error);
}
void
mucwin_info(ProfMucWin* mucwin)
{
assert(mucwin != NULL);
char* role = muc_role_str(mucwin->roomjid);
char* affiliation = muc_affiliation_str(mucwin->roomjid);
ProfWin* window = (ProfWin*)mucwin;
win_println(window, THEME_DEFAULT, "!", "Room: %s", mucwin->roomjid);
win_println(window, THEME_DEFAULT, "!", "Affiliation: %s", affiliation);
win_println(window, THEME_DEFAULT, "!", "Role: %s", role);
win_println(window, THEME_DEFAULT, "-", "");
}
void
mucwin_update_occupants(ProfMucWin* mucwin)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if (win_has_active_subwin(window)) {
occupantswin_occupants(mucwin->roomjid);
}
}
void
mucwin_show_occupants(ProfMucWin* mucwin)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if (!win_has_active_subwin(window)) {
wins_show_subwin(window);
occupantswin_occupants(mucwin->roomjid);
}
}
void
mucwin_hide_occupants(ProfMucWin* mucwin)
{
assert(mucwin != NULL);
ProfWin* window = (ProfWin*)mucwin;
if (win_has_active_subwin(window)) {
wins_hide_subwin(window);
}
}
gchar*
mucwin_get_string(ProfMucWin* mucwin)
{
assert(mucwin != NULL);
if (mucwin->unread > 0) {
return g_strdup_printf("Room %s, %d unread", mucwin->roomjid, mucwin->unread);
} else {
return g_strdup_printf("Room %s", mucwin->roomjid);
}
}
void
mucwin_set_enctext(ProfMucWin* mucwin, const char* const enctext)
{
if (mucwin->enctext) {
free(mucwin->enctext);
}
mucwin->enctext = strdup(enctext);
}
void
mucwin_unset_enctext(ProfMucWin* mucwin)
{
if (mucwin->enctext) {
free(mucwin->enctext);
mucwin->enctext = NULL;
}
}
void
mucwin_set_message_char(ProfMucWin* mucwin, const char* const ch)
{
if (mucwin->message_char) {
free(mucwin->message_char);
}
mucwin->message_char = strdup(ch);
}
void
mucwin_unset_message_char(ProfMucWin* mucwin)
{
if (mucwin->message_char) {
free(mucwin->message_char);
mucwin->message_char = NULL;
}
}
static void
_mucwin_set_last_message(ProfMucWin* mucwin, const char* const id, const char* const message)
{
free(mucwin->last_message);
mucwin->last_message = strdup(message);
free(mucwin->last_msg_id);
mucwin->last_msg_id = strdup(id);
}
gchar*
mucwin_generate_title(const gchar* const muc_jid, const preference_t pref)
{
auto_gchar gchar* pref_val = prefs_get_string(pref);
if (g_strcmp0(pref_val, "name") == 0) {
const ProfMucWin* mucwin = wins_get_muc(muc_jid);
if (mucwin && mucwin->room_name) {
return g_strdup(mucwin->room_name);
}
} else if (g_strcmp0(pref_val, "bookmark") == 0) {
const Bookmark* bookmark = bookmark_get_by_jid(muc_jid);
if (bookmark && bookmark->name) {
return g_strdup(bookmark->name);
}
}
auto_gchar gchar* roster_room_by = prefs_get_string(PREF_ROSTER_ROOMS_BY);
if (g_strcmp0(pref_val, "localpart") == 0 || (g_strcmp0(roster_room_by, "service") == 0 && pref == PREF_ROSTER_ROOMS_TITLE)) {
auto_jid Jid* jid = jid_create(muc_jid);
if (jid && jid->localpart) {
return g_strdup(jid->localpart);
}
}
return g_strdup(muc_jid);
}
gboolean
mucwin_set_room_name(const gchar* const muc_jid, const gchar* const new_room_name)
{
ProfMucWin* mucwin = wins_get_muc(muc_jid);
if (!mucwin) {
log_error("No window found with this JID: '%s'", muc_jid);
return FALSE;
}
free(mucwin->room_name);
if (new_room_name) {
mucwin->room_name = strdup(new_room_name);
} else {
mucwin->room_name = NULL;
}
return TRUE;
}