mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-19 00:46:21 +00:00
Guard against re-entrant editor launches, abort editor on Ctrl-Z, and centralize suspend-aware redraws through prof_doupdate() to prevent terminal corruption when SIGTSTP is received while editor is active. Removes SIGUSR1 editor escape in favor of standard pkill <editor> recovery.
254 lines
6.9 KiB
C
254 lines
6.9 KiB
C
/*
|
|
* privwin.c
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
|
*
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later WITH OpenSSL-exception
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <assert.h>
|
|
#include <glib.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "log.h"
|
|
#include "config/preferences.h"
|
|
#include "ui/win_types.h"
|
|
#include "ui/window.h"
|
|
#include "ui/titlebar.h"
|
|
#include "ui/window_list.h"
|
|
|
|
void
|
|
privwin_incoming_msg(ProfPrivateWin* privatewin, ProfMessage* message)
|
|
{
|
|
assert(privatewin != NULL);
|
|
|
|
if (message->plain == NULL) {
|
|
log_error("privwin_incoming_msg: Message with no plain field from: %s", message->from_jid->fulljid);
|
|
return;
|
|
}
|
|
|
|
ProfWin* window = (ProfWin*)privatewin;
|
|
int num = wins_get_num(window);
|
|
|
|
auto_jid Jid* jidp = jid_create(privatewin->fulljid);
|
|
if (jidp == NULL) {
|
|
return;
|
|
}
|
|
|
|
gboolean is_current = wins_is_current(window);
|
|
gboolean notify = prefs_do_chat_notify(is_current);
|
|
|
|
// currently viewing chat window with sender
|
|
if (wins_is_current(window)) {
|
|
win_print_incoming(window, jidp->resourcepart, message);
|
|
title_bar_set_typing(FALSE);
|
|
status_bar_active(num, WIN_PRIVATE, privatewin->fulljid);
|
|
|
|
// not currently viewing chat window with sender
|
|
} else {
|
|
status_bar_new(num, WIN_PRIVATE, privatewin->fulljid);
|
|
cons_show_incoming_private_message(jidp->resourcepart, jidp->barejid, num, privatewin->unread, window);
|
|
win_insert_last_read_position_marker((ProfWin*)privatewin, privatewin->fulljid);
|
|
win_print_incoming(window, jidp->resourcepart, message);
|
|
|
|
privatewin->unread++;
|
|
|
|
if (prefs_get_boolean(PREF_FLASH)) {
|
|
ui_flash();
|
|
}
|
|
}
|
|
|
|
wins_add_urls_ac(window, message, FALSE);
|
|
wins_add_quotes_ac(window, message->plain, TRUE);
|
|
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
ui_beep();
|
|
}
|
|
|
|
if (notify) {
|
|
notify_message(jidp->resourcepart, num, message->plain);
|
|
}
|
|
}
|
|
|
|
void
|
|
privwin_outgoing_msg(ProfPrivateWin* privwin, const char* const message)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
ProfWin* window = (ProfWin*)privwin;
|
|
wins_add_quotes_ac(window, message, FALSE);
|
|
win_print_outgoing((ProfWin*)privwin, "-", NULL, NULL, message);
|
|
}
|
|
|
|
void
|
|
privwin_message_occupant_offline(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
win_println((ProfWin*)privwin, THEME_ERROR, "-", "Unable to send message, occupant no longer present in room.");
|
|
}
|
|
|
|
void
|
|
privwin_message_left_room(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
win_println((ProfWin*)privwin, THEME_ERROR, "-", "Unable to send message, you are no longer present in room.");
|
|
}
|
|
|
|
void
|
|
privwin_occupant_offline(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->occupant_offline = TRUE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "-", "<- %s has left the room.", jidp->resourcepart);
|
|
}
|
|
|
|
void
|
|
privwin_occupant_kicked(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->occupant_offline = TRUE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
GString* message = g_string_new(jidp->resourcepart);
|
|
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((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
|
|
void
|
|
privwin_occupant_banned(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->occupant_offline = TRUE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
GString* message = g_string_new(jidp->resourcepart);
|
|
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((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
|
|
void
|
|
privwin_occupant_online(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->occupant_offline = FALSE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
win_println((ProfWin*)privwin, THEME_ONLINE, "-", "-- %s has joined the room.", jidp->resourcepart);
|
|
}
|
|
|
|
void
|
|
privwin_room_destroyed(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->room_left = TRUE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "-- %s has been destroyed.", jidp->barejid);
|
|
}
|
|
|
|
void
|
|
privwin_room_joined(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->room_left = FALSE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "-- You have joined %s.", jidp->barejid);
|
|
}
|
|
|
|
void
|
|
privwin_room_left(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->room_left = TRUE;
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "-- You have left %s.", jidp->barejid);
|
|
}
|
|
|
|
void
|
|
privwin_room_kicked(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->room_left = TRUE;
|
|
GString* message = g_string_new("Kicked from ");
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
g_string_append(message, jidp->barejid);
|
|
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((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
|
|
void
|
|
privwin_room_banned(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
privwin->room_left = TRUE;
|
|
GString* message = g_string_new("Banned from ");
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
|
g_string_append(message, jidp->barejid);
|
|
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((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
|
|
gchar*
|
|
privwin_get_string(ProfPrivateWin* privwin)
|
|
{
|
|
assert(privwin != NULL);
|
|
|
|
GString* res = g_string_new("Private ");
|
|
g_string_append(res, privwin->fulljid);
|
|
|
|
if (privwin->unread > 0) {
|
|
g_string_append_printf(res, ", %d unread", privwin->unread);
|
|
}
|
|
|
|
return g_string_free(res, FALSE);
|
|
}
|