2015-11-05 18:20:19 -05:00
|
|
|
/*
|
|
|
|
* privwin.c
|
|
|
|
*
|
2018-01-21 10:00:02 -05:00
|
|
|
* Copyright (C) 2012 - 2018 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
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"
|
|
|
|
#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
|
2015-11-08 17:08:29 -05:00
|
|
|
privwin_incoming_msg(ProfPrivateWin *privatewin, const char *const message, GDateTime *timestamp)
|
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
|
|
|
|
|
|
|
ProfWin *window = (ProfWin*) privatewin;
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
|
2015-12-20 18:26:05 -05:00
|
|
|
Jid *jidp = jid_create(privatewin->fulljid);
|
|
|
|
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)) {
|
2016-10-15 15:09:14 -04:00
|
|
|
win_print_incoming(window, timestamp, jidp->resourcepart, message, PROF_MSG_PLAIN);
|
2015-11-05 18:20:19 -05:00
|
|
|
title_bar_set_typing(FALSE);
|
2018-03-08 14:55:17 -05:00
|
|
|
status_bar_active(num, window->tab_name);
|
2015-11-05 18:20:19 -05:00
|
|
|
|
|
|
|
// not currently viewing chat window with sender
|
|
|
|
} else {
|
2018-03-08 14:55:17 -05:00
|
|
|
status_bar_new(num, window->tab_name);
|
2016-02-03 18:39:20 -05:00
|
|
|
cons_show_incoming_private_message(jidp->resourcepart, jidp->barejid, num, privatewin->unread);
|
2016-10-15 15:09:14 -04:00
|
|
|
win_print_incoming(window, timestamp, jidp->resourcepart, message, PROF_MSG_PLAIN);
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
|
|
beep();
|
|
|
|
}
|
|
|
|
|
2016-02-03 19:41:53 -05:00
|
|
|
if (notify) {
|
|
|
|
notify_message(jidp->resourcepart, num, message);
|
2015-11-05 18:20:19 -05:00
|
|
|
}
|
|
|
|
|
2015-12-20 18:26:05 -05:00
|
|
|
jid_destroy(jidp);
|
2015-11-05 18:20:19 -05:00
|
|
|
}
|
|
|
|
|
2015-11-05 18:30:51 -05:00
|
|
|
void
|
2015-11-08 17:08:29 -05: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);
|
|
|
|
|
2016-10-15 15:07:33 -04:00
|
|
|
win_print_outgoing((ProfWin*)privwin, '-', "%s", 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
|
|
|
|
privwin_message_occupant_offline(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
2016-10-15 13:29:02 -04: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
|
|
|
|
privwin_message_left_room(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
2016-10-15 13:29:02 -04: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
|
|
|
|
privwin_occupant_offline(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = TRUE;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, '-', "<- %s has left the room.", jidp->resourcepart);
|
2016-02-02 16:52:13 -05:00
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
2016-02-02 17:25:55 -05:00
|
|
|
void
|
|
|
|
privwin_occupant_kicked(ProfPrivateWin *privwin, const char *const actor, const char *const reason)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = TRUE;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
|
|
|
GString *message = g_string_new(jidp->resourcepart);
|
|
|
|
jid_destroy(jidp);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, '!', "<- %s", message->str);
|
2016-02-02 17:25:55 -05:00
|
|
|
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;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
|
|
|
GString *message = g_string_new(jidp->resourcepart);
|
|
|
|
jid_destroy(jidp);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04: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
|
|
|
|
privwin_occupant_online(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->occupant_offline = FALSE;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_ONLINE, '-', "-- %s has joined the room.", jidp->resourcepart);
|
2016-02-02 16:52:13 -05:00
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
2016-02-02 19:11:38 -05:00
|
|
|
void
|
|
|
|
privwin_room_destroyed(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = TRUE;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, '!', "-- %s has been destroyed.", jidp->barejid);
|
2016-02-02 19:11:38 -05:00
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
privwin_room_joined(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = FALSE;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, '!', "-- You have joined %s.", jidp->barejid);
|
2016-02-02 19:11:38 -05:00
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
privwin_room_left(ProfPrivateWin *privwin)
|
|
|
|
{
|
|
|
|
assert(privwin != NULL);
|
|
|
|
|
|
|
|
privwin->room_left = TRUE;
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, '!', "-- You have left %s.", jidp->barejid);
|
2016-02-02 19:11:38 -05:00
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 ");
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
|
|
|
g_string_append(message, jidp->barejid);
|
|
|
|
jid_destroy(jidp);
|
|
|
|
if (actor) {
|
|
|
|
g_string_append(message, " by ");
|
|
|
|
g_string_append(message, actor);
|
|
|
|
}
|
|
|
|
if (reason) {
|
|
|
|
g_string_append(message, ", reason: ");
|
|
|
|
g_string_append(message, reason);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04:00
|
|
|
win_println((ProfWin*)privwin, THEME_OFFLINE, '!', "<- %s", message->str);
|
2016-02-02 19:11:38 -05:00
|
|
|
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 ");
|
|
|
|
Jid *jidp = jid_create(privwin->fulljid);
|
|
|
|
g_string_append(message, jidp->barejid);
|
|
|
|
jid_destroy(jidp);
|
|
|
|
if (actor) {
|
|
|
|
g_string_append(message, " by ");
|
|
|
|
g_string_append(message, actor);
|
|
|
|
}
|
|
|
|
if (reason) {
|
|
|
|
g_string_append(message, ", reason: ");
|
|
|
|
g_string_append(message, reason);
|
|
|
|
}
|
|
|
|
|
2016-10-15 13:29:02 -04: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*
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *resstr = res->str;
|
|
|
|
g_string_free(res, FALSE);
|
|
|
|
|
|
|
|
return resstr;
|
|
|
|
}
|