2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-02-20 15:07:38 -05:00
|
|
|
* command.c
|
|
|
|
*
|
2013-01-10 21:05:29 -05:00
|
|
|
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-10-14 14:15:51 -04:00
|
|
|
#include <assert.h>
|
2013-02-02 15:55:58 -05:00
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
2012-02-19 15:57:46 -05:00
|
|
|
#include <stdlib.h>
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <string.h>
|
2012-04-23 20:02:22 -04:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2012-10-31 17:30:58 -04:00
|
|
|
#include "chat_session.h"
|
2013-02-02 16:43:59 -05:00
|
|
|
#include "command/command.h"
|
|
|
|
#include "command/history.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "common.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/accounts.h"
|
|
|
|
#include "config/preferences.h"
|
|
|
|
#include "config/theme.h"
|
2012-10-04 17:48:41 -04:00
|
|
|
#include "contact.h"
|
2013-01-12 22:14:36 -05:00
|
|
|
#include "jid.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "log.h"
|
2013-02-02 15:55:58 -05:00
|
|
|
#include "muc.h"
|
2012-11-19 18:15:42 -05:00
|
|
|
#include "profanity.h"
|
2013-02-02 16:43:59 -05:00
|
|
|
#include "tools/autocomplete.h"
|
2013-07-11 17:57:35 -04:00
|
|
|
#include "tools/parser.h"
|
2013-02-02 16:43:59 -05:00
|
|
|
#include "tools/tinyurl.h"
|
2013-02-02 14:57:46 -05:00
|
|
|
#include "ui/ui.h"
|
2013-02-02 14:47:41 -05:00
|
|
|
#include "xmpp/xmpp.h"
|
2013-07-14 16:58:02 -04:00
|
|
|
#include "xmpp/bookmark.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-08-22 18:57:34 -04:00
|
|
|
* Command structure
|
|
|
|
*
|
|
|
|
* cmd - The command string including leading '/'
|
2012-08-11 20:39:51 -04:00
|
|
|
* func - The function to execute for the command
|
2012-11-17 21:40:49 -05:00
|
|
|
* parser - The function used to parse arguments
|
|
|
|
* min_args - Minimum number of arguments
|
|
|
|
* max_args - Maximum number of arguments
|
2012-08-22 18:57:34 -04:00
|
|
|
* help - A help struct containing usage info etc
|
2012-08-11 20:39:51 -04:00
|
|
|
*/
|
2013-06-24 19:49:29 -04:00
|
|
|
typedef struct cmd_t {
|
|
|
|
gchar *cmd;
|
2012-11-17 21:40:49 -05:00
|
|
|
gboolean (*func)(gchar **args, struct cmd_help_t help);
|
|
|
|
gchar** (*parser)(const char * const inp, int min, int max);
|
|
|
|
int min_args;
|
|
|
|
int max_args;
|
2013-06-25 18:38:06 -04:00
|
|
|
void (*setting_func)(void);
|
2013-06-24 19:49:29 -04:00
|
|
|
CommandHelp help;
|
|
|
|
} Command;
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2013-06-02 15:11:42 -04:00
|
|
|
typedef char*(*autocompleter)(char*, int*);
|
|
|
|
|
2013-11-07 16:43:11 -05:00
|
|
|
static char * _ask_password(void);
|
2013-02-10 12:13:19 -05:00
|
|
|
static void _update_presence(const resource_presence_t presence,
|
2012-11-17 21:40:49 -05:00
|
|
|
const char * const show, gchar **args);
|
2012-11-30 18:34:14 -05:00
|
|
|
static gboolean _cmd_set_boolean_preference(gchar *arg, struct cmd_help_t help,
|
2013-02-02 21:51:15 -05:00
|
|
|
const char * const display, preference_t pref);
|
2012-10-27 20:42:26 -04:00
|
|
|
|
|
|
|
static void _cmd_complete_parameters(char *input, int *size);
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
static char * _sub_autocomplete(char *input, int *size);
|
|
|
|
static char * _notify_autocomplete(char *input, int *size);
|
|
|
|
static char * _titlebar_autocomplete(char *input, int *size);
|
|
|
|
static char * _theme_autocomplete(char *input, int *size);
|
|
|
|
static char * _autoaway_autocomplete(char *input, int *size);
|
|
|
|
static char * _account_autocomplete(char *input, int *size);
|
|
|
|
static char * _who_autocomplete(char *input, int *size);
|
|
|
|
static char * _roster_autocomplete(char *input, int *size);
|
|
|
|
static char * _group_autocomplete(char *input, int *size);
|
2013-07-14 16:58:02 -04:00
|
|
|
static char * _bookmark_autocomplete(char *input, int *size);
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-11-13 17:23:06 -05:00
|
|
|
static int _strtoi(char *str, int *saveptr, int min, int max);
|
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
// command prototypes
|
2012-11-17 21:40:49 -05:00
|
|
|
static gboolean _cmd_about(gchar **args, struct cmd_help_t help);
|
2012-12-09 15:18:38 -05:00
|
|
|
static gboolean _cmd_account(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_autoaway(gchar **args, struct cmd_help_t help);
|
2013-11-07 18:04:12 -05:00
|
|
|
static gboolean _cmd_autoconnect(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_autoping(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_away(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_beep(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_caps(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_chat(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_chlog(gchar **args, struct cmd_help_t help);
|
2013-03-02 16:55:55 -05:00
|
|
|
static gboolean _cmd_clear(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_close(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_connect(gchar **args, struct cmd_help_t help);
|
2013-04-24 18:50:47 -04:00
|
|
|
static gboolean _cmd_decline(gchar **args, struct cmd_help_t help);
|
2013-03-14 16:50:09 -04:00
|
|
|
static gboolean _cmd_disco(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_disconnect(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_dnd(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_duck(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_flash(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_gone(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_grlog(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_group(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_help(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_history(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_info(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_intype(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_invite(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_invites(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_join(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_leave(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:21:14 -04:00
|
|
|
static gboolean _cmd_log(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_mouse(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_msg(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_nick(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_notify(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_online(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_outtype(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_prefs(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:21:14 -04:00
|
|
|
static gboolean _cmd_priority(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_quit(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:21:14 -04:00
|
|
|
static gboolean _cmd_reconnect(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_rooms(gchar **args, struct cmd_help_t help);
|
2013-07-14 16:58:02 -04:00
|
|
|
static gboolean _cmd_bookmark(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_roster(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_software(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:21:14 -04:00
|
|
|
static gboolean _cmd_splash(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_states(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_status(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:21:14 -04:00
|
|
|
static gboolean _cmd_statuses(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_sub(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_theme(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_tiny(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_titlebar(gchar **args, struct cmd_help_t help);
|
2012-11-17 21:40:49 -05:00
|
|
|
static gboolean _cmd_vercheck(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_who(gchar **args, struct cmd_help_t help);
|
2013-08-29 16:41:10 -04:00
|
|
|
static gboolean _cmd_win(gchar **args, struct cmd_help_t help);
|
2012-11-17 21:40:49 -05:00
|
|
|
static gboolean _cmd_wins(gchar **args, struct cmd_help_t help);
|
2013-06-23 16:29:12 -04:00
|
|
|
static gboolean _cmd_xa(gchar **args, struct cmd_help_t help);
|
2012-04-23 20:02:22 -04:00
|
|
|
|
2013-06-24 19:49:29 -04:00
|
|
|
static GHashTable *commands = NULL;
|
|
|
|
|
2012-08-22 18:57:34 -04:00
|
|
|
/*
|
2013-06-24 19:49:29 -04:00
|
|
|
* Command list
|
2012-08-22 18:57:34 -04:00
|
|
|
*/
|
2013-06-24 19:49:29 -04:00
|
|
|
static struct cmd_t command_defs[] =
|
2012-08-11 20:39:51 -04:00
|
|
|
{
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/help",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_help, parse_args, 0, 1, NULL,
|
2013-06-25 17:16:23 -04:00
|
|
|
{ "/help [area|command]", "Get help on using Profanity",
|
|
|
|
{ "/help [area|command]",
|
2012-11-11 18:57:02 -05:00
|
|
|
"-------------------------",
|
2013-06-25 17:16:23 -04:00
|
|
|
"Use with no arguments to get a help summary.",
|
|
|
|
"Supply an area to see help for commands related to specific features.",
|
|
|
|
"Supply a command (without the leading slash) to see help on that command.",
|
2012-08-14 17:50:38 -04:00
|
|
|
"",
|
2013-06-25 17:16:23 -04:00
|
|
|
"Example : /help commands",
|
|
|
|
"Example : /help presence",
|
|
|
|
"Example : /help who",
|
2013-03-10 15:17:24 -04:00
|
|
|
"",
|
2013-06-30 17:59:06 -04:00
|
|
|
"For more detailed help, see the user guide at http://www.profanity.im/userguide.html.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-10-22 19:18:28 -04:00
|
|
|
{ "/about",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_about, parse_args, 0, 0, NULL,
|
2012-10-22 19:18:28 -04:00
|
|
|
{ "/about", "About Profanity",
|
|
|
|
{ "/about",
|
|
|
|
"------",
|
|
|
|
"Show versioning and license information.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/connect",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_connect, parse_args, 1, 2, NULL,
|
2012-12-22 18:48:45 -05:00
|
|
|
{ "/connect account [server]", "Login to a chat service.",
|
|
|
|
{ "/connect account [server]",
|
|
|
|
"-------------------------",
|
|
|
|
"Connect to an XMPP service using the specified account.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"Use the server argument for chat services hosted at a different domain to the 'domainpart' of the Jabber ID.",
|
2012-12-22 18:48:45 -05:00
|
|
|
"An account is automatically created if one does not exist. See the /account command for more details.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"",
|
2012-10-21 15:02:20 -04:00
|
|
|
"Example: /connect myuser@gmail.com",
|
2012-12-06 15:36:16 -05:00
|
|
|
"Example: /connect myuser@mycompany.com talk.google.com",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-10-27 13:12:04 -04:00
|
|
|
{ "/disconnect",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_disconnect, parse_args, 0, 0, NULL,
|
2012-12-09 13:59:11 -05:00
|
|
|
{ "/disconnect", "Logout of current session.",
|
2012-10-27 13:12:04 -04:00
|
|
|
{ "/disconnect",
|
2013-03-10 15:17:24 -04:00
|
|
|
"-----------",
|
|
|
|
"Disconnect from the current chat service.",
|
2012-10-27 13:12:04 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/msg",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_msg, parse_args_with_freetext, 1, 2, NULL,
|
2013-06-30 17:59:06 -04:00
|
|
|
{ "/msg contact|nick [message]", "Start chat with user.",
|
|
|
|
{ "/msg contact|nick [message]",
|
|
|
|
"---------------------------",
|
|
|
|
"Open a chat window for the contact and send the message if one is supplied.",
|
|
|
|
"When in a chat room, supply a nickname to start private chat with a room member.",
|
2013-01-15 16:41:17 -05:00
|
|
|
"Use quotes if the nickname includes spaces.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"",
|
2012-11-29 19:19:03 -05:00
|
|
|
"Example : /msg myfriend@server.com Hey, here's a message!",
|
|
|
|
"Example : /msg otherfriend@server.com",
|
2013-01-15 16:41:17 -05:00
|
|
|
"Example : /msg Bob Here is a private message",
|
|
|
|
"Example : /msg \"My Friend\" Hi, how are you?",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2013-05-18 21:07:01 -04:00
|
|
|
{ "/roster",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_roster, parse_args_with_freetext, 0, 3, NULL,
|
2013-06-01 19:45:40 -04:00
|
|
|
{ "/roster [add|remove|nick] [jid] [handle]", "Manage your roster.",
|
|
|
|
{ "/roster [add|remove|nick] [jid] [handle]",
|
|
|
|
"----------------------------------------",
|
|
|
|
"View, add to, and remove from your roster.",
|
|
|
|
"Passing no arguments lists all contacts in your roster.",
|
|
|
|
"The 'add' command will add a new item, the jid is required, the handle is an optional nickname",
|
|
|
|
"The 'remove' command removes a contact, the jid is required.",
|
|
|
|
"The 'nick' command changes a contacts nickname, the jid is required,",
|
|
|
|
"if no handle is supplied, the current one is removed.",
|
2013-05-18 21:07:01 -04:00
|
|
|
"",
|
2013-06-01 19:45:40 -04:00
|
|
|
"Example : /roster (show your roster)",
|
|
|
|
"Example : /roster add someone@contacts.org (add the contact)",
|
|
|
|
"Example : /roster add someone@contacts.org Buddy (add the contact with nickname 'Buddy')",
|
|
|
|
"Example : /roster remove someone@contacts.org (remove the contact)",
|
2013-05-18 21:07:01 -04:00
|
|
|
"Example : /roster nick myfriend@chat.org My Friend",
|
2013-05-18 22:27:59 -04:00
|
|
|
"Example : /roster nick kai@server.com (clears handle)",
|
2013-05-18 21:07:01 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2013-06-02 12:25:52 -04:00
|
|
|
{ "/group",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_group, parse_args_with_freetext, 0, 3, NULL,
|
2013-06-30 17:59:06 -04:00
|
|
|
{ "/group [show|add|remove] [group] [contact]", "Manage roster groups.",
|
|
|
|
{ "/group [show|add|remove] [group] [contact]",
|
|
|
|
"------------------------------------------",
|
2013-06-02 12:25:52 -04:00
|
|
|
"View, add to, and remove from roster groups.",
|
|
|
|
"Passing no argument will list all roster groups.",
|
|
|
|
"The 'show' command takes 'group' as an argument, and lists all roster items in that group.",
|
2013-06-30 17:59:06 -04:00
|
|
|
"The 'add' command takes 'group' and 'contact' arguments, and adds the contact to the group.",
|
|
|
|
"The 'remove' command takes 'group' and 'contact' arguments and removes the contact from the group,",
|
2013-06-02 12:25:52 -04:00
|
|
|
"",
|
|
|
|
"Example : /group",
|
|
|
|
"Example : /group show friends",
|
|
|
|
"Example : /group add friends newfriend@server.org",
|
2013-06-30 17:59:06 -04:00
|
|
|
"Example : /group add family Brother (using contacts nickname)",
|
2013-06-02 12:25:52 -04:00
|
|
|
"Example : /group remove colleagues boss@work.com",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-13 20:39:26 -05:00
|
|
|
{ "/info",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_info, parse_args, 0, 1, NULL,
|
2013-06-30 17:59:06 -04:00
|
|
|
{ "/info [contact|nick]", "Show basic information about a contact, or room member.",
|
|
|
|
{ "/info [contact|nick]",
|
|
|
|
"--------------------",
|
2013-03-10 15:17:24 -04:00
|
|
|
"Show information including current subscription status and summary information for each connected resource.",
|
2013-01-17 17:46:50 -05:00
|
|
|
"If in a chat window the parameter is not required, the current recipient will be used.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"",
|
2013-06-30 17:59:06 -04:00
|
|
|
"Example : /info mybuddy@chat.server.org",
|
|
|
|
"Example : /info kai",
|
2012-11-13 17:08:46 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2013-02-16 20:04:10 -05:00
|
|
|
{ "/caps",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_caps, parse_args, 0, 1, NULL,
|
2013-02-17 11:59:20 -05:00
|
|
|
{ "/caps [fulljid|nick]", "Find out a contacts client software capabilities.",
|
|
|
|
{ "/caps [fulljid|nick]",
|
|
|
|
"--------------------",
|
|
|
|
"Find out a contact, or room members client software capabilities.",
|
|
|
|
"If in the console window or a regular chat window, a full JID is required.",
|
|
|
|
"If in a chat room, the nickname is required.",
|
|
|
|
"If in private chat, no parameter is required.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"",
|
|
|
|
"Example : /caps mybuddy@chat.server.org/laptop (contact's laptop resource)",
|
|
|
|
"Example : /caps mybuddy@chat.server.org/phone (contact's phone resource)",
|
|
|
|
"Example : /caps bruce (room member)",
|
2013-02-16 20:04:10 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2013-02-16 21:10:56 -05:00
|
|
|
{ "/software",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_software, parse_args, 0, 1, NULL,
|
2013-03-10 15:17:24 -04:00
|
|
|
{ "/software [fulljid|nick]", "Find out software version information about a contacts resource.",
|
2013-02-17 11:59:20 -05:00
|
|
|
{ "/software [fulljid|nick]",
|
|
|
|
"------------------------",
|
2013-03-10 15:17:24 -04:00
|
|
|
"Find out a contact, or room members software version information, if such requests are supported.",
|
2013-02-17 11:59:20 -05:00
|
|
|
"If in the console window or a regular chat window, a full JID is required.",
|
|
|
|
"If in a chat room, the nickname is required.",
|
|
|
|
"If in private chat, no parameter is required.",
|
2013-06-30 17:59:06 -04:00
|
|
|
"If the contact's software does not support software version requests, nothing will be displayed.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"",
|
|
|
|
"Example : /software mybuddy@chat.server.org/laptop (contact's laptop resource)",
|
|
|
|
"Example : /software mybuddy@chat.server.org/phone (contact's phone resource)",
|
|
|
|
"Example : /software bruce (room member)",
|
2013-02-16 21:10:56 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2013-01-21 18:24:59 -05:00
|
|
|
{ "/status",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_status, parse_args, 0, 1, NULL,
|
2013-06-30 17:59:06 -04:00
|
|
|
{ "/status [contact|nick]", "Find out a contacts presence information.",
|
|
|
|
{ "/status [contact|nick]",
|
|
|
|
"----------------------",
|
2013-01-21 18:24:59 -05:00
|
|
|
"Find out a contact, or room members presence information.",
|
|
|
|
"If in a chat window the parameter is not required, the current recipient will be used.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"",
|
2013-06-30 17:59:06 -04:00
|
|
|
"Example : /status buddy@server.com",
|
|
|
|
"Example : /status jon",
|
2013-01-21 18:24:59 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2012-11-03 21:27:01 -04:00
|
|
|
{ "/join",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_join, parse_args_with_freetext, 1, 2, NULL,
|
2013-04-10 17:47:01 -04:00
|
|
|
{ "/join room[@server] [nick]", "Join a chat room.",
|
|
|
|
{ "/join room[@server] [nick]",
|
|
|
|
"--------------------------",
|
2012-11-03 21:27:01 -04:00
|
|
|
"Join a chat room at the conference server.",
|
2012-12-09 13:59:11 -05:00
|
|
|
"If nick is specified you will join with this nickname.",
|
2013-09-12 18:30:35 -04:00
|
|
|
"Otherwise the account preference 'muc.nick' will be used which is the localpart of your JID (before the @).",
|
|
|
|
"If no server is supplied, the account preference 'muc.service' is used, which is 'conference.<domain-part>' by default.",
|
2012-12-09 13:59:11 -05:00
|
|
|
"If the room doesn't exist, and the server allows it, a new one will be created.",
|
2012-11-03 21:27:01 -04:00
|
|
|
"",
|
|
|
|
"Example : /join jdev@conference.jabber.org",
|
|
|
|
"Example : /join jdev@conference.jabber.org mynick",
|
2013-04-10 17:47:01 -04:00
|
|
|
"Example : /join jdev (as user@jabber.org will join jdev@conference.jabber.org)",
|
2012-11-03 21:27:01 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2013-05-30 17:48:56 -04:00
|
|
|
{ "/leave",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_leave, parse_args, 0, 0, NULL,
|
2013-05-30 17:48:56 -04:00
|
|
|
{ "/leave", "Leave a chat room.",
|
|
|
|
{ "/leave",
|
|
|
|
"------",
|
|
|
|
"Leave the current chat room.",
|
|
|
|
NULL } } },
|
|
|
|
|
2013-04-20 15:18:13 -04:00
|
|
|
{ "/invite",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_invite, parse_args_with_freetext, 1, 2, NULL,
|
2013-06-30 17:59:06 -04:00
|
|
|
{ "/invite contact [message]", "Invite contact to chat room.",
|
|
|
|
{ "/invite contact [message]",
|
|
|
|
"-------------------------",
|
2013-04-20 15:18:13 -04:00
|
|
|
"Send a direct invite to the specified contact to the current chat room.",
|
2013-07-20 18:47:57 -04:00
|
|
|
"If a message is supplied it will be sent as the reason for the invite.",
|
2013-04-20 15:18:13 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2013-04-24 18:50:47 -04:00
|
|
|
{ "/invites",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_invites, parse_args_with_freetext, 0, 0, NULL,
|
2013-04-24 18:50:47 -04:00
|
|
|
{ "/invites", "Show outstanding chat room invites.",
|
|
|
|
{ "/invites",
|
|
|
|
"--------",
|
|
|
|
"Show all rooms that you have been invited to, and have not yet been accepted or declind.",
|
|
|
|
"Use \"/join <room>\" to accept a room invitation.",
|
|
|
|
"Use \"/decline <room>\" to decline a room invitation.",
|
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/decline",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_decline, parse_args_with_freetext, 1, 1, NULL,
|
2013-04-24 18:50:47 -04:00
|
|
|
{ "/decline room", "Decline a chat room invite.",
|
|
|
|
{ "/decline room",
|
|
|
|
"-------------",
|
|
|
|
"Decline invitation to a chat room, the room will no longer be in the list of outstanding invites.",
|
|
|
|
NULL } } },
|
|
|
|
|
2013-03-13 19:38:26 -04:00
|
|
|
{ "/rooms",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_rooms, parse_args, 0, 1, NULL,
|
2013-03-14 16:50:09 -04:00
|
|
|
{ "/rooms [conference-service]", "List chat rooms.",
|
|
|
|
{ "/rooms [conference-service]",
|
|
|
|
"---------------------------",
|
|
|
|
"List the chat rooms available at the specified conference service",
|
2013-09-12 18:30:35 -04:00
|
|
|
"If no argument is supplied, the account preference 'muc.service' is used, which is 'conference.<domain-part>' by default.",
|
2013-03-13 19:38:26 -04:00
|
|
|
"",
|
|
|
|
"Example : /rooms conference.jabber.org",
|
|
|
|
"Example : /rooms (if logged in as me@server.org, is equivalent to /rooms conference.server.org)",
|
|
|
|
NULL } } },
|
|
|
|
|
2013-07-14 16:58:02 -04:00
|
|
|
{ "/bookmark",
|
|
|
|
_cmd_bookmark, parse_args, 0, 4, NULL,
|
|
|
|
{ "/bookmark [add|list|remove] [room@server] [autojoin on|off] [nick nickname]",
|
|
|
|
"Manage bookmarks.",
|
|
|
|
{ "/bookmark [add|list|remove] [room@server] [autojoin on|off] [nick nickname]",
|
|
|
|
"---------------------------------------------------------------------------",
|
|
|
|
"Manage bookmarks.",
|
|
|
|
NULL } } },
|
|
|
|
|
2013-03-14 16:50:09 -04:00
|
|
|
{ "/disco",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_disco, parse_args, 1, 2, NULL,
|
2013-03-14 16:50:09 -04:00
|
|
|
{ "/disco command entity", "Service discovery.",
|
|
|
|
{ "/disco command entity",
|
|
|
|
"---------------------",
|
|
|
|
"Find out information about an entities supported services.",
|
|
|
|
"Command may be one of:",
|
|
|
|
"info: List protocols and features supported by an entity.",
|
|
|
|
"items: List items associated with an entity.",
|
|
|
|
"",
|
|
|
|
"The entity must be a Jabber ID.",
|
|
|
|
"",
|
|
|
|
"Example : /disco info myserver.org",
|
|
|
|
"Example : /disco items myserver.org",
|
|
|
|
"Example : /disco items conference.jabber.org",
|
|
|
|
"Example : /disco info myfriend@server.com/laptop",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-18 13:36:17 -05:00
|
|
|
{ "/nick",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_nick, parse_args_with_freetext, 1, 1, NULL,
|
2012-12-09 13:59:11 -05:00
|
|
|
{ "/nick nickname", "Change nickname in chat room.",
|
|
|
|
{ "/nick nickname",
|
|
|
|
"--------------",
|
|
|
|
"Change the name by which other members of a chat room see you.",
|
2012-11-18 13:36:17 -05:00
|
|
|
"This command is only valid when called within a chat room window.",
|
|
|
|
"",
|
|
|
|
"Example : /nick kai hansen",
|
|
|
|
"Example : /nick bob",
|
|
|
|
NULL } } },
|
|
|
|
|
2013-08-29 16:41:10 -04:00
|
|
|
{ "/win",
|
|
|
|
_cmd_win, parse_args, 1, 1, NULL,
|
|
|
|
{ "/win num", "View a window.",
|
|
|
|
{ "/win num",
|
|
|
|
"------------------",
|
|
|
|
"Show the contents of a specific window in the main window area.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
{ "/wins",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_wins, parse_args, 0, 1, NULL,
|
2013-05-16 19:33:00 -04:00
|
|
|
{ "/wins [tidy|prune]", "List or tidy active windows.",
|
|
|
|
{ "/wins [tidy|prune]",
|
|
|
|
"------------------",
|
|
|
|
"Passing no argument will list all currently active windows and information about their usage.",
|
2013-06-30 17:59:06 -04:00
|
|
|
"tidy : Shuffle windows so there are no gaps.",
|
2013-05-16 19:33:00 -04:00
|
|
|
"prune : Close all windows with no unread messages, and then tidy as above.",
|
2012-11-13 19:39:34 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-28 14:51:13 -04:00
|
|
|
{ "/sub",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_sub, parse_args, 1, 2, NULL,
|
2012-12-09 13:59:11 -05:00
|
|
|
{ "/sub command [jid]", "Manage subscriptions.",
|
|
|
|
{ "/sub command [jid]",
|
|
|
|
"------------------",
|
|
|
|
"command : One of the following,",
|
2012-11-27 19:36:51 -05:00
|
|
|
"request : Send a subscription request to the user to be informed of their",
|
|
|
|
" : presence.",
|
2012-11-27 21:02:59 -05:00
|
|
|
"allow : Approve a contact's subscription reqeust to see your presence.",
|
2012-11-27 19:36:51 -05:00
|
|
|
"deny : Remove subscription for a contact, or deny a request",
|
|
|
|
"show : Show subscriprion status for a contact.",
|
|
|
|
"sent : Show all sent subscription requests pending a response.",
|
|
|
|
"received : Show all received subscription requests awaiting your response.",
|
2012-10-28 14:51:13 -04:00
|
|
|
"",
|
2012-11-27 21:02:59 -05:00
|
|
|
"The optional 'jid' parameter only applys to 'request', 'allow', 'deny' and 'show'",
|
|
|
|
"If it is omitted the contact of the current window is used.",
|
2012-11-11 07:00:21 -05:00
|
|
|
"",
|
2012-11-27 18:43:32 -05:00
|
|
|
"Example: /sub request myfriend@jabber.org",
|
|
|
|
"Example: /sub allow myfriend@jabber.org",
|
|
|
|
"Example: /sub request (whilst in chat with contact)",
|
2012-11-27 19:36:51 -05:00
|
|
|
"Example: /sub sent",
|
2012-10-28 14:51:13 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/tiny",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_tiny, parse_args, 1, 1, NULL,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/tiny url", "Send url as tinyurl in current chat.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/tiny url",
|
|
|
|
"---------",
|
|
|
|
"Send the url as a tiny url.",
|
|
|
|
"",
|
2013-06-30 17:59:06 -04:00
|
|
|
"Example : /tiny http://www.profanity.im",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2013-05-04 21:31:04 -04:00
|
|
|
{ "/duck",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_duck, parse_args_with_freetext, 1, 1, NULL,
|
2013-05-04 21:31:04 -04:00
|
|
|
{ "/duck query", "Perform search using DuckDuckGo chatbot.",
|
|
|
|
{ "/duck query",
|
|
|
|
"-----------",
|
|
|
|
"Send a search query to the DuckDuckGo chatbot.",
|
|
|
|
"Your chat service must be federated, i.e. allow message to be sent/received outside of its domain.",
|
|
|
|
"",
|
|
|
|
"Example : /duck dennis ritchie",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/who",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_who, parse_args, 0, 2, NULL,
|
2013-06-01 22:33:49 -04:00
|
|
|
{ "/who [status] [group]", "Show contacts/room participants with chosen status.",
|
|
|
|
{ "/who [status] [group]",
|
|
|
|
"---------------------",
|
2012-10-04 18:18:48 -04:00
|
|
|
"Show contacts with the specified status, no status shows all contacts.",
|
2012-11-11 19:21:49 -05:00
|
|
|
"Possible statuses are: online, offline, away, dnd, xa, chat, available, unavailable.",
|
2013-06-01 22:33:49 -04:00
|
|
|
"The groups argument will show only contacts in that group.",
|
2013-01-17 18:05:23 -05:00
|
|
|
"If in a chat room, the participants with the supplied status are displayed.",
|
2012-11-11 19:21:49 -05:00
|
|
|
"",
|
2012-12-09 13:59:11 -05:00
|
|
|
"online : Contacts that are connected, i.e. online, chat, away, xa, dnd",
|
|
|
|
"available : Contacts that are available for chat, i.e. online, chat.",
|
|
|
|
"unavailable : Contacts that are not available for chat, i.e. offline, away, xa, dnd.",
|
2013-06-01 22:33:49 -04:00
|
|
|
"any : Contacts with any status (same as calling with no argument.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/close",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_close, parse_args, 0, 1, NULL,
|
2013-06-24 19:49:29 -04:00
|
|
|
{ "/close [win|read|all]", "Close windows.",
|
2013-05-16 17:34:05 -04:00
|
|
|
{ "/close [win|read|all]",
|
|
|
|
"---------------------",
|
2013-05-12 17:57:36 -04:00
|
|
|
"Passing no argument will close the current window.",
|
2013-05-16 19:33:00 -04:00
|
|
|
"2,3,4,5,6,7,8,9 or 0 : Close the specified window.",
|
|
|
|
"all : Close all currently open windows.",
|
|
|
|
"read : Close all windows that have no new messages.",
|
2013-05-12 17:57:36 -04:00
|
|
|
"The console window cannot be closed.",
|
2012-11-07 19:29:52 -05:00
|
|
|
"If in a chat room, you will leave the room.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2013-03-02 16:55:55 -05:00
|
|
|
{ "/clear",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_clear, parse_args, 0, 0, NULL,
|
2013-03-02 16:55:55 -05:00
|
|
|
{ "/clear", "Clear current window.",
|
|
|
|
{ "/clear",
|
|
|
|
"------",
|
|
|
|
"Clear the current window.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/quit",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_quit, parse_args, 0, 0, NULL,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/quit", "Quit Profanity.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/quit",
|
|
|
|
"-----",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Logout of any current session, and quit Profanity.",
|
2013-06-24 19:49:29 -04:00
|
|
|
NULL } } },
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-08-11 20:39:51 -04:00
|
|
|
{ "/beep",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_beep, parse_args, 1, 1, cons_beep_setting,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/beep on|off", "Terminal beep on new messages.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/beep on|off",
|
|
|
|
"------------",
|
|
|
|
"Switch the terminal bell on or off.",
|
|
|
|
"The bell will sound when incoming messages are received.",
|
2012-12-09 13:59:11 -05:00
|
|
|
"If the terminal does not support sounds, it may attempt to flash the screen instead.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-08-11 20:39:51 -04:00
|
|
|
{ "/notify",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_notify, parse_args, 2, 2, cons_notify_setting,
|
2012-10-27 17:05:08 -04:00
|
|
|
{ "/notify type value", "Control various desktop noficiations.",
|
|
|
|
{ "/notify type value",
|
|
|
|
"------------------",
|
|
|
|
"Settings for various desktop notifications where type is one of:",
|
|
|
|
"message : Notificaitons for messages.",
|
|
|
|
" : on|off",
|
|
|
|
"remind : Notification reminders of unread messages.",
|
|
|
|
" : where value is the reminder period in seconds,",
|
|
|
|
" : use 0 to disable.",
|
|
|
|
"typing : Notifications when contacts are typing.",
|
|
|
|
" : on|off",
|
2013-04-22 18:48:23 -04:00
|
|
|
"invite : Notifications for chat room invites.",
|
|
|
|
" : on|off",
|
2013-04-27 18:46:49 -04:00
|
|
|
"sub : Notifications for subscription requests.",
|
|
|
|
" : on|off",
|
|
|
|
"",
|
2012-10-27 17:05:08 -04:00
|
|
|
"Example : /notify message on (enable message notifications)",
|
|
|
|
"Example : /notify remind 10 (remind every 10 seconds)",
|
|
|
|
"Example : /notify remind 0 (switch off reminders)",
|
|
|
|
"Example : /notify typing on (enable typing notifications)",
|
2013-04-22 18:48:23 -04:00
|
|
|
"Example : /notify invite on (enable chat room invite notifications)",
|
2012-09-23 17:24:31 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/flash",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_flash, parse_args, 1, 1, cons_flash_setting,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/flash on|off", "Terminal flash on new messages.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/flash on|off",
|
|
|
|
"-------------",
|
|
|
|
"Make the terminal flash when incoming messages are recieved.",
|
2012-12-09 13:59:11 -05:00
|
|
|
"The flash will only occur if you are not in the chat window associated with the user sending the message.",
|
|
|
|
"If the terminal doesn't support flashing, it may attempt to beep.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
{ "/intype",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_intype, parse_args, 1, 1, cons_intype_setting,
|
2012-10-27 19:33:20 -04:00
|
|
|
{ "/intype on|off", "Show when contact is typing.",
|
|
|
|
{ "/intype on|off",
|
|
|
|
"--------------",
|
|
|
|
"Show when a contact is typing in the console, and in active message window.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-12-01 21:21:59 -05:00
|
|
|
{ "/splash",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_splash, parse_args, 1, 1, cons_splash_setting,
|
2013-03-10 15:17:24 -04:00
|
|
|
{ "/splash on|off", "Splash logo on startup and /about command.",
|
2012-12-01 21:21:59 -05:00
|
|
|
{ "/splash on|off",
|
|
|
|
"--------------",
|
2013-03-10 15:17:24 -04:00
|
|
|
"Switch on or off the ascii logo on start up and when the /about command is called.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-10-27 12:40:17 -04:00
|
|
|
|
2013-11-07 18:04:12 -05:00
|
|
|
{ "/autoconnect",
|
|
|
|
_cmd_autoconnect, parse_args, 0, 1, cons_autoconnect_setting,
|
|
|
|
{ "/autoconnect [account]", "Set account to autoconnect with.",
|
|
|
|
{ "/autoconnect [account]",
|
|
|
|
"----------------------",
|
|
|
|
"Set the account to autoconnect with.",
|
|
|
|
"Will be overridden by any command line options specified.",
|
|
|
|
"Passing no account will clear the setting.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
{ "/vercheck",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_vercheck, parse_args, 0, 1, NULL,
|
2012-10-23 20:35:36 -04:00
|
|
|
{ "/vercheck [on|off]", "Check for a new release.",
|
|
|
|
{ "/vercheck [on|off]",
|
|
|
|
"------------------",
|
|
|
|
"Without a parameter will check for a new release.",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Switching on or off will enable/disable a version check when Profanity starts, and each time the /about command is run.",
|
2012-10-23 20:35:36 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-12-02 15:53:45 -05:00
|
|
|
{ "/titlebar",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_titlebar, parse_args, 2, 2, cons_titlebar_setting,
|
2012-12-02 15:53:45 -05:00
|
|
|
{ "/titlebar property on|off", "Show various properties in the window title bar.",
|
|
|
|
{ "/titlebar property on|off",
|
|
|
|
"-------------------------",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Show various properties in the window title bar.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"Currently The only supported property is 'version'.",
|
2012-11-29 15:34:52 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2013-01-17 14:40:55 -05:00
|
|
|
{ "/mouse",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_mouse, parse_args, 1, 1, cons_mouse_setting,
|
2013-01-17 14:40:55 -05:00
|
|
|
{ "/mouse on|off", "Use profanity mouse handling.",
|
|
|
|
{ "/mouse on|off",
|
|
|
|
"-------------",
|
2013-03-10 15:17:24 -04:00
|
|
|
"If set to 'on', profanity will handle mouse actions, which enables scrolling the main window with the mouse wheel.",
|
2013-01-17 14:40:55 -05:00
|
|
|
"To select text, use the shift key while selcting an area.",
|
|
|
|
"If set to 'off', profanity leaves mouse handling to the terminal implementation.",
|
2013-03-19 16:04:51 -04:00
|
|
|
"This feature is experimental, certain mouse click events may occasionally freeze",
|
|
|
|
"Profanity until a key is pressed or another mouse event is received",
|
|
|
|
"The default is 'off'.",
|
2013-01-17 14:40:55 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/chlog",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_chlog, parse_args, 1, 1, cons_chlog_setting,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/chlog on|off", "Chat logging to file",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/chlog on|off",
|
|
|
|
"-------------",
|
|
|
|
"Switch chat logging on or off.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"This setting will be enabled if /history is set to on.",
|
|
|
|
"When disabling this option, /history will also be disabled.",
|
2013-05-04 19:16:10 -04:00
|
|
|
"See the /grlog setting for enabling logging of chat room (groupchat) messages.",
|
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/grlog",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_grlog, parse_args, 1, 1, cons_grlog_setting,
|
2013-05-04 19:16:10 -04:00
|
|
|
{ "/grlog on|off", "Chat logging of chat rooms to file",
|
|
|
|
{ "/grlog on|off",
|
|
|
|
"-------------",
|
|
|
|
"Switch chat room logging on or off.",
|
|
|
|
"See the /chlog setting for enabling logging of one to one chat.",
|
2012-10-31 17:41:00 -04:00
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/states",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_states, parse_args, 1, 1, cons_states_setting,
|
2012-10-31 17:41:00 -04:00
|
|
|
{ "/states on|off", "Send chat states during a chat session.",
|
|
|
|
{ "/states on|off",
|
|
|
|
"--------------",
|
|
|
|
"Sending of chat state notifications during chat sessions.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"Such as whether you have become inactive, or have closed the chat window.",
|
2012-10-14 13:26:08 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-31 20:12:35 -04:00
|
|
|
{ "/outtype",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_outtype, parse_args, 1, 1, cons_outtype_setting,
|
2012-10-31 20:12:35 -04:00
|
|
|
{ "/outtype on|off", "Send typing notification to recipient.",
|
|
|
|
{ "/outtype on|off",
|
2013-03-10 15:17:24 -04:00
|
|
|
"---------------",
|
|
|
|
"Send an indication that you are typing to the chat recipient.",
|
|
|
|
"Chat states (/states) will be enabled if this setting is set.",
|
2012-10-31 20:12:35 -04:00
|
|
|
NULL } } },
|
2012-10-31 17:41:00 -04:00
|
|
|
|
2012-12-19 18:31:25 -05:00
|
|
|
{ "/gone",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_gone, parse_args, 1, 1, cons_gone_setting,
|
2012-12-19 18:33:10 -05:00
|
|
|
{ "/gone minutes", "Send 'gone' state to recipient after a period.",
|
2012-12-19 18:31:25 -05:00
|
|
|
{ "/gone minutes",
|
2013-03-10 15:17:24 -04:00
|
|
|
"-------------",
|
2012-12-19 18:31:25 -05:00
|
|
|
"Send a 'gone' state to the recipient after the specified number of minutes."
|
|
|
|
"This indicates to the recipient's client that you have left the conversation.",
|
2013-03-10 15:17:24 -04:00
|
|
|
"A value of 0 will disable sending this chat state.",
|
|
|
|
"Chat states (/states) will be enabled if this setting is set.",
|
2012-12-19 18:31:25 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/history",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_history, parse_args, 1, 1, cons_history_setting,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/history on|off", "Chat history in message windows.",
|
2012-10-14 13:26:08 -04:00
|
|
|
{ "/history on|off",
|
2012-11-11 14:32:42 -05:00
|
|
|
"---------------",
|
2013-06-30 17:59:06 -04:00
|
|
|
"Switch chat history on or off, /chlog will automatically be enabled when this setting is on.",
|
2012-10-14 13:26:08 -04:00
|
|
|
"When history is enabled, previous messages are shown in chat windows.",
|
2012-11-12 04:13:03 -05:00
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/log",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_log, parse_args, 2, 2, cons_log_setting,
|
2012-12-09 13:59:11 -05:00
|
|
|
{ "/log maxsize value", "Manage system logging settings.",
|
|
|
|
{ "/log maxsize value",
|
|
|
|
"------------------",
|
2012-11-12 04:13:03 -05:00
|
|
|
"maxsize : When log file size exceeds this value it will be automatically",
|
|
|
|
" rotated (file will be renamed). Default value is 1048580 (1MB)",
|
2012-11-13 05:51:28 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
{ "/reconnect",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_reconnect, parse_args, 1, 1, cons_reconnect_setting,
|
2012-11-24 21:14:38 -05:00
|
|
|
{ "/reconnect seconds", "Set reconnect interval.",
|
|
|
|
{ "/reconnect seconds",
|
2013-03-10 15:17:24 -04:00
|
|
|
"------------------",
|
2012-11-24 21:14:38 -05:00
|
|
|
"Set the reconnect attempt interval in seconds for when the connection is lost.",
|
2013-06-30 17:59:06 -04:00
|
|
|
"A value of 0 will switch off reconnect attempts.",
|
2012-11-24 21:14:38 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2012-11-26 18:58:24 -05:00
|
|
|
{ "/autoping",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_autoping, parse_args, 1, 1, cons_autoping_setting,
|
2012-11-26 18:58:24 -05:00
|
|
|
{ "/autoping seconds", "Server ping interval.",
|
|
|
|
{ "/autoping seconds",
|
2012-12-09 13:59:11 -05:00
|
|
|
"-----------------",
|
2012-11-26 18:58:24 -05:00
|
|
|
"Set the number of seconds between server pings, so ensure connection kept alive.",
|
|
|
|
"A value of 0 will switch off autopinging the server.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-30 18:34:14 -05:00
|
|
|
{ "/autoaway",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_autoaway, parse_args_with_freetext, 2, 2, cons_autoaway_setting,
|
2012-11-30 18:34:14 -05:00
|
|
|
{ "/autoaway setting value", "Set auto idle/away properties.",
|
|
|
|
{ "/autoaway setting value",
|
|
|
|
"-----------------------",
|
|
|
|
"'setting' may be one of 'mode', 'minutes', 'message' or 'check', with the following values:",
|
|
|
|
"",
|
|
|
|
"mode : idle - Sends idle time, whilst your status remains online.",
|
|
|
|
" away - Sends an away presence.",
|
|
|
|
" off - Disabled (default).",
|
|
|
|
"time : Number of minutes before the presence change is sent, the default is 15.",
|
2012-12-01 19:38:10 -05:00
|
|
|
"message : Optional message to send with the presence change.",
|
|
|
|
" : off - Disable message (default).",
|
2012-11-30 18:34:14 -05:00
|
|
|
"check : on|off, when enabled, checks for activity and sends online presence, default is 'on'.",
|
|
|
|
"",
|
|
|
|
"Example: /autoaway mode idle",
|
|
|
|
"Example: /autoaway time 30",
|
|
|
|
"Example: /autoaway message I'm not really doing much",
|
|
|
|
"Example: /autoaway check false",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-13 05:51:28 -05:00
|
|
|
{ "/priority",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_priority, parse_args, 1, 1, cons_priority_setting,
|
2013-01-31 17:48:21 -05:00
|
|
|
{ "/priority value", "Set priority for the current account.",
|
2012-12-09 13:59:11 -05:00
|
|
|
{ "/priority value",
|
|
|
|
"---------------",
|
2013-01-31 17:48:21 -05:00
|
|
|
"Set priority for the current account, presence will be sent when calling this command.",
|
|
|
|
"See the /account command for more specific priority settings per presence status.",
|
2012-11-13 05:51:28 -05:00
|
|
|
"value : Number between -128 and 127. Default value is 0.",
|
2013-01-20 20:26:09 -05:00
|
|
|
NULL } } },
|
|
|
|
|
2013-06-23 14:19:39 -04:00
|
|
|
{ "/account",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_account, parse_args, 0, 4, NULL,
|
2013-06-23 14:19:39 -04:00
|
|
|
{ "/account [command] [account] [property] [value]", "Manage accounts.",
|
|
|
|
{ "/account [command] [account] [property] [value]",
|
|
|
|
"-----------------------------------------------",
|
|
|
|
"Commands for creating and managing accounts.",
|
|
|
|
"list : List all accounts.",
|
|
|
|
"show account : Show information about an account.",
|
|
|
|
"enable account : Enable the account, it will be used for autocomplete.",
|
|
|
|
"disable account : Disable the account.",
|
|
|
|
"add account : Create a new account.",
|
|
|
|
"rename account newname : Rename account to newname.",
|
|
|
|
"set account property value : Set 'property' of 'account' to 'value'.",
|
|
|
|
"",
|
|
|
|
"When connected, the /account command can be called with no arguments, to show current account settings.",
|
|
|
|
"The 'property' may be one of.",
|
|
|
|
"jid : The Jabber ID of the account, the account name will be used if this property is not set.",
|
|
|
|
"server : The chat server, if different to the domainpart of the JID.",
|
|
|
|
"status : The presence status to use on login, use 'last' to use whatever your last status was.",
|
|
|
|
"online|chat|away",
|
|
|
|
"|xa|dnd : Priority for the specified presence.",
|
|
|
|
"resource : The resource to be used.",
|
2013-09-12 18:30:35 -04:00
|
|
|
"muc : The default MUC chat service to use.",
|
|
|
|
"nick : The default nickname to use when joining chat rooms.",
|
2013-06-23 14:19:39 -04:00
|
|
|
"",
|
|
|
|
"Example : /account add work",
|
|
|
|
" : /account set work jid myuser@mycompany.com",
|
|
|
|
" : /account set work server talk.google.com",
|
|
|
|
" : /account set work resource desktop",
|
2013-09-12 18:30:35 -04:00
|
|
|
" : /account set work muc chatservice.mycompany.com",
|
|
|
|
" : /account set work nick dennis",
|
2013-06-23 14:19:39 -04:00
|
|
|
" : /account set work status dnd",
|
|
|
|
" : /account set work dnd -1",
|
|
|
|
" : /account set work online 10",
|
|
|
|
" : /account rename work gtalk",
|
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/prefs",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_prefs, parse_args, 0, 1, NULL,
|
2013-06-23 14:19:39 -04:00
|
|
|
{ "/prefs [area]", "Show configuration.",
|
|
|
|
{ "/prefs [area]",
|
|
|
|
"-------------",
|
|
|
|
"Area is one of:",
|
|
|
|
"ui : User interface preferences.",
|
|
|
|
"desktop : Desktop notification preferences.",
|
|
|
|
"chat : Chat state preferences.",
|
|
|
|
"log : Logging preferences.",
|
|
|
|
"conn : Connection handling preferences.",
|
|
|
|
"presence : Chat presence preferences.",
|
|
|
|
"",
|
|
|
|
"No argument shows all categories.",
|
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/theme",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_theme, parse_args, 1, 2, cons_theme_setting,
|
2013-06-23 14:19:39 -04:00
|
|
|
{ "/theme command [theme-name]", "Change colour theme.",
|
|
|
|
{ "/theme command [theme-name]",
|
|
|
|
"---------------------------",
|
|
|
|
"Change the colour settings used.",
|
|
|
|
"",
|
|
|
|
"command : One of the following,",
|
|
|
|
"list : List all available themes.",
|
|
|
|
"set [theme-name] : Load the named theme.\"default\" will reset to the default colours.",
|
|
|
|
"",
|
|
|
|
"Example : /theme list",
|
|
|
|
"Example : /theme set mycooltheme",
|
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
|
2013-01-20 20:26:09 -05:00
|
|
|
{ "/statuses",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_statuses, parse_args, 1, 1, cons_statuses_setting,
|
2013-01-20 20:26:09 -05:00
|
|
|
{ "/statuses on|off", "Set notifications for status messages.",
|
|
|
|
{ "/statuses on|off",
|
2013-03-10 15:17:24 -04:00
|
|
|
"----------------",
|
|
|
|
"Show status updates from contacts, such as online/offline/away etc.",
|
|
|
|
"When disabled, status updates are not displayed.",
|
|
|
|
"The default is 'on'.",
|
2013-06-24 19:49:29 -04:00
|
|
|
NULL } } },
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-08-11 20:39:51 -04:00
|
|
|
{ "/away",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_away, parse_args_with_freetext, 0, 1, NULL,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/away [msg]", "Set status to away.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/away [msg]",
|
|
|
|
"-----------",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Set your status to 'away' with the optional message.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /away Gone for lunch",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
|
|
|
{ "/chat",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_chat, parse_args_with_freetext, 0, 1, NULL,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/chat [msg]", "Set status to chat (available for chat).",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/chat [msg]",
|
|
|
|
"-----------",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Set your status to 'chat', meaning 'available for chat', with the optional message.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /chat Please talk to me!",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
|
|
|
{ "/dnd",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_dnd, parse_args_with_freetext, 0, 1, NULL,
|
2012-11-17 21:40:49 -05:00
|
|
|
{ "/dnd [msg]", "Set status to dnd (do not disturb).",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/dnd [msg]",
|
|
|
|
"----------",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Set your status to 'dnd', meaning 'do not disturb', with the optional message.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /dnd I'm in the zone",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/online",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_online, parse_args_with_freetext, 0, 1, NULL,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/online [msg]", "Set status to online.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/online [msg]",
|
|
|
|
"-------------",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Set your status to 'online' with the optional message.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /online Up the Irons!",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
|
|
|
{ "/xa",
|
2013-06-25 18:38:06 -04:00
|
|
|
_cmd_xa, parse_args_with_freetext, 0, 1, NULL,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/xa [msg]", "Set status to xa (extended away).",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/xa [msg]",
|
|
|
|
"---------",
|
2012-12-09 13:59:11 -05:00
|
|
|
"Set your status to 'xa', meaning 'extended away', with the optional message.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /xa This meeting is going to be a long one",
|
|
|
|
NULL } } },
|
2012-06-04 15:49:18 -04:00
|
|
|
};
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
static Autocomplete commands_ac;
|
|
|
|
static Autocomplete who_ac;
|
|
|
|
static Autocomplete help_ac;
|
|
|
|
static Autocomplete notify_ac;
|
|
|
|
static Autocomplete prefs_ac;
|
|
|
|
static Autocomplete sub_ac;
|
|
|
|
static Autocomplete log_ac;
|
|
|
|
static Autocomplete autoaway_ac;
|
|
|
|
static Autocomplete autoaway_mode_ac;
|
|
|
|
static Autocomplete titlebar_ac;
|
|
|
|
static Autocomplete theme_ac;
|
|
|
|
static Autocomplete theme_load_ac;
|
|
|
|
static Autocomplete account_ac;
|
2013-03-14 16:50:09 -04:00
|
|
|
static Autocomplete disco_ac;
|
2013-05-16 17:49:35 -04:00
|
|
|
static Autocomplete close_ac;
|
2013-05-16 19:33:00 -04:00
|
|
|
static Autocomplete wins_ac;
|
2013-05-18 21:30:03 -04:00
|
|
|
static Autocomplete roster_ac;
|
2013-06-02 12:51:38 -04:00
|
|
|
static Autocomplete group_ac;
|
2013-07-14 16:58:02 -04:00
|
|
|
static Autocomplete bookmark_ac;
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-08-22 18:57:34 -04:00
|
|
|
/*
|
|
|
|
* Initialise command autocompleter and history
|
|
|
|
*/
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-08-22 19:30:11 -04:00
|
|
|
cmd_init(void)
|
2012-04-30 19:24:31 -04:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Initialising commands");
|
2012-10-27 20:47:57 -04:00
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
commands_ac = autocomplete_new();
|
2013-06-24 19:49:29 -04:00
|
|
|
|
|
|
|
help_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(help_ac, "commands");
|
|
|
|
autocomplete_add(help_ac, "basic");
|
|
|
|
autocomplete_add(help_ac, "chatting");
|
|
|
|
autocomplete_add(help_ac, "groupchat");
|
|
|
|
autocomplete_add(help_ac, "presence");
|
|
|
|
autocomplete_add(help_ac, "contacts");
|
|
|
|
autocomplete_add(help_ac, "service");
|
|
|
|
autocomplete_add(help_ac, "settings");
|
|
|
|
autocomplete_add(help_ac, "other");
|
|
|
|
autocomplete_add(help_ac, "navigation");
|
2013-06-24 19:49:29 -04:00
|
|
|
|
|
|
|
// load command defs into hash table
|
|
|
|
commands = g_hash_table_new(g_str_hash, g_str_equal);
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(command_defs); i++) {
|
|
|
|
Command *pcmd = command_defs+i;
|
|
|
|
|
|
|
|
// add to hash
|
|
|
|
g_hash_table_insert(commands, pcmd->cmd, pcmd);
|
|
|
|
|
|
|
|
// add to commands and help autocompleters
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(commands_ac, pcmd->cmd);
|
|
|
|
autocomplete_add(help_ac, pcmd->cmd+1);
|
2013-06-24 19:49:29 -04:00
|
|
|
}
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
prefs_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(prefs_ac, "ui");
|
|
|
|
autocomplete_add(prefs_ac, "desktop");
|
|
|
|
autocomplete_add(prefs_ac, "chat");
|
|
|
|
autocomplete_add(prefs_ac, "log");
|
|
|
|
autocomplete_add(prefs_ac, "conn");
|
|
|
|
autocomplete_add(prefs_ac, "presence");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
notify_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(notify_ac, "message");
|
|
|
|
autocomplete_add(notify_ac, "typing");
|
|
|
|
autocomplete_add(notify_ac, "remind");
|
|
|
|
autocomplete_add(notify_ac, "invite");
|
|
|
|
autocomplete_add(notify_ac, "sub");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
sub_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(sub_ac, "request");
|
|
|
|
autocomplete_add(sub_ac, "allow");
|
|
|
|
autocomplete_add(sub_ac, "deny");
|
|
|
|
autocomplete_add(sub_ac, "show");
|
|
|
|
autocomplete_add(sub_ac, "sent");
|
|
|
|
autocomplete_add(sub_ac, "received");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
titlebar_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(titlebar_ac, "version");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
log_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(log_ac, "maxsize");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
autoaway_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(autoaway_ac, "mode");
|
|
|
|
autocomplete_add(autoaway_ac, "time");
|
|
|
|
autocomplete_add(autoaway_ac, "message");
|
|
|
|
autocomplete_add(autoaway_ac, "check");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
autoaway_mode_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(autoaway_mode_ac, "away");
|
|
|
|
autocomplete_add(autoaway_mode_ac, "idle");
|
|
|
|
autocomplete_add(autoaway_mode_ac, "off");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
|
|
|
theme_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(theme_ac, "list");
|
|
|
|
autocomplete_add(theme_ac, "set");
|
2013-01-24 20:11:49 -05:00
|
|
|
|
2013-03-14 16:50:09 -04:00
|
|
|
disco_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(disco_ac, "info");
|
|
|
|
autocomplete_add(disco_ac, "items");
|
2013-03-14 16:50:09 -04:00
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
account_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(account_ac, "list");
|
|
|
|
autocomplete_add(account_ac, "show");
|
|
|
|
autocomplete_add(account_ac, "add");
|
|
|
|
autocomplete_add(account_ac, "enable");
|
|
|
|
autocomplete_add(account_ac, "disable");
|
|
|
|
autocomplete_add(account_ac, "rename");
|
|
|
|
autocomplete_add(account_ac, "set");
|
2012-12-09 17:58:45 -05:00
|
|
|
|
2013-05-16 17:49:35 -04:00
|
|
|
close_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(close_ac, "read");
|
|
|
|
autocomplete_add(close_ac, "all");
|
2013-05-16 17:49:35 -04:00
|
|
|
|
2013-05-16 19:33:00 -04:00
|
|
|
wins_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(wins_ac, "prune");
|
|
|
|
autocomplete_add(wins_ac, "tidy");
|
2013-05-16 19:33:00 -04:00
|
|
|
|
2013-05-18 21:30:03 -04:00
|
|
|
roster_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(roster_ac, "add");
|
|
|
|
autocomplete_add(roster_ac, "nick");
|
|
|
|
autocomplete_add(roster_ac, "remove");
|
2013-05-18 21:30:03 -04:00
|
|
|
|
2013-06-02 12:51:38 -04:00
|
|
|
group_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(group_ac, "show");
|
|
|
|
autocomplete_add(group_ac, "add");
|
|
|
|
autocomplete_add(group_ac, "remove");
|
2013-06-02 12:51:38 -04:00
|
|
|
|
2012-12-08 19:46:14 -05:00
|
|
|
theme_load_ac = NULL;
|
|
|
|
|
2013-06-24 19:49:29 -04:00
|
|
|
who_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(who_ac, "chat");
|
|
|
|
autocomplete_add(who_ac, "online");
|
|
|
|
autocomplete_add(who_ac, "away");
|
|
|
|
autocomplete_add(who_ac, "xa");
|
|
|
|
autocomplete_add(who_ac, "dnd");
|
|
|
|
autocomplete_add(who_ac, "offline");
|
|
|
|
autocomplete_add(who_ac, "available");
|
|
|
|
autocomplete_add(who_ac, "unavailable");
|
|
|
|
autocomplete_add(who_ac, "any");
|
2012-10-27 22:58:12 -04:00
|
|
|
|
2013-07-14 16:58:02 -04:00
|
|
|
bookmark_ac = autocomplete_new();
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(bookmark_ac, "add");
|
|
|
|
autocomplete_add(bookmark_ac, "list");
|
|
|
|
autocomplete_add(bookmark_ac, "remove");
|
2013-07-14 16:58:02 -04:00
|
|
|
|
2013-01-27 20:35:11 -05:00
|
|
|
cmd_history_init();
|
2012-04-30 19:24:31 -04:00
|
|
|
}
|
|
|
|
|
2012-10-21 19:29:39 -04:00
|
|
|
void
|
|
|
|
cmd_close(void)
|
|
|
|
{
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_free(commands_ac);
|
|
|
|
autocomplete_free(who_ac);
|
|
|
|
autocomplete_free(help_ac);
|
|
|
|
autocomplete_free(notify_ac);
|
|
|
|
autocomplete_free(sub_ac);
|
2013-08-23 17:30:54 -04:00
|
|
|
autocomplete_free(titlebar_ac);
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_free(log_ac);
|
|
|
|
autocomplete_free(prefs_ac);
|
|
|
|
autocomplete_free(autoaway_ac);
|
|
|
|
autocomplete_free(autoaway_mode_ac);
|
|
|
|
autocomplete_free(theme_ac);
|
2012-12-08 19:46:14 -05:00
|
|
|
if (theme_load_ac != NULL) {
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_free(theme_load_ac);
|
2012-12-08 19:46:14 -05:00
|
|
|
}
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_free(account_ac);
|
2013-03-14 16:50:09 -04:00
|
|
|
autocomplete_free(disco_ac);
|
2013-05-16 17:49:35 -04:00
|
|
|
autocomplete_free(close_ac);
|
2013-05-16 19:33:00 -04:00
|
|
|
autocomplete_free(wins_ac);
|
2013-05-18 21:30:03 -04:00
|
|
|
autocomplete_free(roster_ac);
|
2013-06-02 12:51:38 -04:00
|
|
|
autocomplete_free(group_ac);
|
2013-07-14 16:58:02 -04:00
|
|
|
autocomplete_free(bookmark_ac);
|
2012-10-21 19:29:39 -04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// Command autocompletion functions
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-27 20:42:26 -04:00
|
|
|
cmd_autocomplete(char *input, int *size)
|
2012-10-21 18:37:20 -04:00
|
|
|
{
|
2012-10-27 20:42:26 -04:00
|
|
|
int i = 0;
|
|
|
|
char *found = NULL;
|
|
|
|
char *auto_msg = NULL;
|
|
|
|
char inp_cpy[*size];
|
2012-10-21 18:37:20 -04:00
|
|
|
|
2012-12-01 19:38:10 -05:00
|
|
|
// autocomplete command
|
2012-10-27 20:42:26 -04:00
|
|
|
if ((strncmp(input, "/", 1) == 0) && (!str_contains(input, *size, ' '))) {
|
|
|
|
for(i = 0; i < *size; i++) {
|
|
|
|
inp_cpy[i] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[i] = '\0';
|
2013-01-24 20:11:49 -05:00
|
|
|
found = autocomplete_complete(commands_ac, inp_cpy);
|
2012-10-27 20:42:26 -04:00
|
|
|
if (found != NULL) {
|
2013-08-03 06:17:50 -04:00
|
|
|
auto_msg = (char *) malloc(strlen(found) + 1);
|
2012-10-27 20:42:26 -04:00
|
|
|
strcpy(auto_msg, found);
|
|
|
|
inp_replace_input(input, auto_msg, size);
|
|
|
|
free(auto_msg);
|
|
|
|
free(found);
|
|
|
|
}
|
2012-08-22 19:44:14 -04:00
|
|
|
|
2012-12-01 19:38:10 -05:00
|
|
|
// autocomplete parameters
|
|
|
|
} else {
|
|
|
|
_cmd_complete_parameters(input, size);
|
|
|
|
}
|
2012-10-27 17:22:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-27 20:42:26 -04:00
|
|
|
cmd_reset_autocomplete()
|
2012-10-27 17:22:30 -04:00
|
|
|
{
|
2013-05-06 17:32:58 -04:00
|
|
|
roster_reset_search_attempts();
|
2013-04-24 18:50:47 -04:00
|
|
|
muc_reset_invites_ac();
|
2012-12-09 19:53:57 -05:00
|
|
|
accounts_reset_all_search();
|
|
|
|
accounts_reset_enabled_search();
|
2012-10-27 20:42:26 -04:00
|
|
|
prefs_reset_boolean_choice();
|
2013-05-05 18:42:11 -04:00
|
|
|
presence_reset_sub_request_search();
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(help_ac);
|
|
|
|
autocomplete_reset(notify_ac);
|
|
|
|
autocomplete_reset(sub_ac);
|
2013-01-10 19:48:58 -05:00
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
if (ui_current_win_type() == WIN_MUC) {
|
2013-04-21 14:44:31 -04:00
|
|
|
Autocomplete nick_ac = muc_get_roster_ac(ui_current_recipient());
|
2013-01-10 19:48:58 -05:00
|
|
|
if (nick_ac != NULL) {
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(nick_ac);
|
2013-01-10 19:48:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(who_ac);
|
|
|
|
autocomplete_reset(prefs_ac);
|
|
|
|
autocomplete_reset(log_ac);
|
|
|
|
autocomplete_reset(commands_ac);
|
|
|
|
autocomplete_reset(autoaway_ac);
|
|
|
|
autocomplete_reset(autoaway_mode_ac);
|
|
|
|
autocomplete_reset(theme_ac);
|
2012-12-08 19:46:14 -05:00
|
|
|
if (theme_load_ac != NULL) {
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(theme_load_ac);
|
2012-12-08 19:46:14 -05:00
|
|
|
theme_load_ac = NULL;
|
|
|
|
}
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_reset(account_ac);
|
2013-03-14 16:50:09 -04:00
|
|
|
autocomplete_reset(disco_ac);
|
2013-05-16 17:49:35 -04:00
|
|
|
autocomplete_reset(close_ac);
|
2013-05-16 19:33:00 -04:00
|
|
|
autocomplete_reset(wins_ac);
|
2013-05-18 21:30:03 -04:00
|
|
|
autocomplete_reset(roster_ac);
|
2013-06-02 12:51:38 -04:00
|
|
|
autocomplete_reset(group_ac);
|
2013-07-14 16:58:02 -04:00
|
|
|
autocomplete_reset(bookmark_ac);
|
|
|
|
bookmark_autocomplete_reset();
|
2012-10-27 17:22:30 -04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// Command execution
|
|
|
|
|
2012-08-22 19:41:22 -04:00
|
|
|
gboolean
|
|
|
|
cmd_execute(const char * const command, const char * const inp)
|
2012-08-14 19:42:38 -04:00
|
|
|
{
|
2013-06-24 19:49:29 -04:00
|
|
|
Command *cmd = g_hash_table_lookup(commands, command);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-08-14 19:42:38 -04:00
|
|
|
if (cmd != NULL) {
|
2012-11-17 21:40:49 -05:00
|
|
|
gchar **args = cmd->parser(inp, cmd->min_args, cmd->max_args);
|
2013-06-25 18:38:06 -04:00
|
|
|
if ((args == NULL) && (cmd->setting_func != NULL)) {
|
|
|
|
cons_show("");
|
|
|
|
cmd->setting_func();
|
2013-06-25 18:41:53 -04:00
|
|
|
cons_show("Usage: %s", cmd->help.usage);
|
2013-06-25 18:38:06 -04:00
|
|
|
return TRUE;
|
|
|
|
} else if (args == NULL) {
|
|
|
|
cons_show("");
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("Usage: %s", cmd->help.usage);
|
2013-04-21 13:40:22 -04:00
|
|
|
if (ui_current_win_type() == WIN_CHAT) {
|
2012-11-17 21:40:49 -05:00
|
|
|
char usage[strlen(cmd->help.usage) + 8];
|
|
|
|
sprintf(usage, "Usage: %s", cmd->help.usage);
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line(usage);
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
gboolean result = cmd->func(args, cmd->help);
|
|
|
|
g_strfreev(args);
|
|
|
|
return result;
|
|
|
|
}
|
2012-08-14 19:42:38 -04:00
|
|
|
} else {
|
2012-08-22 19:41:22 -04:00
|
|
|
return cmd_execute_default(inp);
|
2012-08-14 19:42:38 -04:00
|
|
|
}
|
2012-02-18 18:09:21 -05:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:41:22 -04:00
|
|
|
gboolean
|
|
|
|
cmd_execute_default(const char * const inp)
|
|
|
|
{
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
|
|
|
jabber_conn_status_t status = jabber_get_connection_status();
|
2013-04-21 14:44:31 -04:00
|
|
|
char *recipient = ui_current_recipient();
|
2013-04-21 13:40:22 -04:00
|
|
|
|
|
|
|
switch (win_type)
|
|
|
|
{
|
|
|
|
case WIN_MUC:
|
|
|
|
if (status != JABBER_CONNECTED) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
} else {
|
|
|
|
message_send_groupchat(inp, recipient);
|
|
|
|
}
|
|
|
|
break;
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
case WIN_CHAT:
|
|
|
|
if (status != JABBER_CONNECTED) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
} else {
|
|
|
|
message_send(inp, recipient);
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_CHLOG)) {
|
2013-05-21 17:00:42 -04:00
|
|
|
const char *jid = jabber_get_fulljid();
|
2013-04-21 13:40:22 -04:00
|
|
|
Jid *jidp = jid_create(jid);
|
|
|
|
chat_log_chat(jidp->barejid, recipient, inp, PROF_OUT_LOG, NULL);
|
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_outgoing_msg("me", recipient, inp);
|
2012-11-19 18:15:42 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
2012-10-02 17:00:05 -04:00
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
case WIN_PRIVATE:
|
|
|
|
if (status != JABBER_CONNECTED) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
} else {
|
|
|
|
message_send(inp, recipient);
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_outgoing_msg("me", recipient, inp);
|
2013-04-21 13:40:22 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WIN_CONSOLE:
|
|
|
|
cons_show("Unknown command: %s", inp);
|
|
|
|
break;
|
2013-05-04 21:31:04 -04:00
|
|
|
|
|
|
|
case WIN_DUCK:
|
|
|
|
if (status != JABBER_CONNECTED) {
|
|
|
|
ui_current_print_line("You are not currently connected.");
|
|
|
|
} else {
|
|
|
|
message_send_duck(inp);
|
|
|
|
ui_duck(inp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
default:
|
|
|
|
break;
|
2012-08-22 19:41:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
static void
|
|
|
|
_cmd_complete_parameters(char *input, int *size)
|
2012-10-27 20:08:04 -04:00
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
int i;
|
|
|
|
char *result = NULL;
|
|
|
|
|
|
|
|
// autocomplete boolean settings
|
|
|
|
gchar *boolean_choices[] = { "/beep", "/intype", "/states", "/outtype",
|
|
|
|
"/flash", "/splash", "/chlog", "/grlog", "/mouse", "/history",
|
|
|
|
"/vercheck", "/statuses" };
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(boolean_choices); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, boolean_choices[i],
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2012-10-27 20:08:04 -04:00
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
// autocomplete nickname in chat rooms
|
2013-04-21 13:40:22 -04:00
|
|
|
if (ui_current_win_type() == WIN_MUC) {
|
2013-07-30 18:51:07 -04:00
|
|
|
char *recipient = ui_current_recipient();
|
|
|
|
Autocomplete nick_ac = muc_get_roster_ac(recipient);
|
2013-01-10 19:48:58 -05:00
|
|
|
if (nick_ac != NULL) {
|
2013-06-02 14:56:35 -04:00
|
|
|
gchar *nick_choices[] = { "/msg", "/info", "/caps", "/status", "/software" } ;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(nick_choices); i++) {
|
|
|
|
result = autocomplete_param_with_ac(input, size, nick_choices[i],
|
|
|
|
nick_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-01-10 19:48:58 -05:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
// otherwise autocomple using roster
|
2013-01-10 19:48:58 -05:00
|
|
|
} else {
|
2013-06-02 14:56:35 -04:00
|
|
|
gchar *contact_choices[] = { "/msg", "/info", "/status" };
|
|
|
|
for (i = 0; i < ARRAY_SIZE(contact_choices); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, contact_choices[i],
|
|
|
|
roster_find_contact);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *resource_choices[] = { "/caps", "/software" };
|
|
|
|
for (i = 0; i < ARRAY_SIZE(resource_choices); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, resource_choices[i],
|
|
|
|
roster_find_resource);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = autocomplete_param_with_func(input, size, "/invite", roster_find_contact);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gchar *invite_choices[] = { "/decline", "/join" };
|
|
|
|
for (i = 0; i < ARRAY_SIZE(invite_choices); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, invite_choices[i],
|
|
|
|
muc_find_invite);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-14 16:58:02 -04:00
|
|
|
result = autocomplete_param_with_func(input, size, "/join", bookmark_find);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_func(input, size, "/connect", accounts_find_enabled);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-07 18:04:12 -05:00
|
|
|
result = autocomplete_param_with_func(input, size, "/autoconnect", accounts_find_enabled);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-24 16:38:02 -04:00
|
|
|
gchar *cmds[] = { "/help", "/prefs", "/log", "/disco", "/close", "/wins" };
|
2013-06-02 14:56:35 -04:00
|
|
|
Autocomplete completers[] = { help_ac, prefs_ac, log_ac, disco_ac, close_ac, wins_ac };
|
|
|
|
|
2013-06-24 16:38:02 -04:00
|
|
|
for (i = 0; i < ARRAY_SIZE(cmds); i++) {
|
|
|
|
result = autocomplete_param_with_ac(input, size, cmds[i], completers[i]);
|
2013-06-02 14:56:35 -04:00
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-02 15:11:42 -04:00
|
|
|
autocompleter acs[] = { _who_autocomplete, _sub_autocomplete, _notify_autocomplete,
|
|
|
|
_autoaway_autocomplete, _titlebar_autocomplete, _theme_autocomplete,
|
2013-07-14 16:58:02 -04:00
|
|
|
_account_autocomplete, _roster_autocomplete, _group_autocomplete,
|
|
|
|
_bookmark_autocomplete };
|
2013-06-02 15:11:42 -04:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(acs); i++) {
|
|
|
|
result = acs[i](input, size);
|
|
|
|
if (result != NULL) {
|
|
|
|
inp_replace_input(input, result, size);
|
|
|
|
g_free(result);
|
|
|
|
return;
|
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
2012-10-27 20:08:04 -04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// The command functions
|
2012-08-22 19:41:22 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_connect(gchar **args, struct cmd_help_t help)
|
2012-02-18 18:09:21 -05:00
|
|
|
{
|
2012-04-23 20:02:22 -04:00
|
|
|
gboolean result = FALSE;
|
2012-02-18 18:09:21 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if ((conn_status != JABBER_DISCONNECTED) && (conn_status != JABBER_STARTED)) {
|
|
|
|
cons_show("You are either connected already, or a login is in process.");
|
2012-02-19 20:42:29 -05:00
|
|
|
result = TRUE;
|
2012-02-18 18:09:21 -05:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
char *user = args[0];
|
2012-12-06 15:36:16 -05:00
|
|
|
char *altdomain = args[1];
|
2012-11-17 21:40:49 -05:00
|
|
|
char *lower = g_utf8_strdown(user, -1);
|
2012-12-09 17:14:38 -05:00
|
|
|
char *jid;
|
2012-11-17 21:40:49 -05:00
|
|
|
|
2012-12-09 17:14:38 -05:00
|
|
|
ProfAccount *account = accounts_get_account(lower);
|
|
|
|
if (account != NULL) {
|
2013-01-26 21:24:02 -05:00
|
|
|
if (account->resource != NULL) {
|
|
|
|
jid = create_fulljid(account->jid, account->resource);
|
|
|
|
} else {
|
|
|
|
jid = strdup(account->jid);
|
|
|
|
}
|
2013-10-14 14:15:51 -04:00
|
|
|
|
2013-11-07 16:43:11 -05:00
|
|
|
if (account->password == NULL) {
|
|
|
|
account->password = _ask_password();
|
2013-10-14 14:15:51 -04:00
|
|
|
}
|
2013-01-26 21:24:02 -05:00
|
|
|
cons_show("Connecting with account %s as %s", account->name, jid);
|
2013-10-14 14:15:51 -04:00
|
|
|
conn_status = jabber_connect_with_account(account);
|
2012-12-09 17:14:38 -05:00
|
|
|
} else {
|
2013-11-07 16:43:11 -05:00
|
|
|
char *passwd = _ask_password();
|
2012-12-09 17:14:38 -05:00
|
|
|
jid = strdup(lower);
|
2013-01-26 21:24:02 -05:00
|
|
|
cons_show("Connecting as %s", jid);
|
2013-01-27 15:23:42 -05:00
|
|
|
conn_status = jabber_connect_with_details(jid, passwd, altdomain);
|
2013-11-07 16:43:11 -05:00
|
|
|
free(passwd);
|
2012-12-09 17:14:38 -05:00
|
|
|
}
|
2013-09-22 18:24:54 -04:00
|
|
|
g_free(lower);
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
if (conn_status == JABBER_DISCONNECTED) {
|
2013-04-20 21:49:23 -04:00
|
|
|
cons_show_error("Connection attempt for %s failed.", jid);
|
2013-01-26 21:24:02 -05:00
|
|
|
log_debug("Connection attempt for %s failed", jid);
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
|
|
|
|
2012-12-09 17:14:38 -05:00
|
|
|
accounts_free_account(account);
|
|
|
|
free(jid);
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
result = TRUE;
|
2012-02-18 18:09:21 -05:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-18 18:09:21 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-12-09 15:18:38 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_account(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
char *command = args[0];
|
|
|
|
|
2013-02-18 17:51:05 -05:00
|
|
|
if (command == NULL) {
|
|
|
|
if (jabber_get_connection_status() != JABBER_CONNECTED) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
|
|
|
ProfAccount *account = accounts_get_account(jabber_get_account_name());
|
|
|
|
cons_show_account(account);
|
|
|
|
accounts_free_account(account);
|
|
|
|
}
|
|
|
|
} else if (strcmp(command, "list") == 0) {
|
2012-12-09 15:18:38 -05:00
|
|
|
gchar **accounts = accounts_get_list();
|
2013-02-18 17:07:17 -05:00
|
|
|
cons_show_account_list(accounts);
|
|
|
|
g_strfreev(accounts);
|
2012-12-09 17:58:45 -05:00
|
|
|
} else if (strcmp(command, "show") == 0) {
|
|
|
|
char *account_name = args[1];
|
|
|
|
if (account_name == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
|
|
|
ProfAccount *account = accounts_get_account(account_name);
|
|
|
|
if (account == NULL) {
|
|
|
|
cons_show("No such account.");
|
2012-12-09 19:08:03 -05:00
|
|
|
cons_show("");
|
2012-12-09 17:58:45 -05:00
|
|
|
} else {
|
|
|
|
cons_show_account(account);
|
|
|
|
accounts_free_account(account);
|
|
|
|
}
|
|
|
|
}
|
2012-12-09 20:14:21 -05:00
|
|
|
} else if (strcmp(command, "add") == 0) {
|
2012-12-09 19:08:03 -05:00
|
|
|
char *account_name = args[1];
|
|
|
|
if (account_name == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
2013-01-27 13:10:30 -05:00
|
|
|
accounts_add(account_name, NULL);
|
2012-12-09 19:08:03 -05:00
|
|
|
cons_show("Account created.");
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
} else if (strcmp(command, "enable") == 0) {
|
|
|
|
char *account_name = args[1];
|
|
|
|
if (account_name == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
|
|
|
if (accounts_enable(account_name)) {
|
|
|
|
cons_show("Account enabled.");
|
|
|
|
cons_show("");
|
|
|
|
} else {
|
|
|
|
cons_show("No such account: %s", account_name);
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (strcmp(command, "disable") == 0) {
|
|
|
|
char *account_name = args[1];
|
|
|
|
if (account_name == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
|
|
|
if (accounts_disable(account_name)) {
|
|
|
|
cons_show("Account disabled.");
|
|
|
|
cons_show("");
|
|
|
|
} else {
|
|
|
|
cons_show("No such account: %s", account_name);
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (strcmp(command, "rename") == 0) {
|
|
|
|
if (g_strv_length(args) != 3) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
|
|
|
char *account_name = args[1];
|
|
|
|
char *new_name = args[2];
|
|
|
|
|
|
|
|
if (accounts_rename(account_name, new_name)) {
|
|
|
|
cons_show("Account renamed.");
|
|
|
|
cons_show("");
|
|
|
|
} else {
|
|
|
|
cons_show("Either account %s doesn't exist, or account %s already exists.", account_name, new_name);
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
}
|
2012-12-09 19:23:55 -05:00
|
|
|
} else if (strcmp(command, "set") == 0) {
|
|
|
|
if (g_strv_length(args) != 4) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else {
|
|
|
|
char *account_name = args[1];
|
|
|
|
char *property = args[2];
|
|
|
|
char *value = args[3];
|
|
|
|
|
|
|
|
if (!accounts_account_exists(account_name)) {
|
2013-08-19 08:27:16 -04:00
|
|
|
cons_show("Account %s doesn't exist", account_name);
|
2012-12-09 19:23:55 -05:00
|
|
|
cons_show("");
|
|
|
|
} else {
|
|
|
|
if (strcmp(property, "jid") == 0) {
|
2013-01-26 19:02:28 -05:00
|
|
|
Jid *jid = jid_create(args[3]);
|
|
|
|
if (jid == NULL) {
|
|
|
|
cons_show("Malformed jid: %s", value);
|
|
|
|
} else {
|
|
|
|
accounts_set_jid(account_name, jid->barejid);
|
|
|
|
cons_show("Updated jid for account %s: %s", account_name, jid->barejid);
|
|
|
|
if (jid->resourcepart != NULL) {
|
2013-01-27 15:34:56 -05:00
|
|
|
accounts_set_resource(account_name, jid->resourcepart);
|
2013-01-26 19:02:28 -05:00
|
|
|
cons_show("Updated resource for account %s: %s", account_name, jid->resourcepart);
|
|
|
|
}
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
jid_destroy(jid);
|
2012-12-09 19:23:55 -05:00
|
|
|
} else if (strcmp(property, "server") == 0) {
|
|
|
|
accounts_set_server(account_name, value);
|
|
|
|
cons_show("Updated server for account %s: %s", account_name, value);
|
|
|
|
cons_show("");
|
2013-01-27 15:34:56 -05:00
|
|
|
} else if (strcmp(property, "resource") == 0) {
|
|
|
|
accounts_set_resource(account_name, value);
|
|
|
|
cons_show("Updated resource for account %s: %s", account_name, value);
|
|
|
|
cons_show("");
|
2013-09-12 18:30:35 -04:00
|
|
|
} else if (strcmp(property, "muc") == 0) {
|
|
|
|
accounts_set_muc_service(account_name, value);
|
|
|
|
cons_show("Updated muc service for account %s: %s", account_name, value);
|
|
|
|
cons_show("");
|
|
|
|
} else if (strcmp(property, "nick") == 0) {
|
|
|
|
accounts_set_muc_nick(account_name, value);
|
|
|
|
cons_show("Updated muc nick for account %s: %s", account_name, value);
|
|
|
|
cons_show("");
|
2013-01-30 17:45:35 -05:00
|
|
|
} else if (strcmp(property, "status") == 0) {
|
2013-02-10 12:13:19 -05:00
|
|
|
if (!valid_resource_presence_string(value) && (strcmp(value, "last") != 0)) {
|
2013-06-30 14:05:20 -04:00
|
|
|
cons_show("Invalid status: %s", value);
|
2013-01-30 17:45:35 -05:00
|
|
|
} else {
|
|
|
|
accounts_set_login_presence(account_name, value);
|
|
|
|
cons_show("Updated login status for account %s: %s", account_name, value);
|
|
|
|
}
|
|
|
|
cons_show("");
|
2013-02-10 12:13:19 -05:00
|
|
|
} else if (valid_resource_presence_string(property)) {
|
2013-01-31 18:49:29 -05:00
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (_strtoi(value, &intval, -128, 127) == 0) {
|
2013-02-10 12:13:19 -05:00
|
|
|
resource_presence_t presence_type = resource_presence_from_string(property);
|
2013-01-31 18:49:29 -05:00
|
|
|
switch (presence_type)
|
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
case (RESOURCE_ONLINE):
|
2013-01-31 18:49:29 -05:00
|
|
|
accounts_set_priority_online(account_name, intval);
|
|
|
|
break;
|
2013-02-10 12:13:19 -05:00
|
|
|
case (RESOURCE_CHAT):
|
2013-01-31 18:49:29 -05:00
|
|
|
accounts_set_priority_chat(account_name, intval);
|
|
|
|
break;
|
2013-02-10 12:13:19 -05:00
|
|
|
case (RESOURCE_AWAY):
|
2013-01-31 18:49:29 -05:00
|
|
|
accounts_set_priority_away(account_name, intval);
|
|
|
|
break;
|
2013-02-10 12:13:19 -05:00
|
|
|
case (RESOURCE_XA):
|
2013-01-31 18:49:29 -05:00
|
|
|
accounts_set_priority_xa(account_name, intval);
|
|
|
|
break;
|
2013-02-10 12:13:19 -05:00
|
|
|
case (RESOURCE_DND):
|
2013-01-31 18:49:29 -05:00
|
|
|
accounts_set_priority_dnd(account_name, intval);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-02-10 12:13:19 -05:00
|
|
|
resource_presence_t last_presence = accounts_get_last_presence(jabber_get_account_name());
|
2013-02-10 08:36:11 -05:00
|
|
|
if (conn_status == JABBER_CONNECTED && presence_type == last_presence) {
|
|
|
|
presence_update(last_presence, jabber_get_presence_message(), 0);
|
2013-01-31 18:49:29 -05:00
|
|
|
}
|
|
|
|
cons_show("Updated %s priority for account %s: %s", property, account_name, value);
|
|
|
|
cons_show("");
|
|
|
|
}
|
2012-12-09 19:23:55 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Invalid property: %s", property);
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-12-09 17:58:45 -05:00
|
|
|
} else {
|
|
|
|
cons_show("");
|
2012-12-09 15:18:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-28 14:51:13 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_sub(gchar **args, struct cmd_help_t help)
|
2012-10-28 14:51:13 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are currently not connected.");
|
2012-11-27 16:20:00 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
2012-11-11 07:00:21 -05:00
|
|
|
|
2013-08-26 12:08:09 -04:00
|
|
|
char *subcmd, *jid;
|
2012-11-27 16:20:00 -05:00
|
|
|
subcmd = args[0];
|
|
|
|
jid = args[1];
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-27 16:20:00 -05:00
|
|
|
if (subcmd == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
2012-11-27 19:36:51 -05:00
|
|
|
if (strcmp(subcmd, "sent") == 0) {
|
2013-04-27 18:13:52 -04:00
|
|
|
cons_show_sent_subs();
|
2012-11-27 19:36:51 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(subcmd, "received") == 0) {
|
2013-04-27 18:13:52 -04:00
|
|
|
cons_show_received_subs();
|
2012-11-27 19:36:51 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
if ((win_type != WIN_CHAT) && (jid == NULL)) {
|
2012-11-27 16:53:56 -05:00
|
|
|
cons_show("You must specify a contact.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-08-26 12:08:09 -04:00
|
|
|
if (jid == NULL) {
|
2013-04-21 14:44:31 -04:00
|
|
|
jid = ui_current_recipient();
|
2012-10-28 14:51:13 -04:00
|
|
|
}
|
|
|
|
|
2013-08-26 12:08:09 -04:00
|
|
|
Jid *jidp = jid_create(jid);
|
2012-11-27 16:20:00 -05:00
|
|
|
|
2012-11-27 18:43:32 -05:00
|
|
|
if (strcmp(subcmd, "allow") == 0) {
|
2013-08-26 12:08:09 -04:00
|
|
|
presence_subscription(jidp->barejid, PRESENCE_SUBSCRIBED);
|
|
|
|
cons_show("Accepted subscription for %s", jidp->barejid);
|
|
|
|
log_info("Accepted subscription for %s", jidp->barejid);
|
2012-11-27 18:43:32 -05:00
|
|
|
} else if (strcmp(subcmd, "deny") == 0) {
|
2013-08-26 12:08:09 -04:00
|
|
|
presence_subscription(jidp->barejid, PRESENCE_UNSUBSCRIBED);
|
|
|
|
cons_show("Deleted/denied subscription for %s", jidp->barejid);
|
|
|
|
log_info("Deleted/denied subscription for %s", jidp->barejid);
|
2012-11-27 18:43:32 -05:00
|
|
|
} else if (strcmp(subcmd, "request") == 0) {
|
2013-08-26 12:08:09 -04:00
|
|
|
presence_subscription(jidp->barejid, PRESENCE_SUBSCRIBE);
|
|
|
|
cons_show("Sent subscription request to %s.", jidp->barejid);
|
|
|
|
log_info("Sent subscription request to %s.", jidp->barejid);
|
2012-11-27 16:20:00 -05:00
|
|
|
} else if (strcmp(subcmd, "show") == 0) {
|
2013-08-26 12:08:09 -04:00
|
|
|
PContact contact = roster_get_contact(jidp->barejid);
|
2012-11-27 17:26:42 -05:00
|
|
|
if ((contact == NULL) || (p_contact_subscription(contact) == NULL)) {
|
2013-04-21 13:40:22 -04:00
|
|
|
if (win_type == WIN_CHAT) {
|
2013-08-26 12:08:09 -04:00
|
|
|
ui_current_print_line("No subscription information for %s.", jidp->barejid);
|
2012-11-27 16:53:56 -05:00
|
|
|
} else {
|
2013-08-26 12:08:09 -04:00
|
|
|
cons_show("No subscription information for %s.", jidp->barejid);
|
2012-11-27 16:53:56 -05:00
|
|
|
}
|
|
|
|
} else {
|
2013-04-21 13:40:22 -04:00
|
|
|
if (win_type == WIN_CHAT) {
|
2012-11-27 17:26:42 -05:00
|
|
|
if (p_contact_pending_out(contact)) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("%s subscription status: %s, request pending.",
|
2013-08-26 12:08:09 -04:00
|
|
|
jidp->barejid, p_contact_subscription(contact));
|
2012-11-27 17:26:42 -05:00
|
|
|
} else {
|
2013-08-26 12:08:09 -04:00
|
|
|
ui_current_print_line("%s subscription status: %s.", jidp->barejid,
|
2012-11-27 17:26:42 -05:00
|
|
|
p_contact_subscription(contact));
|
|
|
|
}
|
2012-11-27 16:53:56 -05:00
|
|
|
} else {
|
2012-11-27 17:26:42 -05:00
|
|
|
if (p_contact_pending_out(contact)) {
|
|
|
|
cons_show("%s subscription status: %s, request pending.",
|
2013-08-26 12:08:09 -04:00
|
|
|
jidp->barejid, p_contact_subscription(contact));
|
2012-11-27 17:26:42 -05:00
|
|
|
} else {
|
2013-08-26 12:08:09 -04:00
|
|
|
cons_show("%s subscription status: %s.", jidp->barejid,
|
2012-11-27 17:26:42 -05:00
|
|
|
p_contact_subscription(contact));
|
|
|
|
}
|
2012-11-27 16:53:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-11-27 16:20:00 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
|
|
|
|
2013-08-26 12:08:09 -04:00
|
|
|
jid_destroy(jidp);
|
|
|
|
|
2012-11-27 16:20:00 -05:00
|
|
|
return TRUE;
|
2012-10-28 14:51:13 -04:00
|
|
|
}
|
|
|
|
|
2012-10-27 13:12:04 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_disconnect(gchar **args, struct cmd_help_t help)
|
2012-10-27 13:12:04 -04:00
|
|
|
{
|
2012-10-27 13:26:57 -04:00
|
|
|
if (jabber_get_connection_status() == JABBER_CONNECTED) {
|
2013-05-21 17:00:42 -04:00
|
|
|
char *jid = strdup(jabber_get_fulljid());
|
2012-11-19 17:23:48 -05:00
|
|
|
prof_handle_disconnect(jid);
|
2012-10-27 13:26:57 -04:00
|
|
|
free(jid);
|
|
|
|
} else {
|
|
|
|
cons_show("You are not currently connected.");
|
2012-10-27 13:12:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_quit(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-09-23 14:26:07 -04:00
|
|
|
log_info("Profanity is shutting down...");
|
|
|
|
exit(0);
|
2012-09-11 17:55:59 -04:00
|
|
|
return FALSE;
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_wins(gchar **args, struct cmd_help_t help)
|
2012-11-13 19:39:34 -05:00
|
|
|
{
|
2013-05-16 19:33:00 -04:00
|
|
|
if (args[0] == NULL) {
|
|
|
|
cons_show_wins();
|
|
|
|
} else if (strcmp(args[0], "tidy") == 0) {
|
|
|
|
ui_tidy_wins();
|
|
|
|
} else if (strcmp(args[0], "prune") == 0) {
|
|
|
|
ui_prune_wins();
|
|
|
|
}
|
2012-11-13 19:39:34 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-08-29 16:41:10 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_win(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
int num = atoi(args[0]);
|
|
|
|
if (ui_win_exists(num)) {
|
|
|
|
ui_switch_win(num);
|
|
|
|
} else {
|
|
|
|
cons_show("Window %d does not exist.", num);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-06-24 19:49:29 -04:00
|
|
|
static
|
|
|
|
gint _compare_commands(Command *a, Command *b)
|
|
|
|
{
|
|
|
|
const char * utf8_str_a = a->cmd;
|
|
|
|
const char * utf8_str_b = b->cmd;
|
|
|
|
|
|
|
|
gchar *key_a = g_utf8_collate_key(utf8_str_a, -1);
|
|
|
|
gchar *key_b = g_utf8_collate_key(utf8_str_b, -1);
|
|
|
|
|
|
|
|
gint result = g_strcmp0(key_a, key_b);
|
|
|
|
|
|
|
|
g_free(key_a);
|
|
|
|
g_free(key_b);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cmd_show_filtered_help(char *heading, gchar *cmd_filter[], int filter_size)
|
|
|
|
{
|
|
|
|
cons_show("");
|
|
|
|
cons_show("%s", heading);
|
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
GList *ordered_commands = NULL;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < filter_size; i++) {
|
|
|
|
Command *cmd = g_hash_table_lookup(commands, cmd_filter[i]);
|
|
|
|
ordered_commands = g_list_insert_sorted(ordered_commands, cmd, (GCompareFunc)_compare_commands);
|
|
|
|
}
|
|
|
|
|
|
|
|
GList *curr = ordered_commands;
|
|
|
|
while (curr != NULL) {
|
|
|
|
Command *cmd = curr->data;
|
|
|
|
cons_show("%-12s: %s", cmd->cmd, cmd->help.short_help);
|
|
|
|
curr = g_list_next(curr);
|
|
|
|
}
|
|
|
|
g_list_free(ordered_commands);
|
|
|
|
g_list_free(curr);
|
|
|
|
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Use /help [command] without the leading slash, for help on a specific command");
|
|
|
|
cons_show("");
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_help(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
if (num_args == 0) {
|
|
|
|
cons_help();
|
2013-06-24 19:49:29 -04:00
|
|
|
} else if (strcmp(args[0], "commands") == 0) {
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("");
|
2013-06-24 19:49:29 -04:00
|
|
|
cons_show("All commands");
|
|
|
|
cons_show("");
|
|
|
|
|
|
|
|
GList *ordered_commands = NULL;
|
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key;
|
|
|
|
gpointer value;
|
|
|
|
|
|
|
|
g_hash_table_iter_init(&iter, commands);
|
|
|
|
while (g_hash_table_iter_next(&iter, &key, &value)) {
|
|
|
|
ordered_commands = g_list_insert_sorted(ordered_commands, value, (GCompareFunc)_compare_commands);
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
2013-06-24 19:49:29 -04:00
|
|
|
|
|
|
|
GList *curr = ordered_commands;
|
|
|
|
while (curr != NULL) {
|
|
|
|
Command *cmd = curr->data;
|
|
|
|
cons_show("%-12s: %s", cmd->cmd, cmd->help.short_help);
|
|
|
|
curr = g_list_next(curr);
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
2013-06-24 19:49:29 -04:00
|
|
|
g_list_free(ordered_commands);
|
|
|
|
g_list_free(curr);
|
|
|
|
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Use /help [command] without the leading slash, for help on a specific command");
|
|
|
|
cons_show("");
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(args[0], "basic") == 0) {
|
2013-06-24 19:49:29 -04:00
|
|
|
gchar *filter[] = { "/about", "/clear", "/close", "/connect",
|
|
|
|
"/disconnect", "/help", "/msg", "/join", "/quit", "/vercheck",
|
|
|
|
"/wins" };
|
|
|
|
_cmd_show_filtered_help("Basic commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
|
|
|
} else if (strcmp(args[0], "chatting") == 0) {
|
|
|
|
gchar *filter[] = { "/chlog", "/duck", "/gone", "/history",
|
|
|
|
"/info", "/intype", "/msg", "/notify", "/outtype", "/status",
|
|
|
|
"/close", "/clear", "/tiny" };
|
|
|
|
_cmd_show_filtered_help("Chat commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
|
|
|
} else if (strcmp(args[0], "groupchat") == 0) {
|
|
|
|
gchar *filter[] = { "/close", "/clear", "/decline", "/grlog",
|
|
|
|
"/invite", "/invites", "/join", "/leave", "/notify", "/msg",
|
|
|
|
"/rooms", "/tiny", "/who", "/nick" };
|
|
|
|
_cmd_show_filtered_help("Groupchat commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(args[0], "presence") == 0) {
|
2013-06-24 19:49:29 -04:00
|
|
|
gchar *filter[] = { "/autoaway", "/away", "/chat", "/dnd",
|
|
|
|
"/online", "/priority", "/account", "/status", "/statuses", "/who",
|
|
|
|
"/xa" };
|
|
|
|
_cmd_show_filtered_help("Presence commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
2013-07-03 16:23:18 -04:00
|
|
|
} else if (strcmp(args[0], "contacts") == 0) {
|
2013-06-24 19:49:29 -04:00
|
|
|
gchar *filter[] = { "/group", "/roster", "/sub", "/who" };
|
|
|
|
_cmd_show_filtered_help("Roster commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
|
|
|
} else if (strcmp(args[0], "service") == 0) {
|
|
|
|
gchar *filter[] = { "/caps", "/disco", "/info", "/software", "/rooms" };
|
|
|
|
_cmd_show_filtered_help("Service discovery commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(args[0], "settings") == 0) {
|
2013-11-07 18:04:12 -05:00
|
|
|
gchar *filter[] = { "/account", "/autoaway", "/autoping", "/autoconnect", "/beep",
|
2013-06-24 19:49:29 -04:00
|
|
|
"/chlog", "/flash", "/gone", "/grlog", "/history", "/intype",
|
|
|
|
"/log", "/mouse", "/notify", "/outtype", "/prefs", "/priority",
|
|
|
|
"/reconnect", "/roster", "/splash", "/states", "/statuses", "/theme",
|
|
|
|
"/titlebar", "/vercheck" };
|
|
|
|
_cmd_show_filtered_help("Settings commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
|
|
|
} else if (strcmp(args[0], "other") == 0) {
|
|
|
|
gchar *filter[] = { "/duck", "/vercheck" };
|
|
|
|
_cmd_show_filtered_help("Other commands", filter, ARRAY_SIZE(filter));
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(args[0], "navigation") == 0) {
|
|
|
|
cons_navigation_help();
|
|
|
|
} else {
|
|
|
|
char *cmd = args[0];
|
|
|
|
char cmd_with_slash[1 + strlen(cmd) + 1];
|
|
|
|
sprintf(cmd_with_slash, "/%s", cmd);
|
2012-08-14 18:22:12 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
const gchar **help_text = NULL;
|
2013-06-24 19:49:29 -04:00
|
|
|
Command *command = g_hash_table_lookup(commands, cmd_with_slash);
|
2012-08-14 18:22:12 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (command != NULL) {
|
|
|
|
help_text = command->help.long_help;
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("");
|
2012-08-14 18:22:12 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (help_text != NULL) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; help_text[i] != NULL; i++) {
|
|
|
|
cons_show(help_text[i]);
|
2012-08-14 18:22:12 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("No such command.");
|
2012-08-14 18:22:12 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("");
|
2012-08-14 18:22:12 -04:00
|
|
|
}
|
2012-02-09 18:15:53 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-10-22 19:18:28 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_about(gchar **args, struct cmd_help_t help)
|
2012-10-22 19:18:28 -04:00
|
|
|
{
|
2012-10-23 20:39:52 -04:00
|
|
|
cons_show("");
|
2012-10-22 19:18:28 -04:00
|
|
|
cons_about();
|
2013-04-21 13:40:22 -04:00
|
|
|
if (ui_current_win_type() != WIN_CONSOLE) {
|
2013-08-27 19:50:15 -04:00
|
|
|
status_bar_new(1);
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
2012-10-22 19:18:28 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_prefs(gchar **args, struct cmd_help_t help)
|
2012-07-19 18:43:50 -04:00
|
|
|
{
|
2012-11-29 18:14:56 -05:00
|
|
|
if (args[0] == NULL) {
|
|
|
|
cons_prefs();
|
2013-06-25 18:38:06 -04:00
|
|
|
cons_show("Use the /account command for preferences for individual accounts.");
|
2012-11-29 18:14:56 -05:00
|
|
|
} else if (strcmp(args[0], "ui") == 0) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show_ui_prefs();
|
|
|
|
cons_show("");
|
|
|
|
} else if (strcmp(args[0], "desktop") == 0) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show_desktop_prefs();
|
|
|
|
cons_show("");
|
|
|
|
} else if (strcmp(args[0], "chat") == 0) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show_chat_prefs();
|
|
|
|
cons_show("");
|
|
|
|
} else if (strcmp(args[0], "log") == 0) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show_log_prefs();
|
|
|
|
cons_show("");
|
2012-11-30 18:34:14 -05:00
|
|
|
} else if (strcmp(args[0], "conn") == 0) {
|
2012-11-29 18:14:56 -05:00
|
|
|
cons_show("");
|
2012-11-30 18:34:14 -05:00
|
|
|
cons_show_connection_prefs();
|
|
|
|
cons_show("");
|
|
|
|
} else if (strcmp(args[0], "presence") == 0) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show_presence_prefs();
|
2012-11-29 18:14:56 -05:00
|
|
|
cons_show("");
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
2012-07-19 18:43:50 -04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-21 17:33:07 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_theme(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
2012-12-08 19:21:33 -05:00
|
|
|
// list themes
|
|
|
|
if (strcmp(args[0], "list") == 0) {
|
|
|
|
GSList *themes = theme_list();
|
|
|
|
cons_show_themes(themes);
|
|
|
|
g_slist_free_full(themes, g_free);
|
|
|
|
|
|
|
|
// load a theme
|
2012-12-08 19:53:26 -05:00
|
|
|
} else if (strcmp(args[0], "set") == 0) {
|
2012-12-08 19:46:14 -05:00
|
|
|
if (args[1] == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
} else if (theme_load(args[1])) {
|
2012-12-08 19:29:17 -05:00
|
|
|
ui_load_colours();
|
2013-02-02 22:24:13 -05:00
|
|
|
prefs_set_string(PREF_THEME, args[1]);
|
2012-12-08 19:29:17 -05:00
|
|
|
cons_show("Loaded theme: %s", args[1]);
|
|
|
|
} else {
|
|
|
|
cons_show("Couldn't find theme: %s", args[1]);
|
|
|
|
}
|
2012-11-21 17:33:07 -05:00
|
|
|
} else {
|
2012-12-08 19:29:17 -05:00
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-11-21 17:33:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_who(gchar **args, struct cmd_help_t help)
|
2012-03-07 19:46:24 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
2012-03-08 18:14:35 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2012-03-08 18:14:35 -05:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
char *presence = args[0];
|
2013-06-01 22:33:49 -04:00
|
|
|
char *group = NULL;
|
|
|
|
if ((g_strv_length(args) == 2) && (args[1] != NULL)) {
|
|
|
|
group = args[1];
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
// bad arg
|
|
|
|
if ((presence != NULL)
|
|
|
|
&& (strcmp(presence, "online") != 0)
|
|
|
|
&& (strcmp(presence, "available") != 0)
|
|
|
|
&& (strcmp(presence, "unavailable") != 0)
|
|
|
|
&& (strcmp(presence, "offline") != 0)
|
|
|
|
&& (strcmp(presence, "away") != 0)
|
|
|
|
&& (strcmp(presence, "chat") != 0)
|
|
|
|
&& (strcmp(presence, "xa") != 0)
|
2013-06-01 22:02:32 -04:00
|
|
|
&& (strcmp(presence, "dnd") != 0)
|
|
|
|
&& (strcmp(presence, "any") != 0)) {
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// valid arg
|
2012-10-04 17:48:41 -04:00
|
|
|
} else {
|
2013-04-21 13:40:22 -04:00
|
|
|
if (win_type == WIN_MUC) {
|
2013-06-01 22:33:49 -04:00
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("The group argument is not valid when in a chat room.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
char *room = ui_current_recipient();
|
2013-01-15 18:17:07 -05:00
|
|
|
GList *list = muc_get_roster(room);
|
|
|
|
|
|
|
|
// no arg, show all contacts
|
2013-06-01 22:02:32 -04:00
|
|
|
if ((presence == NULL) || (g_strcmp0(presence, "any") == 0)) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_roster(room, list, NULL);
|
2013-01-15 18:17:07 -05:00
|
|
|
|
|
|
|
// available
|
|
|
|
} else if (strcmp("available", presence) == 0) {
|
|
|
|
GList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
2013-02-14 18:24:00 -05:00
|
|
|
if (p_contact_is_available(contact)) {
|
2013-01-15 18:17:07 -05:00
|
|
|
filtered = g_list_append(filtered, contact);
|
|
|
|
}
|
|
|
|
list = g_list_next(list);
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_roster(room, filtered, "available");
|
2013-01-15 18:17:07 -05:00
|
|
|
|
|
|
|
// unavailable
|
|
|
|
} else if (strcmp("unavailable", presence) == 0) {
|
|
|
|
GList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
2013-02-14 18:24:00 -05:00
|
|
|
if (!p_contact_is_available(contact)) {
|
2013-01-15 18:17:07 -05:00
|
|
|
filtered = g_list_append(filtered, contact);
|
|
|
|
}
|
|
|
|
list = g_list_next(list);
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_roster(room, filtered, "unavailable");
|
2013-01-15 18:17:07 -05:00
|
|
|
|
2013-02-16 19:05:57 -05:00
|
|
|
// online, available resources
|
2013-01-15 18:17:07 -05:00
|
|
|
} else if (strcmp("online", presence) == 0) {
|
|
|
|
GList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
2013-02-14 18:24:00 -05:00
|
|
|
if (p_contact_has_available_resource(contact)) {
|
2013-01-15 18:17:07 -05:00
|
|
|
filtered = g_list_append(filtered, contact);
|
|
|
|
}
|
|
|
|
list = g_list_next(list);
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_roster(room, filtered, "online");
|
2013-01-15 18:17:07 -05:00
|
|
|
|
2013-02-16 19:05:57 -05:00
|
|
|
// offline, no available resources
|
2013-02-14 18:24:00 -05:00
|
|
|
} else if (strcmp("offline", presence) == 0) {
|
|
|
|
GList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
if (!p_contact_has_available_resource(contact)) {
|
|
|
|
filtered = g_list_append(filtered, contact);
|
|
|
|
}
|
|
|
|
list = g_list_next(list);
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_roster(room, filtered, "offline");
|
2013-02-14 18:24:00 -05:00
|
|
|
|
2013-01-15 18:17:07 -05:00
|
|
|
// show specific status
|
|
|
|
} else {
|
|
|
|
GList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
if (strcmp(p_contact_presence(contact), presence) == 0) {
|
|
|
|
filtered = g_list_append(filtered, contact);
|
|
|
|
}
|
|
|
|
list = g_list_next(list);
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_roster(room, filtered, presence);
|
2013-01-15 18:17:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// not in groupchat window
|
2012-11-07 19:22:15 -05:00
|
|
|
} else {
|
2013-01-19 22:32:51 -05:00
|
|
|
cons_show("");
|
2013-06-01 22:33:49 -04:00
|
|
|
GSList *list = NULL;
|
|
|
|
if (group != NULL) {
|
|
|
|
list = roster_get_group(group);
|
|
|
|
} else {
|
|
|
|
list = roster_get_contacts();
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
// no arg, show all contacts
|
2013-06-01 22:02:32 -04:00
|
|
|
if ((presence == NULL) || (g_strcmp0(presence, "any") == 0)) {
|
2013-06-01 22:33:49 -04:00
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("%s:", group);
|
|
|
|
} else {
|
|
|
|
cons_show("All contacts:");
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(list);
|
|
|
|
|
|
|
|
// available
|
|
|
|
} else if (strcmp("available", presence) == 0) {
|
2013-06-01 22:33:49 -04:00
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("%s (%s):", group, presence);
|
|
|
|
} else {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
2013-02-16 19:05:57 -05:00
|
|
|
if (p_contact_is_available(contact)) {
|
2012-11-17 21:40:49 -05:00
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-11 19:21:49 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
2012-11-11 19:21:49 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(filtered);
|
|
|
|
|
|
|
|
// unavailable
|
|
|
|
} else if (strcmp("unavailable", presence) == 0) {
|
2013-06-01 22:33:49 -04:00
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("%s (%s):", group, presence);
|
|
|
|
} else {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
2013-02-16 19:05:57 -05:00
|
|
|
if (!p_contact_is_available(contact)) {
|
2012-11-17 21:40:49 -05:00
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-11 19:21:49 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
2012-11-11 19:21:49 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(filtered);
|
|
|
|
|
2013-02-16 19:05:57 -05:00
|
|
|
// online, available resources
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp("online", presence) == 0) {
|
2013-06-01 22:33:49 -04:00
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("%s (%s):", group, presence);
|
|
|
|
} else {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
2013-02-16 19:05:57 -05:00
|
|
|
if (p_contact_has_available_resource(contact)) {
|
|
|
|
filtered = g_slist_append(filtered, contact);
|
|
|
|
}
|
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
cons_show_contacts(filtered);
|
|
|
|
|
|
|
|
// offline, no available resources
|
2013-06-01 22:33:49 -04:00
|
|
|
} else if (strcmp("offline", presence) == 0) {
|
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("%s (%s):", group, presence);
|
|
|
|
} else {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
}
|
2013-02-16 19:05:57 -05:00
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
if (!p_contact_has_available_resource(contact)) {
|
2012-11-17 21:40:49 -05:00
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-07 19:22:15 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(filtered);
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// show specific status
|
|
|
|
} else {
|
2013-06-01 22:33:49 -04:00
|
|
|
if (group != NULL) {
|
|
|
|
cons_show("%s (%s):", group, presence);
|
|
|
|
} else {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
GSList *filtered = NULL;
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
if (strcmp(p_contact_presence(contact), presence) == 0) {
|
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-07 19:22:15 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
2012-11-17 19:54:39 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
cons_show_contacts(filtered);
|
2012-11-07 19:22:15 -05:00
|
|
|
}
|
2012-10-04 17:48:41 -04:00
|
|
|
}
|
|
|
|
}
|
2012-03-08 18:14:35 -05:00
|
|
|
}
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2013-08-19 09:32:10 -04:00
|
|
|
if (win_type != WIN_CONSOLE && win_type != WIN_MUC) {
|
2013-08-27 19:50:15 -04:00
|
|
|
status_bar_new(1);
|
2013-04-20 18:39:17 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-03-07 19:46:24 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_msg(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *usr = args[0];
|
|
|
|
char *msg = args[1];
|
2012-02-19 20:42:29 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
2012-11-17 19:54:39 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2012-11-29 19:19:03 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
if (win_type == WIN_MUC) {
|
2013-04-21 14:44:31 -04:00
|
|
|
char *room_name = ui_current_recipient();
|
2013-01-11 20:34:09 -05:00
|
|
|
if (muc_nick_in_roster(room_name, usr)) {
|
2013-01-10 20:35:25 -05:00
|
|
|
GString *full_jid = g_string_new(room_name);
|
|
|
|
g_string_append(full_jid, "/");
|
|
|
|
g_string_append(full_jid, usr);
|
|
|
|
|
2013-01-15 14:41:48 -05:00
|
|
|
if (msg != NULL) {
|
2013-01-28 19:21:04 -05:00
|
|
|
message_send(msg, full_jid->str);
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_outgoing_msg("me", full_jid->str, msg);
|
2013-01-15 14:41:48 -05:00
|
|
|
} else {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_new_chat_win(full_jid->str);
|
2013-01-10 20:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
g_string_free(full_jid, TRUE);
|
2012-11-17 19:54:39 -05:00
|
|
|
|
2013-01-10 20:35:25 -05:00
|
|
|
} else {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("No such participant \"%s\" in room.", usr);
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-11-29 19:19:03 -05:00
|
|
|
return TRUE;
|
2013-01-10 20:35:25 -05:00
|
|
|
|
2012-11-29 19:19:03 -05:00
|
|
|
} else {
|
2013-05-21 16:12:00 -04:00
|
|
|
char *usr_jid = roster_barejid_from_name(usr);
|
2013-05-22 08:47:25 -04:00
|
|
|
if (usr_jid == NULL) {
|
|
|
|
usr_jid = usr;
|
|
|
|
}
|
2013-01-10 20:35:25 -05:00
|
|
|
if (msg != NULL) {
|
2013-05-19 18:35:02 -04:00
|
|
|
message_send(msg, usr_jid);
|
|
|
|
ui_outgoing_msg("me", usr_jid, msg);
|
2013-01-10 20:35:25 -05:00
|
|
|
|
2013-04-27 23:14:23 -04:00
|
|
|
if (((win_type == WIN_CHAT) || (win_type == WIN_CONSOLE)) && prefs_get_boolean(PREF_CHLOG)) {
|
2013-05-21 17:00:42 -04:00
|
|
|
const char *jid = jabber_get_fulljid();
|
2013-01-29 18:01:15 -05:00
|
|
|
Jid *jidp = jid_create(jid);
|
2013-05-19 18:35:02 -04:00
|
|
|
chat_log_chat(jidp->barejid, usr_jid, msg, PROF_OUT_LOG, NULL);
|
2013-01-29 18:01:15 -05:00
|
|
|
jid_destroy(jidp);
|
2013-01-10 20:35:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
2013-06-20 12:50:20 -04:00
|
|
|
const char * jid = NULL;
|
|
|
|
|
|
|
|
if (roster_barejid_from_name(usr_jid) != NULL) {
|
|
|
|
jid = roster_barejid_from_name(usr_jid);
|
|
|
|
} else {
|
|
|
|
jid = usr_jid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prefs_get_boolean(PREF_STATES)) {
|
|
|
|
if (!chat_session_exists(jid)) {
|
|
|
|
chat_session_start(jid, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-20 15:37:17 -04:00
|
|
|
ui_new_chat_win(usr_jid);
|
2013-01-10 20:35:25 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
2012-11-29 19:19:03 -05:00
|
|
|
}
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2013-06-02 12:25:52 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_group(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// list all groups
|
|
|
|
if (args[0] == NULL) {
|
2013-06-02 15:20:44 -04:00
|
|
|
GSList *groups = roster_get_groups();
|
|
|
|
GSList *curr = groups;
|
|
|
|
if (curr != NULL) {
|
|
|
|
cons_show("Groups:");
|
|
|
|
while (curr != NULL) {
|
|
|
|
cons_show(" %s", curr->data);
|
|
|
|
curr = g_slist_next(curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free_full(groups, g_free);
|
|
|
|
} else {
|
|
|
|
cons_show("No groups.");
|
|
|
|
}
|
2013-06-02 12:25:52 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// show contacts in group
|
|
|
|
if (strcmp(args[0], "show") == 0) {
|
|
|
|
char *group = args[1];
|
|
|
|
if (group == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList *list = roster_get_group(group);
|
|
|
|
cons_show_roster_group(group, list);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add contact to group
|
|
|
|
if (strcmp(args[0], "add") == 0) {
|
|
|
|
char *group = args[1];
|
|
|
|
char *contact = args[2];
|
|
|
|
|
|
|
|
if ((group == NULL) || (contact == NULL)) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *barejid = roster_barejid_from_name(contact);
|
|
|
|
if (barejid == NULL) {
|
|
|
|
barejid = contact;
|
|
|
|
}
|
|
|
|
|
|
|
|
PContact pcontact = roster_get_contact(barejid);
|
|
|
|
if (pcontact == NULL) {
|
|
|
|
cons_show("Contact not found in roster: %s", barejid);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
roster_add_to_group(group, barejid);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove contact from group
|
|
|
|
if (strcmp(args[0], "remove") == 0) {
|
|
|
|
char *group = args[1];
|
|
|
|
char *contact = args[2];
|
|
|
|
|
|
|
|
if ((group == NULL) || (contact == NULL)) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *barejid = roster_barejid_from_name(contact);
|
|
|
|
if (barejid == NULL) {
|
|
|
|
barejid = contact;
|
|
|
|
}
|
|
|
|
|
|
|
|
PContact pcontact = roster_get_contact(barejid);
|
|
|
|
if (pcontact == NULL) {
|
|
|
|
cons_show("Contact not found in roster: %s", barejid);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
roster_remove_from_group(group, barejid);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-05-18 21:07:01 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_roster(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
2013-06-01 18:48:24 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-06-01 18:27:46 -04:00
|
|
|
// show roster
|
|
|
|
if (args[0] == NULL) {
|
|
|
|
GSList *list = roster_get_contacts();
|
|
|
|
cons_show_roster(list);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
// add contact
|
|
|
|
if (strcmp(args[0], "add") == 0) {
|
2013-05-18 21:07:01 -04:00
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
if (args[1] == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-05-18 21:07:01 -04:00
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
char *jid = args[1];
|
|
|
|
char *name = args[2];
|
2013-05-18 21:07:01 -04:00
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
roster_add_new(jid, name);
|
2013-05-20 17:51:35 -04:00
|
|
|
|
2013-05-18 21:07:01 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
2013-06-01 18:27:46 -04:00
|
|
|
|
2013-06-01 19:06:05 -04:00
|
|
|
// remove contact
|
|
|
|
if (strcmp(args[0], "remove") == 0) {
|
|
|
|
|
|
|
|
if (args[1] == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *jid = args[1];
|
|
|
|
|
|
|
|
roster_remove(jid);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
// change nickname
|
|
|
|
if (strcmp(args[0], "nick") == 0) {
|
2013-06-01 18:27:46 -04:00
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
if (args[1] == NULL) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *jid = args[1];
|
|
|
|
char *name = args[2];
|
|
|
|
|
|
|
|
// contact does not exist
|
|
|
|
PContact contact = roster_get_contact(jid);
|
|
|
|
if (contact == NULL) {
|
|
|
|
cons_show("Contact not found in roster: %s", jid);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
roster_change_name(jid, name);
|
|
|
|
|
|
|
|
if (name == NULL) {
|
|
|
|
cons_show("Nickname for %s removed.", jid);
|
|
|
|
} else {
|
|
|
|
cons_show("Nickname for %s set to: %s.", jid, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2013-06-01 18:27:46 -04:00
|
|
|
}
|
|
|
|
|
2013-06-01 18:48:24 -04:00
|
|
|
cons_show("Usage: %s", help.usage);
|
2013-06-01 18:27:46 -04:00
|
|
|
return TRUE;
|
2013-05-18 21:07:01 -04:00
|
|
|
}
|
|
|
|
|
2013-05-04 21:31:04 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_duck(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
char *query = args[0];
|
|
|
|
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if no duck win open, create it and send a help command
|
|
|
|
if (!ui_duck_exists()) {
|
|
|
|
ui_create_duck_win();
|
|
|
|
|
|
|
|
if (query != NULL) {
|
|
|
|
message_send_duck(query);
|
|
|
|
ui_duck(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
// window exists, send query
|
|
|
|
} else {
|
|
|
|
ui_open_duck_win();
|
|
|
|
|
|
|
|
if (query != NULL) {
|
|
|
|
message_send_duck(query);
|
|
|
|
ui_duck(query);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-01-21 18:24:59 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_status(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
char *usr = args[0];
|
2013-05-20 17:51:35 -04:00
|
|
|
char *usr_jid = NULL;
|
2013-01-21 18:24:59 -05:00
|
|
|
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
2013-01-21 18:24:59 -05:00
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (win_type)
|
|
|
|
{
|
|
|
|
case WIN_MUC:
|
2013-01-21 18:24:59 -05:00
|
|
|
if (usr != NULL) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_status_room(usr);
|
2013-01-21 18:24:59 -05:00
|
|
|
} else {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("You must specify a nickname.");
|
2013-01-21 18:24:59 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_CHAT:
|
2013-01-21 18:24:59 -05:00
|
|
|
if (usr != NULL) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("No parameter required when in chat.");
|
2013-01-21 18:24:59 -05:00
|
|
|
} else {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_status();
|
2013-01-21 18:24:59 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_PRIVATE:
|
2013-01-21 18:24:59 -05:00
|
|
|
if (usr != NULL) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("No parameter required when in chat.");
|
2013-01-21 18:24:59 -05:00
|
|
|
} else {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_status_private();
|
2013-01-21 18:24:59 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_CONSOLE:
|
2013-01-21 18:24:59 -05:00
|
|
|
if (usr != NULL) {
|
2013-05-21 16:12:00 -04:00
|
|
|
usr_jid = roster_barejid_from_name(usr);
|
2013-05-20 17:51:35 -04:00
|
|
|
if (usr_jid == NULL) {
|
|
|
|
usr_jid = usr;
|
|
|
|
}
|
|
|
|
cons_show_status(usr_jid);
|
2013-01-21 18:24:59 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-01-21 18:24:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-13 17:08:46 -05:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_info(gchar **args, struct cmd_help_t help)
|
2012-11-13 17:08:46 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *usr = args[0];
|
2013-05-19 18:44:28 -04:00
|
|
|
char *usr_jid = NULL;
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
|
|
|
PContact pcontact = NULL;
|
2013-07-30 18:51:07 -04:00
|
|
|
char *recipient;
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-30 18:51:07 -04:00
|
|
|
recipient = ui_current_recipient();
|
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
switch (win_type)
|
|
|
|
{
|
|
|
|
case WIN_MUC:
|
2013-01-17 17:46:50 -05:00
|
|
|
if (usr != NULL) {
|
2013-07-30 18:51:07 -04:00
|
|
|
pcontact = muc_get_participant(recipient, usr);
|
2013-01-21 18:48:57 -05:00
|
|
|
if (pcontact != NULL) {
|
|
|
|
cons_show_info(pcontact);
|
|
|
|
} else {
|
|
|
|
cons_show("No such participant \"%s\" in room.", usr);
|
|
|
|
}
|
2013-01-17 17:46:50 -05:00
|
|
|
} else {
|
2013-01-21 18:48:57 -05:00
|
|
|
cons_show("No nickname supplied to /info in chat room.");
|
2013-01-17 17:46:50 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_CHAT:
|
2013-01-17 17:46:50 -05:00
|
|
|
if (usr != NULL) {
|
2013-01-21 18:48:57 -05:00
|
|
|
cons_show("No parameter required for /info in chat.");
|
2013-01-17 17:46:50 -05:00
|
|
|
} else {
|
2013-07-30 18:51:07 -04:00
|
|
|
pcontact = roster_get_contact(recipient);
|
2013-01-21 18:48:57 -05:00
|
|
|
if (pcontact != NULL) {
|
|
|
|
cons_show_info(pcontact);
|
|
|
|
} else {
|
2013-07-30 18:51:07 -04:00
|
|
|
cons_show("No such contact \"%s\" in roster.", recipient);
|
2013-01-21 18:48:57 -05:00
|
|
|
}
|
2013-01-17 17:46:50 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_PRIVATE:
|
2013-01-17 17:46:50 -05:00
|
|
|
if (usr != NULL) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_print_line("No parameter required when in chat.");
|
2013-01-17 17:46:50 -05:00
|
|
|
} else {
|
2013-07-30 18:51:07 -04:00
|
|
|
Jid *jid = jid_create(recipient);
|
2013-04-21 13:40:22 -04:00
|
|
|
pcontact = muc_get_participant(jid->barejid, jid->resourcepart);
|
2013-01-21 18:48:57 -05:00
|
|
|
if (pcontact != NULL) {
|
|
|
|
cons_show_info(pcontact);
|
|
|
|
} else {
|
|
|
|
cons_show("No such participant \"%s\" in room.", jid->resourcepart);
|
|
|
|
}
|
|
|
|
jid_destroy(jid);
|
2013-01-17 17:46:50 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_CONSOLE:
|
2013-01-17 17:46:50 -05:00
|
|
|
if (usr != NULL) {
|
2013-05-21 16:12:00 -04:00
|
|
|
usr_jid = roster_barejid_from_name(usr);
|
2013-05-19 18:44:28 -04:00
|
|
|
if (usr_jid == NULL) {
|
|
|
|
usr_jid = usr;
|
|
|
|
}
|
|
|
|
pcontact = roster_get_contact(usr_jid);
|
2013-01-21 18:48:57 -05:00
|
|
|
if (pcontact != NULL) {
|
|
|
|
cons_show_info(pcontact);
|
|
|
|
} else {
|
|
|
|
cons_show("No such contact \"%s\" in roster.", usr);
|
2013-02-16 20:04:10 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-02-16 20:04:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_cmd_caps(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
|
|
|
PContact pcontact = NULL;
|
2013-07-30 18:51:07 -04:00
|
|
|
char *recipient;
|
2013-02-16 20:04:10 -05:00
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (win_type)
|
|
|
|
{
|
|
|
|
case WIN_MUC:
|
2013-02-17 11:39:37 -05:00
|
|
|
if (args[0] != NULL) {
|
2013-07-30 18:51:07 -04:00
|
|
|
recipient = ui_current_recipient();
|
|
|
|
pcontact = muc_get_participant(recipient, args[0]);
|
2013-02-16 20:04:10 -05:00
|
|
|
if (pcontact != NULL) {
|
2013-02-17 11:39:37 -05:00
|
|
|
Resource *resource = p_contact_get_resource(pcontact, args[0]);
|
|
|
|
cons_show_caps(args[0], resource);
|
2013-02-16 20:04:10 -05:00
|
|
|
} else {
|
2013-02-17 11:39:37 -05:00
|
|
|
cons_show("No such participant \"%s\" in room.", args[0]);
|
2013-02-16 20:04:10 -05:00
|
|
|
}
|
|
|
|
} else {
|
2013-02-17 11:39:37 -05:00
|
|
|
cons_show("No nickname supplied to /caps in chat room.");
|
2013-02-16 20:04:10 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_CHAT:
|
|
|
|
case WIN_CONSOLE:
|
2013-02-17 11:39:37 -05:00
|
|
|
if (args[0] != NULL) {
|
|
|
|
Jid *jid = jid_create(args[0]);
|
2013-02-16 20:04:10 -05:00
|
|
|
|
2013-02-17 11:39:37 -05:00
|
|
|
if (jid->fulljid == NULL) {
|
|
|
|
cons_show("You must provide a full jid to the /caps command.");
|
2013-02-16 20:04:10 -05:00
|
|
|
} else {
|
2013-05-06 17:32:58 -04:00
|
|
|
pcontact = roster_get_contact(jid->barejid);
|
2013-02-17 14:28:25 -05:00
|
|
|
if (pcontact == NULL) {
|
|
|
|
cons_show("Contact not found in roster: %s", jid->barejid);
|
|
|
|
} else {
|
|
|
|
Resource *resource = p_contact_get_resource(pcontact, jid->resourcepart);
|
|
|
|
if (resource == NULL) {
|
|
|
|
cons_show("Could not find resource %s, for contact %s", jid->barejid, jid->resourcepart);
|
|
|
|
} else {
|
|
|
|
cons_show_caps(jid->fulljid, resource);
|
|
|
|
}
|
|
|
|
}
|
2013-02-16 20:04:10 -05:00
|
|
|
}
|
2013-02-17 11:39:37 -05:00
|
|
|
} else {
|
|
|
|
cons_show("You must provide a jid to the /caps command.");
|
2013-02-16 20:04:10 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_PRIVATE:
|
2013-02-17 11:39:37 -05:00
|
|
|
if (args[0] != NULL) {
|
|
|
|
cons_show("No parameter needed to /caps when in private chat.");
|
2013-02-16 20:04:10 -05:00
|
|
|
} else {
|
2013-07-30 18:51:07 -04:00
|
|
|
recipient = ui_current_recipient();
|
|
|
|
Jid *jid = jid_create(recipient);
|
|
|
|
if (jid) {
|
|
|
|
pcontact = muc_get_participant(jid->barejid, jid->resourcepart);
|
|
|
|
Resource *resource = p_contact_get_resource(pcontact, jid->resourcepart);
|
|
|
|
cons_show_caps(jid->resourcepart, resource);
|
|
|
|
jid_destroy(jid);
|
|
|
|
}
|
2013-01-17 17:46:50 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2012-11-13 17:08:46 -05:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-11-13 17:08:46 -05:00
|
|
|
}
|
|
|
|
|
2013-02-17 11:39:37 -05:00
|
|
|
|
2013-02-16 21:10:56 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_software(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
|
|
|
PContact pcontact = NULL;
|
2013-07-30 18:51:07 -04:00
|
|
|
char *recipient;
|
2013-02-16 21:10:56 -05:00
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2013-04-21 13:40:22 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (win_type)
|
|
|
|
{
|
|
|
|
case WIN_MUC:
|
2013-02-16 21:58:03 -05:00
|
|
|
if (args[0] != NULL) {
|
2013-07-30 18:51:07 -04:00
|
|
|
recipient = ui_current_recipient();
|
|
|
|
pcontact = muc_get_participant(recipient, args[0]);
|
2013-02-16 21:58:03 -05:00
|
|
|
if (pcontact != NULL) {
|
2013-07-30 18:51:07 -04:00
|
|
|
Jid *jid = jid_create_from_bare_and_resource(recipient, args[0]);
|
2013-02-16 21:58:03 -05:00
|
|
|
iq_send_software_version(jid->fulljid);
|
|
|
|
jid_destroy(jid);
|
|
|
|
} else {
|
|
|
|
cons_show("No such participant \"%s\" in room.", args[0]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("No nickname supplied to /software in chat room.");
|
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_CHAT:
|
|
|
|
case WIN_CONSOLE:
|
2013-02-16 21:58:03 -05:00
|
|
|
if (args[0] != NULL) {
|
|
|
|
Jid *jid = jid_create(args[0]);
|
|
|
|
|
2013-07-30 18:51:07 -04:00
|
|
|
if (jid == NULL || jid->fulljid == NULL) {
|
2013-02-16 21:58:03 -05:00
|
|
|
cons_show("You must provide a full jid to the /software command.");
|
|
|
|
} else {
|
|
|
|
iq_send_software_version(jid->fulljid);
|
|
|
|
}
|
2013-07-30 18:51:07 -04:00
|
|
|
jid_destroy(jid);
|
2013-02-16 21:58:03 -05:00
|
|
|
} else {
|
|
|
|
cons_show("You must provide a jid to the /software command.");
|
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
case WIN_PRIVATE:
|
2013-02-16 21:58:03 -05:00
|
|
|
if (args[0] != NULL) {
|
|
|
|
cons_show("No parameter needed to /software when in private chat.");
|
|
|
|
} else {
|
2013-07-30 18:51:07 -04:00
|
|
|
recipient = ui_current_recipient();
|
|
|
|
iq_send_software_version(recipient);
|
2013-02-16 21:58:03 -05:00
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-02-16 21:10:56 -05:00
|
|
|
}
|
2013-02-16 21:58:03 -05:00
|
|
|
|
|
|
|
return TRUE;
|
2013-02-16 21:10:56 -05:00
|
|
|
}
|
|
|
|
|
2012-11-03 21:27:01 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_join(gchar **args, struct cmd_help_t help)
|
2012-11-03 21:27:01 -04:00
|
|
|
{
|
2013-01-12 22:14:36 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-09-22 20:34:35 -04:00
|
|
|
ProfAccount *account = accounts_get_account(jabber_get_account_name());
|
2013-01-13 12:58:25 -05:00
|
|
|
|
2013-01-12 22:14:36 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-30 18:37:02 -04:00
|
|
|
Jid *room_arg = jid_create(args[0]);
|
|
|
|
if (room_arg == NULL) {
|
|
|
|
cons_show_error("Specified room has incorrect format");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-10 17:47:01 -04:00
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
char *room = NULL;
|
2012-11-17 21:40:49 -05:00
|
|
|
char *nick = NULL;
|
2013-04-10 17:47:01 -04:00
|
|
|
GString *room_str = g_string_new("");
|
2013-05-21 17:00:42 -04:00
|
|
|
Jid *my_jid = jid_create(jabber_get_fulljid());
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2013-04-10 17:47:01 -04:00
|
|
|
// full room jid supplied (room@server)
|
|
|
|
if (room_arg->localpart != NULL) {
|
|
|
|
room = args[0];
|
|
|
|
|
2013-09-12 18:30:35 -04:00
|
|
|
// server not supplied (room), use account preference
|
2013-04-10 17:47:01 -04:00
|
|
|
} else {
|
|
|
|
g_string_append(room_str, args[0]);
|
2013-09-12 18:30:35 -04:00
|
|
|
g_string_append(room_str, "@");
|
|
|
|
g_string_append(room_str, account->muc_service);
|
2013-04-10 17:47:01 -04:00
|
|
|
room = room_str->str;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nick supplied
|
2012-11-17 21:40:49 -05:00
|
|
|
if (num_args == 2) {
|
|
|
|
nick = args[1];
|
2013-04-10 17:47:01 -04:00
|
|
|
|
2013-09-12 18:30:35 -04:00
|
|
|
// otherwise use account preference
|
2013-01-12 22:14:36 -05:00
|
|
|
} else {
|
2013-09-12 18:30:35 -04:00
|
|
|
nick = account->muc_nick;
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2013-01-26 20:14:59 -05:00
|
|
|
Jid *room_jid = jid_create_from_bare_and_resource(room, nick);
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2013-01-12 22:14:36 -05:00
|
|
|
if (!muc_room_is_active(room_jid)) {
|
2013-01-28 17:55:26 -05:00
|
|
|
presence_join_room(room_jid);
|
2012-11-03 21:27:01 -04:00
|
|
|
}
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_room_join(room_jid);
|
2013-04-24 18:50:47 -04:00
|
|
|
muc_remove_invite(room);
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2013-06-30 10:19:43 -04:00
|
|
|
jid_destroy(room_arg);
|
2013-04-10 17:47:01 -04:00
|
|
|
jid_destroy(room_jid);
|
|
|
|
jid_destroy(my_jid);
|
|
|
|
g_string_free(room_str, TRUE);
|
2013-09-22 20:34:35 -04:00
|
|
|
accounts_free_account(account);
|
2013-04-10 17:47:01 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-11-03 21:27:01 -04:00
|
|
|
}
|
|
|
|
|
2013-04-20 15:18:13 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_invite(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
char *contact = args[0];
|
|
|
|
char *reason = args[1];
|
|
|
|
char *room = NULL;
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-21 13:40:22 -04:00
|
|
|
if (ui_current_win_type() != WIN_MUC) {
|
2013-04-20 15:18:13 -04:00
|
|
|
cons_show("You must be in a chat room to send an invite.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-05-30 16:18:32 -04:00
|
|
|
char *usr_jid = roster_barejid_from_name(contact);
|
|
|
|
if (usr_jid == NULL) {
|
|
|
|
usr_jid = contact;
|
|
|
|
}
|
2013-04-21 14:44:31 -04:00
|
|
|
room = ui_current_recipient();
|
2013-05-30 16:18:32 -04:00
|
|
|
message_send_invite(room, usr_jid, reason);
|
2013-04-20 15:18:13 -04:00
|
|
|
if (reason != NULL) {
|
|
|
|
cons_show("Room invite sent, contact: %s, room: %s, reason: \"%s\".",
|
|
|
|
contact, room, reason);
|
|
|
|
} else {
|
|
|
|
cons_show("Room invite sent, contact: %s, room: %s.",
|
|
|
|
contact, room);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-24 18:50:47 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_invites(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
GSList *invites = muc_get_invites();
|
|
|
|
cons_show_room_invites(invites);
|
|
|
|
g_slist_free_full(invites, g_free);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_cmd_decline(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
if (!muc_invites_include(args[0])) {
|
|
|
|
cons_show("No such invite exists.");
|
|
|
|
} else {
|
|
|
|
muc_remove_invite(args[0]);
|
|
|
|
cons_show("Declined invite to %s.", args[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-03-13 19:38:26 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_rooms(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
2013-07-14 14:32:20 -04:00
|
|
|
cons_show("You are not currenlty connected.");
|
2013-03-13 19:38:26 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args[0] == NULL) {
|
2013-09-12 18:30:35 -04:00
|
|
|
ProfAccount *account = accounts_get_account(jabber_get_account_name());
|
|
|
|
iq_room_list_request(account->muc_service);
|
2013-03-13 19:38:26 -04:00
|
|
|
} else {
|
|
|
|
iq_room_list_request(args[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-14 16:58:02 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_bookmark(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
gchar *cmd = args[0];
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currenlty connect.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: /bookmark list room@server */
|
|
|
|
|
|
|
|
if (cmd == NULL || strcmp(cmd, "list") == 0) {
|
|
|
|
cons_show_bookmarks(bookmark_get_list());
|
|
|
|
} else {
|
|
|
|
gboolean autojoin = FALSE;
|
|
|
|
gchar *jid = NULL;
|
|
|
|
gchar *nick = NULL;
|
|
|
|
int idx = 1;
|
|
|
|
|
|
|
|
while (args[idx] != NULL) {
|
|
|
|
gchar *opt = args[idx];
|
|
|
|
|
|
|
|
if (strcmp(opt, "autojoin") == 0) {
|
|
|
|
autojoin = TRUE;
|
|
|
|
} else if (jid == NULL) {
|
|
|
|
jid = opt;
|
|
|
|
} else if (nick == NULL) {
|
|
|
|
nick = opt;
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
|
|
|
|
|
|
|
++idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (jid == NULL) {
|
|
|
|
win_type_t win_type = ui_current_win_type();
|
|
|
|
|
|
|
|
if (win_type == WIN_MUC) {
|
|
|
|
jid = ui_current_recipient();
|
|
|
|
nick = muc_get_room_nick(jid);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(cmd, "add") == 0) {
|
|
|
|
bookmark_add(jid, nick, autojoin);
|
|
|
|
} else if (strcmp(cmd, "remove") == 0) {
|
|
|
|
bookmark_remove(jid, autojoin);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-03-14 16:50:09 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_disco(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
2013-07-14 14:32:20 -04:00
|
|
|
cons_show("You are not currenlty connected.");
|
2013-03-14 16:50:09 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-03-14 17:29:04 -04:00
|
|
|
GString *jid = g_string_new("");
|
|
|
|
if (args[1] != NULL) {
|
|
|
|
jid = g_string_append(jid, args[1]);
|
|
|
|
} else {
|
2013-05-21 17:00:42 -04:00
|
|
|
Jid *jidp = jid_create(jabber_get_fulljid());
|
2013-06-30 10:19:43 -04:00
|
|
|
jid = g_string_append(jid, jidp->domainpart);
|
2013-03-14 17:29:04 -04:00
|
|
|
jid_destroy(jidp);
|
|
|
|
}
|
|
|
|
|
2013-03-14 16:50:09 -04:00
|
|
|
if (g_strcmp0(args[0], "info") == 0) {
|
2013-03-14 17:29:04 -04:00
|
|
|
iq_disco_info_request(jid->str);
|
2013-03-14 16:50:09 -04:00
|
|
|
} else {
|
2013-03-14 17:29:04 -04:00
|
|
|
iq_disco_items_request(jid->str);
|
2013-03-14 16:50:09 -04:00
|
|
|
}
|
|
|
|
|
2013-03-14 17:29:04 -04:00
|
|
|
g_string_free(jid, TRUE);
|
|
|
|
|
2013-03-14 16:50:09 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:36:17 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_nick(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-04-21 13:40:22 -04:00
|
|
|
if (ui_current_win_type() != WIN_MUC) {
|
2012-11-18 13:36:17 -05:00
|
|
|
cons_show("You can only change your nickname in a chat room window.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
char *room = ui_current_recipient();
|
2012-11-18 13:36:17 -05:00
|
|
|
char *nick = args[0];
|
2013-01-28 17:55:26 -05:00
|
|
|
presence_change_room_nick(room, nick);
|
2012-11-18 13:36:17 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-27 20:36:08 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_tiny(gchar **args, struct cmd_help_t help)
|
2012-07-27 20:36:08 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *url = args[0];
|
2013-04-21 13:40:22 -04:00
|
|
|
win_type_t win_type = ui_current_win_type();
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (!tinyurl_valid(url)) {
|
|
|
|
GString *error = g_string_new("/tiny, badly formed URL: ");
|
|
|
|
g_string_append(error, url);
|
2013-04-20 21:49:23 -04:00
|
|
|
cons_show_error(error->str);
|
2013-04-21 13:40:22 -04:00
|
|
|
if (win_type != WIN_CONSOLE) {
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_current_error_line(error->str);
|
2012-10-24 06:43:25 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
g_string_free(error, TRUE);
|
2013-04-21 13:40:22 -04:00
|
|
|
} else if (win_type != WIN_CONSOLE) {
|
2012-11-17 21:40:49 -05:00
|
|
|
char *tiny = tinyurl_get(url);
|
2012-07-29 16:32:04 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (tiny != NULL) {
|
2013-04-21 13:40:22 -04:00
|
|
|
if (win_type == WIN_CHAT) {
|
2013-04-21 14:44:31 -04:00
|
|
|
char *recipient = ui_current_recipient();
|
2013-01-28 19:21:04 -05:00
|
|
|
message_send(tiny, recipient);
|
2012-10-02 17:00:05 -04:00
|
|
|
|
2013-02-02 21:35:04 -05:00
|
|
|
if (prefs_get_boolean(PREF_CHLOG)) {
|
2013-05-21 17:00:42 -04:00
|
|
|
const char *jid = jabber_get_fulljid();
|
2013-01-29 18:01:15 -05:00
|
|
|
Jid *jidp = jid_create(jid);
|
|
|
|
chat_log_chat(jidp->barejid, recipient, tiny, PROF_OUT_LOG, NULL);
|
|
|
|
jid_destroy(jidp);
|
2013-01-15 16:58:41 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_outgoing_msg("me", recipient, tiny);
|
2013-04-21 13:40:22 -04:00
|
|
|
} else if (win_type == WIN_PRIVATE) {
|
2013-04-21 14:44:31 -04:00
|
|
|
char *recipient = ui_current_recipient();
|
2013-01-28 19:21:04 -05:00
|
|
|
message_send(tiny, recipient);
|
2013-04-21 14:44:31 -04:00
|
|
|
ui_outgoing_msg("me", recipient, tiny);
|
2013-01-15 16:58:41 -05:00
|
|
|
} else { // groupchat
|
2013-04-21 14:44:31 -04:00
|
|
|
char *recipient = ui_current_recipient();
|
2013-01-28 19:37:50 -05:00
|
|
|
message_send_groupchat(tiny, recipient);
|
2013-01-15 16:58:41 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
free(tiny);
|
2012-07-29 16:32:04 -04:00
|
|
|
} else {
|
2013-04-20 21:49:23 -04:00
|
|
|
cons_show_error("Couldn't get tinyurl.");
|
2012-07-29 16:32:04 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("/tiny can only be used in chat windows");
|
2012-07-27 20:36:08 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-07-27 20:36:08 -04:00
|
|
|
}
|
|
|
|
|
2013-03-02 16:55:55 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_clear(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
2013-04-21 12:35:57 -04:00
|
|
|
ui_clear_current();
|
2013-03-02 16:55:55 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_close(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2013-01-10 19:48:58 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2013-05-12 17:57:36 -04:00
|
|
|
int index = 0;
|
2013-05-16 18:47:33 -04:00
|
|
|
int count = 0;
|
2013-05-12 17:57:36 -04:00
|
|
|
|
|
|
|
if (args[0] == NULL) {
|
|
|
|
index = ui_current_win_index();
|
|
|
|
} else if (strcmp(args[0], "all") == 0) {
|
2013-08-26 13:06:33 -04:00
|
|
|
count = ui_close_all_wins();
|
2013-05-16 18:47:33 -04:00
|
|
|
if (count == 0) {
|
|
|
|
cons_show("No windows to close.");
|
|
|
|
} else if (count == 1) {
|
|
|
|
cons_show("Closed 1 window.");
|
|
|
|
} else {
|
|
|
|
cons_show("Closed %d windows.", count);
|
|
|
|
}
|
2013-05-12 17:57:36 -04:00
|
|
|
return TRUE;
|
2013-05-16 17:34:05 -04:00
|
|
|
} else if (strcmp(args[0], "read") == 0) {
|
2013-08-26 13:06:33 -04:00
|
|
|
count = ui_close_read_wins();
|
2013-05-16 18:47:33 -04:00
|
|
|
if (count == 0) {
|
|
|
|
cons_show("No windows to close.");
|
|
|
|
} else if (count == 1) {
|
|
|
|
cons_show("Closed 1 window.");
|
|
|
|
} else {
|
|
|
|
cons_show("Closed %d windows.", count);
|
|
|
|
}
|
2013-05-16 17:34:05 -04:00
|
|
|
return TRUE;
|
2013-05-12 17:57:36 -04:00
|
|
|
} else {
|
|
|
|
index = atoi(args[0]);
|
|
|
|
}
|
2012-10-31 17:30:58 -04:00
|
|
|
|
2013-08-28 18:32:54 -04:00
|
|
|
if (index < 0 || index == 10) {
|
|
|
|
cons_show("No such window exists.");
|
2013-01-10 19:48:58 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
2012-10-31 18:08:00 -04:00
|
|
|
|
2013-08-28 18:32:54 -04:00
|
|
|
if (index == 1) {
|
|
|
|
cons_show("Cannot close console window.");
|
2013-05-12 17:57:36 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
2013-01-10 19:48:58 -05:00
|
|
|
|
2013-08-28 18:32:54 -04:00
|
|
|
if (index == 0) {
|
|
|
|
index = 10;
|
|
|
|
}
|
|
|
|
|
2013-05-12 17:57:36 -04:00
|
|
|
if (!ui_win_exists(index)) {
|
|
|
|
cons_show("Window is not open.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
2013-01-10 19:48:58 -05:00
|
|
|
|
2013-05-12 17:57:36 -04:00
|
|
|
// handle leaving rooms, or chat
|
|
|
|
if (conn_status == JABBER_CONNECTED) {
|
2013-05-16 19:33:00 -04:00
|
|
|
ui_close_connected_win(index);
|
2012-10-31 17:30:58 -04:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2013-01-10 19:48:58 -05:00
|
|
|
// close the window
|
2013-05-12 17:57:36 -04:00
|
|
|
ui_close_win(index);
|
2013-08-28 18:32:54 -04:00
|
|
|
cons_show("Closed window %d", index);
|
2013-01-10 19:48:58 -05:00
|
|
|
|
2012-02-09 18:15:53 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2013-05-30 17:48:56 -04:00
|
|
|
_cmd_leave(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
win_type_t win_type = ui_current_win_type();
|
|
|
|
int index = ui_current_win_index();
|
|
|
|
|
|
|
|
if (win_type != WIN_MUC) {
|
|
|
|
cons_show("You can only use the /leave command in a chat room.");
|
|
|
|
cons_alert();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle leaving rooms, or chat
|
|
|
|
if (conn_status == JABBER_CONNECTED) {
|
|
|
|
ui_close_connected_win(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// close the window
|
|
|
|
ui_close_win(index);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_beep(gchar **args, struct cmd_help_t help)
|
2012-04-23 20:24:54 -04:00
|
|
|
{
|
2013-02-02 21:51:15 -05:00
|
|
|
return _cmd_set_boolean_preference(args[0], help, "Sound", PREF_BEEP);
|
2012-04-23 20:24:54 -04:00
|
|
|
}
|
|
|
|
|
2012-10-31 17:41:00 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_states(gchar **args, struct cmd_help_t help)
|
2012-10-31 17:41:00 -04:00
|
|
|
{
|
2013-03-10 15:36:08 -04:00
|
|
|
gboolean result = _cmd_set_boolean_preference(args[0], help, "Sending chat states",
|
2013-02-02 21:51:15 -05:00
|
|
|
PREF_STATES);
|
2013-03-10 15:36:08 -04:00
|
|
|
|
|
|
|
// if disabled, disable outtype and gone
|
|
|
|
if (result == TRUE && (strcmp(args[0], "off") == 0)) {
|
|
|
|
prefs_set_boolean(PREF_OUTTYPE, FALSE);
|
|
|
|
prefs_set_gone(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2012-10-31 17:41:00 -04:00
|
|
|
}
|
|
|
|
|
2012-11-29 15:34:52 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_titlebar(gchar **args, struct cmd_help_t help)
|
2012-11-29 15:34:52 -05:00
|
|
|
{
|
2012-12-02 15:53:45 -05:00
|
|
|
if (strcmp(args[0], "version") != 0) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return _cmd_set_boolean_preference(args[1], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Show version in window title", PREF_TITLEBARVERSION);
|
2012-12-02 15:53:45 -05:00
|
|
|
}
|
2012-11-29 15:34:52 -05:00
|
|
|
}
|
|
|
|
|
2012-10-31 20:12:35 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_outtype(gchar **args, struct cmd_help_t help)
|
2012-10-31 20:12:35 -04:00
|
|
|
{
|
2013-03-10 15:36:08 -04:00
|
|
|
gboolean result = _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Sending typing notifications", PREF_OUTTYPE);
|
2013-03-10 15:36:08 -04:00
|
|
|
|
|
|
|
// if enabled, enable states
|
|
|
|
if (result == TRUE && (strcmp(args[0], "on") == 0)) {
|
|
|
|
prefs_set_boolean(PREF_STATES, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2012-10-31 20:12:35 -04:00
|
|
|
}
|
|
|
|
|
2012-12-19 18:31:25 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_gone(gchar **args, struct cmd_help_t help)
|
2012-12-19 18:31:25 -05:00
|
|
|
{
|
|
|
|
char *value = args[0];
|
|
|
|
|
|
|
|
gint period = atoi(value);
|
|
|
|
prefs_set_gone(period);
|
|
|
|
if (period == 0) {
|
|
|
|
cons_show("Automatic leaving conversations after period disabled.");
|
|
|
|
} else if (period == 1) {
|
|
|
|
cons_show("Leaving conversations after 1 minute of inactivity.");
|
|
|
|
} else {
|
|
|
|
cons_show("Leaving conversations after %d minutes of inactivity.", period);
|
|
|
|
}
|
|
|
|
|
2013-03-10 15:36:08 -04:00
|
|
|
// if enabled, enable states
|
|
|
|
if (period > 0) {
|
|
|
|
prefs_set_boolean(PREF_STATES, TRUE);
|
|
|
|
}
|
|
|
|
|
2012-12-19 18:31:25 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_notify(gchar **args, struct cmd_help_t help)
|
2012-06-28 18:45:37 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *kind = args[0];
|
|
|
|
char *value = args[1];
|
2012-10-27 17:05:08 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// bad kind
|
|
|
|
if ((strcmp(kind, "message") != 0) && (strcmp(kind, "typing") != 0) &&
|
2013-04-27 18:46:49 -04:00
|
|
|
(strcmp(kind, "remind") != 0) && (strcmp(kind, "invite") != 0) &&
|
|
|
|
(strcmp(kind, "sub") != 0)) {
|
2012-11-14 21:31:31 -05:00
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-10-27 17:05:08 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// set message setting
|
|
|
|
} else if (strcmp(kind, "message") == 0) {
|
|
|
|
if (strcmp(value, "on") == 0) {
|
|
|
|
cons_show("Message notifications enabled.");
|
2013-02-02 21:51:15 -05:00
|
|
|
prefs_set_boolean(PREF_NOTIFY_MESSAGE, TRUE);
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(value, "off") == 0) {
|
|
|
|
cons_show("Message notifications disabled.");
|
2013-02-02 21:51:15 -05:00
|
|
|
prefs_set_boolean(PREF_NOTIFY_MESSAGE, FALSE);
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify message on|off");
|
|
|
|
}
|
2012-10-27 17:05:08 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// set typing setting
|
|
|
|
} else if (strcmp(kind, "typing") == 0) {
|
|
|
|
if (strcmp(value, "on") == 0) {
|
|
|
|
cons_show("Typing notifications enabled.");
|
2013-02-02 21:51:15 -05:00
|
|
|
prefs_set_boolean(PREF_NOTIFY_TYPING, TRUE);
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(value, "off") == 0) {
|
|
|
|
cons_show("Typing notifications disabled.");
|
2013-02-02 21:51:15 -05:00
|
|
|
prefs_set_boolean(PREF_NOTIFY_TYPING, FALSE);
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify typing on|off");
|
2012-10-27 17:05:08 -04:00
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2013-04-22 18:48:23 -04:00
|
|
|
// set invite setting
|
|
|
|
} else if (strcmp(kind, "invite") == 0) {
|
|
|
|
if (strcmp(value, "on") == 0) {
|
|
|
|
cons_show("Chat room invite notifications enabled.");
|
|
|
|
prefs_set_boolean(PREF_NOTIFY_INVITE, TRUE);
|
|
|
|
} else if (strcmp(value, "off") == 0) {
|
|
|
|
cons_show("Chat room invite notifications disabled.");
|
|
|
|
prefs_set_boolean(PREF_NOTIFY_INVITE, FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify invite on|off");
|
|
|
|
}
|
|
|
|
|
2013-04-27 18:46:49 -04:00
|
|
|
// set subscription setting
|
|
|
|
} else if (strcmp(kind, "sub") == 0) {
|
|
|
|
if (strcmp(value, "on") == 0) {
|
|
|
|
cons_show("Subscription notifications enabled.");
|
|
|
|
prefs_set_boolean(PREF_NOTIFY_SUB, TRUE);
|
|
|
|
} else if (strcmp(value, "off") == 0) {
|
|
|
|
cons_show("Subscription notifications disabled.");
|
|
|
|
prefs_set_boolean(PREF_NOTIFY_SUB, FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify sub on|off");
|
|
|
|
}
|
|
|
|
|
2013-01-14 04:51:37 -05:00
|
|
|
// set remind setting
|
|
|
|
} else if (strcmp(kind, "remind") == 0) {
|
2012-11-17 21:40:49 -05:00
|
|
|
gint period = atoi(value);
|
|
|
|
prefs_set_notify_remind(period);
|
|
|
|
if (period == 0) {
|
|
|
|
cons_show("Message reminders disabled.");
|
|
|
|
} else if (period == 1) {
|
|
|
|
cons_show("Message reminder period set to 1 second.");
|
|
|
|
} else {
|
|
|
|
cons_show("Message reminder period set to %d seconds.", period);
|
|
|
|
}
|
2013-01-14 04:51:37 -05:00
|
|
|
|
|
|
|
} else {
|
|
|
|
cons_show("Unknown command: %s.", kind);
|
2012-10-27 17:05:08 -04:00
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-08-15 19:50:32 -04:00
|
|
|
}
|
|
|
|
|
2012-11-12 04:13:03 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_log(gchar **args, struct cmd_help_t help)
|
2012-11-12 04:13:03 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *subcmd = args[0];
|
|
|
|
char *value = args[1];
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (strcmp(subcmd, "maxsize") == 0) {
|
|
|
|
if (_strtoi(value, &intval, PREFS_MIN_LOG_SIZE, INT_MAX) == 0) {
|
|
|
|
prefs_set_max_log_size(intval);
|
|
|
|
cons_show("Log maxinum size set to %d bytes", intval);
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
2012-11-13 17:23:06 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
/* TODO: make 'level' subcommand for debug level */
|
|
|
|
|
|
|
|
return TRUE;
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
|
|
|
|
2012-11-24 21:14:38 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_reconnect(gchar **args, struct cmd_help_t help)
|
2012-11-24 21:14:38 -05:00
|
|
|
{
|
|
|
|
char *value = args[0];
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (_strtoi(value, &intval, 0, INT_MAX) == 0) {
|
|
|
|
prefs_set_reconnect(intval);
|
|
|
|
if (intval == 0) {
|
|
|
|
cons_show("Reconnect disabled.", intval);
|
|
|
|
} else {
|
|
|
|
cons_show("Reconnect interval set to %d seconds.", intval);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
|
|
|
|
2012-11-26 18:58:24 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_autoping(gchar **args, struct cmd_help_t help)
|
2012-11-26 18:58:24 -05:00
|
|
|
{
|
|
|
|
char *value = args[0];
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (_strtoi(value, &intval, 0, INT_MAX) == 0) {
|
|
|
|
prefs_set_autoping(intval);
|
|
|
|
jabber_set_autoping(intval);
|
|
|
|
if (intval == 0) {
|
|
|
|
cons_show("Autoping disabled.", intval);
|
|
|
|
} else {
|
|
|
|
cons_show("Autoping interval set to %d seconds.", intval);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
|
|
|
}
|
2012-11-24 21:14:38 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-30 18:34:14 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_autoaway(gchar **args, struct cmd_help_t help)
|
2012-11-30 18:34:14 -05:00
|
|
|
{
|
|
|
|
char *setting = args[0];
|
|
|
|
char *value = args[1];
|
|
|
|
int minutesval;
|
|
|
|
|
|
|
|
if ((strcmp(setting, "mode") != 0) && (strcmp(setting, "time") != 0) &&
|
|
|
|
(strcmp(setting, "message") != 0) && (strcmp(setting, "check") != 0)) {
|
|
|
|
cons_show("Setting must be one of 'mode', 'time', 'message' or 'check'");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(setting, "mode") == 0) {
|
|
|
|
if ((strcmp(value, "idle") != 0) && (strcmp(value, "away") != 0) &&
|
|
|
|
(strcmp(value, "off") != 0)) {
|
|
|
|
cons_show("Mode must be one of 'idle', 'away' or 'off'");
|
|
|
|
} else {
|
2013-02-02 22:24:13 -05:00
|
|
|
prefs_set_string(PREF_AUTOAWAY_MODE, value);
|
2012-11-30 18:34:14 -05:00
|
|
|
cons_show("Auto away mode set to: %s.", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(setting, "time") == 0) {
|
|
|
|
if (_strtoi(value, &minutesval, 1, INT_MAX) == 0) {
|
|
|
|
prefs_set_autoaway_time(minutesval);
|
|
|
|
cons_show("Auto away time set to: %d minutes.", minutesval);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(setting, "message") == 0) {
|
2012-12-01 12:46:25 -05:00
|
|
|
if (strcmp(value, "off") == 0) {
|
2013-02-02 22:24:13 -05:00
|
|
|
prefs_set_string(PREF_AUTOAWAY_MESSAGE, NULL);
|
2012-12-01 12:46:25 -05:00
|
|
|
cons_show("Auto away message cleared.");
|
|
|
|
} else {
|
2013-02-02 22:24:13 -05:00
|
|
|
prefs_set_string(PREF_AUTOAWAY_MESSAGE, value);
|
2012-12-01 12:46:25 -05:00
|
|
|
cons_show("Auto away message set to: \"%s\".", value);
|
|
|
|
}
|
2012-11-30 18:34:14 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(setting, "check") == 0) {
|
|
|
|
return _cmd_set_boolean_preference(value, help, "Online check",
|
2013-02-02 21:51:15 -05:00
|
|
|
PREF_AUTOAWAY_CHECK);
|
2012-11-30 18:34:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-13 05:51:28 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_priority(gchar **args, struct cmd_help_t help)
|
2012-11-13 05:51:28 -05:00
|
|
|
{
|
2013-01-31 17:48:21 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
char *value = args[0];
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (_strtoi(value, &intval, -128, 127) == 0) {
|
2013-01-31 17:48:21 -05:00
|
|
|
accounts_set_priority_all(jabber_get_account_name(), intval);
|
2013-02-10 12:13:19 -05:00
|
|
|
resource_presence_t last_presence = accounts_get_last_presence(jabber_get_account_name());
|
2013-02-10 08:36:11 -05:00
|
|
|
presence_update(last_presence, jabber_get_presence_message(), 0);
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("Priority set to %d.", intval);
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
|
|
|
|
2013-01-20 20:26:09 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_statuses(gchar **args, struct cmd_help_t help)
|
2013-01-20 20:26:09 -05:00
|
|
|
{
|
|
|
|
return _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Status notifications", PREF_STATUSES);
|
2013-01-20 20:26:09 -05:00
|
|
|
}
|
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_vercheck(gchar **args, struct cmd_help_t help)
|
2012-10-23 20:35:36 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
|
|
|
|
if (num_args == 0) {
|
2012-10-23 20:35:36 -04:00
|
|
|
cons_check_version(TRUE);
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
2012-11-30 18:34:14 -05:00
|
|
|
return _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Version checking", PREF_VERCHECK);
|
2012-10-23 20:35:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_flash(gchar **args, struct cmd_help_t help)
|
2012-04-23 20:39:23 -04:00
|
|
|
{
|
2012-11-30 18:34:14 -05:00
|
|
|
return _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Screen flash", PREF_FLASH);
|
2012-04-23 20:39:23 -04:00
|
|
|
}
|
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_intype(gchar **args, struct cmd_help_t help)
|
2012-10-27 19:33:20 -04:00
|
|
|
{
|
2012-11-30 18:34:14 -05:00
|
|
|
return _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Show contact typing", PREF_INTYPE);
|
2012-10-27 19:33:20 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_splash(gchar **args, struct cmd_help_t help)
|
2012-06-03 18:02:13 -04:00
|
|
|
{
|
2012-11-30 18:34:14 -05:00
|
|
|
return _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Splash screen", PREF_SPLASH);
|
2012-06-03 18:02:13 -04:00
|
|
|
}
|
|
|
|
|
2013-11-07 18:04:12 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_autoconnect(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
if (args[0] == NULL) {
|
|
|
|
prefs_set_string(PREF_CONNECT_ACCOUNT, NULL);
|
|
|
|
cons_show("Autoconnect account disabled.");
|
|
|
|
} else {
|
|
|
|
prefs_set_string(PREF_CONNECT_ACCOUNT, args[0]);
|
|
|
|
cons_show("Autoconnect account set to: %s.", args[0]);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_chlog(gchar **args, struct cmd_help_t help)
|
2012-07-22 18:07:34 -04:00
|
|
|
{
|
2013-03-10 15:36:08 -04:00
|
|
|
gboolean result = _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Chat logging", PREF_CHLOG);
|
2013-03-10 15:36:08 -04:00
|
|
|
|
|
|
|
// if set to off, disable history
|
|
|
|
if (result == TRUE && (strcmp(args[0], "off") == 0)) {
|
|
|
|
prefs_set_boolean(PREF_HISTORY, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2012-07-22 18:07:34 -04:00
|
|
|
}
|
|
|
|
|
2013-05-04 19:16:10 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_grlog(gchar **args, struct cmd_help_t help)
|
2013-05-04 19:16:10 -04:00
|
|
|
{
|
|
|
|
gboolean result = _cmd_set_boolean_preference(args[0], help,
|
|
|
|
"Groupchat logging", PREF_GRLOG);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-01-17 14:40:55 -05:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_mouse(gchar **args, struct cmd_help_t help)
|
2013-01-17 14:40:55 -05:00
|
|
|
{
|
|
|
|
return _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Mouse handling", PREF_MOUSE);
|
2013-01-17 14:40:55 -05:00
|
|
|
}
|
|
|
|
|
2012-10-14 13:26:08 -04:00
|
|
|
static gboolean
|
2013-06-23 16:21:14 -04:00
|
|
|
_cmd_history(gchar **args, struct cmd_help_t help)
|
2012-10-14 13:26:08 -04:00
|
|
|
{
|
2013-03-10 15:36:08 -04:00
|
|
|
gboolean result = _cmd_set_boolean_preference(args[0], help,
|
2013-02-02 21:51:15 -05:00
|
|
|
"Chat history", PREF_HISTORY);
|
2013-03-10 15:36:08 -04:00
|
|
|
|
|
|
|
// if set to on, set chlog
|
|
|
|
if (result == TRUE && (strcmp(args[0], "on") == 0)) {
|
|
|
|
prefs_set_boolean(PREF_CHLOG, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2012-10-14 13:26:08 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_away(gchar **args, struct cmd_help_t help)
|
2012-05-27 14:53:16 -04:00
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
_update_presence(RESOURCE_AWAY, "away", args);
|
2012-05-27 14:53:16 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_online(gchar **args, struct cmd_help_t help)
|
2012-05-27 15:36:31 -04:00
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
_update_presence(RESOURCE_ONLINE, "online", args);
|
2012-05-27 15:36:31 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_dnd(gchar **args, struct cmd_help_t help)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
_update_presence(RESOURCE_DND, "dnd", args);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_chat(gchar **args, struct cmd_help_t help)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
_update_presence(RESOURCE_CHAT, "chat", args);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_xa(gchar **args, struct cmd_help_t help)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2013-02-10 12:13:19 -05:00
|
|
|
_update_presence(RESOURCE_XA, "xa", args);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-10-14 14:15:51 -04:00
|
|
|
// helper function that asks the user for a password and saves it in passwd
|
|
|
|
|
2013-11-07 16:43:11 -05:00
|
|
|
static char *
|
|
|
|
_ask_password(void) {
|
2013-11-07 17:15:43 -05:00
|
|
|
char *passwd = malloc(sizeof(char) * (MAX_PASSWORD_SIZE + 1));
|
2013-10-14 14:15:51 -04:00
|
|
|
status_bar_get_password();
|
|
|
|
status_bar_refresh();
|
|
|
|
inp_block();
|
|
|
|
inp_get_password(passwd);
|
|
|
|
inp_non_block();
|
2013-11-07 16:43:11 -05:00
|
|
|
|
|
|
|
return passwd;
|
2013-10-14 14:15:51 -04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// helper function for status change commands
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2013-02-10 12:13:19 -05:00
|
|
|
_update_presence(const resource_presence_t resource_presence,
|
2012-11-17 21:40:49 -05:00
|
|
|
const char * const show, gchar **args)
|
2012-05-28 16:51:05 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *msg = NULL;
|
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
if (num_args == 1) {
|
|
|
|
msg = args[0];
|
2012-05-28 18:40:11 -04:00
|
|
|
}
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-05-28 16:51:05 -04:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
} else {
|
2013-02-10 12:13:19 -05:00
|
|
|
presence_update(resource_presence, msg, 0);
|
|
|
|
|
|
|
|
contact_presence_t contact_presence = contact_presence_from_resource_presence(resource_presence);
|
|
|
|
title_bar_set_status(contact_presence);
|
|
|
|
|
|
|
|
gint priority = accounts_get_priority_for_presence_type(jabber_get_account_name(), resource_presence);
|
2012-05-28 18:40:11 -04:00
|
|
|
if (msg != NULL) {
|
2013-01-31 18:49:29 -05:00
|
|
|
cons_show("Status set to %s (priority %d), \"%s\".", show, priority, msg);
|
2012-05-28 18:40:11 -04:00
|
|
|
} else {
|
2013-01-31 18:49:29 -05:00
|
|
|
cons_show("Status set to %s (priority %d).", show, priority);
|
2012-05-28 18:40:11 -04:00
|
|
|
}
|
2012-05-28 16:51:05 -04:00
|
|
|
}
|
2012-05-28 18:40:11 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
}
|
2012-08-22 19:30:11 -04:00
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// helper function for boolean preference commands
|
|
|
|
|
2012-08-22 19:30:11 -04:00
|
|
|
static gboolean
|
2012-11-30 18:34:14 -05:00
|
|
|
_cmd_set_boolean_preference(gchar *arg, struct cmd_help_t help,
|
2013-02-02 21:51:15 -05:00
|
|
|
const char * const display, preference_t pref)
|
2012-08-22 19:30:11 -04:00
|
|
|
{
|
|
|
|
GString *enabled = g_string_new(display);
|
|
|
|
g_string_append(enabled, " enabled.");
|
|
|
|
|
|
|
|
GString *disabled = g_string_new(display);
|
|
|
|
g_string_append(disabled, " disabled.");
|
|
|
|
|
2012-11-30 18:34:14 -05:00
|
|
|
if (strcmp(arg, "on") == 0) {
|
2012-08-22 19:30:11 -04:00
|
|
|
cons_show(enabled->str);
|
2013-02-02 21:51:15 -05:00
|
|
|
prefs_set_boolean(pref, TRUE);
|
2012-11-30 18:34:14 -05:00
|
|
|
} else if (strcmp(arg, "off") == 0) {
|
2012-08-22 19:30:11 -04:00
|
|
|
cons_show(disabled->str);
|
2013-02-02 21:51:15 -05:00
|
|
|
prefs_set_boolean(pref, FALSE);
|
2012-08-22 19:30:11 -04:00
|
|
|
} else {
|
2012-11-16 06:49:26 -05:00
|
|
|
char usage[strlen(help.usage) + 8];
|
2012-08-22 19:30:11 -04:00
|
|
|
sprintf(usage, "Usage: %s", help.usage);
|
|
|
|
cons_show(usage);
|
2012-10-21 15:02:20 -04:00
|
|
|
}
|
2012-08-22 19:30:11 -04:00
|
|
|
|
|
|
|
g_string_free(enabled, TRUE);
|
|
|
|
g_string_free(disabled, TRUE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
|
|
|
_sub_autocomplete(char *input, int *size)
|
2012-10-27 20:08:04 -04:00
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
|
|
|
result = autocomplete_param_with_func(input, size, "/sub allow", presence_sub_request_find);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2012-10-27 20:08:04 -04:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_func(input, size, "/sub deny", presence_sub_request_find);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/sub", sub_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2012-12-01 19:38:10 -05:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
return NULL;
|
2012-12-01 19:38:10 -05:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
|
|
|
_who_autocomplete(char *input, int *size)
|
2013-05-05 18:42:11 -04:00
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
int i = 0;
|
|
|
|
char *result = NULL;
|
|
|
|
gchar *group_commands[] = { "/who any", "/who online", "/who offline",
|
|
|
|
"/who chat", "/who away", "/who xa", "/who dnd", "/who available",
|
|
|
|
"/who unavailable" };
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(group_commands); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, group_commands[i], roster_find_group);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2013-06-01 17:49:51 -04:00
|
|
|
}
|
2013-05-05 18:42:11 -04:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_ac(input, size, "/who", who_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2013-06-02 12:51:38 -04:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
return NULL;
|
2013-06-02 12:51:38 -04:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2013-05-18 21:30:03 -04:00
|
|
|
_roster_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
|
|
|
result = autocomplete_param_with_func(input, size, "/roster nick", roster_find_jid);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_func(input, size, "/roster remove", roster_find_jid);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2013-05-18 21:30:03 -04:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_ac(input, size, "/roster", roster_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2013-05-18 21:30:03 -04:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2013-06-02 12:51:38 -04:00
|
|
|
_group_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
|
|
|
result = autocomplete_param_with_func(input, size, "/group show", roster_find_group);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
2013-06-22 20:23:44 -04:00
|
|
|
|
|
|
|
result = autocomplete_param_no_with_func(input, size, "/group add", 4, roster_find_contact);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_no_with_func(input, size, "/group remove", 4, roster_find_contact);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_func(input, size, "/group add", roster_find_group);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_func(input, size, "/group remove", roster_find_group);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2013-06-02 12:51:38 -04:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_ac(input, size, "/group", group_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2013-06-02 12:51:38 -04:00
|
|
|
}
|
|
|
|
|
2013-07-14 16:58:02 -04:00
|
|
|
static char *
|
|
|
|
_bookmark_autocomplete(char *input, int *size)
|
|
|
|
{
|
|
|
|
char *result = NULL;
|
|
|
|
|
|
|
|
if (strcmp(input, "/bookmark add ") == 0) {
|
|
|
|
GString *str = g_string_new(input);
|
|
|
|
|
|
|
|
str = g_string_append(str, "autojoin");
|
|
|
|
result = str->str;
|
|
|
|
g_string_free(str, FALSE);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = autocomplete_param_with_func(input, size, "/bookmark list", bookmark_find);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_func(input, size, "/bookmark remove", bookmark_find);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/bookmark", bookmark_ac);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2012-10-27 20:42:26 -04:00
|
|
|
_notify_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
int i = 0;
|
|
|
|
char *result = NULL;
|
|
|
|
|
|
|
|
gchar *boolean_choices[] = { "/notify message", "/notify typing",
|
|
|
|
"/notify invite", "/notify sub" };
|
|
|
|
for (i = 0; i < ARRAY_SIZE(boolean_choices); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, boolean_choices[i],
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2013-04-27 18:46:49 -04:00
|
|
|
}
|
2012-12-01 19:38:10 -05:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/notify", notify_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2012-12-01 19:38:10 -05:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2012-12-02 15:53:45 -05:00
|
|
|
_titlebar_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
|
|
|
result = autocomplete_param_with_func(input, size, "/titlebar version",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/titlebar", titlebar_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2012-12-02 15:53:45 -05:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
return NULL;
|
2012-12-02 15:53:45 -05:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2012-12-01 19:38:10 -05:00
|
|
|
_autoaway_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
2012-12-01 19:38:10 -05:00
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_ac(input, size, "/autoaway mode", autoaway_mode_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_func(input, size, "/autoaway check",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/autoaway", autoaway_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2012-10-27 20:42:26 -04:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
return NULL;
|
2012-10-27 20:42:26 -04:00
|
|
|
}
|
2012-11-13 17:23:06 -05:00
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2012-12-08 19:46:14 -05:00
|
|
|
_theme_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
2012-12-08 19:53:26 -05:00
|
|
|
if ((strncmp(input, "/theme set ", 11) == 0) && (*size > 11)) {
|
2012-12-08 19:46:14 -05:00
|
|
|
if (theme_load_ac == NULL) {
|
2013-01-24 20:11:49 -05:00
|
|
|
theme_load_ac = autocomplete_new();
|
2012-12-08 19:46:14 -05:00
|
|
|
GSList *themes = theme_list();
|
|
|
|
while (themes != NULL) {
|
2013-08-25 20:29:50 -04:00
|
|
|
autocomplete_add(theme_load_ac, themes->data);
|
2012-12-08 19:46:14 -05:00
|
|
|
themes = g_slist_next(themes);
|
|
|
|
}
|
|
|
|
g_slist_free(themes);
|
2013-01-24 20:11:49 -05:00
|
|
|
autocomplete_add(theme_load_ac, "default");
|
2013-06-02 14:56:35 -04:00
|
|
|
}
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/theme set", theme_load_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
2012-12-08 19:46:14 -05:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
result = autocomplete_param_with_ac(input, size, "/theme", theme_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2012-12-08 19:46:14 -05:00
|
|
|
}
|
|
|
|
|
2013-06-02 14:56:35 -04:00
|
|
|
static char *
|
2012-12-09 17:58:45 -05:00
|
|
|
_account_autocomplete(char *input, int *size)
|
|
|
|
{
|
2013-06-02 14:56:35 -04:00
|
|
|
char *result = NULL;
|
|
|
|
int i = 0;
|
|
|
|
gchar *account_choice[] = { "/account set", "/account show", "/account enable",
|
|
|
|
"/account disable", "/account rename" };
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(account_choice); i++) {
|
|
|
|
result = autocomplete_param_with_func(input, size, account_choice[i],
|
|
|
|
accounts_find_all);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = autocomplete_param_with_ac(input, size, "/account", account_ac);
|
|
|
|
if (result != NULL) {
|
|
|
|
return result;
|
2012-12-09 17:58:45 -05:00
|
|
|
}
|
2013-06-02 14:56:35 -04:00
|
|
|
|
|
|
|
return NULL;
|
2012-12-09 17:58:45 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 17:23:06 -05:00
|
|
|
static int
|
|
|
|
_strtoi(char *str, int *saveptr, int min, int max)
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
int val;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
val = (int)strtol(str, &ptr, 0);
|
|
|
|
if (*str == '\0' || *ptr != '\0') {
|
|
|
|
cons_show("Illegal character. Must be a number.");
|
|
|
|
return -1;
|
|
|
|
} else if (errno == ERANGE || val < min || val > max) {
|
|
|
|
cons_show("Value out of range. Must be in %d..%d.", min, max);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*saveptr = val;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|