2015-11-05 18:20:19 -05:00
|
|
|
/*
|
|
|
|
* privwin.c
|
2019-11-13 06:11:05 -05:00
|
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
2015-11-05 18:20:19 -05:00
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
2015-11-05 18:20:19 -05:00
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2015-11-05 18:20:19 -05:00
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-03-26 14:51:46 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2015-11-08 17:01:51 -05:00
|
|
|
#include <assert.h>
|
2015-11-05 18:20:19 -05:00
|
|
|
#include <glib.h>
|
2015-11-19 19:34:03 -05:00
|
|
|
#include <stdlib.h>
|
2015-11-05 18:20:19 -05:00
|
|
|
|
2022-07-04 10:45:18 -04:00
|
|
|
#include "log.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "config/preferences.h"
|
2015-11-05 18:20:19 -05:00
|
|
|
#include "ui/win_types.h"
|
|
|
|
#include "ui/window.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "ui/titlebar.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "ui/window_list.h"
|
2015-11-05 18:20:19 -05:00
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_incoming_msg(ProfPrivateWin* privatewin, ProfMessage* message)
|
2015-11-05 18:20:19 -05:00
|
|
|
{
|
2015-11-08 17:01:51 -05:00
|
|
|
assert(privatewin != NULL);
|
2015-11-05 18:20:19 -05:00
|
|
|
|
2022-07-04 10:45:18 -04:00
|
|
|
if (message->plain == NULL) {
|
|
|
|
log_error("privwin_incoming_msg: Message with no plain field from: %s", message->from_jid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
ProfWin* window = (ProfWin*)privatewin;
|
2015-11-05 18:20:19 -05:00
|
|
|
int num = wins_get_num(window);
|
|
|
|
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privatewin->fulljid);
|
2015-12-20 18:26:05 -05:00
|
|
|
if (jidp == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
2015-11-05 18:20:19 -05:00
|
|
|
|
2015-11-25 17:08:33 -05:00
|
|
|
gboolean is_current = wins_is_current(window);
|
2016-02-03 19:21:38 -05:00
|
|
|
gboolean notify = prefs_do_chat_notify(is_current);
|
2015-11-25 17:08:33 -05:00
|
|
|
|
2015-11-05 18:20:19 -05:00
|
|
|
// currently viewing chat window with sender
|
|
|
|
if (wins_is_current(window)) {
|
2019-06-17 00:23:40 -04:00
|
|
|
win_print_incoming(window, jidp->resourcepart, message);
|
2015-11-05 18:20:19 -05:00
|
|
|
title_bar_set_typing(FALSE);
|
2018-03-09 16:11:59 -05:00
|
|
|
status_bar_active(num, WIN_PRIVATE, privatewin->fulljid);
|
2015-11-05 18:20:19 -05:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
// not currently viewing chat window with sender
|
2015-11-05 18:20:19 -05:00
|
|
|
} else {
|
2018-03-09 16:11:59 -05:00
|
|
|
status_bar_new(num, WIN_PRIVATE, privatewin->fulljid);
|
2020-07-09 10:11:06 -04:00
|
|
|
cons_show_incoming_private_message(jidp->resourcepart, jidp->barejid, num, privatewin->unread, window);
|
2019-12-13 07:13:02 -05:00
|
|
|
win_insert_last_read_position_marker((ProfWin*)privatewin, privatewin->fulljid);
|
2019-06-17 00:23:40 -04:00
|
|
|
win_print_incoming(window, jidp->resourcepart, message);
|
2016-02-03 18:39:20 -05:00
|
|
|
|
2015-11-05 18:20:19 -05:00
|
|
|
privatewin->unread++;
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_FLASH)) {
|
|
|
|
flash();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-13 16:40:58 -05:00
|
|
|
wins_add_urls_ac(window, message, FALSE);
|
|
|
|
wins_add_quotes_ac(window, message->plain, TRUE);
|
2020-05-20 03:48:42 -04:00
|
|
|
|
2015-11-05 18:20:19 -05:00
|
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
|
|
beep();
|
|
|
|
}
|
|
|
|
|
2016-02-03 19:41:53 -05:00
|
|
|
if (notify) {
|
2019-06-17 00:23:40 -04:00
|
|
|
notify_message(jidp->resourcepart, num, message->plain);
|
2015-11-05 18:20:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-05 18:30:51 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_outgoing_msg(ProfPrivateWin* privwin, const char* const message)
|
2015-11-05 18:30:51 -05:00
|
|
|
{
|
2015-11-08 17:01:51 -05:00
|
|
|
assert(privwin != NULL);
|
|
|
|
|
2022-03-20 18:10:07 -04:00
|
|
|
ProfWin* window = (ProfWin*)privwin;
|
2023-02-13 16:40:58 -05:00
|
|
|
wins_add_quotes_ac(window, message, FALSE);
|
2020-07-07 08:18:57 -04:00
|
|
|
win_print_outgoing((ProfWin*)privwin, "-", NULL, NULL, message);
|
2015-11-05 18:30:51 -05:00
|
|
|
}
|
2015-11-29 18:58:52 -05:00
|
|
|
|
2016-02-02 16:52:13 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_message_occupant_offline(ProfPrivateWin* privwin)
|
2016-02-02 16:52:13 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_ERROR, "-", "Unable to send message, occupant no longer present in room.");
|
2016-02-02 16:52:13 -05:00
|
|
|
}
|
|
|
|
|
2016-02-02 19:11:38 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_message_left_room(ProfPrivateWin* privwin)
|
2016-02-02 19:11:38 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_ERROR, "-", "Unable to send message, you are no longer present in room.");
|
2016-02-02 19:11:38 -05:00
|
|
|
}
|
|
|
|
|
2016-02-02 16:52:13 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_occupant_offline(ProfPrivateWin* privwin)
|
2016-02-02 16:52:13 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = TRUE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "-", "<- %s has left the room.", jidp->resourcepart);
|
2016-02-02 16:52:13 -05:00
|
|
|
}
|
|
|
|
|
2016-02-02 17:25:55 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_occupant_kicked(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
2016-02-02 17:25:55 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = TRUE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* message = g_string_new(jidp->resourcepart);
|
2016-02-02 17:25:55 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
2016-02-02 17:25:55 -05:00
|
|
|
g_string_free(message, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_occupant_banned(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
2016-02-02 17:25:55 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = TRUE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* message = g_string_new(jidp->resourcepart);
|
2016-02-02 17:25:55 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
2016-02-02 17:25:55 -05:00
|
|
|
g_string_free(message, TRUE);
|
|
|
|
}
|
|
|
|
|
2016-02-02 16:52:13 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_occupant_online(ProfPrivateWin* privwin)
|
2016-02-02 16:52:13 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = FALSE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_ONLINE, "-", "-- %s has joined the room.", jidp->resourcepart);
|
2016-02-02 16:52:13 -05:00
|
|
|
}
|
|
|
|
|
2016-02-02 19:11:38 -05:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_room_destroyed(ProfPrivateWin* privwin)
|
2016-02-02 19:11:38 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = TRUE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "-- %s has been destroyed.", jidp->barejid);
|
2016-02-02 19:11:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_room_joined(ProfPrivateWin* privwin)
|
2016-02-02 19:11:38 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = FALSE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "-- You have joined %s.", jidp->barejid);
|
2016-02-02 19:11:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_room_left(ProfPrivateWin* privwin)
|
2016-02-02 19:11:38 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = TRUE;
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "-- You have left %s.", jidp->barejid);
|
2016-02-02 19:11:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_room_kicked(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
2016-02-02 19:11:38 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = TRUE;
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* message = g_string_new("Kicked from ");
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2016-02-02 19:11:38 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
2016-02-02 19:11:38 -05:00
|
|
|
g_string_free(message, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_room_banned(ProfPrivateWin* privwin, const char* const actor, const char* const reason)
|
2016-02-02 19:11:38 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = TRUE;
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* message = g_string_new("Banned from ");
|
2023-07-13 09:11:30 -04:00
|
|
|
auto_jid Jid* jidp = jid_create(privwin->fulljid);
|
2016-02-02 19:11:38 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-02-20 12:11:08 -05:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, "!", "<- %s", message->str);
|
2016-02-02 19:11:38 -05:00
|
|
|
g_string_free(message, TRUE);
|
|
|
|
}
|
|
|
|
|
2015-11-29 18:58:52 -05:00
|
|
|
char*
|
2020-07-07 08:18:57 -04:00
|
|
|
privwin_get_string(ProfPrivateWin* privwin)
|
2015-11-29 18:58:52 -05:00
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GString* res = g_string_new("Private ");
|
2015-11-29 18:58:52 -05:00
|
|
|
g_string_append(res, privwin->fulljid);
|
|
|
|
|
|
|
|
if (privwin->unread > 0) {
|
|
|
|
g_string_append_printf(res, ", %d unread", privwin->unread);
|
|
|
|
}
|
|
|
|
|
2023-03-17 18:58:33 -04:00
|
|
|
return g_string_free(res, FALSE);
|
2015-11-29 18:58:52 -05:00
|
|
|
}
|