mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
2998 lines
91 KiB
C
2998 lines
91 KiB
C
/*
|
|
* core.c
|
|
*
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
|
*
|
|
* 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
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef HAVE_GIT_VERSION
|
|
#include "gitversion.h"
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#ifdef HAVE_LIBXSS
|
|
#include <X11/extensions/scrnsaver.h>
|
|
#endif
|
|
#include <glib.h>
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
#include <ncursesw/ncurses.h>
|
|
#elif HAVE_NCURSES_H
|
|
#include <ncurses.h>
|
|
#endif
|
|
|
|
#include "chat_session.h"
|
|
#include "command/command.h"
|
|
#include "common.h"
|
|
#include "config/preferences.h"
|
|
#include "config/theme.h"
|
|
#include "contact.h"
|
|
#include "roster_list.h"
|
|
#include "jid.h"
|
|
#include "log.h"
|
|
#include "muc.h"
|
|
#ifdef HAVE_LIBOTR
|
|
#include "otr/otr.h"
|
|
#endif
|
|
#include "ui/ui.h"
|
|
#include "ui/titlebar.h"
|
|
#include "ui/statusbar.h"
|
|
#include "ui/inputwin.h"
|
|
#include "ui/window.h"
|
|
#include "ui/windows.h"
|
|
#include "xmpp/xmpp.h"
|
|
|
|
static char *win_title;
|
|
|
|
#ifdef HAVE_LIBXSS
|
|
static Display *display;
|
|
#endif
|
|
|
|
static GTimer *ui_idle_time;
|
|
|
|
static void _win_handle_switch(const wint_t ch);
|
|
static void _win_show_history(int win_index, const char * const contact);
|
|
static void _ui_draw_term_title(void);
|
|
|
|
void
|
|
ui_init(void)
|
|
{
|
|
log_info("Initialising UI");
|
|
initscr();
|
|
raw();
|
|
keypad(stdscr, TRUE);
|
|
if (prefs_get_boolean(PREF_MOUSE)) {
|
|
mousemask(ALL_MOUSE_EVENTS, NULL);
|
|
mouseinterval(5);
|
|
}
|
|
ui_load_colours();
|
|
refresh();
|
|
create_title_bar();
|
|
create_status_bar();
|
|
status_bar_active(1);
|
|
create_input_window();
|
|
wins_init();
|
|
notifier_initialise();
|
|
cons_about();
|
|
#ifdef HAVE_LIBXSS
|
|
display = XOpenDisplay(0);
|
|
#endif
|
|
ui_idle_time = g_timer_new();
|
|
ProfWin *window = wins_get_current();
|
|
win_update_virtual(window);
|
|
}
|
|
|
|
void
|
|
ui_update(void)
|
|
{
|
|
ProfWin *current = wins_get_current();
|
|
if (current->layout->paged == 0) {
|
|
win_move_to_end(current);
|
|
}
|
|
|
|
win_update_virtual(current);
|
|
|
|
if (prefs_get_boolean(PREF_TITLEBAR_SHOW)) {
|
|
_ui_draw_term_title();
|
|
}
|
|
title_bar_update_virtual();
|
|
status_bar_update_virtual();
|
|
inp_put_back();
|
|
doupdate();
|
|
}
|
|
|
|
void
|
|
ui_about(void)
|
|
{
|
|
cons_show("");
|
|
cons_about();
|
|
}
|
|
|
|
unsigned long
|
|
ui_get_idle_time(void)
|
|
{
|
|
// if compiled with libxss, get the x sessions idle time
|
|
#ifdef HAVE_LIBXSS
|
|
XScreenSaverInfo *info = XScreenSaverAllocInfo();
|
|
if (info != NULL && display != NULL) {
|
|
XScreenSaverQueryInfo(display, DefaultRootWindow(display), info);
|
|
unsigned long result = info->idle;
|
|
XFree(info);
|
|
return result;
|
|
}
|
|
if (info != NULL) {
|
|
XFree(info);
|
|
}
|
|
// if no libxss or xss idle time failed, use profanity idle time
|
|
#endif
|
|
gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time, NULL);
|
|
unsigned long ms_elapsed = seconds_elapsed * 1000.0;
|
|
return ms_elapsed;
|
|
}
|
|
|
|
void
|
|
ui_reset_idle_time(void)
|
|
{
|
|
g_timer_start(ui_idle_time);
|
|
}
|
|
|
|
void
|
|
ui_close(void)
|
|
{
|
|
notifier_uninit();
|
|
wins_destroy();
|
|
endwin();
|
|
}
|
|
|
|
gboolean
|
|
ui_get_char(char *input, int *size)
|
|
{
|
|
int result = 0;
|
|
wint_t ch = inp_get_char(input, size, &result);
|
|
_win_handle_switch(ch);
|
|
ProfWin *current = wins_get_current();
|
|
win_handle_page(current, ch, result);
|
|
if (ch == KEY_RESIZE) {
|
|
ui_resize();
|
|
}
|
|
|
|
if (ch != ERR && result != ERR) {
|
|
ui_reset_idle_time();
|
|
ui_input_nonblocking(TRUE);
|
|
} else {
|
|
ui_input_nonblocking(FALSE);
|
|
}
|
|
|
|
return (ch != '\n');
|
|
}
|
|
|
|
void
|
|
ui_input_clear(void)
|
|
{
|
|
inp_win_reset();
|
|
}
|
|
|
|
void
|
|
ui_replace_input(char *input, const char * const new_input, int *size)
|
|
{
|
|
inp_replace_input(input, new_input, size);
|
|
}
|
|
|
|
void
|
|
ui_input_nonblocking(gboolean reset)
|
|
{
|
|
static gint timeout = 0;
|
|
static gint no_input_count = 0;
|
|
|
|
if (! prefs_get_boolean(PREF_INPBLOCK_DYNAMIC)) {
|
|
inp_non_block(prefs_get_inpblock());
|
|
return;
|
|
}
|
|
|
|
if (reset) {
|
|
timeout = 0;
|
|
no_input_count = 0;
|
|
}
|
|
|
|
if (timeout < prefs_get_inpblock()) {
|
|
no_input_count++;
|
|
|
|
if (no_input_count % 10 == 0) {
|
|
timeout += no_input_count;
|
|
|
|
if (timeout > prefs_get_inpblock()) {
|
|
timeout = prefs_get_inpblock();
|
|
}
|
|
}
|
|
}
|
|
|
|
inp_non_block(timeout);
|
|
}
|
|
|
|
void
|
|
ui_resize(void)
|
|
{
|
|
log_info("Resizing UI");
|
|
erase();
|
|
refresh();
|
|
title_bar_resize();
|
|
wins_resize_all();
|
|
status_bar_resize();
|
|
inp_win_resize();
|
|
ProfWin *window = wins_get_current();
|
|
win_update_virtual(window);
|
|
}
|
|
|
|
void
|
|
ui_redraw(void)
|
|
{
|
|
title_bar_resize();
|
|
wins_resize_all();
|
|
status_bar_resize();
|
|
inp_win_resize();
|
|
}
|
|
|
|
void
|
|
ui_load_colours(void)
|
|
{
|
|
if (has_colors()) {
|
|
use_default_colors();
|
|
start_color();
|
|
theme_init_colours();
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
ui_win_exists(int index)
|
|
{
|
|
ProfWin *window = wins_get_by_num(index);
|
|
return (window != NULL);
|
|
}
|
|
|
|
gboolean
|
|
ui_xmlconsole_exists(void)
|
|
{
|
|
ProfXMLWin *xmlwin = wins_get_xmlconsole();
|
|
if (xmlwin) {
|
|
return TRUE;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_stanza(const char * const msg)
|
|
{
|
|
if (ui_xmlconsole_exists()) {
|
|
ProfXMLWin *xmlconsole = wins_get_xmlconsole();
|
|
ProfWin *window = (ProfWin*) xmlconsole;
|
|
|
|
if (g_str_has_prefix(msg, "SENT:")) {
|
|
win_save_print(window, '-', NULL, 0, 0, "", "SENT:");
|
|
win_save_print(window, '-', NULL, 0, THEME_ONLINE, "", &msg[6]);
|
|
win_save_print(window, '-', NULL, 0, THEME_ONLINE, "", "");
|
|
} else if (g_str_has_prefix(msg, "RECV:")) {
|
|
win_save_print(window, '-', NULL, 0, 0, "", "RECV:");
|
|
win_save_print(window, '-', NULL, 0, THEME_AWAY, "", &msg[6]);
|
|
win_save_print(window, '-', NULL, 0, THEME_AWAY, "", "");
|
|
}
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
ui_chat_win_exists(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
return (chatwin != NULL);
|
|
}
|
|
|
|
void
|
|
ui_contact_typing(const char * const barejid, const char * const resource)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
ProfWin *window = (ProfWin*) chatwin;
|
|
ChatSession *session = chat_session_get(barejid);
|
|
|
|
if (prefs_get_boolean(PREF_INTYPE)) {
|
|
// no chat window for user
|
|
if (chatwin == NULL) {
|
|
cons_show_typing(barejid);
|
|
|
|
// have chat window but not currently in it
|
|
} else if (!wins_is_current(window)) {
|
|
cons_show_typing(barejid);
|
|
|
|
// in chat window with user, no session or session with resource
|
|
} else if (!session || (session && g_strcmp0(session->resource, resource) == 0)) {
|
|
title_bar_set_typing(TRUE);
|
|
|
|
int num = wins_get_num(window);
|
|
status_bar_active(num);
|
|
}
|
|
}
|
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_TYPING)) {
|
|
gboolean is_current = FALSE;
|
|
if (window) {
|
|
is_current = wins_is_current(window);
|
|
}
|
|
if ( !is_current || (is_current && prefs_get_boolean(PREF_NOTIFY_TYPING_CURRENT)) ) {
|
|
PContact contact = roster_get_contact(barejid);
|
|
char const *display_usr = NULL;
|
|
if (p_contact_name(contact) != NULL) {
|
|
display_usr = p_contact_name(contact);
|
|
} else {
|
|
display_usr = barejid;
|
|
}
|
|
notify_typing(display_usr);
|
|
}
|
|
}
|
|
}
|
|
|
|
GSList *
|
|
ui_get_chat_recipients(void)
|
|
{
|
|
GSList *recipients = wins_get_chat_recipients();
|
|
return recipients;
|
|
}
|
|
|
|
ProfChatWin *
|
|
ui_get_current_chat(void)
|
|
{
|
|
return wins_get_current_chat();
|
|
}
|
|
|
|
void
|
|
ui_incoming_msg(const char * const barejid, const char * const resource, const char * const message, GTimeVal *tv_stamp)
|
|
{
|
|
gboolean win_created = FALSE;
|
|
GString *user = g_string_new("");
|
|
|
|
PContact contact = roster_get_contact(barejid);
|
|
if (contact != NULL) {
|
|
if (p_contact_name(contact) != NULL) {
|
|
g_string_append(user, p_contact_name(contact));
|
|
} else {
|
|
g_string_append(user, barejid);
|
|
}
|
|
} else {
|
|
g_string_append(user, barejid);
|
|
}
|
|
|
|
if (resource && prefs_get_boolean(PREF_RESOURCE_MESSAGE)) {
|
|
g_string_append(user, "/");
|
|
g_string_append(user, resource);
|
|
}
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin == NULL) {
|
|
ProfWin *window = wins_new_chat(barejid);
|
|
chatwin = (ProfChatWin*)window;
|
|
#ifdef HAVE_LIBOTR
|
|
if (otr_is_secure(barejid)) {
|
|
chatwin->is_otr = TRUE;
|
|
}
|
|
#endif
|
|
win_created = TRUE;
|
|
}
|
|
|
|
ProfWin *window = (ProfWin*) chatwin;
|
|
|
|
int num = wins_get_num(window);
|
|
|
|
// currently viewing chat window with sender
|
|
if (wins_is_current(window)) {
|
|
win_print_incoming_message(window, tv_stamp, user->str, message);
|
|
title_bar_set_typing(FALSE);
|
|
status_bar_active(num);
|
|
|
|
// not currently viewing chat window with sender
|
|
} else {
|
|
status_bar_new(num);
|
|
cons_show_incoming_message(user->str, num);
|
|
|
|
if (prefs_get_boolean(PREF_FLASH)) {
|
|
flash();
|
|
}
|
|
|
|
chatwin->unread++;
|
|
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
|
|
_win_show_history(num, barejid);
|
|
}
|
|
|
|
// show users status first, when receiving message via delayed delivery
|
|
if ((tv_stamp != NULL) && (win_created)) {
|
|
PContact pcontact = roster_get_contact(barejid);
|
|
if (pcontact != NULL) {
|
|
win_show_contact(window, pcontact);
|
|
}
|
|
}
|
|
|
|
win_print_incoming_message(window, tv_stamp, user->str, message);
|
|
}
|
|
|
|
int ui_index = num;
|
|
if (ui_index == 10) {
|
|
ui_index = 0;
|
|
}
|
|
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
beep();
|
|
}
|
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE)) {
|
|
gboolean is_current = wins_is_current(window);
|
|
if ( !is_current || (is_current && prefs_get_boolean(PREF_NOTIFY_MESSAGE_CURRENT)) ) {
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE_TEXT)) {
|
|
notify_message(user->str, ui_index, message);
|
|
} else {
|
|
notify_message(user->str, ui_index, NULL);
|
|
}
|
|
}
|
|
}
|
|
|
|
g_string_free(user, TRUE);
|
|
}
|
|
|
|
void
|
|
ui_incoming_private_msg(const char * const fulljid, const char * const message, GTimeVal *tv_stamp)
|
|
{
|
|
char *display_from = NULL;
|
|
display_from = get_nick_from_full_jid(fulljid);
|
|
|
|
ProfPrivateWin *privatewin = wins_get_private(fulljid);
|
|
if (privatewin == NULL) {
|
|
ProfWin *window = wins_new_private(fulljid);
|
|
privatewin = (ProfPrivateWin*)window;
|
|
}
|
|
|
|
ProfWin *window = (ProfWin*) privatewin;
|
|
int num = wins_get_num(window);
|
|
|
|
// currently viewing chat window with sender
|
|
if (wins_is_current(window)) {
|
|
win_print_incoming_message(window, tv_stamp, display_from, message);
|
|
title_bar_set_typing(FALSE);
|
|
status_bar_active(num);
|
|
|
|
// not currently viewing chat window with sender
|
|
} else {
|
|
status_bar_new(num);
|
|
cons_show_incoming_message(display_from, num);
|
|
|
|
if (prefs_get_boolean(PREF_FLASH)) {
|
|
flash();
|
|
}
|
|
|
|
privatewin->unread++;
|
|
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
|
|
_win_show_history(num, fulljid);
|
|
}
|
|
|
|
win_print_incoming_message(window, tv_stamp, display_from, message);
|
|
}
|
|
|
|
int ui_index = num;
|
|
if (ui_index == 10) {
|
|
ui_index = 0;
|
|
}
|
|
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
beep();
|
|
}
|
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE)) {
|
|
gboolean is_current = wins_is_current(window);
|
|
if ( !is_current || (is_current && prefs_get_boolean(PREF_NOTIFY_MESSAGE_CURRENT)) ) {
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE_TEXT)) {
|
|
notify_message(display_from, ui_index, message);
|
|
} else {
|
|
notify_message(display_from, ui_index, NULL);
|
|
}
|
|
}
|
|
}
|
|
|
|
free(display_from);
|
|
}
|
|
|
|
void
|
|
ui_roster_add(const char * const barejid, const char * const name)
|
|
{
|
|
if (name != NULL) {
|
|
cons_show("Roster item added: %s (%s)", barejid, name);
|
|
} else {
|
|
cons_show("Roster item added: %s", barejid);
|
|
}
|
|
rosterwin_roster();
|
|
}
|
|
|
|
void
|
|
ui_roster_remove(const char * const barejid)
|
|
{
|
|
cons_show("Roster item removed: %s", barejid);
|
|
rosterwin_roster();
|
|
}
|
|
|
|
void
|
|
ui_contact_already_in_group(const char * const contact, const char * const group)
|
|
{
|
|
cons_show("%s already in group %s", contact, group);
|
|
rosterwin_roster();
|
|
}
|
|
|
|
void
|
|
ui_contact_not_in_group(const char * const contact, const char * const group)
|
|
{
|
|
cons_show("%s is not currently in group %s", contact, group);
|
|
rosterwin_roster();
|
|
}
|
|
|
|
void
|
|
ui_group_added(const char * const contact, const char * const group)
|
|
{
|
|
cons_show("%s added to group %s", contact, group);
|
|
rosterwin_roster();
|
|
}
|
|
|
|
void
|
|
ui_group_removed(const char * const contact, const char * const group)
|
|
{
|
|
cons_show("%s removed from group %s", contact, group);
|
|
rosterwin_roster();
|
|
}
|
|
|
|
void
|
|
ui_auto_away(void)
|
|
{
|
|
char *pref_autoaway_message = prefs_get_string(PREF_AUTOAWAY_MESSAGE);
|
|
if (pref_autoaway_message != NULL) {
|
|
int pri =
|
|
accounts_get_priority_for_presence_type(jabber_get_account_name(),
|
|
RESOURCE_AWAY);
|
|
cons_show("Idle for %d minutes, status set to away (priority %d), \"%s\".",
|
|
prefs_get_autoaway_time(), pri, pref_autoaway_message);
|
|
title_bar_set_presence(CONTACT_AWAY);
|
|
} else {
|
|
int pri =
|
|
accounts_get_priority_for_presence_type(jabber_get_account_name(),
|
|
RESOURCE_AWAY);
|
|
cons_show("Idle for %d minutes, status set to away (priority %d).",
|
|
prefs_get_autoaway_time(), pri);
|
|
title_bar_set_presence(CONTACT_AWAY);
|
|
}
|
|
prefs_free_string(pref_autoaway_message);
|
|
}
|
|
|
|
void
|
|
ui_end_auto_away(void)
|
|
{
|
|
int pri =
|
|
accounts_get_priority_for_presence_type(jabber_get_account_name(), RESOURCE_ONLINE);
|
|
cons_show("No longer idle, status set to online (priority %d).", pri);
|
|
title_bar_set_presence(CONTACT_ONLINE);
|
|
}
|
|
|
|
void
|
|
ui_titlebar_presence(contact_presence_t presence)
|
|
{
|
|
title_bar_set_presence(presence);
|
|
}
|
|
|
|
void
|
|
ui_handle_login_account_success(ProfAccount *account)
|
|
{
|
|
resource_presence_t resource_presence = accounts_get_login_presence(account->name);
|
|
contact_presence_t contact_presence = contact_presence_from_resource_presence(resource_presence);
|
|
cons_show_login_success(account);
|
|
title_bar_set_presence(contact_presence);
|
|
status_bar_print_message(account->jid);
|
|
status_bar_update_virtual();
|
|
}
|
|
|
|
void
|
|
ui_update_presence(const resource_presence_t resource_presence,
|
|
const char * const message, const char * const show)
|
|
{
|
|
contact_presence_t contact_presence = contact_presence_from_resource_presence(resource_presence);
|
|
title_bar_set_presence(contact_presence);
|
|
gint priority = accounts_get_priority_for_presence_type(jabber_get_account_name(), resource_presence);
|
|
if (message != NULL) {
|
|
cons_show("Status set to %s (priority %d), \"%s\".", show, priority, message);
|
|
} else {
|
|
cons_show("Status set to %s (priority %d).", show, priority);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_recipient_not_found(const char * const recipient, const char * const err_msg)
|
|
{
|
|
// intended recipient was invalid chat room
|
|
ProfMucWin *mucwin = wins_get_muc(recipient);
|
|
if (mucwin) {
|
|
cons_show_error("Room %s not found: %s", recipient, err_msg);
|
|
win_save_vprint((ProfWin*) mucwin, '!', NULL, 0, THEME_ERROR, "", "Room %s not found: %s", recipient, err_msg);
|
|
return;
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_recipient_error(const char * const recipient, const char * const err_msg)
|
|
{
|
|
// always show in console
|
|
cons_show_error("Error from %s: %s", recipient, err_msg);
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(recipient);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, THEME_ERROR, "", "Error from %s: %s", recipient, err_msg);
|
|
return;
|
|
}
|
|
|
|
ProfMucWin *mucwin = wins_get_muc(recipient);
|
|
if (mucwin) {
|
|
win_save_vprint((ProfWin*)mucwin, '!', NULL, 0, THEME_ERROR, "", "Error from %s: %s", recipient, err_msg);
|
|
return;
|
|
}
|
|
|
|
ProfPrivateWin *privatewin = wins_get_private(recipient);
|
|
if (privatewin) {
|
|
win_save_vprint((ProfWin*)privatewin, '!', NULL, 0, THEME_ERROR, "", "Error from %s: %s", recipient, err_msg);
|
|
return;
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_error(const char * const err_msg)
|
|
{
|
|
GString *msg = g_string_new("");
|
|
g_string_printf(msg, "Error %s", err_msg);
|
|
|
|
cons_show_error(msg->str);
|
|
|
|
g_string_free(msg, TRUE);
|
|
}
|
|
|
|
void
|
|
ui_invalid_command_usage(const char * const usage, void (*setting_func)(void))
|
|
{
|
|
if (setting_func != NULL) {
|
|
cons_show("");
|
|
(*setting_func)();
|
|
cons_show("Usage: %s", usage);
|
|
} else {
|
|
cons_show("");
|
|
cons_show("Usage: %s", usage);
|
|
if (ui_current_win_type() == WIN_CHAT) {
|
|
char usage_cpy[strlen(usage) + 8];
|
|
sprintf(usage_cpy, "Usage: %s", usage);
|
|
ui_current_print_line(usage_cpy);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_disconnected(void)
|
|
{
|
|
wins_lost_connection();
|
|
title_bar_set_presence(CONTACT_OFFLINE);
|
|
status_bar_clear_message();
|
|
status_bar_update_virtual();
|
|
ui_hide_roster();
|
|
}
|
|
|
|
void
|
|
ui_close_connected_win(int index)
|
|
{
|
|
ProfWin *window = wins_get_by_num(index);
|
|
if (window) {
|
|
if (window->type == WIN_MUC) {
|
|
ProfMucWin *mucwin = (ProfMucWin*) window;
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
presence_leave_chat_room(mucwin->roomjid);
|
|
} else if (window->type == WIN_CHAT) {
|
|
ProfChatWin *chatwin = (ProfChatWin*) window;
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
|
#ifdef HAVE_LIBOTR
|
|
if (chatwin->is_otr) {
|
|
otr_end_session(chatwin->barejid);
|
|
}
|
|
#endif
|
|
chat_state_gone(chatwin->barejid, chatwin->state);
|
|
chat_session_remove(chatwin->barejid);
|
|
}
|
|
}
|
|
}
|
|
|
|
int
|
|
ui_close_all_wins(void)
|
|
{
|
|
int count = 0;
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
GList *win_nums = wins_get_nums();
|
|
GList *curr = win_nums;
|
|
|
|
while (curr != NULL) {
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
if ((num != 1) && (!ui_win_has_unsaved_form(num))) {
|
|
if (conn_status == JABBER_CONNECTED) {
|
|
ui_close_connected_win(num);
|
|
}
|
|
ui_close_win(num);
|
|
count++;
|
|
}
|
|
curr = g_list_next(curr);
|
|
}
|
|
|
|
g_list_free(curr);
|
|
g_list_free(win_nums);
|
|
|
|
return count;
|
|
}
|
|
|
|
int
|
|
ui_close_read_wins(void)
|
|
{
|
|
int count = 0;
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
GList *win_nums = wins_get_nums();
|
|
GList *curr = win_nums;
|
|
|
|
while (curr != NULL) {
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
if ((num != 1) && (ui_win_unread(num) == 0) && (!ui_win_has_unsaved_form(num))) {
|
|
if (conn_status == JABBER_CONNECTED) {
|
|
ui_close_connected_win(num);
|
|
}
|
|
ui_close_win(num);
|
|
count++;
|
|
}
|
|
curr = g_list_next(curr);
|
|
}
|
|
|
|
g_list_free(curr);
|
|
g_list_free(win_nums);
|
|
|
|
return count;
|
|
}
|
|
|
|
void
|
|
ui_redraw_all_room_rosters(void)
|
|
{
|
|
GList *win_nums = wins_get_nums();
|
|
GList *curr = win_nums;
|
|
|
|
while (curr != NULL) {
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
ProfWin *window = wins_get_by_num(num);
|
|
if (window->type == WIN_MUC && win_has_active_subwin(window)) {
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
occupantswin_occupants(mucwin->roomjid);
|
|
}
|
|
curr = g_list_next(curr);
|
|
}
|
|
|
|
g_list_free(curr);
|
|
g_list_free(win_nums);
|
|
}
|
|
|
|
void
|
|
ui_hide_all_room_rosters(void)
|
|
{
|
|
GList *win_nums = wins_get_nums();
|
|
GList *curr = win_nums;
|
|
|
|
while (curr != NULL) {
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
ProfWin *window = wins_get_by_num(num);
|
|
if (window->type == WIN_MUC && win_has_active_subwin(window)) {
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
ui_room_hide_occupants(mucwin->roomjid);
|
|
}
|
|
curr = g_list_next(curr);
|
|
}
|
|
|
|
g_list_free(curr);
|
|
g_list_free(win_nums);
|
|
}
|
|
|
|
void
|
|
ui_show_all_room_rosters(void)
|
|
{
|
|
GList *win_nums = wins_get_nums();
|
|
GList *curr = win_nums;
|
|
|
|
while (curr != NULL) {
|
|
int num = GPOINTER_TO_INT(curr->data);
|
|
ProfWin *window = wins_get_by_num(num);
|
|
if (window->type == WIN_MUC && !win_has_active_subwin(window)) {
|
|
ProfMucWin *mucwin = (ProfMucWin*)window;
|
|
assert(mucwin->memcheck == PROFMUCWIN_MEMCHECK);
|
|
ui_room_show_occupants(mucwin->roomjid);
|
|
}
|
|
curr = g_list_next(curr);
|
|
}
|
|
|
|
g_list_free(curr);
|
|
g_list_free(win_nums);
|
|
}
|
|
|
|
gboolean
|
|
ui_win_has_unsaved_form(int num)
|
|
{
|
|
ProfWin *window = wins_get_by_num(num);
|
|
|
|
if (window->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)window;
|
|
assert(confwin->memcheck == PROFCONFWIN_MEMCHECK);
|
|
return confwin->form->modified;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
ui_switch_win(const int i)
|
|
{
|
|
if (ui_win_exists(i)) {
|
|
ProfWin *old_current = wins_get_current();
|
|
if (old_current->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)old_current;
|
|
cmd_autocomplete_remove_form_fields(confwin->form);
|
|
}
|
|
|
|
ProfWin *new_current = wins_get_by_num(i);
|
|
if (new_current->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)new_current;
|
|
cmd_autocomplete_add_form_fields(confwin->form);
|
|
}
|
|
|
|
wins_set_current_by_num(i);
|
|
|
|
if (i == 1) {
|
|
title_bar_console();
|
|
status_bar_current(1);
|
|
status_bar_active(1);
|
|
} else {
|
|
title_bar_switch();
|
|
status_bar_current(i);
|
|
status_bar_active(i);
|
|
}
|
|
return TRUE;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_previous_win(void)
|
|
{
|
|
ProfWin *old_current = wins_get_current();
|
|
if (old_current->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)old_current;
|
|
cmd_autocomplete_remove_form_fields(confwin->form);
|
|
}
|
|
|
|
ProfWin *new_current = wins_get_previous();
|
|
if (new_current->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)new_current;
|
|
cmd_autocomplete_add_form_fields(confwin->form);
|
|
}
|
|
|
|
int i = wins_get_num(new_current);
|
|
wins_set_current_by_num(i);
|
|
|
|
if (i == 1) {
|
|
title_bar_console();
|
|
status_bar_current(1);
|
|
status_bar_active(1);
|
|
} else {
|
|
title_bar_switch();
|
|
status_bar_current(i);
|
|
status_bar_active(i);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_next_win(void)
|
|
{
|
|
ProfWin *old_current = wins_get_current();
|
|
if (old_current->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)old_current;
|
|
cmd_autocomplete_remove_form_fields(confwin->form);
|
|
}
|
|
|
|
ProfWin *new_current = wins_get_next();
|
|
if (new_current->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)new_current;
|
|
cmd_autocomplete_add_form_fields(confwin->form);
|
|
}
|
|
|
|
int i = wins_get_num(new_current);
|
|
wins_set_current_by_num(i);
|
|
|
|
if (i == 1) {
|
|
title_bar_console();
|
|
status_bar_current(1);
|
|
status_bar_active(1);
|
|
} else {
|
|
title_bar_switch();
|
|
status_bar_current(i);
|
|
status_bar_active(i);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_gone_secure(const char * const barejid, gboolean trusted)
|
|
{
|
|
ProfWin *window = NULL;
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
window = (ProfWin*)chatwin;
|
|
} else {
|
|
window = wins_new_chat(barejid);
|
|
chatwin = (ProfChatWin*)window;
|
|
}
|
|
|
|
chatwin->is_otr = TRUE;
|
|
chatwin->is_trusted = trusted;
|
|
if (trusted) {
|
|
win_save_print(window, '!', NULL, 0, THEME_OTR_STARTED_TRUSTED, "", "OTR session started (trusted).");
|
|
} else {
|
|
win_save_print(window, '!', NULL, 0, THEME_OTR_STARTED_UNTRUSTED, "", "OTR session started (untrusted).");
|
|
}
|
|
|
|
if (wins_is_current(window)) {
|
|
title_bar_switch();
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
status_bar_new(num);
|
|
|
|
int ui_index = num;
|
|
if (ui_index == 10) {
|
|
ui_index = 0;
|
|
}
|
|
cons_show("%s started an OTR session (%d).", barejid, ui_index);
|
|
cons_alert();
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_gone_insecure(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
chatwin->is_otr = FALSE;
|
|
chatwin->is_trusted = FALSE;
|
|
|
|
ProfWin *window = (ProfWin*)chatwin;
|
|
win_save_print(window, '!', NULL, 0, THEME_OTR_ENDED, "", "OTR session ended.");
|
|
if (wins_is_current(window)) {
|
|
title_bar_switch();
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_recipient_initiated(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "%s wants to authenticate your identity, use '/otr secret <secret>'.", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_recipient_initiated_q(const char * const barejid, const char *question)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "%s wants to authenticate your identity with the following question:", barejid);
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", " %s", question);
|
|
win_save_print((ProfWin*)chatwin, '!', NULL, 0, 0, "", "use '/otr answer <answer>'.");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_unsuccessful_sender(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "Authentication failed, the secret you entered does not match the secret entered by %s.", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_unsuccessful_receiver(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "Authentication failed, the secret entered by %s does not match yours.", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_aborted(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_print((ProfWin*)chatwin, '!', NULL, 0, 0, "", "SMP session aborted.");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_successful(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_print((ProfWin*)chatwin, '!', NULL, 0, 0, "", "Authentication successful.");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_answer_success(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "%s successfully authenticated you.", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_smp_answer_failure(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "%s failed to authenticate you.", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_otr_authenticating(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "Authenticating %s...", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_otr_authetication_waiting(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, 0, "", "Awaiting authentication from %s...", barejid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_trust(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
chatwin->is_otr = TRUE;
|
|
chatwin->is_trusted = TRUE;
|
|
|
|
ProfWin *window = (ProfWin*)chatwin;
|
|
win_save_print(window, '!', NULL, 0, THEME_OTR_TRUSTED, "", "OTR session trusted.");
|
|
if (wins_is_current(window)) {
|
|
title_bar_switch();
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_untrust(const char * const barejid)
|
|
{
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
chatwin->is_otr = TRUE;
|
|
chatwin->is_trusted = FALSE;
|
|
|
|
ProfWin *window = (ProfWin*)chatwin;
|
|
win_save_print(window, '!', NULL, 0, THEME_OTR_UNTRUSTED, "", "OTR session untrusted.");
|
|
if (wins_is_current(window)) {
|
|
title_bar_switch();
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_clear_current(void)
|
|
{
|
|
wins_clear_current();
|
|
}
|
|
|
|
void
|
|
ui_close_win(int index)
|
|
{
|
|
ProfWin *window = wins_get_by_num(index);
|
|
if (window && window->type == WIN_MUC_CONFIG) {
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)window;
|
|
if (confwin->form) {
|
|
cmd_autocomplete_remove_form_fields(confwin->form);
|
|
}
|
|
}
|
|
|
|
wins_close_by_num(index);
|
|
title_bar_console();
|
|
status_bar_current(1);
|
|
status_bar_active(1);
|
|
}
|
|
|
|
void
|
|
ui_tidy_wins(void)
|
|
{
|
|
gboolean tidied = wins_tidy();
|
|
|
|
if (tidied) {
|
|
cons_show("Windows tidied.");
|
|
} else {
|
|
cons_show("No tidy needed.");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_prune_wins(void)
|
|
{
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
gboolean pruned = FALSE;
|
|
|
|
GSList *wins = wins_get_prune_wins();
|
|
if (wins != NULL) {
|
|
pruned = TRUE;
|
|
}
|
|
|
|
GSList *curr = wins;
|
|
while (curr != NULL) {
|
|
ProfWin *window = curr->data;
|
|
if (window->type == WIN_CHAT) {
|
|
if (conn_status == JABBER_CONNECTED) {
|
|
ProfChatWin *chatwin = (ProfChatWin*)window;
|
|
chat_session_remove(chatwin->barejid);
|
|
}
|
|
}
|
|
|
|
int num = wins_get_num(window);
|
|
ui_close_win(num);
|
|
|
|
curr = g_slist_next(curr);
|
|
}
|
|
|
|
if (wins != NULL) {
|
|
g_slist_free(wins);
|
|
}
|
|
|
|
wins_tidy();
|
|
if (pruned) {
|
|
cons_show("Windows pruned.");
|
|
} else {
|
|
cons_show("No prune needed.");
|
|
}
|
|
}
|
|
|
|
gboolean
|
|
ui_swap_wins(int source_win, int target_win)
|
|
{
|
|
return wins_swap(source_win, target_win);
|
|
}
|
|
|
|
win_type_t
|
|
ui_current_win_type(void)
|
|
{
|
|
ProfWin *current = wins_get_current();
|
|
return current->type;
|
|
}
|
|
|
|
gboolean
|
|
ui_current_win_is_otr(void)
|
|
{
|
|
ProfWin *current = wins_get_current();
|
|
if (current->type == WIN_CHAT) {
|
|
ProfChatWin *chatwin = (ProfChatWin*)current;
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
|
return chatwin->is_otr;
|
|
} else {
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
int
|
|
ui_current_win_index(void)
|
|
{
|
|
return wins_get_current_num();
|
|
}
|
|
|
|
win_type_t
|
|
ui_win_type(int index)
|
|
{
|
|
ProfWin *window = wins_get_by_num(index);
|
|
return window->type;
|
|
}
|
|
|
|
void
|
|
ui_current_print_line(const char * const msg, ...)
|
|
{
|
|
ProfWin *window = wins_get_current();
|
|
va_list arg;
|
|
va_start(arg, msg);
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
|
win_save_println(window, fmt_msg->str);
|
|
va_end(arg);
|
|
g_string_free(fmt_msg, TRUE);
|
|
}
|
|
|
|
void
|
|
ui_current_print_formatted_line(const char show_char, int attrs, const char * const msg, ...)
|
|
{
|
|
ProfWin *current = wins_get_current();
|
|
va_list arg;
|
|
va_start(arg, msg);
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
|
win_save_print(current, show_char, NULL, 0, attrs, "", fmt_msg->str);
|
|
va_end(arg);
|
|
g_string_free(fmt_msg, TRUE);
|
|
}
|
|
|
|
void
|
|
ui_current_error_line(const char * const msg)
|
|
{
|
|
ProfWin *current = wins_get_current();
|
|
win_save_print(current, '-', NULL, 0, THEME_ERROR, "", msg);
|
|
}
|
|
|
|
void
|
|
ui_print_system_msg_from_recipient(const char * const barejid, const char *message)
|
|
{
|
|
if (barejid == NULL || message == NULL)
|
|
return;
|
|
|
|
ProfWin *window = (ProfWin*)wins_get_chat(barejid);
|
|
if (window == NULL) {
|
|
int num = 0;
|
|
window = wins_new_chat(barejid);
|
|
if (window != NULL) {
|
|
num = wins_get_num(window);
|
|
status_bar_active(num);
|
|
} else {
|
|
num = 0;
|
|
window = wins_get_console();
|
|
status_bar_active(1);
|
|
}
|
|
}
|
|
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", "*%s %s", barejid, message);
|
|
}
|
|
|
|
void
|
|
ui_recipient_gone(const char * const barejid, const char * const resource)
|
|
{
|
|
if (barejid == NULL)
|
|
return;
|
|
if (resource == NULL)
|
|
return;
|
|
|
|
gboolean show_message = TRUE;
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin) {
|
|
ChatSession *session = chat_session_get(barejid);
|
|
if (session && g_strcmp0(session->resource, resource) != 0) {
|
|
show_message = FALSE;
|
|
}
|
|
if (show_message) {
|
|
const char * display_usr = NULL;
|
|
PContact contact = roster_get_contact(barejid);
|
|
if (contact != NULL) {
|
|
if (p_contact_name(contact) != NULL) {
|
|
display_usr = p_contact_name(contact);
|
|
} else {
|
|
display_usr = barejid;
|
|
}
|
|
} else {
|
|
display_usr = barejid;
|
|
}
|
|
|
|
win_save_vprint((ProfWin*)chatwin, '!', NULL, 0, THEME_GONE, "", "<- %s has left the conversation.", display_usr);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_new_private_win(const char * const fulljid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_private(fulljid);
|
|
int num = 0;
|
|
|
|
// create new window
|
|
if (window == NULL) {
|
|
window = wins_new_private(fulljid);
|
|
num = wins_get_num(window);
|
|
} else {
|
|
num = wins_get_num(window);
|
|
}
|
|
|
|
ui_switch_win(num);
|
|
}
|
|
|
|
void
|
|
ui_new_chat_win(const char * const barejid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_chat(barejid);
|
|
int num = 0;
|
|
|
|
// create new window
|
|
if (window == NULL) {
|
|
window = wins_new_chat(barejid);
|
|
|
|
num = wins_get_num(window);
|
|
|
|
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
|
|
_win_show_history(num, barejid);
|
|
}
|
|
|
|
// if the contact is offline, show a message
|
|
PContact contact = roster_get_contact(barejid);
|
|
if (contact != NULL) {
|
|
if (strcmp(p_contact_presence(contact), "offline") == 0) {
|
|
const char * const show = p_contact_presence(contact);
|
|
const char * const status = p_contact_status(contact);
|
|
win_show_status_string(window, barejid, show, status, NULL, "--", "offline");
|
|
}
|
|
}
|
|
} else {
|
|
num = wins_get_num(window);
|
|
}
|
|
|
|
ui_switch_win(num);
|
|
}
|
|
|
|
void
|
|
ui_create_xmlconsole_win(void)
|
|
{
|
|
ProfWin *window = wins_new_xmlconsole();
|
|
int num = wins_get_num(window);
|
|
ui_switch_win(num);
|
|
}
|
|
|
|
void
|
|
ui_open_xmlconsole_win(void)
|
|
{
|
|
ProfXMLWin *xmlwin = wins_get_xmlconsole();
|
|
if (xmlwin != NULL) {
|
|
int num = wins_get_num((ProfWin*)xmlwin);
|
|
ui_switch_win(num);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_outgoing_chat_msg(const char * const from, const char * const barejid,
|
|
const char * const message)
|
|
{
|
|
PContact contact = roster_get_contact(barejid);
|
|
ProfWin *window = (ProfWin*)wins_get_chat(barejid);
|
|
int num = 0;
|
|
|
|
// create new window
|
|
if (window == NULL) {
|
|
window = wins_new_chat(barejid);
|
|
ProfChatWin *chatwin = (ProfChatWin*)window;
|
|
#ifdef HAVE_LIBOTR
|
|
if (otr_is_secure(barejid)) {
|
|
chatwin->is_otr = TRUE;
|
|
}
|
|
#endif
|
|
num = wins_get_num(window);
|
|
|
|
if (prefs_get_boolean(PREF_CHLOG) && prefs_get_boolean(PREF_HISTORY)) {
|
|
_win_show_history(num, barejid);
|
|
}
|
|
|
|
if (contact != NULL) {
|
|
if (strcmp(p_contact_presence(contact), "offline") == 0) {
|
|
const char *show = p_contact_presence(contact);
|
|
const char *status = p_contact_status(contact);
|
|
win_show_status_string(window, barejid, show, status, NULL, "--", "offline");
|
|
}
|
|
}
|
|
|
|
// use existing window
|
|
} else {
|
|
num = wins_get_num(window);
|
|
}
|
|
ProfChatWin *chatwin = (ProfChatWin*)window;
|
|
chat_state_active(chatwin->state);
|
|
|
|
win_save_print(window, '-', NULL, 0, THEME_TEXT_ME, from, message);
|
|
ui_switch_win(num);
|
|
}
|
|
|
|
void
|
|
ui_outgoing_private_msg(const char * const from, const char * const fulljid,
|
|
const char * const message)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_private(fulljid);
|
|
int num = 0;
|
|
|
|
// create new window
|
|
if (window == NULL) {
|
|
window = wins_new_private(fulljid);
|
|
num = wins_get_num(window);
|
|
|
|
// use existing window
|
|
} else {
|
|
num = wins_get_num(window);
|
|
}
|
|
|
|
win_save_print(window, '-', NULL, 0, THEME_TEXT_ME, from, message);
|
|
ui_switch_win(num);
|
|
}
|
|
|
|
void
|
|
ui_room_join(const char * const roomjid, gboolean focus)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
int num = 0;
|
|
|
|
// create new window
|
|
if (window == NULL) {
|
|
window = wins_new_muc(roomjid);
|
|
}
|
|
|
|
char *nick = muc_nick(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "-> You have joined the room as %s", nick);
|
|
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
|
char *role = muc_role_str(roomjid);
|
|
char *affiliation = muc_affiliation_str(roomjid);
|
|
if (role) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", role: %s", role);
|
|
}
|
|
if (affiliation) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", affiliation: %s", affiliation);
|
|
}
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
|
|
num = wins_get_num(window);
|
|
|
|
if (focus) {
|
|
ui_switch_win(num);
|
|
} else {
|
|
status_bar_active(num);
|
|
ProfWin *console = wins_get_console();
|
|
char *nick = muc_nick(roomjid);
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "-> Autojoined %s as %s (%d).", roomjid, nick, num);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_switch_to_room(const char * const roomjid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
int num = wins_get_num(window);
|
|
num = wins_get_num(window);
|
|
ui_switch_win(num);
|
|
}
|
|
|
|
void
|
|
ui_room_role_change(const char * const roomjid, const char * const role, const char * const actor,
|
|
const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "Your role has been changed to: %s", role);
|
|
if (actor) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);
|
|
}
|
|
if (reason) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", reason: %s", reason);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
|
|
void
|
|
ui_room_affiliation_change(const char * const roomjid, const char * const affiliation, const char * const actor,
|
|
const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "Your affiliation has been changed to: %s", affiliation);
|
|
if (actor) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);
|
|
}
|
|
if (reason) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", reason: %s", reason);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
|
|
void
|
|
ui_room_role_and_affiliation_change(const char * const roomjid, const char * const role, const char * const affiliation,
|
|
const char * const actor, const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "Your role and affiliation have been changed, role: %s, affiliation: %s", role, affiliation);
|
|
if (actor) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);
|
|
}
|
|
if (reason) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", reason: %s", reason);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
|
|
|
|
void
|
|
ui_room_occupant_role_change(const char * const roomjid, const char * const nick, const char * const role,
|
|
const char * const actor, const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "%s's role has been changed to: %s", nick, role);
|
|
if (actor) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);
|
|
}
|
|
if (reason) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", reason: %s", reason);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
|
|
void
|
|
ui_room_occupant_affiliation_change(const char * const roomjid, const char * const nick, const char * const affiliation,
|
|
const char * const actor, const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "%s's affiliation has been changed to: %s", nick, affiliation);
|
|
if (actor) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);
|
|
}
|
|
if (reason) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", reason: %s", reason);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
|
|
void
|
|
ui_room_occupant_role_and_affiliation_change(const char * const roomjid, const char * const nick, const char * const role,
|
|
const char * const affiliation, const char * const actor, const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "%s's role and affiliation have been changed, role: %s, affiliation: %s", nick, role, affiliation);
|
|
if (actor) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", by: %s", actor);
|
|
}
|
|
if (reason) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ROOMINFO, "", ", reason: %s", reason);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
|
|
void
|
|
ui_handle_room_info_error(const char * const roomjid, const char * const error)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "Room info request failed: %s", error);
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_room_disco_info(const char * const roomjid, GSList *identities, GSList *features)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
if (((identities != NULL) && (g_slist_length(identities) > 0)) ||
|
|
((features != NULL) && (g_slist_length(features) > 0))) {
|
|
if (identities != NULL) {
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Identities:");
|
|
}
|
|
while (identities != NULL) {
|
|
DiscoIdentity *identity = identities->data; // anme trpe, cat
|
|
GString *identity_str = g_string_new(" ");
|
|
if (identity->name != NULL) {
|
|
identity_str = g_string_append(identity_str, identity->name);
|
|
identity_str = g_string_append(identity_str, " ");
|
|
}
|
|
if (identity->type != NULL) {
|
|
identity_str = g_string_append(identity_str, identity->type);
|
|
identity_str = g_string_append(identity_str, " ");
|
|
}
|
|
if (identity->category != NULL) {
|
|
identity_str = g_string_append(identity_str, identity->category);
|
|
}
|
|
win_save_print(window, '!', NULL, 0, 0, "", identity_str->str);
|
|
g_string_free(identity_str, TRUE);
|
|
identities = g_slist_next(identities);
|
|
}
|
|
|
|
if (features != NULL) {
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Features:");
|
|
}
|
|
while (features != NULL) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s", features->data);
|
|
features = g_slist_next(features);
|
|
}
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_roster(const char * const roomjid, GList *roster, const char * const presence)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received room roster but no window open for %s.", roomjid);
|
|
} else {
|
|
if ((roster == NULL) || (g_list_length(roster) == 0)) {
|
|
if (presence == NULL) {
|
|
win_save_print(window, '!', NULL, 0, THEME_ROOMINFO, "", "Room is empty.");
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "", "No occupants %s.", presence);
|
|
}
|
|
} else {
|
|
int length = g_list_length(roster);
|
|
if (presence == NULL) {
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "%d occupants: ", length);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "%d %s: ", length, presence);
|
|
}
|
|
|
|
while (roster != NULL) {
|
|
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_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, presence_colour, "", "%s", occupant->nick);
|
|
|
|
if (roster->next != NULL) {
|
|
win_save_print(window, '!', NULL, NO_DATE | NO_EOL, 0, "", ", ");
|
|
}
|
|
|
|
roster = g_list_next(roster);
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ONLINE, "", "");
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_join_error(const char * const roomjid, const char * const err)
|
|
{
|
|
cons_show_error("Error joining room %s, reason: %s", roomjid, err);
|
|
}
|
|
|
|
void
|
|
ui_room_member_offline(const char * const roomjid, const char * const nick)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received offline presence for room participant %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_OFFLINE, "", "<- %s has left the room.", nick);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_member_kicked(const char * const roomjid, const char * const nick, const char * const actor,
|
|
const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received kick for room participant %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
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_save_vprint(window, '!', NULL, 0, THEME_OFFLINE, "", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_member_banned(const char * const roomjid, const char * const nick, const char * const actor,
|
|
const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received ban for room participant %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
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_save_vprint(window, '!', NULL, 0, THEME_OFFLINE, "", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_member_online(const char * const roomjid, const char * const nick, const char * const role,
|
|
const char * const affiliation, const char * const show, const char * const status)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received online presence for room participant %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ONLINE, "", "-> %s has joined the room", nick);
|
|
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
|
if (role) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ONLINE, "", ", role: %s", role);
|
|
}
|
|
if (affiliation) {
|
|
win_save_vprint(window, '!', NULL, NO_DATE | NO_EOL, THEME_ONLINE, "", ", affiliation: %s", affiliation);
|
|
}
|
|
}
|
|
win_save_print(window, '!', NULL, NO_DATE, THEME_ROOMINFO, "", "");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_member_presence(const char * const roomjid, const char * const nick,
|
|
const char * const show, const char * const status)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received presence for room participant %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
win_show_status_string(window, nick, show, status, NULL, "++", "online");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_member_nick_change(const char * const roomjid,
|
|
const char * const old_nick, const char * const nick)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received nick change for room participant %s, but no window open for %s.", old_nick, roomjid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_THEM, "", "** %s is now known as %s", old_nick, nick);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_nick_change(const char * const roomjid, const char * const nick)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received self nick change %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ME, "", "** You are now known as %s", nick);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_history(const char * const roomjid, const char * const nick,
|
|
GTimeVal tv_stamp, const char * const message)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Room history message received from %s, but no window open for %s", nick, roomjid);
|
|
} else {
|
|
GString *line = g_string_new("");
|
|
|
|
if (strncmp(message, "/me ", 4) == 0) {
|
|
g_string_append(line, "*");
|
|
g_string_append(line, nick);
|
|
g_string_append(line, " ");
|
|
g_string_append(line, message + 4);
|
|
} else {
|
|
g_string_append(line, nick);
|
|
g_string_append(line, ": ");
|
|
g_string_append(line, message);
|
|
}
|
|
|
|
win_save_print(window, '-', &tv_stamp, NO_COLOUR_DATE, 0, "", line->str);
|
|
g_string_free(line, TRUE);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_message(const char * const roomjid, const char * const nick,
|
|
const char * const message)
|
|
{
|
|
ProfMucWin *mucwin = wins_get_muc(roomjid);
|
|
if (mucwin == NULL) {
|
|
log_error("Room message received from %s, but no window open for %s", nick, roomjid);
|
|
} else {
|
|
ProfWin *window = (ProfWin*) mucwin;
|
|
int num = wins_get_num(window);
|
|
char *my_nick = muc_nick(roomjid);
|
|
|
|
if (g_strcmp0(nick, my_nick) != 0) {
|
|
if (g_strrstr(message, my_nick) != NULL) {
|
|
win_save_print(window, '-', NULL, NO_ME, THEME_ROOMMENTION, nick, message);
|
|
} else {
|
|
win_save_print(window, '-', NULL, NO_ME, THEME_TEXT_THEM, nick, message);
|
|
}
|
|
} else {
|
|
win_save_print(window, '-', NULL, 0, THEME_TEXT_ME, nick, message);
|
|
}
|
|
|
|
// currently in groupchat window
|
|
if (wins_is_current(window)) {
|
|
status_bar_active(num);
|
|
|
|
// not currenlty on groupchat window
|
|
} else {
|
|
status_bar_new(num);
|
|
cons_show_incoming_message(nick, num);
|
|
|
|
if (strcmp(nick, my_nick) != 0) {
|
|
if (prefs_get_boolean(PREF_FLASH)) {
|
|
flash();
|
|
}
|
|
}
|
|
|
|
mucwin->unread++;
|
|
}
|
|
|
|
int ui_index = num;
|
|
if (ui_index == 10) {
|
|
ui_index = 0;
|
|
}
|
|
|
|
if (strcmp(nick, muc_nick(roomjid)) != 0) {
|
|
if (prefs_get_boolean(PREF_BEEP)) {
|
|
beep();
|
|
}
|
|
|
|
gboolean notify = FALSE;
|
|
char *room_setting = prefs_get_string(PREF_NOTIFY_ROOM);
|
|
if (g_strcmp0(room_setting, "on") == 0) {
|
|
notify = TRUE;
|
|
}
|
|
if (g_strcmp0(room_setting, "mention") == 0) {
|
|
char *message_lower = g_utf8_strdown(message, -1);
|
|
char *nick_lower = g_utf8_strdown(nick, -1);
|
|
if (g_strrstr(message_lower, nick_lower) != NULL) {
|
|
notify = TRUE;
|
|
}
|
|
g_free(message_lower);
|
|
g_free(nick_lower);
|
|
}
|
|
prefs_free_string(room_setting);
|
|
|
|
if (notify) {
|
|
gboolean is_current = wins_is_current(window);
|
|
if ( !is_current || (is_current && prefs_get_boolean(PREF_NOTIFY_ROOM_CURRENT)) ) {
|
|
Jid *jidp = jid_create(roomjid);
|
|
if (prefs_get_boolean(PREF_NOTIFY_ROOM_TEXT)) {
|
|
notify_room_message(nick, jidp->localpart, ui_index, message);
|
|
} else {
|
|
notify_room_message(nick, jidp->localpart, ui_index, NULL);
|
|
}
|
|
jid_destroy(jidp);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_requires_config(const char * const roomjid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received room config request, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
int ui_index = num;
|
|
if (ui_index == 10) {
|
|
ui_index = 0;
|
|
}
|
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "",
|
|
"Room locked, requires configuration.");
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "",
|
|
"Use '/room accept' to accept the defaults");
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "",
|
|
"Use '/room destroy' to cancel and destroy the room");
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "",
|
|
"Use '/room config' to edit the room configuration");
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
|
|
// currently in groupchat window
|
|
if (wins_is_current(window)) {
|
|
status_bar_active(num);
|
|
|
|
// not currenlty on groupchat window
|
|
} else {
|
|
status_bar_new(num);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_destroy(const char * const roomjid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received room destroy result, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
ui_close_win(num);
|
|
cons_show("Room destroyed: %s", roomjid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_leave_room(const char * const roomjid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
int num = wins_get_num(window);
|
|
ui_close_win(num);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_destroyed(const char * const roomjid, const char * const reason, const char * const new_jid,
|
|
const char * const password)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received room destroy, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
ui_close_win(num);
|
|
ProfWin *console = wins_get_console();
|
|
|
|
if (reason) {
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "<- Room destroyed: %s, reason: %s", roomjid, reason);
|
|
} else {
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "<- Room destroyed: %s", roomjid);
|
|
}
|
|
|
|
if (new_jid) {
|
|
if (password) {
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "Replacement room: %s, password: %s", new_jid, password);
|
|
} else {
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "Replacement room: %s", new_jid);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_kicked(const char * const roomjid, const char * const actor, const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received kick, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
ui_close_win(num);
|
|
|
|
GString *message = g_string_new("Kicked from ");
|
|
g_string_append(message, roomjid);
|
|
if (actor) {
|
|
g_string_append(message, " by ");
|
|
g_string_append(message, actor);
|
|
}
|
|
if (reason) {
|
|
g_string_append(message, ", reason: ");
|
|
g_string_append(message, reason);
|
|
}
|
|
|
|
ProfWin *console = wins_get_console();
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_banned(const char * const roomjid, const char * const actor, const char * const reason)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received ban, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
ui_close_win(num);
|
|
|
|
GString *message = g_string_new("Banned from ");
|
|
g_string_append(message, roomjid);
|
|
if (actor) {
|
|
g_string_append(message, " by ");
|
|
g_string_append(message, actor);
|
|
}
|
|
if (reason) {
|
|
g_string_append(message, ", reason: ");
|
|
g_string_append(message, reason);
|
|
}
|
|
|
|
ProfWin *console = wins_get_console();
|
|
win_save_vprint(console, '!', NULL, 0, THEME_TYPING, "", "<- %s", message->str);
|
|
g_string_free(message, TRUE);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_subject(const char * const roomjid, const char * const nick, const char * const subject)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received room subject, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
|
|
if (subject) {
|
|
if (nick) {
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "*%s has set the room subject: ", nick);
|
|
win_save_vprint(window, '!', NULL, NO_DATE, 0, "", "%s", subject);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "Room subject: ");
|
|
win_save_vprint(window, '!', NULL, NO_DATE, 0, "", "%s", subject);
|
|
}
|
|
} else {
|
|
if (nick) {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "", "*%s has cleared the room subject: ", nick);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ROOMINFO, "", "Room subject cleared");
|
|
}
|
|
}
|
|
|
|
// currently in groupchat window
|
|
if (wins_is_current(window)) {
|
|
status_bar_active(num);
|
|
|
|
// not currenlty on groupchat window
|
|
} else {
|
|
status_bar_active(num);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_kick_error(const char * const roomjid, const char * const nick, const char * const error)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Kick error received for %s, but no window open for %s.", nick, roomjid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ERROR, "", "Error kicking %s: %s", nick, error);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_broadcast(const char * const roomjid, const char * const message)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window == NULL) {
|
|
log_error("Received room broadcast, but no window open for %s.", roomjid);
|
|
} else {
|
|
int num = wins_get_num(window);
|
|
|
|
win_save_vprint(window, '!', NULL, NO_EOL, THEME_ROOMINFO, "", "Room message: ");
|
|
win_save_vprint(window, '!', NULL, NO_DATE, 0, "", "%s", message);
|
|
|
|
// currently in groupchat window
|
|
if (wins_is_current(window)) {
|
|
status_bar_active(num);
|
|
|
|
// not currenlty on groupchat window
|
|
} else {
|
|
status_bar_new(num);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_affiliation_list_error(const char * const roomjid, const char * const affiliation,
|
|
const char * const error)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ERROR, "", "Error retrieving %s list: %s", affiliation, error);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_affiliation_list(const char * const roomjid, const char * const affiliation, GSList *jids)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
if (jids) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "Affiliation: %s", affiliation);
|
|
GSList *curr_jid = jids;
|
|
while (curr_jid) {
|
|
char *jid = curr_jid->data;
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s", jid);
|
|
curr_jid = g_slist_next(curr_jid);
|
|
}
|
|
win_save_print(window, '!', NULL, 0, 0, "", "");
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "No users found with affiliation: %s", affiliation);
|
|
win_save_print(window, '!', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_role_list_error(const char * const roomjid, const char * const role, const char * const error)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ERROR, "", "Error retrieving %s list: %s", role, error);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_role_list(const char * const roomjid, const char * const role, GSList *nicks)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
if (nicks) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "Role: %s", role);
|
|
GSList *curr_nick = nicks;
|
|
while (curr_nick) {
|
|
char *nick = curr_nick->data;
|
|
Occupant *occupant = muc_roster_item(roomjid, nick);
|
|
if (occupant) {
|
|
if (occupant->jid) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s (%s)", nick, occupant->jid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s", nick);
|
|
}
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s", nick);
|
|
}
|
|
curr_nick = g_slist_next(curr_nick);
|
|
}
|
|
win_save_print(window, '!', NULL, 0, 0, "", "");
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "No occupants found with role: %s", role);
|
|
win_save_print(window, '!', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_affiliation_set_error(const char * const roomjid, const char * const jid, const char * const affiliation,
|
|
const char * const error)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ERROR, "", "Error setting %s affiliation for %s: %s", affiliation, jid, error);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_role_set_error(const char * const roomjid, const char * const nick, const char * const role,
|
|
const char * const error)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window) {
|
|
win_save_vprint(window, '!', NULL, 0, THEME_ERROR, "", "Error setting %s role for %s: %s", role, nick, error);
|
|
}
|
|
}
|
|
|
|
gint
|
|
ui_unread(void)
|
|
{
|
|
return wins_get_total_unread();
|
|
}
|
|
|
|
int
|
|
ui_win_unread(int index)
|
|
{
|
|
ProfWin *window = wins_get_by_num(index);
|
|
if (window != NULL) {
|
|
return win_unread(window);
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
char *
|
|
ui_ask_password(void)
|
|
{
|
|
char *passwd = malloc(sizeof(char) * (MAX_PASSWORD_SIZE + 1));
|
|
status_bar_get_password();
|
|
status_bar_update_virtual();
|
|
inp_block();
|
|
inp_get_password(passwd);
|
|
inp_non_block(prefs_get_inpblock());
|
|
|
|
return passwd;
|
|
}
|
|
|
|
void
|
|
ui_chat_win_contact_online(PContact contact, Resource *resource, GDateTime *last_activity)
|
|
{
|
|
const char *show = string_from_resource_presence(resource->presence);
|
|
char *display_str = p_contact_create_display_string(contact, resource->name);
|
|
const char *barejid = p_contact_barejid(contact);
|
|
|
|
ProfWin *window = (ProfWin*)wins_get_chat(barejid);
|
|
if (window != NULL) {
|
|
win_show_status_string(window, display_str, show, resource->status,
|
|
last_activity, "++", "online");
|
|
|
|
}
|
|
|
|
free(display_str);
|
|
}
|
|
|
|
void
|
|
ui_chat_win_contact_offline(PContact contact, char *resource, char *status)
|
|
{
|
|
char *display_str = p_contact_create_display_string(contact, resource);
|
|
const char *barejid = p_contact_barejid(contact);
|
|
|
|
ProfWin *window = (ProfWin*)wins_get_chat(barejid);
|
|
if (window != NULL) {
|
|
win_show_status_string(window, display_str, "offline", status, NULL, "--",
|
|
"offline");
|
|
}
|
|
|
|
free(display_str);
|
|
}
|
|
|
|
void
|
|
ui_contact_offline(char *barejid, char *resource, char *status)
|
|
{
|
|
char *show_console = prefs_get_string(PREF_STATUSES_CONSOLE);
|
|
char *show_chat_win = prefs_get_string(PREF_STATUSES_CHAT);
|
|
Jid *jid = jid_create_from_bare_and_resource(barejid, resource);
|
|
PContact contact = roster_get_contact(barejid);
|
|
if (p_contact_subscription(contact) != NULL) {
|
|
if (strcmp(p_contact_subscription(contact), "none") != 0) {
|
|
|
|
// show in console if "all"
|
|
if (g_strcmp0(show_console, "all") == 0) {
|
|
cons_show_contact_offline(contact, resource, status);
|
|
|
|
// show in console of "online"
|
|
} else if (g_strcmp0(show_console, "online") == 0) {
|
|
cons_show_contact_offline(contact, resource, status);
|
|
}
|
|
|
|
// show in chat win if "all"
|
|
if (g_strcmp0(show_chat_win, "all") == 0) {
|
|
ui_chat_win_contact_offline(contact, resource, status);
|
|
|
|
// show in char win if "online" and presence online
|
|
} else if (g_strcmp0(show_chat_win, "online") == 0) {
|
|
ui_chat_win_contact_offline(contact, resource, status);
|
|
}
|
|
}
|
|
}
|
|
|
|
ProfChatWin *chatwin = wins_get_chat(barejid);
|
|
if (chatwin && chatwin->resource_override && (g_strcmp0(resource, chatwin->resource_override) == 0)) {
|
|
FREE_SET_NULL(chatwin->resource_override);
|
|
}
|
|
|
|
prefs_free_string(show_console);
|
|
prefs_free_string(show_chat_win);
|
|
jid_destroy(jid);
|
|
}
|
|
|
|
void
|
|
ui_clear_win_title(void)
|
|
{
|
|
printf("%c]0;%c", '\033', '\007');
|
|
}
|
|
|
|
void
|
|
ui_goodbye_title(void)
|
|
{
|
|
int result = system("/bin/echo -ne \"\033]0;Thanks for using Profanity\007\"");
|
|
if(result == -1) log_error("Error printing title on shutdown");
|
|
}
|
|
|
|
void
|
|
ui_statusbar_new(const int win)
|
|
{
|
|
status_bar_new(win);
|
|
}
|
|
|
|
static void
|
|
_ui_draw_term_title(void)
|
|
{
|
|
char new_win_title[100];
|
|
jabber_conn_status_t status = jabber_get_connection_status();
|
|
|
|
if (status == JABBER_CONNECTED) {
|
|
const char * const jid = jabber_get_fulljid();
|
|
gint unread = ui_unread();
|
|
|
|
if (unread != 0) {
|
|
snprintf(new_win_title, sizeof(new_win_title),
|
|
"/bin/echo -n \"%c]0;%s (%d) - %s%c\"", '\033', "Profanity",
|
|
unread, jid, '\007');
|
|
} else {
|
|
snprintf(new_win_title, sizeof(new_win_title),
|
|
"/bin/echo -n \"%c]0;%s - %s%c\"", '\033', "Profanity", jid,
|
|
'\007');
|
|
}
|
|
} else {
|
|
snprintf(new_win_title, sizeof(new_win_title), "/bin/echo -n \"%c]0;%s%c\"", '\033',
|
|
"Profanity", '\007');
|
|
}
|
|
if (g_strcmp0(win_title, new_win_title) != 0) {
|
|
// print to x-window title bar
|
|
int res = system(new_win_title);
|
|
if (res == -1) {
|
|
log_error("Error writing terminal window title.");
|
|
}
|
|
if (win_title != NULL) {
|
|
free(win_title);
|
|
}
|
|
win_title = strdup(new_win_title);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_room_info(ProfMucWin *mucwin)
|
|
{
|
|
char *role = muc_role_str(mucwin->roomjid);
|
|
char *affiliation = muc_affiliation_str(mucwin->roomjid);
|
|
|
|
ProfWin *window = (ProfWin*) mucwin;
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "Room: %s", mucwin->roomjid);
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "Affiliation: %s", affiliation);
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", "Role: %s", role);
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
|
|
void
|
|
ui_show_room_role_list(ProfMucWin *mucwin, muc_role_t role)
|
|
{
|
|
ProfWin *window = (ProfWin*) mucwin;
|
|
GSList *occupants = muc_occupants_by_role(mucwin->roomjid, role);
|
|
|
|
if (!occupants) {
|
|
switch (role) {
|
|
case MUC_ROLE_MODERATOR:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No moderators found.");
|
|
break;
|
|
case MUC_ROLE_PARTICIPANT:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No participants found.");
|
|
break;
|
|
case MUC_ROLE_VISITOR:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No visitors found.");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
} else {
|
|
switch (role) {
|
|
case MUC_ROLE_MODERATOR:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Moderators:");
|
|
break;
|
|
case MUC_ROLE_PARTICIPANT:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Participants:");
|
|
break;
|
|
case MUC_ROLE_VISITOR:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Visitors:");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
GSList *curr_occupant = occupants;
|
|
while(curr_occupant) {
|
|
Occupant *occupant = curr_occupant->data;
|
|
if (occupant->role == role) {
|
|
if (occupant->jid) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s (%s)", occupant->nick, occupant->jid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s", occupant->nick);
|
|
}
|
|
}
|
|
|
|
curr_occupant = g_slist_next(curr_occupant);
|
|
}
|
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_room_affiliation_list(ProfMucWin *mucwin, muc_affiliation_t affiliation)
|
|
{
|
|
ProfWin *window = (ProfWin*) mucwin;
|
|
GSList *occupants = muc_occupants_by_affiliation(mucwin->roomjid, affiliation);
|
|
|
|
if (!occupants) {
|
|
switch (affiliation) {
|
|
case MUC_AFFILIATION_OWNER:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No owners found.");
|
|
break;
|
|
case MUC_AFFILIATION_ADMIN:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No admins found.");
|
|
break;
|
|
case MUC_AFFILIATION_MEMBER:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No members found.");
|
|
break;
|
|
case MUC_AFFILIATION_OUTCAST:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "No outcasts found.");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
} else {
|
|
switch (affiliation) {
|
|
case MUC_AFFILIATION_OWNER:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Owners:");
|
|
break;
|
|
case MUC_AFFILIATION_ADMIN:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Admins:");
|
|
break;
|
|
case MUC_AFFILIATION_MEMBER:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Members:");
|
|
break;
|
|
case MUC_AFFILIATION_OUTCAST:
|
|
win_save_print(window, '!', NULL, 0, 0, "", "Outcasts:");
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
GSList *curr_occupant = occupants;
|
|
while(curr_occupant) {
|
|
Occupant *occupant = curr_occupant->data;
|
|
if (occupant->affiliation == affiliation) {
|
|
if (occupant->jid) {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s (%s)", occupant->nick, occupant->jid);
|
|
} else {
|
|
win_save_vprint(window, '!', NULL, 0, 0, "", " %s", occupant->nick);
|
|
}
|
|
}
|
|
|
|
curr_occupant = g_slist_next(curr_occupant);
|
|
}
|
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
|
|
static void
|
|
_ui_handle_form_field(ProfWin *window, char *tag, FormField *field)
|
|
{
|
|
win_save_vprint(window, '-', NULL, NO_EOL, THEME_AWAY, "", "[%s] ", tag);
|
|
win_save_vprint(window, '-', NULL, NO_EOL | NO_DATE, 0, "", "%s", field->label);
|
|
if (field->required) {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", " (required): ");
|
|
} else {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", ": ");
|
|
}
|
|
|
|
GSList *values = field->values;
|
|
GSList *curr_value = values;
|
|
|
|
switch (field->type_t) {
|
|
case FIELD_HIDDEN:
|
|
break;
|
|
case FIELD_TEXT_SINGLE:
|
|
if (curr_value != NULL) {
|
|
char *value = curr_value->data;
|
|
if (value != NULL) {
|
|
if (g_strcmp0(field->var, "muc#roomconfig_roomsecret") == 0) {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, THEME_ONLINE, "", "[hidden]");
|
|
} else {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, THEME_ONLINE, "", value);
|
|
}
|
|
}
|
|
}
|
|
win_save_newline(window);
|
|
break;
|
|
case FIELD_TEXT_PRIVATE:
|
|
if (curr_value != NULL) {
|
|
char *value = curr_value->data;
|
|
if (value != NULL) {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, THEME_ONLINE, "", "[hidden]");
|
|
}
|
|
}
|
|
win_save_newline(window);
|
|
break;
|
|
case FIELD_TEXT_MULTI:
|
|
win_save_newline(window);
|
|
int index = 1;
|
|
while (curr_value != NULL) {
|
|
char *value = curr_value->data;
|
|
GString *val_tag = g_string_new("");
|
|
g_string_printf(val_tag, "val%d", index++);
|
|
win_save_vprint(window, '-', NULL, 0, THEME_ONLINE, "", " [%s] %s", val_tag->str, value);
|
|
g_string_free(val_tag, TRUE);
|
|
curr_value = g_slist_next(curr_value);
|
|
}
|
|
break;
|
|
case FIELD_BOOLEAN:
|
|
if (curr_value == NULL) {
|
|
win_save_print(window, '-', NULL, NO_DATE, THEME_OFFLINE, "", "FALSE");
|
|
} else {
|
|
char *value = curr_value->data;
|
|
if (value == NULL) {
|
|
win_save_print(window, '-', NULL, NO_DATE, THEME_OFFLINE, "", "FALSE");
|
|
} else {
|
|
if (g_strcmp0(value, "0") == 0) {
|
|
win_save_print(window, '-', NULL, NO_DATE, THEME_OFFLINE, "", "FALSE");
|
|
} else {
|
|
win_save_print(window, '-', NULL, NO_DATE, THEME_ONLINE, "", "TRUE");
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case FIELD_LIST_SINGLE:
|
|
if (curr_value != NULL) {
|
|
win_save_newline(window);
|
|
char *value = curr_value->data;
|
|
GSList *options = field->options;
|
|
GSList *curr_option = options;
|
|
while (curr_option != NULL) {
|
|
FormOption *option = curr_option->data;
|
|
if (g_strcmp0(option->value, value) == 0) {
|
|
win_save_vprint(window, '-', NULL, 0, THEME_ONLINE, "", " [%s] %s", option->value, option->label);
|
|
} else {
|
|
win_save_vprint(window, '-', NULL, 0, THEME_OFFLINE, "", " [%s] %s", option->value, option->label);
|
|
}
|
|
curr_option = g_slist_next(curr_option);
|
|
}
|
|
}
|
|
break;
|
|
case FIELD_LIST_MULTI:
|
|
if (curr_value != NULL) {
|
|
win_save_newline(window);
|
|
GSList *options = field->options;
|
|
GSList *curr_option = options;
|
|
while (curr_option != NULL) {
|
|
FormOption *option = curr_option->data;
|
|
if (g_slist_find_custom(curr_value, option->value, (GCompareFunc)g_strcmp0) != NULL) {
|
|
win_save_vprint(window, '-', NULL, 0, THEME_ONLINE, "", " [%s] %s", option->value, option->label);
|
|
} else {
|
|
win_save_vprint(window, '-', NULL, 0, THEME_OFFLINE, "", " [%s] %s", option->value, option->label);
|
|
}
|
|
curr_option = g_slist_next(curr_option);
|
|
}
|
|
}
|
|
break;
|
|
case FIELD_JID_SINGLE:
|
|
if (curr_value != NULL) {
|
|
char *value = curr_value->data;
|
|
if (value != NULL) {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, THEME_ONLINE, "", value);
|
|
}
|
|
}
|
|
win_save_newline(window);
|
|
break;
|
|
case FIELD_JID_MULTI:
|
|
win_save_newline(window);
|
|
while (curr_value != NULL) {
|
|
char *value = curr_value->data;
|
|
win_save_vprint(window, '-', NULL, 0, THEME_ONLINE, "", " %s", value);
|
|
curr_value = g_slist_next(curr_value);
|
|
}
|
|
break;
|
|
case FIELD_FIXED:
|
|
if (curr_value != NULL) {
|
|
char *value = curr_value->data;
|
|
if (value != NULL) {
|
|
win_save_print(window, '-', NULL, NO_DATE | NO_EOL, 0, "", value);
|
|
}
|
|
}
|
|
win_save_newline(window);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_form(ProfMucConfWin *confwin)
|
|
{
|
|
ProfWin *window = (ProfWin*) confwin;
|
|
if (confwin->form->title != NULL) {
|
|
win_save_print(window, '-', NULL, NO_EOL, 0, "", "Form title: ");
|
|
win_save_print(window, '-', NULL, NO_DATE, 0, "", confwin->form->title);
|
|
} else {
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", "Configuration for room %s.", confwin->roomjid);
|
|
}
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
|
|
ui_show_form_help(confwin);
|
|
|
|
GSList *fields = confwin->form->fields;
|
|
GSList *curr_field = fields;
|
|
while (curr_field != NULL) {
|
|
FormField *field = curr_field->data;
|
|
|
|
if ((g_strcmp0(field->type, "fixed") == 0) && field->values) {
|
|
if (field->values) {
|
|
char *value = field->values->data;
|
|
win_save_print(window, '-', NULL, 0, 0, "", value);
|
|
}
|
|
} else if (g_strcmp0(field->type, "hidden") != 0 && field->var) {
|
|
char *tag = g_hash_table_lookup(confwin->form->var_to_tag, field->var);
|
|
_ui_handle_form_field(window, tag, field);
|
|
}
|
|
|
|
curr_field = g_slist_next(curr_field);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_form_field(ProfWin *window, DataForm *form, char *tag)
|
|
{
|
|
FormField *field = form_get_field_by_tag(form, tag);
|
|
_ui_handle_form_field(window, tag, field);
|
|
win_save_println(window, "");
|
|
}
|
|
|
|
void
|
|
ui_handle_room_configuration(const char * const roomjid, DataForm *form)
|
|
{
|
|
ProfWin *window = wins_new_muc_config(roomjid, form);
|
|
ProfMucConfWin *confwin = (ProfMucConfWin*)window;
|
|
assert(confwin->memcheck == PROFCONFWIN_MEMCHECK);
|
|
|
|
int num = wins_get_num(window);
|
|
ui_switch_win(num);
|
|
|
|
ui_show_form(confwin);
|
|
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
win_save_print(window, '-', NULL, 0, 0, "", "Use '/form submit' to save changes.");
|
|
win_save_print(window, '-', NULL, 0, 0, "", "Use '/form cancel' to cancel changes.");
|
|
win_save_print(window, '-', NULL, 0, 0, "", "See '/form help' for more information.");
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
|
|
void
|
|
ui_handle_room_configuration_form_error(const char * const roomjid, const char * const message)
|
|
{
|
|
ProfWin *window = NULL;
|
|
GString *message_str = g_string_new("");
|
|
|
|
if (roomjid) {
|
|
window = (ProfWin*)wins_get_muc(roomjid);
|
|
g_string_printf(message_str, "Could not get room configuration for %s", roomjid);
|
|
} else {
|
|
window = wins_get_console();
|
|
g_string_printf(message_str, "Could not get room configuration");
|
|
}
|
|
|
|
if (message) {
|
|
g_string_append(message_str, ": ");
|
|
g_string_append(message_str, message);
|
|
}
|
|
|
|
win_save_print(window, '-', NULL, 0, THEME_ERROR, "", message_str->str);
|
|
|
|
g_string_free(message_str, TRUE);
|
|
}
|
|
|
|
void
|
|
ui_handle_room_config_submit_result(const char * const roomjid)
|
|
{
|
|
ProfWin *muc_window = NULL;
|
|
ProfWin *form_window = NULL;
|
|
int num;
|
|
|
|
if (roomjid) {
|
|
muc_window = (ProfWin*)wins_get_muc(roomjid);
|
|
|
|
GString *form_recipient = g_string_new(roomjid);
|
|
g_string_append(form_recipient, " config");
|
|
form_window = (ProfWin*) wins_get_muc_conf(form_recipient->str);
|
|
g_string_free(form_recipient, TRUE);
|
|
|
|
if (form_window) {
|
|
num = wins_get_num(form_window);
|
|
wins_close_by_num(num);
|
|
}
|
|
|
|
if (muc_window) {
|
|
int num = wins_get_num(muc_window);
|
|
ui_switch_win(num);
|
|
win_save_print(muc_window, '!', NULL, 0, THEME_ROOMINFO, "", "Room configuration successful");
|
|
} else {
|
|
ui_switch_win(1);
|
|
cons_show("Room configuration successful: %s", roomjid);
|
|
}
|
|
} else {
|
|
cons_show("Room configuration successful");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_handle_room_config_submit_result_error(const char * const roomjid, const char * const message)
|
|
{
|
|
ProfWin *console = wins_get_console();
|
|
ProfWin *muc_window = NULL;
|
|
ProfWin *form_window = NULL;
|
|
|
|
if (roomjid) {
|
|
muc_window = (ProfWin*)wins_get_muc(roomjid);
|
|
|
|
GString *form_recipient = g_string_new(roomjid);
|
|
g_string_append(form_recipient, " config");
|
|
form_window = (ProfWin*) wins_get_muc_conf(form_recipient->str);
|
|
g_string_free(form_recipient, TRUE);
|
|
|
|
if (form_window) {
|
|
if (message) {
|
|
win_save_vprint(form_window, '!', NULL, 0, THEME_ERROR, "", "Configuration error: %s", message);
|
|
} else {
|
|
win_save_print(form_window, '!', NULL, 0, THEME_ERROR, "", "Configuration error");
|
|
}
|
|
} else if (muc_window) {
|
|
if (message) {
|
|
win_save_vprint(muc_window, '!', NULL, 0, THEME_ERROR, "", "Configuration error: %s", message);
|
|
} else {
|
|
win_save_print(muc_window, '!', NULL, 0, THEME_ERROR, "", "Configuration error");
|
|
}
|
|
} else {
|
|
if (message) {
|
|
win_save_vprint(console, '!', NULL, 0, THEME_ERROR, "", "Configuration error for %s: %s", roomjid, message);
|
|
} else {
|
|
win_save_vprint(console, '!', NULL, 0, THEME_ERROR, "", "Configuration error for %s", roomjid);
|
|
}
|
|
}
|
|
} else {
|
|
win_save_print(console, '!', NULL, 0, THEME_ERROR, "", "Configuration error");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_form_field_help(ProfMucConfWin *confwin, char *tag)
|
|
{
|
|
ProfWin *window = (ProfWin*) confwin;
|
|
FormField *field = form_get_field_by_tag(confwin->form, tag);
|
|
if (field != NULL) {
|
|
win_save_print(window, '-', NULL, NO_EOL, 0, "", field->label);
|
|
if (field->required) {
|
|
win_save_print(window, '-', NULL, NO_DATE, 0, "", " (Required):");
|
|
} else {
|
|
win_save_print(window, '-', NULL, NO_DATE, 0, "", ":");
|
|
}
|
|
if (field->description != NULL) {
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Description : %s", field->description);
|
|
}
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Type : %s", field->type);
|
|
|
|
int num_values = 0;
|
|
GSList *curr_option = NULL;
|
|
FormOption *option = NULL;
|
|
|
|
switch (field->type_t) {
|
|
case FIELD_TEXT_SINGLE:
|
|
case FIELD_TEXT_PRIVATE:
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Set : /%s <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is any text");
|
|
break;
|
|
case FIELD_TEXT_MULTI:
|
|
num_values = form_get_value_count(confwin->form, tag);
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Add : /%s add <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is any text");
|
|
if (num_values > 0) {
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Remove : /%s remove <value>", tag);
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Where : <value> between 'val1' and 'val%d'", num_values);
|
|
}
|
|
break;
|
|
case FIELD_BOOLEAN:
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Set : /%s <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is either 'on' or 'off'");
|
|
break;
|
|
case FIELD_LIST_SINGLE:
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Set : /%s <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is one of");
|
|
curr_option = field->options;
|
|
while (curr_option != NULL) {
|
|
option = curr_option->data;
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " %s", option->value);
|
|
curr_option = g_slist_next(curr_option);
|
|
}
|
|
break;
|
|
case FIELD_LIST_MULTI:
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Add : /%s add <value>", tag);
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Remove : /%s remove <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is one of");
|
|
curr_option = field->options;
|
|
while (curr_option != NULL) {
|
|
option = curr_option->data;
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " %s", option->value);
|
|
curr_option = g_slist_next(curr_option);
|
|
}
|
|
break;
|
|
case FIELD_JID_SINGLE:
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Set : /%s <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is a valid Jabber ID");
|
|
break;
|
|
case FIELD_JID_MULTI:
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Add : /%s add <value>", tag);
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", " Remove : /%s remove <value>", tag);
|
|
win_save_print(window, '-', NULL, 0, 0, "", " Where : <value> is a valid Jabber ID");
|
|
break;
|
|
case FIELD_FIXED:
|
|
case FIELD_UNKNOWN:
|
|
case FIELD_HIDDEN:
|
|
default:
|
|
break;
|
|
}
|
|
} else {
|
|
win_save_vprint(window, '-', NULL, 0, 0, "", "No such field %s", tag);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_form_help(ProfMucConfWin *confwin)
|
|
{
|
|
if (confwin->form->instructions != NULL) {
|
|
ProfWin *window = (ProfWin*) confwin;
|
|
win_save_print(window, '-', NULL, 0, 0, "", "Supplied instructions:");
|
|
win_save_print(window, '-', NULL, 0, 0, "", confwin->form->instructions);
|
|
win_save_print(window, '-', NULL, 0, 0, "", "");
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_lines(ProfWin *window, const gchar** lines)
|
|
{
|
|
if (lines != NULL) {
|
|
int i;
|
|
for (i = 0; lines[i] != NULL; i++) {
|
|
win_save_print(window, '-', NULL, 0, 0, "", lines[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_show_occupants(const char * const roomjid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window && !win_has_active_subwin(window)) {
|
|
wins_show_subwin(window);
|
|
occupantswin_occupants(roomjid);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_room_hide_occupants(const char * const roomjid)
|
|
{
|
|
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
|
if (window && win_has_active_subwin(window)) {
|
|
wins_hide_subwin(window);
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_show_roster(void)
|
|
{
|
|
ProfWin *window = wins_get_console();
|
|
if (window && !win_has_active_subwin(window)) {
|
|
wins_show_subwin(window);
|
|
rosterwin_roster();
|
|
}
|
|
}
|
|
|
|
void
|
|
ui_hide_roster(void)
|
|
{
|
|
ProfWin *window = wins_get_console();
|
|
if (window && win_has_active_subwin(window)) {
|
|
wins_hide_subwin(window);
|
|
}
|
|
}
|
|
|
|
static void
|
|
_win_handle_switch(const wint_t ch)
|
|
{
|
|
if (ch == KEY_F(1)) {
|
|
ui_switch_win(1);
|
|
} else if (ch == KEY_F(2)) {
|
|
ui_switch_win(2);
|
|
} else if (ch == KEY_F(3)) {
|
|
ui_switch_win(3);
|
|
} else if (ch == KEY_F(4)) {
|
|
ui_switch_win(4);
|
|
} else if (ch == KEY_F(5)) {
|
|
ui_switch_win(5);
|
|
} else if (ch == KEY_F(6)) {
|
|
ui_switch_win(6);
|
|
} else if (ch == KEY_F(7)) {
|
|
ui_switch_win(7);
|
|
} else if (ch == KEY_F(8)) {
|
|
ui_switch_win(8);
|
|
} else if (ch == KEY_F(9)) {
|
|
ui_switch_win(9);
|
|
} else if (ch == KEY_F(10)) {
|
|
ui_switch_win(0);
|
|
}
|
|
}
|
|
|
|
static void
|
|
_win_show_history(int win_index, const char * const contact)
|
|
{
|
|
ProfWin *window = wins_get_by_num(win_index);
|
|
if (window->type == WIN_CHAT) {
|
|
ProfChatWin *chatwin = (ProfChatWin*) window;
|
|
assert(chatwin->memcheck == PROFCHATWIN_MEMCHECK);
|
|
if (!chatwin->history_shown) {
|
|
Jid *jid = jid_create(jabber_get_fulljid());
|
|
GSList *history = chat_log_get_previous(jid->barejid, contact);
|
|
jid_destroy(jid);
|
|
GSList *curr = history;
|
|
while (curr != NULL) {
|
|
char *line = curr->data;
|
|
// entry
|
|
if (line[2] == ':') {
|
|
char hh[3]; memcpy(hh, &line[0], 2); hh[2] = '\0'; int ihh = atoi(hh);
|
|
char mm[3]; memcpy(mm, &line[3], 2); mm[2] = '\0'; int imm = atoi(mm);
|
|
char ss[3]; memcpy(ss, &line[6], 2); ss[2] = '\0'; int iss = atoi(ss);
|
|
GDateTime *time = g_date_time_new_local(2000, 1, 1, ihh, imm, iss);
|
|
GTimeVal tv;
|
|
g_date_time_to_timeval(time, &tv);
|
|
win_save_print(window, '-', &tv, NO_COLOUR_DATE, 0, "", curr->data+11);
|
|
g_date_time_unref(time);
|
|
// header
|
|
} else {
|
|
win_save_print(window, '-', NULL, 0, 0, "", curr->data);
|
|
}
|
|
curr = g_slist_next(curr);
|
|
}
|
|
chatwin->history_shown = TRUE;
|
|
|
|
g_slist_free_full(history, free);
|
|
}
|
|
}
|
|
}
|
|
|