2013-04-20 16:42:39 -04:00
|
|
|
/*
|
|
|
|
* console.c
|
|
|
|
*
|
2014-03-08 20:18:19 -05:00
|
|
|
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
|
2013-04-20 16:42:39 -04: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
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-04-20 18:39:17 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2013-04-20 16:42:39 -04:00
|
|
|
#ifdef HAVE_NCURSESW_NCURSES_H
|
|
|
|
#include <ncursesw/ncurses.h>
|
|
|
|
#elif HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
|
|
|
#endif
|
|
|
|
|
2013-04-20 20:31:30 -04:00
|
|
|
#include "command/command.h"
|
2013-04-20 18:39:17 -04:00
|
|
|
#include "common.h"
|
2014-04-13 17:20:15 -04:00
|
|
|
#include "log.h"
|
2014-05-09 20:05:03 -04:00
|
|
|
#include "muc.h"
|
2013-12-14 10:34:17 -05:00
|
|
|
#include "roster_list.h"
|
2013-04-20 18:39:17 -04:00
|
|
|
#include "config/preferences.h"
|
|
|
|
#include "config/theme.h"
|
2013-04-20 16:42:39 -04:00
|
|
|
#include "ui/window.h"
|
2013-08-20 18:08:21 -04:00
|
|
|
#include "ui/windows.h"
|
2013-04-20 19:21:30 -04:00
|
|
|
#include "ui/ui.h"
|
2014-04-07 16:12:30 -04:00
|
|
|
#include "ui/statusbar.h"
|
2013-05-06 18:04:46 -04:00
|
|
|
#include "xmpp/xmpp.h"
|
2013-07-14 16:58:02 -04:00
|
|
|
#include "xmpp/bookmark.h"
|
2013-04-20 16:42:39 -04:00
|
|
|
|
2013-09-16 19:59:37 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
2014-03-05 19:06:22 -05:00
|
|
|
#include "gitversion.h"
|
2013-09-16 19:59:37 -04:00
|
|
|
#endif
|
|
|
|
|
2013-04-20 18:39:17 -04:00
|
|
|
static void _cons_splash_logo(void);
|
2013-07-03 18:44:51 -04:00
|
|
|
void _show_roster_contacts(GSList *list, gboolean show_groups);
|
2013-04-20 16:42:39 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_time(void)
|
2013-04-20 20:37:44 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_EOL, 0, "", "");
|
2014-04-06 16:06:50 -04:00
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-04-20 20:37:44 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_word(const char * const word)
|
2013-04-20 20:41:36 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", word);
|
2014-04-06 16:06:50 -04:00
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-04-20 20:41:36 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_debug(const char * const msg, ...)
|
2013-04-20 20:39:36 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:39:36 -04:00
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, fmt_msg->str);
|
2013-04-20 20:39:36 -04:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
|
|
|
va_end(arg);
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:39:36 -04:00
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_page_off();
|
2014-04-01 16:52:04 -04:00
|
|
|
ui_update_screen();
|
2013-04-20 20:39:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-19 16:05:39 -05:00
|
|
|
static void
|
|
|
|
_cons_show(const char * const msg, ...)
|
2013-04-20 18:39:17 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 18:39:17 -04:00
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, fmt_msg->str);
|
2013-04-20 18:39:17 -04:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
|
|
|
va_end(arg);
|
2014-04-06 16:06:50 -04:00
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_error(const char * const msg, ...)
|
2013-04-20 20:37:44 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:37:44 -04:00
|
|
|
va_list arg;
|
|
|
|
va_start(arg, msg);
|
|
|
|
GString *fmt_msg = g_string_new(NULL);
|
|
|
|
g_string_vprintf(fmt_msg, msg, arg);
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_ERROR, "", fmt_msg->str);
|
2013-04-20 20:37:44 -04:00
|
|
|
g_string_free(fmt_msg, TRUE);
|
|
|
|
va_end(arg);
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:42:57 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_typing(const char * const barejid)
|
2013-04-20 20:47:57 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-05-20 17:51:35 -04:00
|
|
|
const char * display_usr = NULL;
|
2014-08-19 16:22:43 -04:00
|
|
|
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;
|
|
|
|
}
|
2013-05-20 17:51:35 -04:00
|
|
|
} else {
|
|
|
|
display_usr = barejid;
|
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, COLOUR_TYPING, "", "!! %s is typing a message...", display_usr);
|
2013-04-22 16:11:08 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:47:57 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_incoming_message(const char * const short_from, const int win_index)
|
2013-04-20 20:47:57 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-08-28 16:29:11 -04:00
|
|
|
|
|
|
|
int ui_index = win_index;
|
2013-05-16 18:04:50 -04:00
|
|
|
if (ui_index == 10) {
|
|
|
|
ui_index = 0;
|
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, COLOUR_INCOMING, "", "<< incoming from %s (%d)", short_from, ui_index);
|
2013-04-22 16:11:08 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:47:57 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_about(void)
|
2013-04-20 18:39:17 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 18:39:17 -04:00
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_SPLASH)) {
|
|
|
|
_cons_splash_logo();
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
2013-09-16 19:59:37 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Welcome to Profanity, version %sdev.%s.%s", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
|
2013-09-16 19:59:37 -04:00
|
|
|
#else
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Welcome to Profanity, version %sdev", PACKAGE_VERSION);
|
2013-09-16 19:59:37 -04:00
|
|
|
#endif
|
2013-04-20 18:39:17 -04:00
|
|
|
} else {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Welcome to Profanity, version %s", PACKAGE_VERSION);
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Copyright (C) 2012 - 2014 James Booth <%s>.", PACKAGE_BUGREPORT);
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>");
|
|
|
|
win_save_println(console, "");
|
|
|
|
win_save_println(console, "This is free software; you are free to change and redistribute it.");
|
|
|
|
win_save_println(console, "There is NO WARRANTY, to the extent permitted by law.");
|
|
|
|
win_save_println(console, "");
|
|
|
|
win_save_println(console, "Type '/help' to show complete help.");
|
|
|
|
win_save_println(console, "");
|
2013-04-20 18:39:17 -04:00
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_VERCHECK)) {
|
|
|
|
cons_check_version(FALSE);
|
|
|
|
}
|
|
|
|
|
2014-02-02 18:56:50 -05:00
|
|
|
pnoutrefresh(console->win, 0, 0, 1, 0, rows-3, cols-1);
|
2013-04-20 18:39:17 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_check_version(gboolean not_available_msg)
|
2013-04-20 18:39:17 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 18:39:17 -04:00
|
|
|
char *latest_release = release_get_latest();
|
|
|
|
|
|
|
|
if (latest_release != NULL) {
|
|
|
|
gboolean relase_valid = g_regex_match_simple("^\\d+\\.\\d+\\.\\d+$", latest_release, 0, 0);
|
|
|
|
|
|
|
|
if (relase_valid) {
|
|
|
|
if (release_is_new(latest_release)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "A new version of Profanity is available: %s", latest_release);
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "Check <http://www.profanity.im> for details.");
|
2013-04-20 18:39:17 -04:00
|
|
|
free(latest_release);
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "");
|
2013-04-20 18:39:17 -04:00
|
|
|
} else {
|
|
|
|
if (not_available_msg) {
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "No new version available.");
|
|
|
|
win_save_println(console, "");
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
|
|
|
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_login_success(ProfAccount *account)
|
2013-04-20 19:21:30 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", "%s logged in successfully, ", account->jid);
|
2013-04-20 19:21:30 -04:00
|
|
|
|
|
|
|
resource_presence_t presence = accounts_get_login_presence(account->name);
|
|
|
|
const char *presence_str = string_from_resource_presence(presence);
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(presence_str);
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", "%s", presence_str);
|
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", " (priority %d)",
|
2013-04-20 19:21:30 -04:00
|
|
|
accounts_get_priority_for_presence_type(account->name, presence));
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE, 0, "", ".");
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 19:21:30 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_wins(void)
|
2013-04-20 19:32:31 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 19:32:31 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Active windows:");
|
2013-08-20 18:08:21 -04:00
|
|
|
GSList *window_strings = wins_create_summary();
|
2013-04-20 19:32:31 -04:00
|
|
|
|
2013-08-20 18:08:21 -04:00
|
|
|
GSList *curr = window_strings;
|
|
|
|
while (curr != NULL) {
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, curr->data);
|
2013-08-20 18:08:21 -04:00
|
|
|
curr = g_slist_next(curr);
|
2013-04-20 19:32:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
cons_show("");
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 19:32:31 -04:00
|
|
|
}
|
2013-04-20 19:21:30 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_room_invites(GSList *invites)
|
2013-04-24 18:50:47 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-24 18:50:47 -04:00
|
|
|
cons_show("");
|
|
|
|
if (invites == NULL) {
|
|
|
|
cons_show("No outstanding chat room invites.");
|
|
|
|
} else {
|
|
|
|
cons_show("Chat room invites, use /join or /decline commands:");
|
|
|
|
while (invites != NULL) {
|
|
|
|
cons_show(" %s", invites->data);
|
|
|
|
invites = g_slist_next(invites);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-24 18:50:47 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_info(PContact pcontact)
|
2013-04-20 19:39:42 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2014-06-03 16:14:21 -04:00
|
|
|
win_show_info(console, pcontact);
|
2013-04-20 19:39:42 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 19:39:42 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_caps(const char * const contact, Resource *resource)
|
2013-04-20 19:47:05 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 19:47:05 -04:00
|
|
|
cons_show("");
|
|
|
|
const char *resource_presence = string_from_resource_presence(resource->presence);
|
2014-06-21 04:16:50 -04:00
|
|
|
|
|
|
|
int presence_colour = win_presence_colour(resource_presence);
|
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, presence_colour, "", "%s", contact);
|
|
|
|
win_save_print(console, '-', NULL, NO_DATE, 0, "", ":");
|
|
|
|
|
2013-04-20 19:47:05 -04:00
|
|
|
|
|
|
|
if (resource->caps_str != NULL) {
|
|
|
|
Capabilities *caps = caps_get(resource->caps_str);
|
|
|
|
if (caps != NULL) {
|
|
|
|
// show identity
|
|
|
|
if ((caps->category != NULL) || (caps->type != NULL) || (caps->name != NULL)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_EOL, 0, "", "Identity: ");
|
2013-04-20 19:47:05 -04:00
|
|
|
if (caps->name != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->name);
|
2013-04-20 19:47:05 -04:00
|
|
|
if ((caps->category != NULL) || (caps->type != NULL)) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (caps->type != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->type);
|
2013-04-20 19:47:05 -04:00
|
|
|
if (caps->category != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (caps->category != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->category);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
if (caps->software != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", "Software: %s", caps->software);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
if (caps->software_version != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->software_version);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
if ((caps->software != NULL) || (caps->software_version != NULL)) {
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
if (caps->os != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", "OS: %s", caps->os);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
if (caps->os_version != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->os_version);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
if ((caps->os != NULL) || (caps->os_version != NULL)) {
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (caps->features != NULL) {
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "Features:");
|
2013-04-20 19:47:05 -04:00
|
|
|
GSList *feature = caps->features;
|
|
|
|
while (feature != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", " %s", feature->data);
|
2013-04-20 19:47:05 -04:00
|
|
|
feature = g_slist_next(feature);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 19:47:05 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_software_version(const char * const jid, const char * const presence,
|
2013-04-20 19:50:38 -04:00
|
|
|
const char * const name, const char * const version, const char * const os)
|
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 19:50:38 -04:00
|
|
|
if ((name != NULL) || (version != NULL) || (os != NULL)) {
|
|
|
|
cons_show("");
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(presence);
|
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, presence_colour, "", "%s", jid);
|
|
|
|
win_save_print(console, '-', NULL, NO_DATE, 0, "", ":");
|
2013-04-20 19:50:38 -04:00
|
|
|
}
|
|
|
|
if (name != NULL) {
|
|
|
|
cons_show("Name : %s", name);
|
|
|
|
}
|
|
|
|
if (version != NULL) {
|
|
|
|
cons_show("Version : %s", version);
|
|
|
|
}
|
|
|
|
if (os != NULL) {
|
|
|
|
cons_show("OS : %s", os);
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 19:50:38 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_received_subs(void)
|
2013-04-27 18:13:52 -04:00
|
|
|
{
|
2013-05-05 18:20:27 -04:00
|
|
|
GSList *received = presence_get_subscription_requests();
|
2013-04-27 18:13:52 -04:00
|
|
|
if (received == NULL) {
|
|
|
|
cons_show("No outstanding subscription requests.");
|
|
|
|
} else {
|
|
|
|
cons_show("Outstanding subscription requests from:",
|
2013-05-05 18:20:27 -04:00
|
|
|
g_slist_length(received));
|
2013-04-27 18:13:52 -04:00
|
|
|
while (received != NULL) {
|
|
|
|
cons_show(" %s", received->data);
|
2013-05-05 18:20:27 -04:00
|
|
|
received = g_slist_next(received);
|
2013-04-27 18:13:52 -04:00
|
|
|
}
|
2013-05-05 18:20:27 -04:00
|
|
|
g_slist_free_full(received, g_free);
|
2013-04-27 18:13:52 -04:00
|
|
|
}
|
2013-08-20 18:08:21 -04:00
|
|
|
|
|
|
|
cons_alert();
|
2013-04-27 18:13:52 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_sent_subs(void)
|
2013-04-27 18:13:52 -04:00
|
|
|
{
|
2013-05-06 17:32:58 -04:00
|
|
|
if (roster_has_pending_subscriptions()) {
|
|
|
|
GSList *contacts = roster_get_contacts();
|
2013-04-27 18:13:52 -04:00
|
|
|
PContact contact = NULL;
|
|
|
|
cons_show("Awaiting subscription responses from:");
|
|
|
|
while (contacts != NULL) {
|
|
|
|
contact = (PContact) contacts->data;
|
|
|
|
if (p_contact_pending_out(contact)) {
|
|
|
|
cons_show(" %s", p_contact_barejid(contact));
|
|
|
|
}
|
|
|
|
contacts = g_slist_next(contacts);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("No pending requests sent.");
|
|
|
|
}
|
2013-08-20 18:08:21 -04:00
|
|
|
|
|
|
|
cons_alert();
|
2013-04-27 18:13:52 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_room_list(GSList *rooms, const char * const conference_node)
|
2013-04-20 19:54:23 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 19:54:23 -04:00
|
|
|
if ((rooms != NULL) && (g_slist_length(rooms) > 0)) {
|
|
|
|
cons_show("Chat rooms at %s:", conference_node);
|
|
|
|
while (rooms != NULL) {
|
|
|
|
DiscoItem *room = rooms->data;
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", " %s", room->jid);
|
2013-04-20 19:54:23 -04:00
|
|
|
if (room->name != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", ", (%s)", room->name);
|
2013-04-20 19:54:23 -04:00
|
|
|
}
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 19:54:23 -04:00
|
|
|
rooms = g_slist_next(rooms);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("No chat rooms at %s", conference_node);
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 19:54:23 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_bookmarks(const GList *list)
|
2013-07-14 16:58:02 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-07-14 16:58:02 -04:00
|
|
|
|
2014-04-12 21:57:11 -04:00
|
|
|
if (list == NULL) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show("No bookmarks found.");
|
|
|
|
} else {
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Bookmarks:");
|
2013-07-14 16:58:02 -04:00
|
|
|
|
2014-04-12 21:57:11 -04:00
|
|
|
while (list != NULL) {
|
2014-04-25 19:36:36 -04:00
|
|
|
Bookmark *item = list->data;
|
2013-07-14 16:58:02 -04:00
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = 0;
|
2014-05-09 20:05:03 -04:00
|
|
|
|
|
|
|
if (muc_room_is_active(item->jid)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = COLOUR_ONLINE;
|
2014-05-09 20:05:03 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, presence_colour, "", " %s", item->jid);
|
2014-04-12 21:57:11 -04:00
|
|
|
if (item->nick != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", "/%s", item->nick);
|
2014-04-12 21:57:11 -04:00
|
|
|
}
|
|
|
|
if (item->autojoin) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " (autojoin)");
|
2014-04-12 21:57:11 -04:00
|
|
|
}
|
2014-05-09 19:50:43 -04:00
|
|
|
if (item->password != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " (private)");
|
2014-05-09 19:50:43 -04:00
|
|
|
}
|
2014-05-09 20:05:03 -04:00
|
|
|
if (muc_room_is_active(item->jid)) {
|
|
|
|
ProfWin *roomwin = wins_get_by_recipient(item->jid);
|
|
|
|
if (roomwin != NULL) {
|
|
|
|
int num = wins_get_num(roomwin);
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", " (%d)", num);
|
2014-05-09 20:05:03 -04:00
|
|
|
}
|
|
|
|
}
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2014-04-12 21:57:11 -04:00
|
|
|
list = g_list_next(list);
|
2013-07-14 16:58:02 -04:00
|
|
|
}
|
|
|
|
|
2014-04-12 21:57:11 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2014-04-06 16:06:50 -04:00
|
|
|
}
|
2013-07-14 16:58:02 -04:00
|
|
|
cons_alert();
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_disco_info(const char *jid, GSList *identities, GSList *features)
|
2013-04-20 20:00:03 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:00:03 -04:00
|
|
|
if (((identities != NULL) && (g_slist_length(identities) > 0)) ||
|
|
|
|
((features != NULL) && (g_slist_length(features) > 0))) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Service disovery info for %s", jid);
|
|
|
|
|
|
|
|
if (identities != NULL) {
|
|
|
|
cons_show(" Identities");
|
|
|
|
}
|
|
|
|
while (identities != NULL) {
|
|
|
|
DiscoIdentity *identity = identities->data; // anme trpe, cat
|
|
|
|
GString *identity_str = g_string_new(" ");
|
|
|
|
if (identity->name != NULL) {
|
2013-08-25 07:52:25 -04:00
|
|
|
identity_str = g_string_append(identity_str, identity->name);
|
2013-04-20 20:00:03 -04:00
|
|
|
identity_str = g_string_append(identity_str, " ");
|
|
|
|
}
|
|
|
|
if (identity->type != NULL) {
|
2013-08-25 07:52:25 -04:00
|
|
|
identity_str = g_string_append(identity_str, identity->type);
|
2013-04-20 20:00:03 -04:00
|
|
|
identity_str = g_string_append(identity_str, " ");
|
|
|
|
}
|
|
|
|
if (identity->category != NULL) {
|
2013-08-25 07:52:25 -04:00
|
|
|
identity_str = g_string_append(identity_str, identity->category);
|
2013-04-20 20:00:03 -04:00
|
|
|
}
|
|
|
|
cons_show(identity_str->str);
|
|
|
|
g_string_free(identity_str, FALSE);
|
|
|
|
identities = g_slist_next(identities);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (features != NULL) {
|
|
|
|
cons_show(" Features:");
|
|
|
|
}
|
|
|
|
while (features != NULL) {
|
|
|
|
cons_show(" %s", features->data);
|
|
|
|
features = g_slist_next(features);
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:00:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_disco_items(GSList *items, const char * const jid)
|
2013-04-20 20:00:03 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:00:03 -04:00
|
|
|
if ((items != NULL) && (g_slist_length(items) > 0)) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Service discovery items for %s:", jid);
|
|
|
|
while (items != NULL) {
|
|
|
|
DiscoItem *item = items->data;
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", " %s", item->jid);
|
2013-04-20 20:00:03 -04:00
|
|
|
if (item->name != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", ", (%s)", item->name);
|
2013-04-20 20:00:03 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE, 0, "", "");
|
2013-04-20 20:00:03 -04:00
|
|
|
items = g_slist_next(items);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("");
|
|
|
|
cons_show("No service discovery items for %s", jid);
|
|
|
|
}
|
2014-04-06 16:06:50 -04:00
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:00:03 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_status(const char * const barejid)
|
2013-04-20 20:13:35 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-05-20 17:51:35 -04:00
|
|
|
PContact pcontact = roster_get_contact(barejid);
|
2013-04-20 20:13:35 -04:00
|
|
|
|
|
|
|
if (pcontact != NULL) {
|
2013-10-06 18:22:46 -04:00
|
|
|
win_show_contact(console, pcontact);
|
2013-04-20 20:13:35 -04:00
|
|
|
} else {
|
2013-05-20 17:51:35 -04:00
|
|
|
cons_show("No such contact \"%s\" in roster.", barejid);
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
2014-04-06 16:06:50 -04:00
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:13:35 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_room_invite(const char * const invitor, const char * const room,
|
2013-04-20 20:15:10 -04:00
|
|
|
const char * const reason)
|
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-05-30 16:26:11 -04:00
|
|
|
char *display_from = NULL;
|
|
|
|
PContact contact = roster_get_contact(invitor);
|
|
|
|
if (contact != NULL) {
|
|
|
|
if (p_contact_name(contact) != NULL) {
|
|
|
|
display_from = strdup(p_contact_name(contact));
|
|
|
|
} else {
|
|
|
|
display_from = strdup(invitor);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
display_from = strdup(invitor);
|
|
|
|
}
|
|
|
|
|
2013-04-20 20:15:10 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Chat room invite received:");
|
2013-05-30 16:26:11 -04:00
|
|
|
cons_show(" From : %s", display_from);
|
2013-04-20 20:15:10 -04:00
|
|
|
cons_show(" Room : %s", room);
|
|
|
|
|
|
|
|
if (reason != NULL) {
|
|
|
|
cons_show(" Message: %s", reason);
|
|
|
|
}
|
|
|
|
|
2013-04-24 18:50:47 -04:00
|
|
|
cons_show("Use /join or /decline");
|
2013-04-20 20:15:10 -04:00
|
|
|
|
2013-04-22 18:48:23 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_INVITE)) {
|
2013-05-30 16:26:11 -04:00
|
|
|
notify_invite(display_from, room, reason);
|
2013-04-22 18:48:23 -04:00
|
|
|
}
|
|
|
|
|
2013-08-03 07:27:07 -04:00
|
|
|
free(display_from);
|
2013-05-30 16:26:11 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:18:04 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_account_list(gchar **accounts)
|
2013-04-20 20:18:04 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:18:04 -04:00
|
|
|
int size = g_strv_length(accounts);
|
|
|
|
if (size > 0) {
|
|
|
|
cons_show("Accounts:");
|
|
|
|
int i = 0;
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
if ((jabber_get_connection_status() == JABBER_CONNECTED) &&
|
|
|
|
(g_strcmp0(jabber_get_account_name(), accounts[i]) == 0)) {
|
|
|
|
resource_presence_t presence = accounts_get_last_presence(accounts[i]);
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(string_from_resource_presence(presence));
|
|
|
|
win_save_vprint(console, '-', NULL, 0, presence_colour, "", "%s", accounts[i]);
|
2013-04-20 20:18:04 -04:00
|
|
|
} else {
|
|
|
|
cons_show(accounts[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cons_show("");
|
|
|
|
} else {
|
|
|
|
cons_show("No accounts created yet.");
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:15:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_account(ProfAccount *account)
|
2013-04-20 20:21:21 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:21:21 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Account %s:", account->name);
|
|
|
|
if (account->enabled) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("enabled : TRUE");
|
2013-04-20 20:21:21 -04:00
|
|
|
} else {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("enabled : FALSE");
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("jid : %s", account->jid);
|
2013-11-07 16:43:11 -05:00
|
|
|
if (account->password != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("password : [redacted]");
|
2013-11-07 16:43:11 -05:00
|
|
|
}
|
2013-04-20 20:21:21 -04:00
|
|
|
if (account->resource != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("resource : %s", account->resource);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if (account->server != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("server : %s", account->server);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
2014-01-18 19:09:51 -05:00
|
|
|
if (account->port != 0) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("port : %d", account->port);
|
2014-01-18 19:09:51 -05:00
|
|
|
}
|
2013-09-12 18:30:35 -04:00
|
|
|
if (account->muc_service != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("muc service : %s", account->muc_service);
|
2013-09-12 18:30:35 -04:00
|
|
|
}
|
|
|
|
if (account->muc_nick != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("muc nick : %s", account->muc_nick);
|
2014-05-11 09:13:15 -04:00
|
|
|
}
|
2013-04-20 20:21:21 -04:00
|
|
|
if (account->last_presence != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("Last presence : %s", account->last_presence);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if (account->login_presence != NULL) {
|
2014-05-11 14:49:18 -04:00
|
|
|
cons_show ("Login presence : %s", account->login_presence);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (account->otr_policy != NULL) {
|
|
|
|
cons_show ("OTR policy : %s", account->otr_policy);
|
|
|
|
}
|
|
|
|
if (g_list_length(account->otr_manual) > 0) {
|
|
|
|
GString *manual = g_string_new("OTR manual : ");
|
|
|
|
GList *curr = account->otr_manual;
|
|
|
|
while (curr != NULL) {
|
|
|
|
g_string_append(manual, curr->data);
|
|
|
|
if (curr->next != NULL) {
|
|
|
|
g_string_append(manual, ", ");
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
cons_show(manual->str);
|
2014-05-12 18:32:36 -04:00
|
|
|
g_string_free(manual, TRUE);
|
2014-05-11 14:49:18 -04:00
|
|
|
}
|
|
|
|
if (g_list_length(account->otr_opportunistic) > 0) {
|
|
|
|
GString *opportunistic = g_string_new("OTR opportunistic : ");
|
|
|
|
GList *curr = account->otr_opportunistic;
|
|
|
|
while (curr != NULL) {
|
|
|
|
g_string_append(opportunistic, curr->data);
|
|
|
|
if (curr->next != NULL) {
|
|
|
|
g_string_append(opportunistic, ", ");
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
cons_show(opportunistic->str);
|
2014-05-12 18:32:36 -04:00
|
|
|
g_string_free(opportunistic, TRUE);
|
2014-05-11 14:49:18 -04:00
|
|
|
}
|
|
|
|
if (g_list_length(account->otr_always) > 0) {
|
|
|
|
GString *always = g_string_new("OTR always : ");
|
|
|
|
GList *curr = account->otr_always;
|
|
|
|
while (curr != NULL) {
|
|
|
|
g_string_append(always, curr->data);
|
|
|
|
if (curr->next != NULL) {
|
|
|
|
g_string_append(always, ", ");
|
|
|
|
}
|
|
|
|
curr = curr->next;
|
|
|
|
}
|
|
|
|
cons_show(always->str);
|
2014-05-12 18:32:36 -04:00
|
|
|
g_string_free(always, TRUE);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
2014-05-11 14:49:18 -04:00
|
|
|
|
|
|
|
cons_show ("Priority : chat:%d, online:%d, away:%d, xa:%d, dnd:%d",
|
2013-04-20 20:21:21 -04:00
|
|
|
account->priority_chat, account->priority_online, account->priority_away,
|
|
|
|
account->priority_xa, account->priority_dnd);
|
|
|
|
|
|
|
|
if ((jabber_get_connection_status() == JABBER_CONNECTED) &&
|
|
|
|
(g_strcmp0(jabber_get_account_name(), account->name) == 0)) {
|
|
|
|
GList *resources = jabber_get_available_resources();
|
|
|
|
GList *ordered_resources = NULL;
|
|
|
|
|
|
|
|
if (resources != NULL) {
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "Resources:");
|
2013-04-20 20:21:21 -04:00
|
|
|
|
|
|
|
// sort in order of availabiltiy
|
|
|
|
while (resources != NULL) {
|
|
|
|
Resource *resource = resources->data;
|
|
|
|
ordered_resources = g_list_insert_sorted(ordered_resources,
|
|
|
|
resource, (GCompareFunc)resource_compare_availability);
|
|
|
|
resources = g_list_next(resources);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (ordered_resources != NULL) {
|
|
|
|
Resource *resource = ordered_resources->data;
|
|
|
|
const char *resource_presence = string_from_resource_presence(resource->presence);
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour = win_presence_colour(resource_presence);
|
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, presence_colour, "", " %s (%d), %s", resource->name, resource->priority, resource_presence);
|
|
|
|
|
2013-04-20 20:21:21 -04:00
|
|
|
if (resource->status != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, presence_colour, "", ", \"%s\"", resource->status);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE, 0, "", "");
|
2013-04-20 20:21:21 -04:00
|
|
|
|
|
|
|
if (resource->caps_str != NULL) {
|
|
|
|
Capabilities *caps = caps_get(resource->caps_str);
|
|
|
|
if (caps != NULL) {
|
|
|
|
// show identity
|
|
|
|
if ((caps->category != NULL) || (caps->type != NULL) || (caps->name != NULL)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_EOL, 0, "", " Identity: ");
|
2013-04-20 20:21:21 -04:00
|
|
|
if (caps->name != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->name);
|
2013-04-20 20:21:21 -04:00
|
|
|
if ((caps->category != NULL) || (caps->type != NULL)) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (caps->type != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->type);
|
2013-04-20 20:21:21 -04:00
|
|
|
if (caps->category != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", " ");
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (caps->category != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_DATE | NO_EOL, 0, "", caps->category);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if (caps->software != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", " Software: %s", caps->software);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if (caps->software_version != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->software_version);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if ((caps->software != NULL) || (caps->software_version != NULL)) {
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if (caps->os != NULL) {
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_EOL, 0, "", " OS: %s", caps->os);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if (caps->os_version != NULL) {
|
2014-07-16 17:20:23 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE | NO_EOL, 0, "", ", %s", caps->os_version);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
if ((caps->os != NULL) || (caps->os_version != NULL)) {
|
2014-07-20 18:57:31 -04:00
|
|
|
win_save_newline(console);
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ordered_resources = g_list_next(ordered_resources);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:21:21 -04:00
|
|
|
}
|
|
|
|
|
2014-01-23 17:29:53 -05:00
|
|
|
static void
|
|
|
|
_cons_show_aliases(GList *aliases)
|
|
|
|
{
|
2014-02-15 16:25:13 -05:00
|
|
|
if (aliases == NULL) {
|
|
|
|
cons_show("No aliases configured.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-23 17:29:53 -05:00
|
|
|
GList *curr = aliases;
|
|
|
|
if (curr != NULL) {
|
|
|
|
cons_show("Command aliases:");
|
|
|
|
}
|
|
|
|
while (curr != NULL) {
|
|
|
|
ProfAlias *alias = curr->data;
|
|
|
|
cons_show(" /%s -> %s", alias->name, alias->value);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_theme_setting(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
2014-06-17 19:32:36 -04:00
|
|
|
char *theme = prefs_get_string(PREF_THEME);
|
2013-04-20 20:25:10 -04:00
|
|
|
if (theme == NULL) {
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Theme (/theme) : default");
|
2013-04-20 20:25:10 -04:00
|
|
|
} else {
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Theme (/theme) : %s", theme);
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(theme);
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_beep_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_BEEP))
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Terminal beep (/beep) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Terminal beep (/beep) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_flash_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_FLASH))
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Terminal flash (/flash) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Terminal flash (/flash) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_splash_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_SPLASH))
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Splash screen (/splash) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Splash screen (/splash) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_autoconnect_setting(void)
|
2013-11-07 18:04:12 -05:00
|
|
|
{
|
2014-06-17 19:32:36 -04:00
|
|
|
char *pref_connect_account = prefs_get_string(PREF_CONNECT_ACCOUNT);
|
|
|
|
if (pref_connect_account != NULL)
|
|
|
|
cons_show("Autoconnect (/autoconnect) : %s", pref_connect_account);
|
2013-11-07 18:04:12 -05:00
|
|
|
else
|
|
|
|
cons_show("Autoconnect (/autoconnect) : OFF");
|
2014-06-17 19:32:36 -04:00
|
|
|
|
|
|
|
prefs_free_string(pref_connect_account);
|
2013-11-07 18:04:12 -05:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_vercheck_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_VERCHECK))
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Version checking (/vercheck) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Version checking (/vercheck) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_mouse_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_MOUSE))
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Mouse handling (/mouse) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2014-01-20 19:16:37 -05:00
|
|
|
cons_show("Mouse handling (/mouse) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_statuses_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-01-20 19:16:37 -05:00
|
|
|
char *console = prefs_get_string(PREF_STATUSES_CONSOLE);
|
|
|
|
char *chat = prefs_get_string(PREF_STATUSES_CHAT);
|
2014-03-15 18:25:15 -04:00
|
|
|
char *muc = prefs_get_string(PREF_STATUSES_MUC);
|
2014-01-20 19:16:37 -05:00
|
|
|
|
2014-05-11 08:32:59 -04:00
|
|
|
cons_show("Console statuses (/statuses) : %s", console);
|
|
|
|
cons_show("Chat statuses (/statuses) : %s", chat);
|
|
|
|
cons_show("MUC statuses (/statuses) : %s", muc);
|
2014-06-17 19:32:36 -04:00
|
|
|
|
|
|
|
prefs_free_string(console);
|
|
|
|
prefs_free_string(chat);
|
|
|
|
prefs_free_string(muc);
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_titlebar_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-04-03 16:46:43 -04:00
|
|
|
if (prefs_get_boolean(PREF_TITLEBAR)) {
|
|
|
|
cons_show("Titlebar display (/titlebar) : ON");
|
2013-06-25 18:38:06 -04:00
|
|
|
} else {
|
2014-04-03 16:46:43 -04:00
|
|
|
cons_show("Titlebar display (/titlebar) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_ui_prefs(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("UI preferences:");
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("");
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_theme_setting();
|
|
|
|
cons_beep_setting();
|
|
|
|
cons_flash_setting();
|
|
|
|
cons_splash_setting();
|
|
|
|
cons_vercheck_setting();
|
|
|
|
cons_mouse_setting();
|
|
|
|
cons_statuses_setting();
|
|
|
|
cons_titlebar_setting();
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_alert();
|
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_notify_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE))
|
2013-05-18 21:15:35 -04:00
|
|
|
cons_show("Messages (/notify message) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2013-05-18 21:15:35 -04:00
|
|
|
cons_show("Messages (/notify message) : OFF");
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2014-05-24 15:46:03 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE_CURRENT))
|
|
|
|
cons_show("Messages current (/notify message) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Messages current (/notify message) : OFF");
|
|
|
|
|
2014-05-24 17:14:26 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_MESSAGE_TEXT))
|
|
|
|
cons_show("Messages text (/notify message) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Messages text (/notify message) : OFF");
|
|
|
|
|
2014-05-24 11:46:05 -04:00
|
|
|
char *room_setting = prefs_get_string(PREF_NOTIFY_ROOM);
|
2014-06-02 13:44:06 -04:00
|
|
|
if (g_strcmp0(room_setting, "on") == 0) {
|
|
|
|
cons_show ("Room messages (/notify room) : ON");
|
|
|
|
} else if (g_strcmp0(room_setting, "off") == 0) {
|
|
|
|
cons_show ("Room messages (/notify room) : OFF");
|
|
|
|
} else {
|
2014-05-24 15:46:03 -04:00
|
|
|
cons_show ("Room messages (/notify room) : %s", room_setting);
|
2014-06-02 13:44:06 -04:00
|
|
|
}
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(room_setting);
|
2014-05-24 15:46:03 -04:00
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_ROOM_CURRENT))
|
|
|
|
cons_show("Room current (/notify room) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Room current (/notify room) : OFF");
|
2014-05-24 10:54:10 -04:00
|
|
|
|
2014-05-24 17:14:26 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_ROOM_TEXT))
|
|
|
|
cons_show("Room text (/notify room) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Room text (/notify room) : OFF");
|
|
|
|
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_TYPING))
|
2013-05-18 21:15:35 -04:00
|
|
|
cons_show("Composing (/notify typing) : ON");
|
2013-04-20 20:25:10 -04:00
|
|
|
else
|
2013-05-18 21:15:35 -04:00
|
|
|
cons_show("Composing (/notify typing) : OFF");
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2014-05-24 16:13:33 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_TYPING_CURRENT))
|
|
|
|
cons_show("Composing current (/notify typing) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Composing current (/notify typing) : OFF");
|
|
|
|
|
2013-04-22 18:48:23 -04:00
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_INVITE))
|
2013-05-18 21:15:35 -04:00
|
|
|
cons_show("Room invites (/notify invite) : ON");
|
2013-04-22 18:48:23 -04:00
|
|
|
else
|
2013-05-18 21:15:35 -04:00
|
|
|
cons_show("Room invites (/notify invite) : OFF");
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_NOTIFY_SUB))
|
|
|
|
cons_show("Subscription requests (/notify sub) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Subscription requests (/notify sub) : OFF");
|
2013-04-22 18:48:23 -04:00
|
|
|
|
2013-04-20 20:25:10 -04:00
|
|
|
gint remind_period = prefs_get_notify_remind();
|
|
|
|
if (remind_period == 0) {
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Reminder period (/notify remind) : OFF");
|
2013-04-20 20:25:10 -04:00
|
|
|
} else if (remind_period == 1) {
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Reminder period (/notify remind) : 1 second");
|
2013-04-20 20:25:10 -04:00
|
|
|
} else {
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Reminder period (/notify remind) : %d seconds", remind_period);
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_desktop_prefs(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Desktop notification preferences:");
|
|
|
|
cons_show("");
|
|
|
|
cons_notify_setting();
|
2013-04-22 16:11:08 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_states_setting(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
|
|
|
if (prefs_get_boolean(PREF_STATES))
|
|
|
|
cons_show("Send chat states (/states) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Send chat states (/states) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_outtype_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_OUTTYPE))
|
|
|
|
cons_show("Send composing (/outtype) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Send composing (/outtype) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_intype_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
|
|
|
if (prefs_get_boolean(PREF_INTYPE))
|
|
|
|
cons_show("Show typing (/intype) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Show typing (/intype) : OFF");
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_gone_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
gint gone_time = prefs_get_gone();
|
|
|
|
if (gone_time == 0) {
|
|
|
|
cons_show("Leave conversation (/gone) : OFF");
|
|
|
|
} else if (gone_time == 1) {
|
|
|
|
cons_show("Leave conversation (/gone) : 1 minute");
|
|
|
|
} else {
|
|
|
|
cons_show("Leave conversation (/gone) : %d minutes", gone_time);
|
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_history_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
|
|
|
if (prefs_get_boolean(PREF_HISTORY))
|
|
|
|
cons_show("Chat history (/history) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Chat history (/history) : OFF");
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_chat_prefs(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Chat preferences:");
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("");
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_states_setting();
|
|
|
|
cons_outtype_setting();
|
|
|
|
cons_intype_setting();
|
|
|
|
cons_gone_setting();
|
|
|
|
cons_history_setting();
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_alert();
|
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_log_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-04-13 17:20:15 -04:00
|
|
|
cons_show("Log file location : %s", get_log_file_location());
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("Max log size (/log maxsize) : %d bytes", prefs_get_max_log_size());
|
2014-04-13 16:56:35 -04:00
|
|
|
|
2014-04-13 15:41:11 -04:00
|
|
|
if (prefs_get_boolean(PREF_LOG_ROTATE))
|
|
|
|
cons_show("Log rotation (/log rotate) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Log rotation (/log rotate) : OFF");
|
2014-04-13 16:56:35 -04:00
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_LOG_SHARED))
|
|
|
|
cons_show("Shared log (/log shared) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Shared log (/log shared) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_chlog_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_CHLOG))
|
|
|
|
cons_show("Chat logging (/chlog) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Chat logging (/chlog) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_grlog_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-05-04 19:16:10 -04:00
|
|
|
if (prefs_get_boolean(PREF_GRLOG))
|
|
|
|
cons_show("Groupchat logging (/grlog) : ON");
|
|
|
|
else
|
|
|
|
cons_show("Groupchat logging (/grlog) : OFF");
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_log_prefs(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Logging preferences:");
|
|
|
|
cons_show("");
|
|
|
|
cons_log_setting();
|
|
|
|
cons_chlog_setting();
|
|
|
|
cons_grlog_setting();
|
2013-05-04 19:16:10 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_autoaway_setting(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
2014-06-17 19:32:36 -04:00
|
|
|
char *pref_autoaway_mode = prefs_get_string(PREF_AUTOAWAY_MODE);
|
|
|
|
if (strcmp(pref_autoaway_mode, "off") == 0) {
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("Autoaway (/autoaway mode) : OFF");
|
|
|
|
} else {
|
2014-06-17 19:32:36 -04:00
|
|
|
cons_show("Autoaway (/autoaway mode) : %s", pref_autoaway_mode);
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(pref_autoaway_mode);
|
2013-04-20 20:25:10 -04:00
|
|
|
|
|
|
|
cons_show("Autoaway minutes (/autoaway time) : %d minutes", prefs_get_autoaway_time());
|
|
|
|
|
2014-06-17 19:32:36 -04:00
|
|
|
char *pref_autoaway_message = prefs_get_string(PREF_AUTOAWAY_MESSAGE);
|
|
|
|
if ((pref_autoaway_message == NULL) ||
|
|
|
|
(strcmp(pref_autoaway_message, "") == 0)) {
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("Autoaway message (/autoaway message) : OFF");
|
|
|
|
} else {
|
2014-06-17 19:32:36 -04:00
|
|
|
cons_show("Autoaway message (/autoaway message) : \"%s\"", pref_autoaway_message);
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(pref_autoaway_message);
|
2013-04-20 20:25:10 -04:00
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_AUTOAWAY_CHECK)) {
|
|
|
|
cons_show("Autoaway check (/autoaway check) : ON");
|
|
|
|
} else {
|
|
|
|
cons_show("Autoaway check (/autoaway check) : OFF");
|
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_presence_prefs(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Presence preferences:");
|
|
|
|
cons_show("");
|
|
|
|
cons_autoaway_setting();
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_reconnect_setting(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
|
|
|
gint reconnect_interval = prefs_get_reconnect();
|
|
|
|
if (reconnect_interval == 0) {
|
|
|
|
cons_show("Reconnect interval (/reconnect) : OFF");
|
|
|
|
} else if (reconnect_interval == 1) {
|
|
|
|
cons_show("Reconnect interval (/reconnect) : 1 second");
|
|
|
|
} else {
|
|
|
|
cons_show("Reconnect interval (/reconnect) : %d seconds", reconnect_interval);
|
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_autoping_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2013-04-20 20:25:10 -04:00
|
|
|
gint autoping_interval = prefs_get_autoping();
|
|
|
|
if (autoping_interval == 0) {
|
|
|
|
cons_show("Autoping interval (/autoping) : OFF");
|
|
|
|
} else if (autoping_interval == 1) {
|
|
|
|
cons_show("Autoping interval (/autoping) : 1 second");
|
|
|
|
} else {
|
|
|
|
cons_show("Autoping interval (/autoping) : %d seconds", autoping_interval);
|
|
|
|
}
|
2013-06-25 18:38:06 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_priority_setting(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
|
|
|
gint priority = prefs_get_priority();
|
|
|
|
cons_show("Priority (/priority) : %d", priority);
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_connection_prefs(void)
|
2013-06-25 18:38:06 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Connection preferences:");
|
|
|
|
cons_show("");
|
|
|
|
cons_reconnect_setting();
|
|
|
|
cons_autoping_setting();
|
2013-11-07 18:04:12 -05:00
|
|
|
cons_autoconnect_setting();
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2014-05-11 08:32:59 -04:00
|
|
|
static void
|
|
|
|
_cons_show_otr_prefs(void)
|
|
|
|
{
|
|
|
|
ProfWin *console = wins_get_console();
|
|
|
|
cons_show("OTR preferences:");
|
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
char *policy_value = prefs_get_string(PREF_OTR_POLICY);
|
|
|
|
cons_show("OTR policy (/otr policy) : %s", policy_value);
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(policy_value);
|
2014-05-11 08:32:59 -04:00
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_OTR_WARN)) {
|
|
|
|
cons_show("Warn non-OTR (/otr warn) : ON");
|
|
|
|
} else {
|
|
|
|
cons_show("Warn non-OTR (/otr warn) : OFF");
|
|
|
|
}
|
|
|
|
|
|
|
|
char *log_value = prefs_get_string(PREF_OTR_LOG);
|
|
|
|
if (strcmp(log_value, "on") == 0) {
|
|
|
|
cons_show("OTR logging (/otr log) : ON");
|
|
|
|
} else if (strcmp(log_value, "off") == 0) {
|
|
|
|
cons_show("OTR logging (/otr log) : OFF");
|
|
|
|
} else {
|
|
|
|
cons_show("OTR logging (/otr log) : Redacted");
|
|
|
|
}
|
2014-06-17 19:32:36 -04:00
|
|
|
prefs_free_string(log_value);
|
2014-05-11 08:32:59 -04:00
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
|
|
|
cons_alert();
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_themes(GSList *themes)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (themes == NULL) {
|
|
|
|
cons_show("No available themes.");
|
|
|
|
} else {
|
|
|
|
cons_show("Available themes:");
|
|
|
|
while (themes != NULL) {
|
|
|
|
cons_show(themes->data);
|
|
|
|
themes = g_slist_next(themes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_prefs(void)
|
2013-04-20 20:25:10 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:25:10 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show_ui_prefs();
|
|
|
|
cons_show("");
|
|
|
|
cons_show_desktop_prefs();
|
|
|
|
cons_show("");
|
|
|
|
cons_show_chat_prefs();
|
|
|
|
cons_show("");
|
|
|
|
cons_show_log_prefs();
|
|
|
|
cons_show("");
|
|
|
|
cons_show_presence_prefs();
|
|
|
|
cons_show("");
|
|
|
|
cons_show_connection_prefs();
|
|
|
|
cons_show("");
|
2014-05-11 08:32:59 -04:00
|
|
|
cons_show_otr_prefs();
|
|
|
|
cons_show("");
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:25:10 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_help(void)
|
2013-04-20 20:31:30 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:31:30 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Choose a help option:");
|
|
|
|
cons_show("");
|
2013-06-24 19:49:29 -04:00
|
|
|
cons_show("/help commands - List all commands.");
|
|
|
|
cons_show("/help basic - List basic commands for getting started.");
|
|
|
|
cons_show("/help chatting - List chat commands.");
|
|
|
|
cons_show("/help groupchat - List groupchat commands.");
|
|
|
|
cons_show("/help presence - List commands to change presence.");
|
|
|
|
cons_show("/help roster - List commands for manipulating your roster.");
|
2014-01-01 20:35:34 -05:00
|
|
|
cons_show("/help service - List service discovery commands.");
|
2013-06-24 19:49:29 -04:00
|
|
|
cons_show("/help settings - List commands for changing settings.");
|
|
|
|
cons_show("/help other - Other commands.");
|
2013-04-20 20:31:30 -04:00
|
|
|
cons_show("/help navigation - How to navigate around Profanity.");
|
|
|
|
cons_show("/help [command] - Detailed help on a specific command.");
|
|
|
|
cons_show("");
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:31:30 -04:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_navigation_help(void)
|
2013-04-20 20:31:30 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:31:30 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Navigation:");
|
|
|
|
cons_show("");
|
2014-01-02 13:04:31 -05:00
|
|
|
cons_show("Alt-1 (F1) : This console window.");
|
|
|
|
cons_show("Alt-2..Alt-0 (F2..F10) : Chat windows.");
|
2013-09-25 15:51:54 -04:00
|
|
|
cons_show("Alt-LEFT : Previous chat window");
|
|
|
|
cons_show("Alt-RIGHT : Next chat window");
|
2013-04-20 20:31:30 -04:00
|
|
|
cons_show("UP, DOWN : Navigate input history.");
|
|
|
|
cons_show("LEFT, RIGHT, HOME, END : Edit current input.");
|
2013-06-24 19:49:29 -04:00
|
|
|
cons_show("CTRL-LEFT, CTRL-RIGHT : Jump word in input.");
|
2013-04-20 20:31:30 -04:00
|
|
|
cons_show("ESC : Clear current input.");
|
2013-06-24 19:49:29 -04:00
|
|
|
cons_show("TAB : Autocomplete.");
|
2013-04-20 20:31:30 -04:00
|
|
|
cons_show("PAGE UP, PAGE DOWN : Page the main window.");
|
|
|
|
cons_show("");
|
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
2013-04-20 20:31:30 -04:00
|
|
|
}
|
2013-04-20 20:25:10 -04:00
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_roster_group(const char * const group, GSList *list)
|
2013-07-03 18:44:51 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-07-03 18:44:51 -04:00
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
if (list != NULL) {
|
|
|
|
cons_show("%s:", group);
|
|
|
|
} else {
|
|
|
|
cons_show("No group named %s exists.", group);
|
|
|
|
}
|
|
|
|
|
|
|
|
_show_roster_contacts(list, FALSE);
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-06-01 21:48:20 -04:00
|
|
|
cons_alert();
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_roster(GSList *list)
|
2013-06-01 18:27:46 -04:00
|
|
|
{
|
2014-04-06 16:06:50 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-06-01 18:27:46 -04:00
|
|
|
cons_show("");
|
|
|
|
cons_show("Roster:");
|
|
|
|
|
2013-07-03 18:44:51 -04:00
|
|
|
_show_roster_contacts(list, TRUE);
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-06-01 18:27:46 -04:00
|
|
|
cons_alert();
|
|
|
|
}
|
|
|
|
|
2014-01-19 13:31:02 -05:00
|
|
|
static void
|
|
|
|
_cons_show_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);
|
|
|
|
|
|
|
|
ProfWin *console = wins_get_console();
|
|
|
|
win_show_status_string(console, display_str, show, resource->status, last_activity,
|
|
|
|
"++", "online");
|
|
|
|
|
|
|
|
free(display_str);
|
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
ui_current_page_off();
|
|
|
|
}
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2014-01-19 13:31:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cons_show_contact_offline(PContact contact, char *resource, char *status)
|
|
|
|
{
|
|
|
|
char *display_str = p_contact_create_display_string(contact, resource);
|
|
|
|
|
|
|
|
ProfWin *console = wins_get_console();
|
|
|
|
win_show_status_string(console, display_str, "offline", status, NULL, "--",
|
|
|
|
"offline");
|
|
|
|
free(display_str);
|
|
|
|
|
|
|
|
if (wins_is_current(console)) {
|
|
|
|
ui_current_page_off();
|
|
|
|
}
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2014-01-19 13:31:02 -05:00
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_show_contacts(GSList *list)
|
2013-04-20 20:32:47 -04:00
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2013-04-20 20:32:47 -04:00
|
|
|
GSList *curr = list;
|
|
|
|
|
|
|
|
while(curr) {
|
|
|
|
PContact contact = curr->data;
|
2013-06-01 17:54:53 -04:00
|
|
|
if ((strcmp(p_contact_subscription(contact), "to") == 0) ||
|
|
|
|
(strcmp(p_contact_subscription(contact), "both") == 0)) {
|
2013-10-06 18:22:46 -04:00
|
|
|
win_show_contact(console, contact);
|
2013-04-20 20:32:47 -04:00
|
|
|
}
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
2013-04-20 20:34:43 -04:00
|
|
|
|
2014-04-06 16:06:50 -04:00
|
|
|
if (wins_is_current(console)) {
|
|
|
|
win_update_virtual(console);
|
|
|
|
}
|
2013-05-30 17:48:56 -04:00
|
|
|
cons_alert();
|
|
|
|
}
|
|
|
|
|
2013-12-22 17:14:15 -05:00
|
|
|
static void
|
|
|
|
_cons_alert(void)
|
2013-05-30 17:48:56 -04:00
|
|
|
{
|
|
|
|
if (ui_current_win_type() != WIN_CONSOLE) {
|
2013-08-27 19:50:15 -04:00
|
|
|
status_bar_new(1);
|
2013-05-30 17:48:56 -04:00
|
|
|
}
|
2013-04-20 20:34:43 -04:00
|
|
|
}
|
|
|
|
|
2013-04-20 18:39:17 -04:00
|
|
|
static void
|
|
|
|
_cons_splash_logo(void)
|
|
|
|
{
|
2013-08-20 18:18:23 -04:00
|
|
|
ProfWin *console = wins_get_console();
|
2014-07-20 19:11:38 -04:00
|
|
|
win_save_println(console, "Welcome to");
|
2014-06-21 04:16:50 -04:00
|
|
|
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", " ___ _ ");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", " / __) (_)_ ");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", " ____ ____ ___ | |__ ____ ____ _| |_ _ _ ");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", "| _ \\ / ___) _ \\| __) _ | _ \\| | _) | | |");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", "| | | | | | |_| | | ( ( | | | | | | |_| |_| |");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", "| ||_/|_| \\___/|_| \\_||_|_| |_|_|\\___)__ |");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", "|_| (____/ ");
|
|
|
|
win_save_print(console, '-', NULL, 0, COLOUR_SPLASH, "", "");
|
|
|
|
|
2013-04-20 18:39:17 -04:00
|
|
|
if (strcmp(PACKAGE_STATUS, "development") == 0) {
|
2013-09-16 19:59:37 -04:00
|
|
|
#ifdef HAVE_GIT_VERSION
|
2014-07-16 18:23:11 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Version %sdev.%s.%s", PACKAGE_VERSION, PROF_GIT_BRANCH, PROF_GIT_REVISION);
|
2013-09-16 19:59:37 -04:00
|
|
|
#else
|
2014-07-16 18:23:11 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Version %sdev", PACKAGE_VERSION);
|
2013-09-16 19:59:37 -04:00
|
|
|
#endif
|
2013-04-20 18:39:17 -04:00
|
|
|
} else {
|
2014-07-16 18:23:11 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, 0, "", "Version %s", PACKAGE_VERSION);
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-26 12:34:48 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
_show_roster_contacts(GSList *list, gboolean show_groups)
|
|
|
|
{
|
|
|
|
ProfWin *console = wins_get_console();
|
|
|
|
GSList *curr = list;
|
|
|
|
while(curr) {
|
|
|
|
|
|
|
|
PContact contact = curr->data;
|
|
|
|
GString *title = g_string_new(" ");
|
|
|
|
title = g_string_append(title, p_contact_barejid(contact));
|
|
|
|
if (p_contact_name(contact) != NULL) {
|
|
|
|
title = g_string_append(title, " (");
|
|
|
|
title = g_string_append(title, p_contact_name(contact));
|
|
|
|
title = g_string_append(title, ")");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *presence = p_contact_presence(contact);
|
2014-06-21 04:16:50 -04:00
|
|
|
int presence_colour;
|
2013-08-26 12:34:48 -04:00
|
|
|
if (p_contact_subscribed(contact)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = win_presence_colour(presence);
|
2013-08-26 12:34:48 -04:00
|
|
|
} else {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = win_presence_colour("offline");
|
2013-08-26 12:34:48 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, 0, presence_colour, "", title->str);
|
2013-08-26 12:34:48 -04:00
|
|
|
|
|
|
|
g_string_free(title, TRUE);
|
|
|
|
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_print(console, '-', NULL, NO_EOL, 0, "", " Subscription : ");
|
2013-08-26 12:34:48 -04:00
|
|
|
GString *sub = g_string_new("");
|
|
|
|
sub = g_string_append(sub, p_contact_subscription(contact));
|
|
|
|
if (p_contact_pending_out(contact)) {
|
|
|
|
sub = g_string_append(sub, ", request sent");
|
|
|
|
}
|
|
|
|
if (presence_sub_request_exists(p_contact_barejid(contact))) {
|
|
|
|
sub = g_string_append(sub, ", request received");
|
|
|
|
}
|
|
|
|
if (p_contact_subscribed(contact)) {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = COLOUR_SUBSCRIBED;
|
2013-08-26 12:34:48 -04:00
|
|
|
} else {
|
2014-06-21 04:16:50 -04:00
|
|
|
presence_colour = COLOUR_UNSUBSCRIBED;
|
2013-08-26 12:34:48 -04:00
|
|
|
}
|
2014-06-21 04:16:50 -04:00
|
|
|
win_save_vprint(console, '-', NULL, NO_DATE, presence_colour, "", "%s", sub->str);
|
2013-08-26 12:34:48 -04:00
|
|
|
|
|
|
|
g_string_free(sub, TRUE);
|
|
|
|
|
|
|
|
if (show_groups) {
|
|
|
|
GSList *groups = p_contact_groups(contact);
|
|
|
|
if (groups != NULL) {
|
|
|
|
GString *groups_str = g_string_new(" Groups : ");
|
|
|
|
while (groups != NULL) {
|
|
|
|
g_string_append(groups_str, groups->data);
|
|
|
|
if (g_slist_next(groups) != NULL) {
|
|
|
|
g_string_append(groups_str, ", ");
|
|
|
|
}
|
|
|
|
groups = g_slist_next(groups);
|
|
|
|
}
|
|
|
|
|
|
|
|
cons_show(groups_str->str);
|
|
|
|
g_string_free(groups_str, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
}
|
2013-12-22 19:08:45 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
console_init_module(void)
|
|
|
|
{
|
|
|
|
cons_show_time = _cons_show_time;
|
|
|
|
cons_show_word = _cons_show_word;
|
|
|
|
cons_debug = _cons_debug;
|
|
|
|
cons_show = _cons_show;
|
|
|
|
cons_show_error = _cons_show_error;
|
|
|
|
cons_show_typing = _cons_show_typing;
|
|
|
|
cons_show_incoming_message = _cons_show_incoming_message;
|
|
|
|
cons_about = _cons_about;
|
|
|
|
cons_check_version = _cons_check_version;
|
|
|
|
cons_show_login_success = _cons_show_login_success;
|
|
|
|
cons_show_wins = _cons_show_wins;
|
|
|
|
cons_show_room_invites = _cons_show_room_invites;
|
|
|
|
cons_show_info = _cons_show_info;
|
|
|
|
cons_show_caps = _cons_show_caps;
|
|
|
|
cons_show_software_version = _cons_show_software_version;
|
|
|
|
cons_show_received_subs = _cons_show_received_subs;
|
|
|
|
cons_show_sent_subs = _cons_show_sent_subs;
|
|
|
|
cons_show_room_list = _cons_show_room_list;
|
|
|
|
cons_show_bookmarks = _cons_show_bookmarks;
|
|
|
|
cons_show_disco_info = _cons_show_disco_info;
|
|
|
|
cons_show_disco_items = _cons_show_disco_items;
|
|
|
|
cons_show_status = _cons_show_status;
|
|
|
|
cons_show_room_invite = _cons_show_room_invite;
|
|
|
|
cons_show_account_list = _cons_show_account_list;
|
|
|
|
cons_show_account = _cons_show_account;
|
|
|
|
cons_theme_setting = _cons_theme_setting;
|
|
|
|
cons_beep_setting = _cons_beep_setting;
|
|
|
|
cons_flash_setting = _cons_flash_setting;
|
|
|
|
cons_splash_setting = _cons_splash_setting;
|
|
|
|
cons_autoconnect_setting = _cons_autoconnect_setting;
|
|
|
|
cons_vercheck_setting = _cons_vercheck_setting;
|
|
|
|
cons_mouse_setting = _cons_mouse_setting;
|
|
|
|
cons_statuses_setting = _cons_statuses_setting;
|
|
|
|
cons_titlebar_setting = _cons_titlebar_setting;
|
|
|
|
cons_show_ui_prefs = _cons_show_ui_prefs;
|
|
|
|
cons_notify_setting = _cons_notify_setting;
|
|
|
|
cons_show_desktop_prefs = _cons_show_desktop_prefs;
|
|
|
|
cons_states_setting = _cons_states_setting;
|
|
|
|
cons_outtype_setting = _cons_outtype_setting;
|
|
|
|
cons_intype_setting = _cons_intype_setting;
|
|
|
|
cons_gone_setting = _cons_gone_setting;
|
|
|
|
cons_history_setting = _cons_history_setting;
|
|
|
|
cons_show_chat_prefs = _cons_show_chat_prefs;
|
|
|
|
cons_log_setting = _cons_log_setting;
|
|
|
|
cons_chlog_setting = _cons_chlog_setting;
|
|
|
|
cons_grlog_setting = _cons_grlog_setting;
|
|
|
|
cons_show_log_prefs = _cons_show_log_prefs;
|
|
|
|
cons_autoaway_setting = _cons_autoaway_setting;
|
|
|
|
cons_show_presence_prefs = _cons_show_presence_prefs;
|
2014-05-11 08:32:59 -04:00
|
|
|
cons_show_otr_prefs = _cons_show_otr_prefs;
|
2013-12-22 19:08:45 -05:00
|
|
|
cons_reconnect_setting = _cons_reconnect_setting;
|
|
|
|
cons_autoping_setting = _cons_autoping_setting;
|
|
|
|
cons_priority_setting = _cons_priority_setting;
|
|
|
|
cons_show_connection_prefs = _cons_show_connection_prefs;
|
|
|
|
cons_show_themes = _cons_show_themes;
|
|
|
|
cons_prefs = _cons_prefs;
|
|
|
|
cons_help = _cons_help;
|
|
|
|
cons_navigation_help = _cons_navigation_help;
|
|
|
|
cons_show_roster_group = _cons_show_roster_group;
|
|
|
|
cons_show_roster = _cons_show_roster;
|
|
|
|
cons_show_contacts = _cons_show_contacts;
|
|
|
|
cons_alert = _cons_alert;
|
2014-01-19 13:31:02 -05:00
|
|
|
cons_show_contact_online = _cons_show_contact_online;
|
|
|
|
cons_show_contact_offline = _cons_show_contact_offline;
|
2014-01-23 17:29:53 -05:00
|
|
|
cons_show_aliases = _cons_show_aliases;
|
2013-12-22 19:08:45 -05:00
|
|
|
}
|