1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/command/command.c

2198 lines
81 KiB
C
Raw Normal View History

/*
2012-02-20 20:07:38 +00:00
* command.c
*
2014-03-09 01:18:19 +00:00
* Copyright (C) 2012 - 2014 James Booth <boothj5@gmail.com>
*
2012-02-20 20:07:38 +00: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/>.
*
*/
#include <assert.h>
2013-02-02 20:55:58 +00:00
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
2012-08-26 00:50:50 +00:00
#include <string.h>
2012-04-24 00:02:22 +00:00
#include <glib.h>
#include "config.h"
2012-10-31 21:30:58 +00:00
#include "chat_session.h"
#include "command/command.h"
#include "command/commands.h"
#include "command/history.h"
2012-08-26 00:50:50 +00:00
#include "common.h"
2013-02-02 21:59:29 +00:00
#include "config/accounts.h"
#include "config/preferences.h"
#include "config/theme.h"
#include "contact.h"
#include "roster_list.h"
2013-01-13 03:14:36 +00:00
#include "jid.h"
2012-08-26 00:50:50 +00:00
#include "log.h"
2013-02-02 20:55:58 +00:00
#include "muc.h"
#ifdef HAVE_LIBOTR
2014-02-12 22:19:21 +00:00
#include "otr/otr.h"
#endif
2012-11-19 23:15:42 +00:00
#include "profanity.h"
#include "tools/autocomplete.h"
#include "tools/parser.h"
#include "tools/tinyurl.h"
2013-02-02 19:47:41 +00:00
#include "xmpp/xmpp.h"
#include "xmpp/bookmark.h"
2014-04-06 20:35:17 +00:00
#include "ui/ui.h"
2012-02-09 23:15:53 +00:00
typedef char*(*autocompleter)(char*, int*);
static void _cmd_complete_parameters(char *input, int *size);
2013-06-02 18:56:35 +00:00
static char * _sub_autocomplete(char *input, int *size);
static char * _notify_autocomplete(char *input, int *size);
static char * _theme_autocomplete(char *input, int *size);
static char * _autoaway_autocomplete(char *input, int *size);
static char * _autoconnect_autocomplete(char *input, int *size);
2013-06-02 18:56:35 +00:00
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);
static char * _bookmark_autocomplete(char *input, int *size);
2014-01-13 18:56:04 +00:00
static char * _otr_autocomplete(char *input, int *size);
static char * _connect_autocomplete(char *input, int *size);
static char * _statuses_autocomplete(char *input, int *size);
2014-01-25 01:00:51 +00:00
static char * _alias_autocomplete(char *input, int *size);
2014-03-05 20:57:59 +00:00
static char * _join_autocomplete(char *input, int *size);
2014-04-13 19:41:11 +00:00
static char * _log_autocomplete(char *input, int *size);
GHashTable *commands = NULL;
2013-06-24 23:49:29 +00:00
2012-08-22 22:57:34 +00:00
/*
2013-06-24 23:49:29 +00:00
* Command list
2012-08-22 22:57:34 +00:00
*/
2013-06-24 23:49:29 +00:00
static struct cmd_t command_defs[] =
2012-08-12 00:39:51 +00:00
{
{ "/help",
cmd_help, parse_args, 0, 1, NULL,
{ "/help [area|command]", "Get help on using Profanity.",
2013-06-25 21:16:23 +00:00
{ "/help [area|command]",
2012-11-11 23:57:02 +00:00
"-------------------------",
2013-06-25 21:16:23 +00:00
"Use with no arguments to get a help summary.",
"Supply an area to see help for commands related to specific features.",
2014-03-16 00:53:46 +00:00
"Supply a command (without the leading slash) to see help for that command.",
2012-08-14 21:50:38 +00:00
"",
2013-06-25 21:16:23 +00:00
"Example : /help commands",
"Example : /help presence",
"Example : /help who",
2013-03-10 19:17:24 +00:00
"",
2013-06-30 21:59:06 +00:00
"For more detailed help, see the user guide at http://www.profanity.im/userguide.html.",
2012-08-14 22:22:12 +00:00
NULL } } },
{ "/about",
cmd_about, parse_args, 0, 0, NULL,
{ "/about", "About Profanity.",
{ "/about",
"------",
2014-03-16 00:53:46 +00:00
"Show version and license information.",
NULL } } },
{ "/connect",
2014-01-18 01:45:05 +00:00
cmd_connect, parse_args, 1, 5, NULL,
2014-01-18 23:49:15 +00:00
{ "/connect account [server value] [port value]", "Login to a chat service.",
{ "/connect account [server value] [port value]",
"--------------------------------------------",
2012-12-22 23:48:45 +00:00
"Connect to an XMPP service using the specified account.",
2014-01-18 23:49:15 +00:00
"Use the server property to specify a server if required.",
"Change the default port (5222, or 5223 for SSL) with the port property.",
2014-01-18 23:49:15 +00:00
"An account is automatically created if one does not exist.",
"See the /account command for more details.",
2012-08-14 23:31:24 +00:00
"",
"Example: /connect myuser@gmail.com",
2014-01-18 23:49:15 +00:00
"Example: /connect myuser@mycompany.com server talk.google.com",
"Example: /connect bob@someplace port 5678",
"Example: /connect me@chatty server chatty.com port 5443",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-10-27 17:12:04 +00:00
{ "/disconnect",
cmd_disconnect, parse_args, 0, 0, NULL,
2012-12-09 18:59:11 +00:00
{ "/disconnect", "Logout of current session.",
2012-10-27 17:12:04 +00:00
{ "/disconnect",
2013-03-10 19:17:24 +00:00
"-----------",
"Disconnect from the current chat service.",
2012-10-27 17:12:04 +00:00
NULL } } },
{ "/msg",
cmd_msg, parse_args_with_freetext, 1, 2, NULL,
2013-06-30 21:59:06 +00: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.",
"Use quotes if the nickname includes spaces.",
2012-08-14 23:31:24 +00:00
"",
"Example : /msg myfriend@server.com Hey, here's a message!",
"Example : /msg otherfriend@server.com",
"Example : /msg Bob Here is a private message",
"Example : /msg \"My Friend\" Hi, how are you?",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/roster",
cmd_roster, parse_args_with_freetext, 0, 3, NULL,
2014-03-16 17:59:01 +00:00
{ "/roster [add|remove|nick|clearnick] [jid] [nickname]", "Manage your roster.",
{ "/roster [add|remove|nick|clearnick] [jid] [nickname]",
"----------------------------------------------------",
2013-06-01 23:45:40 +00:00
"View, add to, and remove from your roster.",
"Passing no arguments lists all contacts in your roster.",
2014-03-16 17:59:01 +00:00
"The 'add' command will add a new item, jid is required, nickname is optional.",
"The 'remove' command removes a contact, jid is required.",
"The 'nick' command changes a contacts nickname, both jid and nickname are required,",
"The 'clearnick' command removes the current nickname, jid is required.",
"",
2013-06-01 23:45:40 +00: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)",
"Example : /roster nick myfriend@chat.org My Friend",
2014-03-16 17:59:01 +00:00
"Example : /roster clearnick kai@server.com (clears nickname)",
NULL } } },
{ "/group",
cmd_group, parse_args_with_freetext, 0, 3, NULL,
2013-06-30 21:59:06 +00:00
{ "/group [show|add|remove] [group] [contact]", "Manage roster groups.",
{ "/group [show|add|remove] [group] [contact]",
"------------------------------------------",
"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 21:59:06 +00: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,",
"",
"Example : /group",
"Example : /group show friends",
"Example : /group add friends newfriend@server.org",
2013-06-30 21:59:06 +00:00
"Example : /group add family Brother (using contacts nickname)",
"Example : /group remove colleagues boss@work.com",
NULL } } },
2012-11-14 01:39:26 +00:00
{ "/info",
cmd_info, parse_args, 0, 1, NULL,
2013-06-30 21:59:06 +00:00
{ "/info [contact|nick]", "Show basic information about a contact, or room member.",
{ "/info [contact|nick]",
"--------------------",
2013-03-10 19:17:24 +00:00
"Show information including current subscription status and summary information for each connected resource.",
"If in a chat window the parameter is not required, the current recipient will be used.",
2013-03-10 19:17:24 +00:00
"",
2013-06-30 21:59:06 +00:00
"Example : /info mybuddy@chat.server.org",
"Example : /info kai",
NULL } } },
2013-02-17 01:04:10 +00:00
{ "/caps",
cmd_caps, parse_args, 0, 1, NULL,
{ "/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 19:17:24 +00: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-17 01:04:10 +00:00
NULL } } },
{ "/software",
cmd_software, parse_args, 0, 1, NULL,
2013-03-10 19:17:24 +00:00
{ "/software [fulljid|nick]", "Find out software version information about a contacts resource.",
{ "/software [fulljid|nick]",
"------------------------",
2013-03-10 19:17:24 +00:00
"Find out a contact, or room members software version information, if such requests are supported.",
"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 21:59:06 +00:00
"If the contact's software does not support software version requests, nothing will be displayed.",
2013-03-10 19:17:24 +00: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)",
NULL } } },
{ "/status",
cmd_status, parse_args, 0, 1, NULL,
2013-06-30 21:59:06 +00:00
{ "/status [contact|nick]", "Find out a contacts presence information.",
{ "/status [contact|nick]",
"----------------------",
"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 19:17:24 +00:00
"",
2013-06-30 21:59:06 +00:00
"Example : /status buddy@server.com",
"Example : /status jon",
NULL } } },
2012-11-04 01:27:01 +00:00
{ "/join",
2014-03-05 17:13:42 +00:00
cmd_join, parse_args, 1, 5, NULL,
{ "/join room[@server] [nick value] [password value]", "Join a chat room.",
{ "/join room[@server] [nick value] [password value]",
"-------------------------------------------------",
2012-11-04 01:27:01 +00:00
"Join a chat room at the conference server.",
2012-12-09 18:59:11 +00:00
"If nick is specified you will join with this nickname.",
"Otherwise the account preference 'muc.nick' will be used which by default 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 18:59:11 +00:00
"If the room doesn't exist, and the server allows it, a new one will be created.",
2012-11-04 01:27:01 +00:00
"",
"Example : /join jdev@conference.jabber.org",
2014-03-05 17:13:42 +00:00
"Example : /join jdev@conference.jabber.org nick mynick",
"Example : /join private@conference.jabber.org nick mynick password mypassword",
"Example : /join jdev (as user@jabber.org will join jdev@conference.jabber.org)",
2012-11-04 01:27:01 +00:00
NULL } } },
2013-05-30 21:48:56 +00:00
{ "/leave",
cmd_leave, parse_args, 0, 0, NULL,
2013-05-30 21:48:56 +00:00
{ "/leave", "Leave a chat room.",
{ "/leave",
"------",
"Leave the current chat room.",
NULL } } },
{ "/invite",
cmd_invite, parse_args_with_freetext, 1, 2, NULL,
2013-06-30 21:59:06 +00:00
{ "/invite contact [message]", "Invite contact to chat room.",
{ "/invite contact [message]",
"-------------------------",
"Send a direct invite to the specified contact to the current chat room.",
2013-07-20 22:47:57 +00:00
"If a message is supplied it will be sent as the reason for the invite.",
NULL } } },
{ "/invites",
cmd_invites, parse_args_with_freetext, 0, 0, NULL,
{ "/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",
cmd_decline, parse_args_with_freetext, 1, 1, NULL,
{ "/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 } } },
{ "/rooms",
cmd_rooms, parse_args, 0, 1, NULL,
2013-03-14 20:50:09 +00:00
{ "/rooms [conference-service]", "List chat rooms.",
{ "/rooms [conference-service]",
"---------------------------",
"List the chat rooms available at the specified conference service",
"If no argument is supplied, the account preference 'muc.service' is used, which is 'conference.<domain-part>' by default.",
"",
"Example : /rooms conference.jabber.org",
"Example : /rooms (if logged in as me@server.org, is equivalent to /rooms conference.server.org)",
NULL } } },
{ "/bookmark",
cmd_bookmark, parse_args, 0, 8, NULL,
{ "/bookmark [list|add|update|remove|join] [room@server] [nick value] [password value] [autojoin on|off]", "Manage bookmarks.",
{ "/bookmark [list|add|update|remove|join] [room@server] [nick value] [password value] [autojoin on|off]",
2014-05-17 22:20:23 +00:00
"---------------------------------------------------------------------------------------------------",
"Manage bookmarks.",
"list: List all bookmarks.",
"add: Add a bookmark for room@server with the following optional properties:",
" nick: Nickname used in the chat room",
" password: Password for private rooms, note this may be stored in plaintext on your server",
" autojoin: Whether to join the room automatically on login \"on\" or \"off\".",
"update: Update any of the above properties associated with the bookmark.",
"remove: Remove the bookmark for room@server.",
"join: Join room@server using the properties associated with the bookmark.",
"When in a chat room, the /bookmark command with no arguments will bookmark the current room with the current settings, and set autojoin to \"on\".",
NULL } } },
2013-03-14 20:50:09 +00:00
{ "/disco",
cmd_disco, parse_args, 1, 2, NULL,
2013-03-14 20:50:09 +00: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 18:36:17 +00:00
{ "/nick",
cmd_nick, parse_args_with_freetext, 1, 1, NULL,
2012-12-09 18:59:11 +00: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 18:36:17 +00:00
"This command is only valid when called within a chat room window.",
"",
"Example : /nick kai hansen",
"Example : /nick bob",
NULL } } },
{ "/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 } } },
{ "/wins",
2014-04-24 20:50:59 +00:00
cmd_wins, parse_args, 0, 3, NULL,
{ "/wins [tidy|prune|swap] [source] [target]", "List or tidy active windows.",
2014-04-24 22:08:27 +00:00
{ "/wins [tidy|prune|swap] [source] [target]",
"-----------------------------------------",
"Passing no argument will list all currently active windows and information about their usage.",
2014-04-24 20:50:59 +00:00
"tidy : Shuffle windows so there are no gaps.",
"prune : Close all windows with no unread messages, and then tidy as above.",
2014-04-24 22:08:27 +00:00
"swap source target : Swap windows, target may be an empty position.",
NULL } } },
2012-10-28 18:51:13 +00:00
{ "/sub",
cmd_sub, parse_args, 1, 2, NULL,
2012-12-09 18:59:11 +00:00
{ "/sub command [jid]", "Manage subscriptions.",
{ "/sub command [jid]",
"------------------",
"command : One of the following,",
2012-11-28 00:36:51 +00:00
"request : Send a subscription request to the user to be informed of their",
" : presence.",
2012-11-28 02:02:59 +00:00
"allow : Approve a contact's subscription reqeust to see your presence.",
2012-11-28 00:36:51 +00: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 18:51:13 +00:00
"",
2012-11-28 02:02:59 +00: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 12:00:21 +00:00
"",
2012-11-27 23:43:32 +00:00
"Example: /sub request myfriend@jabber.org",
"Example: /sub allow myfriend@jabber.org",
"Example: /sub request (whilst in chat with contact)",
2012-11-28 00:36:51 +00:00
"Example: /sub sent",
2012-10-28 18:51:13 +00:00
NULL } } },
{ "/tiny",
cmd_tiny, parse_args, 1, 1, NULL,
2012-08-14 21:50:38 +00:00
{ "/tiny url", "Send url as tinyurl in current chat.",
2012-08-14 23:31:24 +00:00
{ "/tiny url",
"---------",
"Send the url as a tiny url.",
"",
2013-06-30 21:59:06 +00:00
"Example : /tiny http://www.profanity.im",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/duck",
cmd_duck, parse_args_with_freetext, 1, 1, NULL,
{ "/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 } } },
{ "/who",
cmd_who, parse_args, 0, 2, NULL,
2013-06-02 02:33:49 +00:00
{ "/who [status] [group]", "Show contacts/room participants with chosen status.",
{ "/who [status] [group]",
"---------------------",
"Show contacts with the specified status, no status shows all contacts.",
"Possible statuses are: online, offline, away, dnd, xa, chat, available, unavailable.",
2013-06-02 02:33:49 +00:00
"The groups argument will show only contacts in that group.",
2013-01-17 23:05:23 +00:00
"If in a chat room, the participants with the supplied status are displayed.",
"",
2012-12-09 18:59:11 +00: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-02 02:33:49 +00:00
"any : Contacts with any status (same as calling with no argument.",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/close",
cmd_close, parse_args, 0, 1, NULL,
2013-06-24 23:49:29 +00:00
{ "/close [win|read|all]", "Close windows.",
{ "/close [win|read|all]",
"---------------------",
"Passing no argument will close the current window.",
"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.",
"The console window cannot be closed.",
2012-11-08 00:29:52 +00:00
"If in a chat room, you will leave the room.",
2012-08-14 22:22:12 +00:00
NULL } } },
{ "/clear",
cmd_clear, parse_args, 0, 0, NULL,
{ "/clear", "Clear current window.",
{ "/clear",
"------",
"Clear the current window.",
NULL } } },
{ "/quit",
cmd_quit, parse_args, 0, 0, NULL,
2012-08-14 21:50:38 +00:00
{ "/quit", "Quit Profanity.",
2012-08-14 23:31:24 +00:00
{ "/quit",
"-----",
2012-12-09 18:59:11 +00:00
"Logout of any current session, and quit Profanity.",
2013-06-24 23:49:29 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/beep",
cmd_beep, parse_args, 1, 1, &cons_beep_setting,
2012-10-27 18:46:48 +00:00
{ "/beep on|off", "Terminal beep on new messages.",
2012-08-14 23:31:24 +00:00
{ "/beep on|off",
"------------",
"Switch the terminal bell on or off.",
"The bell will sound when incoming messages are received.",
2012-12-09 18:59:11 +00:00
"If the terminal does not support sounds, it may attempt to flash the screen instead.",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/notify",
2014-05-24 15:46:05 +00:00
cmd_notify, parse_args, 2, 3, &cons_notify_setting,
{ "/notify [type value]|[type setting value]", "Control various desktop noficiations.",
{ "/notify [type value]|[type setting value]",
"-----------------------------------------",
"Settings for various desktop notifications where type is one of:",
2014-05-24 15:46:05 +00:00
"message : Notificaitons for regular messages.",
" : on|off",
"message current : Whether messages in the current window trigger notifications.",
" : on|off",
"message text : Show message text in message notifications.",
" : on|off",
2014-05-24 15:46:05 +00:00
"room : Notificaitons for chat room messages.",
" : on|off|mention",
"room current : Whether chat room messages in the current window trigger notifications.",
" : on|off",
"room text : Show message test in chat room message notifications.",
" : on|off",
2014-05-24 15:46:05 +00:00
"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",
"typing current : Whether typing notifications are triggerd for the current window.",
" : on|off",
2014-05-24 15:46:05 +00:00
"invite : Notifications for chat room invites.",
" : on|off",
"sub : Notifications for subscription requests.",
" : on|off",
"",
"Example : /notify message on (enable message notifications)",
"Example : /notify message text on (show message text in notifications)",
"Example : /notify room mention (enable chat room notifications only on mention)",
"Example : /notify room current off (disable room message notifications when window visible)",
"Example : /notify room text off (do not show message text in chat room notifications)",
"Example : /notify remind 10 (remind every 10 seconds)",
"Example : /notify remind 0 (switch off reminders)",
"Example : /notify typing on (enable typing notifications)",
"Example : /notify invite on (enable chat room invite notifications)",
NULL } } },
{ "/flash",
cmd_flash, parse_args, 1, 1, &cons_flash_setting,
2012-10-27 18:46:48 +00:00
{ "/flash on|off", "Terminal flash on new messages.",
2012-08-14 23:31:24 +00:00
{ "/flash on|off",
"-------------",
"Make the terminal flash when incoming messages are received.",
2012-12-09 18:59:11 +00: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 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/intype",
cmd_intype, parse_args, 1, 1, &cons_intype_setting,
{ "/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-02 02:21:59 +00:00
{ "/splash",
cmd_splash, parse_args, 1, 1, &cons_splash_setting,
2013-03-10 19:17:24 +00:00
{ "/splash on|off", "Splash logo on startup and /about command.",
2012-12-02 02:21:59 +00:00
{ "/splash on|off",
"--------------",
2013-03-10 19:17:24 +00:00
"Switch on or off the ascii logo on start up and when the /about command is called.",
2012-08-14 22:22:12 +00:00
NULL } } },
{ "/autoconnect",
cmd_autoconnect, parse_args, 1, 2, &cons_autoconnect_setting,
{ "/autoconnect set|off [account]", "Set account to autoconnect with.",
{ "/autoconnect set|off [account]",
"------------------------------",
"Enable or disable autoconnect on start up.",
"The setting can be overridden by the -a (--account) command line option.",
"",
"Example: /autoconnect set jc@stuntteam.org (autoconnect with the specified account).",
"Example: /autoconnect off (disable autoconnect).",
NULL } } },
2012-10-24 00:35:36 +00:00
{ "/vercheck",
cmd_vercheck, parse_args, 0, 1, NULL,
2012-10-24 00:35:36 +00:00
{ "/vercheck [on|off]", "Check for a new release.",
{ "/vercheck [on|off]",
"------------------",
"Without a parameter will check for a new release.",
2012-12-09 18:59:11 +00:00
"Switching on or off will enable/disable a version check when Profanity starts, and each time the /about command is run.",
2012-10-24 00:35:36 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
2012-12-02 20:53:45 +00:00
{ "/titlebar",
cmd_titlebar, parse_args, 1, 1, &cons_titlebar_setting,
{ "/titlebar on|off", "Show information in the window title bar.",
{ "/titlebar on|off",
"----------------",
"Show information in the window title bar.",
NULL } } },
{ "/mouse",
cmd_mouse, parse_args, 1, 1, &cons_mouse_setting,
{ "/mouse on|off", "Use profanity mouse handling.",
{ "/mouse on|off",
"-------------",
2013-03-10 19:17:24 +00:00
"If set to 'on', profanity will handle mouse actions, which enables scrolling the main window with the mouse wheel.",
"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 20:04:51 +00: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'.",
NULL } } },
2014-01-23 19:56:33 +00:00
{ "/alias",
2014-01-23 23:53:20 +00:00
cmd_alias, parse_args_with_freetext, 1, 3, NULL,
2014-01-23 19:56:33 +00:00
{ "/alias add|remove|list [name value]", "Add your own command aliases.",
{ "/alias add|remove|list [name value]",
"-----------------------------------",
"Add, remove or show command aliases.",
2014-01-25 00:50:07 +00:00
"The alias will be available as a command",
"Example : /alias add friends /who online friends",
"Example : /alias add q /quit",
"Example : /alias a /away \"I'm in a meeting.\"",
"Example : /alias remove q",
"Example : /alias list",
"The above aliases will be available as /friends and /a",
2014-01-23 19:56:33 +00:00
NULL } } },
{ "/chlog",
cmd_chlog, parse_args, 1, 1, &cons_chlog_setting,
{ "/chlog on|off", "Chat logging to file.",
2012-08-14 23:31:24 +00:00
{ "/chlog on|off",
"-------------",
"Switch chat logging on or off.",
2013-03-10 19:17:24 +00:00
"This setting will be enabled if /history is set to on.",
"When disabling this option, /history will also be disabled.",
2013-05-04 23:16:10 +00:00
"See the /grlog setting for enabling logging of chat room (groupchat) messages.",
NULL } } },
{ "/grlog",
cmd_grlog, parse_args, 1, 1, &cons_grlog_setting,
{ "/grlog on|off", "Chat logging of chat rooms to file.",
2013-05-04 23:16:10 +00:00
{ "/grlog on|off",
"-------------",
"Switch chat room logging on or off.",
"See the /chlog setting for enabling logging of one to one chat.",
NULL } } },
{ "/states",
cmd_states, parse_args, 1, 1, &cons_states_setting,
{ "/states on|off", "Send chat states during a chat session.",
{ "/states on|off",
"--------------",
"Sending of chat state notifications during chat sessions.",
2013-03-10 19:17:24 +00:00
"Such as whether you have become inactive, or have closed the chat window.",
2012-10-14 17:26:08 +00:00
NULL } } },
2013-09-21 21:33:43 +00:00
{ "/otr",
cmd_otr, parse_args, 1, 3, NULL,
{ "/otr gen|myfp|theirfp|start|end|trust|untrust|log|warn|libver|policy|secret|question|answer", "Off The Record encryption commands.",
{ "/otr gen|myfp|theirfp|start|end|trust|untrust|log|warn|libver|policy|secret|question|answer",
"-------------------------------------------------------------------------------------------",
"gen - Generate your private key.",
"myfp - Show your fingerprint.",
"theirfp - Show contacts fingerprint.",
"start [contact] - Start an OTR session with the contact, or the current recipient if in a chat window and no argument supplied.",
"end - End the current OTR session,",
2014-01-12 01:20:22 +00:00
"trust - Indicate that you have verified the contact's fingerprint.",
"untrust - Indicate the the contact's fingerprint is not verified,",
2014-01-13 20:17:45 +00:00
"log - How to log OTR messages, options are 'on', 'off' and 'redact', with redaction being the default.",
"warn - Show when unencrypted messaging is being used in the title bar, options are 'on' and 'off' with 'on' being the default.",
2014-02-11 23:19:09 +00:00
"libver - Show which version of the libotr library is being used.",
"policy - manual, opportunistic or always.",
"secret [secret]- Verify a contacts identity using a shared secret.",
"question [question] [answer] - Verify a contacts identity using a question and expected anwser, if the question has spaces, surround with double quotes.",
2014-05-18 01:19:30 +00:00
"answer [answer] - Respond to a question answer verification request with your answer.",
2013-09-21 21:33:43 +00:00
NULL } } },
{ "/outtype",
cmd_outtype, parse_args, 1, 1, &cons_outtype_setting,
{ "/outtype on|off", "Send typing notification to recipient.",
{ "/outtype on|off",
2013-03-10 19:17:24 +00:00
"---------------",
"Send an indication that you are typing to the chat recipient.",
"Chat states (/states) will be enabled if this setting is set.",
NULL } } },
{ "/gone",
cmd_gone, parse_args, 1, 1, &cons_gone_setting,
2012-12-19 23:33:10 +00:00
{ "/gone minutes", "Send 'gone' state to recipient after a period.",
{ "/gone minutes",
2013-03-10 19:17:24 +00: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 19:17:24 +00:00
"A value of 0 will disable sending this chat state.",
"Chat states (/states) will be enabled if this setting is set.",
NULL } } },
{ "/history",
cmd_history, parse_args, 1, 1, &cons_history_setting,
2012-10-27 18:46:48 +00:00
{ "/history on|off", "Chat history in message windows.",
2012-10-14 17:26:08 +00:00
{ "/history on|off",
"---------------",
2013-06-30 21:59:06 +00:00
"Switch chat history on or off, /chlog will automatically be enabled when this setting is on.",
2012-10-14 17:26:08 +00:00
"When history is enabled, previous messages are shown in chat windows.",
NULL } } },
{ "/log",
2014-04-13 21:20:15 +00:00
cmd_log, parse_args, 1, 2, &cons_log_setting,
2014-04-13 19:41:11 +00:00
{ "/log [property] [value]", "Manage system logging settings.",
{ "/log [property] [value]",
"-----------------------",
2014-04-13 21:20:15 +00:00
"where : Show the current log file location.",
2014-04-13 19:41:11 +00:00
"Property may be one of:",
2014-04-13 20:56:35 +00:00
"rotate : Rotate log, accepts 'on' or 'off', defaults to 'on'.",
"maxsize : With rotate enabled, specifies the max log size, defaults to 1048580 (1MB).",
"shared : Share logs between all instances, accepts 'on' or 'off', defaults to 'on'.",
NULL } } },
{ "/reconnect",
cmd_reconnect, parse_args, 1, 1, &cons_reconnect_setting,
{ "/reconnect seconds", "Set reconnect interval.",
{ "/reconnect seconds",
2013-03-10 19:17:24 +00:00
"------------------",
"Set the reconnect attempt interval in seconds for when the connection is lost.",
2013-06-30 21:59:06 +00:00
"A value of 0 will switch off reconnect attempts.",
NULL } } },
{ "/autoping",
cmd_autoping, parse_args, 1, 1, &cons_autoping_setting,
{ "/autoping seconds", "Server ping interval.",
{ "/autoping seconds",
2012-12-09 18:59:11 +00: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 23:34:14 +00:00
{ "/autoaway",
cmd_autoaway, parse_args_with_freetext, 2, 2, &cons_autoaway_setting,
2012-11-30 23:34:14 +00: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.",
"message : Optional message to send with the presence change.",
" : off - Disable message (default).",
2012-11-30 23:34:14 +00: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 } } },
{ "/priority",
cmd_priority, parse_args, 1, 1, &cons_priority_setting,
{ "/priority value", "Set priority for the current account.",
2012-12-09 18:59:11 +00:00
{ "/priority value",
"---------------",
"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.",
"value : Number between -128 and 127. Default value is 0.",
NULL } } },
{ "/account",
cmd_account, parse_args, 0, 4, NULL,
{ "/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'.",
"clear account property value : Clear 'property' of 'account'.",
"",
"When connected, the /account command can be called with no arguments, to show current account settings.",
"",
"The set command may use one of the following for 'property'.",
"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.",
"port : The port used for connecting if not the default (5222, or 5223 for SSL).",
"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.",
"password : Password for the account, note this is currently stored in plaintext if set.",
"muc : The default MUC chat service to use.",
"nick : The default nickname to use when joining chat rooms.",
2014-05-11 14:26:45 +00:00
"otr : Override global OTR policy for this account: manual, opportunistic or always.",
"",
"The clear command may use one of the following for 'property'.",
"password : Clears the password for the account.",
"",
"Example : /account add work",
" : /account set work jid me@chatty",
" : /account set work server talk.chat.com",
" : /account set work port 5111",
" : /account set work resource desktop",
" : /account set work muc chatservice.mycompany.com",
" : /account set work nick dennis",
" : /account set work status dnd",
" : /account set work dnd -1",
" : /account set work online 10",
" : /account rename work gtalk",
NULL } } },
{ "/prefs",
cmd_prefs, parse_args, 0, 1, NULL,
{ "/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",
cmd_theme, parse_args, 1, 2, &cons_theme_setting,
{ "/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 } } },
{ "/statuses",
2014-01-19 01:25:04 +00:00
cmd_statuses, parse_args, 2, 2, &cons_statuses_setting,
{ "/statuses console|chat|muc setting", "Set preferences for presence change messages.",
{ "/statuses console|chat|muc setting",
"----------------------------------",
"Configure how presence changes are displayed in various windows.",
"Settings:",
" all - Show all presence changes.",
" online - Show only online/offline changes.",
" none - Don't show any presence changes.",
"The default is 'all' for all windows.",
2013-06-24 23:49:29 +00:00
NULL } } },
2014-04-15 12:16:32 +00:00
{ "/xmlconsole",
cmd_xmlconsole, parse_args, 0, 0, NULL,
{ "/xmlconsole", "Open the XML console",
{ "/xmlconsole",
"-----------",
"Open the XML console to view incoming and outgoing XMPP traffic.",
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/away",
cmd_away, parse_args_with_freetext, 0, 1, NULL,
2012-08-14 21:50:38 +00:00
{ "/away [msg]", "Set status to away.",
2012-08-14 23:31:24 +00:00
{ "/away [msg]",
"-----------",
2012-12-09 18:59:11 +00:00
"Set your status to 'away' with the optional message.",
2012-08-14 23:31:24 +00:00
"Your current status can be found in the top right of the screen.",
"",
"Example : /away Gone for lunch",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/chat",
cmd_chat, parse_args_with_freetext, 0, 1, NULL,
2012-08-14 21:50:38 +00:00
{ "/chat [msg]", "Set status to chat (available for chat).",
2012-08-14 23:31:24 +00:00
{ "/chat [msg]",
"-----------",
2012-12-09 18:59:11 +00:00
"Set your status to 'chat', meaning 'available for chat', with the optional message.",
2012-08-14 23:31:24 +00:00
"Your current status can be found in the top right of the screen.",
"",
"Example : /chat Please talk to me!",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/dnd",
cmd_dnd, parse_args_with_freetext, 0, 1, NULL,
{ "/dnd [msg]", "Set status to dnd (do not disturb).",
2012-08-14 23:31:24 +00:00
{ "/dnd [msg]",
"----------",
2012-12-09 18:59:11 +00:00
"Set your status to 'dnd', meaning 'do not disturb', with the optional message.",
2012-08-14 23:31:24 +00:00
"Your current status can be found in the top right of the screen.",
"",
"Example : /dnd I'm in the zone",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/online",
cmd_online, parse_args_with_freetext, 0, 1, NULL,
2012-08-14 21:50:38 +00:00
{ "/online [msg]", "Set status to online.",
2012-08-14 23:31:24 +00:00
{ "/online [msg]",
"-------------",
2012-12-09 18:59:11 +00:00
"Set your status to 'online' with the optional message.",
2012-08-14 23:31:24 +00:00
"Your current status can be found in the top right of the screen.",
"",
"Example : /online Up the Irons!",
2012-08-14 22:22:12 +00:00
NULL } } },
2012-08-12 00:39:51 +00:00
{ "/xa",
cmd_xa, parse_args_with_freetext, 0, 1, NULL,
2012-08-14 21:50:38 +00:00
{ "/xa [msg]", "Set status to xa (extended away).",
2012-08-14 23:31:24 +00:00
{ "/xa [msg]",
"---------",
2012-12-09 18:59:11 +00:00
"Set your status to 'xa', meaning 'extended away', with the optional message.",
2012-08-14 23:31:24 +00: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 } } },
};
static Autocomplete commands_ac;
static Autocomplete who_ac;
static Autocomplete help_ac;
static Autocomplete notify_ac;
2014-05-24 15:46:05 +00:00
static Autocomplete notify_room_ac;
static Autocomplete notify_message_ac;
static Autocomplete notify_typing_ac;
static Autocomplete prefs_ac;
static Autocomplete sub_ac;
static Autocomplete log_ac;
static Autocomplete autoaway_ac;
static Autocomplete autoaway_mode_ac;
static Autocomplete autoconnect_ac;
static Autocomplete titlebar_ac;
static Autocomplete theme_ac;
static Autocomplete theme_load_ac;
static Autocomplete account_ac;
static Autocomplete account_set_ac;
static Autocomplete account_clear_ac;
2013-03-14 20:50:09 +00:00
static Autocomplete disco_ac;
2013-05-16 21:49:35 +00:00
static Autocomplete close_ac;
static Autocomplete wins_ac;
2013-05-19 01:30:03 +00:00
static Autocomplete roster_ac;
static Autocomplete group_ac;
static Autocomplete bookmark_ac;
static Autocomplete bookmark_property_ac;
static Autocomplete otr_ac;
2014-01-13 20:17:45 +00:00
static Autocomplete otr_log_ac;
2014-04-22 23:01:18 +00:00
static Autocomplete otr_policy_ac;
static Autocomplete connect_property_ac;
static Autocomplete statuses_ac;
static Autocomplete statuses_setting_ac;
2014-01-23 19:56:33 +00:00
static Autocomplete alias_ac;
2014-01-25 01:00:51 +00:00
static Autocomplete aliases_ac;
2014-03-05 20:57:59 +00:00
static Autocomplete join_property_ac;
2012-08-22 22:57:34 +00:00
/*
* Initialise command autocompleter and history
*/
2012-07-24 22:19:48 +00:00
void
2012-08-22 23:30:11 +00:00
cmd_init(void)
2012-04-30 23:24:31 +00:00
{
log_info("Initialising commands");
2012-10-28 00:47:57 +00:00
commands_ac = autocomplete_new();
2014-01-25 01:00:51 +00:00
aliases_ac = autocomplete_new();
2013-06-24 23:49:29 +00:00
help_ac = autocomplete_new();
2013-08-26 00:29:50 +00: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 23:49:29 +00: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-26 00:29:50 +00:00
autocomplete_add(commands_ac, pcmd->cmd);
autocomplete_add(help_ac, pcmd->cmd+1);
2013-06-24 23:49:29 +00:00
}
2014-01-23 23:53:20 +00:00
// load aliases
GList *aliases = prefs_get_aliases();
GList *curr = aliases;
while (curr != NULL) {
ProfAlias *alias = curr->data;
GString *ac_alias = g_string_new("/");
g_string_append(ac_alias, alias->name);
autocomplete_add(commands_ac, ac_alias->str);
2014-01-25 01:00:51 +00:00
autocomplete_add(aliases_ac, alias->name);
2014-01-23 23:53:20 +00:00
g_string_free(ac_alias, TRUE);
curr = g_list_next(curr);
}
2014-06-18 20:36:09 +00:00
prefs_free_aliases(aliases);
2014-01-23 23:53:20 +00:00
prefs_ac = autocomplete_new();
2013-08-26 00:29:50 +00: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");
2014-05-11 12:32:59 +00:00
autocomplete_add(prefs_ac, "otr");
notify_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(notify_ac, "message");
autocomplete_add(notify_ac, "room");
2013-08-26 00:29:50 +00:00
autocomplete_add(notify_ac, "typing");
autocomplete_add(notify_ac, "remind");
autocomplete_add(notify_ac, "invite");
autocomplete_add(notify_ac, "sub");
notify_message_ac = autocomplete_new();
autocomplete_add(notify_message_ac, "on");
autocomplete_add(notify_message_ac, "off");
autocomplete_add(notify_message_ac, "current");
autocomplete_add(notify_message_ac, "text");
2014-05-24 15:46:05 +00:00
notify_room_ac = autocomplete_new();
autocomplete_add(notify_room_ac, "on");
autocomplete_add(notify_room_ac, "off");
autocomplete_add(notify_room_ac, "mention");
autocomplete_add(notify_room_ac, "current");
autocomplete_add(notify_room_ac, "text");
2014-05-24 15:46:05 +00:00
notify_typing_ac = autocomplete_new();
autocomplete_add(notify_typing_ac, "on");
autocomplete_add(notify_typing_ac, "off");
autocomplete_add(notify_typing_ac, "current");
sub_ac = autocomplete_new();
2013-08-26 00:29:50 +00: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");
titlebar_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(titlebar_ac, "version");
log_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(log_ac, "maxsize");
2014-04-13 19:41:11 +00:00
autocomplete_add(log_ac, "rotate");
2014-04-13 20:56:35 +00:00
autocomplete_add(log_ac, "shared");
2014-04-13 21:20:15 +00:00
autocomplete_add(log_ac, "where");
autoaway_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(autoaway_ac, "mode");
autocomplete_add(autoaway_ac, "time");
autocomplete_add(autoaway_ac, "message");
autocomplete_add(autoaway_ac, "check");
autoaway_mode_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(autoaway_mode_ac, "away");
autocomplete_add(autoaway_mode_ac, "idle");
autocomplete_add(autoaway_mode_ac, "off");
autoconnect_ac = autocomplete_new();
autocomplete_add(autoconnect_ac, "set");
autocomplete_add(autoconnect_ac, "off");
theme_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(theme_ac, "list");
autocomplete_add(theme_ac, "set");
2013-03-14 20:50:09 +00:00
disco_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(disco_ac, "info");
autocomplete_add(disco_ac, "items");
2013-03-14 20:50:09 +00:00
account_ac = autocomplete_new();
2013-08-26 00:29:50 +00: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");
autocomplete_add(account_ac, "clear");
2012-12-09 22:58:45 +00:00
account_set_ac = autocomplete_new();
autocomplete_add(account_set_ac, "jid");
autocomplete_add(account_set_ac, "server");
autocomplete_add(account_set_ac, "port");
autocomplete_add(account_set_ac, "status");
autocomplete_add(account_set_ac, "online");
autocomplete_add(account_set_ac, "chat");
autocomplete_add(account_set_ac, "away");
autocomplete_add(account_set_ac, "xa");
autocomplete_add(account_set_ac, "dnd");
autocomplete_add(account_set_ac, "resource");
autocomplete_add(account_set_ac, "password");
autocomplete_add(account_set_ac, "muc");
autocomplete_add(account_set_ac, "nick");
autocomplete_add(account_set_ac, "otr");
account_clear_ac = autocomplete_new();
autocomplete_add(account_clear_ac, "password");
2014-05-11 14:32:38 +00:00
autocomplete_add(account_clear_ac, "otr");
2013-05-16 21:49:35 +00:00
close_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(close_ac, "read");
autocomplete_add(close_ac, "all");
2013-05-16 21:49:35 +00:00
wins_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(wins_ac, "prune");
autocomplete_add(wins_ac, "tidy");
2014-04-24 20:50:59 +00:00
autocomplete_add(wins_ac, "swap");
2013-05-19 01:30:03 +00:00
roster_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(roster_ac, "add");
autocomplete_add(roster_ac, "nick");
2014-03-16 17:53:41 +00:00
autocomplete_add(roster_ac, "clearnick");
2013-08-26 00:29:50 +00:00
autocomplete_add(roster_ac, "remove");
2013-05-19 01:30:03 +00:00
group_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(group_ac, "show");
autocomplete_add(group_ac, "add");
autocomplete_add(group_ac, "remove");
2012-12-09 00:46:14 +00:00
theme_load_ac = NULL;
2013-06-24 23:49:29 +00:00
who_ac = autocomplete_new();
2013-08-26 00:29:50 +00: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");
bookmark_ac = autocomplete_new();
2013-08-26 00:29:50 +00:00
autocomplete_add(bookmark_ac, "list");
autocomplete_add(bookmark_ac, "add");
autocomplete_add(bookmark_ac, "update");
2013-08-26 00:29:50 +00:00
autocomplete_add(bookmark_ac, "remove");
autocomplete_add(bookmark_ac, "join");
bookmark_property_ac = autocomplete_new();
autocomplete_add(bookmark_property_ac, "nick");
autocomplete_add(bookmark_property_ac, "password");
autocomplete_add(bookmark_property_ac, "autojoin");
otr_ac = autocomplete_new();
autocomplete_add(otr_ac, "gen");
autocomplete_add(otr_ac, "start");
autocomplete_add(otr_ac, "end");
autocomplete_add(otr_ac, "myfp");
autocomplete_add(otr_ac, "theirfp");
2014-01-12 01:20:22 +00:00
autocomplete_add(otr_ac, "trust");
autocomplete_add(otr_ac, "untrust");
2014-04-26 21:08:53 +00:00
autocomplete_add(otr_ac, "secret");
2014-01-13 20:17:45 +00:00
autocomplete_add(otr_ac, "log");
autocomplete_add(otr_ac, "warn");
2014-02-11 23:19:09 +00:00
autocomplete_add(otr_ac, "libver");
2014-04-22 23:01:18 +00:00
autocomplete_add(otr_ac, "policy");
autocomplete_add(otr_ac, "question");
autocomplete_add(otr_ac, "answer");
2014-01-13 20:17:45 +00:00
otr_log_ac = autocomplete_new();
autocomplete_add(otr_log_ac, "on");
autocomplete_add(otr_log_ac, "off");
autocomplete_add(otr_log_ac, "redact");
2014-04-22 23:01:18 +00:00
otr_policy_ac = autocomplete_new();
autocomplete_add(otr_policy_ac, "manual");
autocomplete_add(otr_policy_ac, "opportunistic");
autocomplete_add(otr_policy_ac, "always");
connect_property_ac = autocomplete_new();
autocomplete_add(connect_property_ac, "server");
autocomplete_add(connect_property_ac, "port");
2014-03-05 20:57:59 +00:00
join_property_ac = autocomplete_new();
autocomplete_add(join_property_ac, "nick");
autocomplete_add(join_property_ac, "password");
2014-03-05 20:57:59 +00:00
statuses_ac = autocomplete_new();
autocomplete_add(statuses_ac, "console");
autocomplete_add(statuses_ac, "chat");
autocomplete_add(statuses_ac, "muc");
statuses_setting_ac = autocomplete_new();
autocomplete_add(statuses_setting_ac, "all");
autocomplete_add(statuses_setting_ac, "online");
autocomplete_add(statuses_setting_ac, "none");
2014-01-23 19:56:33 +00:00
alias_ac = autocomplete_new();
autocomplete_add(alias_ac, "add");
autocomplete_add(alias_ac, "remove");
autocomplete_add(alias_ac, "list");
2013-01-28 01:35:11 +00:00
cmd_history_init();
2012-04-30 23:24:31 +00:00
}
2012-10-21 23:29:39 +00:00
void
cmd_uninit(void)
2012-10-21 23:29:39 +00:00
{
autocomplete_free(commands_ac);
autocomplete_free(who_ac);
autocomplete_free(help_ac);
autocomplete_free(notify_ac);
autocomplete_free(notify_message_ac);
2014-05-24 15:46:05 +00:00
autocomplete_free(notify_room_ac);
autocomplete_free(notify_typing_ac);
autocomplete_free(sub_ac);
2013-08-23 21:30:54 +00:00
autocomplete_free(titlebar_ac);
autocomplete_free(log_ac);
autocomplete_free(prefs_ac);
autocomplete_free(autoaway_ac);
autocomplete_free(autoaway_mode_ac);
autocomplete_free(autoconnect_ac);
autocomplete_free(theme_ac);
2012-12-09 00:46:14 +00:00
if (theme_load_ac != NULL) {
autocomplete_free(theme_load_ac);
2012-12-09 00:46:14 +00:00
}
autocomplete_free(account_ac);
autocomplete_free(account_set_ac);
autocomplete_free(account_clear_ac);
2013-03-14 20:50:09 +00:00
autocomplete_free(disco_ac);
2013-05-16 21:49:35 +00:00
autocomplete_free(close_ac);
autocomplete_free(wins_ac);
2013-05-19 01:30:03 +00:00
autocomplete_free(roster_ac);
autocomplete_free(group_ac);
autocomplete_free(bookmark_ac);
autocomplete_free(bookmark_property_ac);
autocomplete_free(otr_ac);
2014-01-13 20:17:45 +00:00
autocomplete_free(otr_log_ac);
2014-04-22 23:01:18 +00:00
autocomplete_free(otr_policy_ac);
autocomplete_free(connect_property_ac);
autocomplete_free(statuses_ac);
autocomplete_free(statuses_setting_ac);
2014-01-23 19:56:33 +00:00
autocomplete_free(alias_ac);
2014-01-25 01:00:51 +00:00
autocomplete_free(aliases_ac);
2014-03-05 20:57:59 +00:00
autocomplete_free(join_property_ac);
2012-10-21 23:29:39 +00:00
}
gboolean
cmd_exists(char *cmd)
{
if (commands_ac == NULL) {
return FALSE;
} else {
return autocomplete_contains(commands_ac, cmd);
}
}
2014-01-23 23:53:20 +00:00
void
cmd_autocomplete_add(char *value)
{
if (commands_ac != NULL) {
autocomplete_add(commands_ac, value);
}
}
void
cmd_autocomplete_remove(char *value)
{
if (commands_ac != NULL) {
autocomplete_remove(commands_ac, value);
}
}
2014-01-25 01:00:51 +00:00
void
cmd_alias_add(char *value)
{
if (aliases_ac != NULL) {
autocomplete_add(aliases_ac, value);
}
}
void
cmd_alias_remove(char *value)
{
if (aliases_ac != NULL) {
autocomplete_remove(aliases_ac, value);
}
}
2012-08-22 23:44:14 +00:00
// Command autocompletion functions
2012-07-24 22:19:48 +00:00
void
cmd_autocomplete(char *input, int *size)
2012-10-21 22:37:20 +00:00
{
// autocomplete command
if ((strncmp(input, "/", 1) == 0) && (!str_contains(input, *size, ' '))) {
2014-04-25 23:36:36 +00:00
int i = 0;
char *found = NULL;
char inp_cpy[*size];
for(i = 0; i < *size; i++) {
inp_cpy[i] = input[i];
}
inp_cpy[i] = '\0';
found = autocomplete_complete(commands_ac, inp_cpy, TRUE);
if (found != NULL) {
2014-04-02 20:01:20 +00:00
char *auto_msg = strdup(found);
2014-04-07 20:50:28 +00:00
ui_replace_input(input, auto_msg, size);
free(auto_msg);
free(found);
}
2012-08-22 23:44:14 +00:00
// autocomplete parameters
} else {
_cmd_complete_parameters(input, size);
}
2012-10-27 21:22:30 +00:00
}
void
cmd_reset_autocomplete()
2012-10-27 21:22:30 +00:00
{
roster_reset_search_attempts();
muc_reset_invites_ac();
accounts_reset_all_search();
accounts_reset_enabled_search();
prefs_reset_boolean_choice();
presence_reset_sub_request_search();
autocomplete_reset(help_ac);
autocomplete_reset(notify_ac);
autocomplete_reset(notify_message_ac);
2014-05-24 15:46:05 +00:00
autocomplete_reset(notify_room_ac);
autocomplete_reset(notify_typing_ac);
autocomplete_reset(sub_ac);
if (ui_current_win_type() == WIN_MUC) {
char *recipient = ui_current_recipient();
muc_reset_autocomplete(recipient);
}
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(autoconnect_ac);
autocomplete_reset(theme_ac);
2012-12-09 00:46:14 +00:00
if (theme_load_ac != NULL) {
autocomplete_reset(theme_load_ac);
2012-12-09 00:46:14 +00:00
theme_load_ac = NULL;
}
autocomplete_reset(account_ac);
autocomplete_reset(account_set_ac);
autocomplete_reset(account_clear_ac);
2013-03-14 20:50:09 +00:00
autocomplete_reset(disco_ac);
2013-05-16 21:49:35 +00:00
autocomplete_reset(close_ac);
autocomplete_reset(wins_ac);
2013-05-19 01:30:03 +00:00
autocomplete_reset(roster_ac);
autocomplete_reset(group_ac);
autocomplete_reset(bookmark_ac);
autocomplete_reset(bookmark_property_ac);
autocomplete_reset(otr_ac);
2014-01-13 20:17:45 +00:00
autocomplete_reset(otr_log_ac);
2014-04-22 23:01:18 +00:00
autocomplete_reset(otr_policy_ac);
autocomplete_reset(connect_property_ac);
autocomplete_reset(statuses_ac);
autocomplete_reset(statuses_setting_ac);
2014-01-23 19:56:33 +00:00
autocomplete_reset(alias_ac);
2014-01-25 01:00:51 +00:00
autocomplete_reset(aliases_ac);
2014-03-05 20:57:59 +00:00
autocomplete_reset(join_property_ac);
bookmark_autocomplete_reset();
2012-10-27 21:22:30 +00:00
}
2012-08-22 23:44:14 +00:00
// Command execution
2012-08-22 23:41:22 +00:00
gboolean
cmd_execute(const char * const command, const char * const inp)
2012-08-14 23:42:38 +00:00
{
2013-06-24 23:49:29 +00:00
Command *cmd = g_hash_table_lookup(commands, command);
gboolean result = FALSE;
2012-08-14 23:42:38 +00:00
if (cmd != NULL) {
gchar **args = cmd->parser(inp, cmd->min_args, cmd->max_args, &result);
2014-04-09 20:38:42 +00:00
if (result == FALSE) {
2014-04-09 21:05:31 +00:00
ui_invalid_command_usage(cmd->help.usage, cmd->setting_func);
return TRUE;
} else {
gboolean result = cmd->func(args, cmd->help);
g_strfreev(args);
return result;
}
2012-08-14 23:42:38 +00:00
} else {
gboolean ran_alias = FALSE;
gboolean alias_result = cmd_execute_alias(inp, &ran_alias);
if (!ran_alias) {
return cmd_execute_default(inp);
} else {
return alias_result;
}
}
}
gboolean
cmd_execute_alias(const char * const inp, gboolean *ran)
{
if (inp[0] != '/') {
ran = FALSE;
return TRUE;
} else {
char *alias = strdup(inp+1);
char *value = prefs_get_alias(alias);
free(alias);
if (value != NULL) {
*ran = TRUE;
return process_input(value);
} else {
*ran = FALSE;
return TRUE;
}
2012-08-14 23:42:38 +00:00
}
2012-02-18 23:09:21 +00:00
}
2012-08-22 23:41:22 +00:00
gboolean
cmd_execute_default(const char * inp)
2012-08-22 23:41:22 +00:00
{
win_type_t win_type = ui_current_win_type();
jabber_conn_status_t status = jabber_get_connection_status();
2013-04-21 18:44:31 +00:00
char *recipient = ui_current_recipient();
// handle escaped commands - treat as normal message
if (g_str_has_prefix(inp, "//")) {
inp++;
// handle unknown commands
} else if ((inp[0] == '/') && (!g_str_has_prefix(inp, "/me "))) {
cons_show("Unknown command: %s", inp);
cons_alert();
return TRUE;
}
switch (win_type)
{
case WIN_MUC:
if (status != JABBER_CONNECTED) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("You are not currently connected.");
} else {
message_send_groupchat(inp, recipient);
}
break;
case WIN_CHAT:
if (status != JABBER_CONNECTED) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("You are not currently connected.");
} else {
#ifdef HAVE_LIBOTR
prof_otrpolicy_t policy = otr_get_policy(recipient);
if (policy == PROF_OTRPOLICY_ALWAYS && !otr_is_secure(recipient)) {
cons_show_error("Failed to send message. Please check OTR policy");
return TRUE;
}
if (otr_is_secure(recipient)) {
char *encrypted = otr_encrypt_message(recipient, inp);
if (encrypted != NULL) {
message_send(encrypted, recipient);
otr_free_message(encrypted);
if (prefs_get_boolean(PREF_CHLOG)) {
const char *jid = jabber_get_fulljid();
Jid *jidp = jid_create(jid);
char *pref_otr_log = prefs_get_string(PREF_OTR_LOG);
if (strcmp(pref_otr_log, "on") == 0) {
chat_log_chat(jidp->barejid, recipient, inp, PROF_OUT_LOG, NULL);
} else if (strcmp(pref_otr_log, "redact") == 0) {
chat_log_chat(jidp->barejid, recipient, "[redacted]", PROF_OUT_LOG, NULL);
}
prefs_free_string(pref_otr_log);
jid_destroy(jidp);
}
ui_outgoing_msg("me", recipient, inp);
} else {
cons_show_error("Failed to send message.");
}
} else {
message_send(inp, recipient);
2014-01-10 00:08:49 +00:00
if (prefs_get_boolean(PREF_CHLOG)) {
const char *jid = jabber_get_fulljid();
Jid *jidp = jid_create(jid);
chat_log_chat(jidp->barejid, recipient, inp, PROF_OUT_LOG, NULL);
jid_destroy(jidp);
}
ui_outgoing_msg("me", recipient, inp);
}
#else
message_send(inp, recipient);
if (prefs_get_boolean(PREF_CHLOG)) {
2013-05-21 21:00:42 +00:00
const char *jid = jabber_get_fulljid();
Jid *jidp = jid_create(jid);
chat_log_chat(jidp->barejid, recipient, inp, PROF_OUT_LOG, NULL);
jid_destroy(jidp);
}
2013-04-21 18:44:31 +00:00
ui_outgoing_msg("me", recipient, inp);
2014-01-10 00:08:49 +00:00
#endif
2012-11-19 23:15:42 +00:00
}
break;
case WIN_PRIVATE:
if (status != JABBER_CONNECTED) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("You are not currently connected.");
} else {
message_send(inp, recipient);
2013-04-21 18:44:31 +00:00
ui_outgoing_msg("me", recipient, inp);
}
break;
case WIN_CONSOLE:
2014-04-15 22:45:17 +00:00
case WIN_XML:
cons_show("Unknown command: %s", inp);
break;
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;
default:
break;
2012-08-22 23:41:22 +00:00
}
return TRUE;
}
static void
_cmd_complete_parameters(char *input, int *size)
2012-10-28 00:08:04 +00:00
{
2013-06-02 18:56:35 +00:00
int i;
char *result = NULL;
// autocomplete boolean settings
gchar *boolean_choices[] = { "/beep", "/intype", "/states", "/outtype",
"/flash", "/splash", "/chlog", "/grlog", "/mouse", "/history", "/titlebar",
"/vercheck" };
2013-06-02 18:56:35 +00:00
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) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
g_free(result);
return;
}
}
2012-10-28 00:08:04 +00:00
2013-06-02 18:56:35 +00:00
// autocomplete nickname in chat rooms
if (ui_current_win_type() == WIN_MUC) {
char *recipient = ui_current_recipient();
Autocomplete nick_ac = muc_get_roster_ac(recipient);
if (nick_ac != NULL) {
2013-06-02 18:56:35 +00: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, TRUE);
2013-06-02 18:56:35 +00:00
if (result != NULL) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
g_free(result);
return;
}
}
}
2013-06-02 18:56:35 +00:00
2014-05-18 01:19:30 +00:00
// otherwise autocomplete using roster
} else {
2013-06-02 18:56:35 +00: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) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
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) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
g_free(result);
return;
}
}
}
result = autocomplete_param_with_func(input, size, "/invite", roster_find_contact);
if (result != NULL) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
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) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
g_free(result);
return;
}
}
2014-04-13 19:41:11 +00:00
gchar *cmds[] = { "/help", "/prefs", "/disco", "/close", "/wins" };
Autocomplete completers[] = { help_ac, prefs_ac, disco_ac, close_ac, wins_ac };
2013-06-02 18:56:35 +00:00
2013-06-24 20:38:02 +00:00
for (i = 0; i < ARRAY_SIZE(cmds); i++) {
result = autocomplete_param_with_ac(input, size, cmds[i], completers[i], TRUE);
2013-06-02 18:56:35 +00:00
if (result != NULL) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
2013-06-02 18:56:35 +00:00
g_free(result);
return;
}
}
GHashTable *ac_funcs = g_hash_table_new(g_str_hash, g_str_equal);
g_hash_table_insert(ac_funcs, "/who", _who_autocomplete);
g_hash_table_insert(ac_funcs, "/sub", _sub_autocomplete);
g_hash_table_insert(ac_funcs, "/notify", _notify_autocomplete);
g_hash_table_insert(ac_funcs, "/autoaway", _autoaway_autocomplete);
g_hash_table_insert(ac_funcs, "/theme", _theme_autocomplete);
g_hash_table_insert(ac_funcs, "/log", _log_autocomplete);
g_hash_table_insert(ac_funcs, "/account", _account_autocomplete);
g_hash_table_insert(ac_funcs, "/roster", _roster_autocomplete);
g_hash_table_insert(ac_funcs, "/group", _group_autocomplete);
g_hash_table_insert(ac_funcs, "/bookmark", _bookmark_autocomplete);
g_hash_table_insert(ac_funcs, "/autoconnect", _autoconnect_autocomplete);
g_hash_table_insert(ac_funcs, "/otr", _otr_autocomplete);
g_hash_table_insert(ac_funcs, "/connect", _connect_autocomplete);
g_hash_table_insert(ac_funcs, "/statuses", _statuses_autocomplete);
g_hash_table_insert(ac_funcs, "/alias", _alias_autocomplete);
g_hash_table_insert(ac_funcs, "/join", _join_autocomplete);
char parsed[*size+1];
i = 0;
while (i < *size) {
if (input[i] == ' ') {
break;
} else {
parsed[i] = input[i];
}
i++;
}
parsed[i] = '\0';
char * (*ac_func)(char *, int *) = g_hash_table_lookup(ac_funcs, parsed);
if (ac_func != NULL) {
result = ac_func(input, size);
if (result != NULL) {
2014-04-07 20:50:28 +00:00
ui_replace_input(input, result, size);
g_free(result);
2014-05-17 21:49:24 +00:00
g_hash_table_destroy(ac_funcs);
return;
}
2013-06-02 18:56:35 +00:00
}
2014-05-17 21:49:24 +00:00
g_hash_table_destroy(ac_funcs);
2013-06-02 18:56:35 +00:00
return;
2012-10-28 00:08:04 +00:00
}
static char *
_sub_autocomplete(char *input, int *size)
2012-02-18 23:09:21 +00:00
{
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/sub allow", presence_sub_request_find);
if (result != NULL) {
return result;
}
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, TRUE);
if (result != NULL) {
return result;
2012-02-18 23:09:21 +00:00
}
return NULL;
2012-02-18 23:09:21 +00:00
}
static char *
_who_autocomplete(char *input, int *size)
{
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;
}
}
result = autocomplete_param_with_ac(input, size, "/who", who_ac, TRUE);
if (result != NULL) {
return result;
}
return NULL;
}
static char *
_roster_autocomplete(char *input, int *size)
2012-10-28 18:51:13 +00:00
{
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/roster nick", roster_find_jid);
if (result != NULL) {
return result;
}
2014-03-16 17:53:41 +00:00
result = autocomplete_param_with_func(input, size, "/roster clearnick", 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;
}
result = autocomplete_param_with_ac(input, size, "/roster", roster_ac, TRUE);
if (result != NULL) {
return result;
2012-11-27 21:20:00 +00:00
}
2012-11-11 12:00:21 +00:00
return NULL;
}
2012-11-15 02:31:31 +00:00
static char *
_group_autocomplete(char *input, int *size)
{
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/group show", roster_find_group);
if (result != NULL) {
return result;
2012-11-27 21:20:00 +00:00
}
result = autocomplete_param_no_with_func(input, size, "/group add", 4, roster_find_contact);
if (result != NULL) {
return result;
2012-11-28 00:36:51 +00:00
}
result = autocomplete_param_no_with_func(input, size, "/group remove", 4, roster_find_contact);
if (result != NULL) {
return result;
2012-11-28 00:36:51 +00:00
}
result = autocomplete_param_with_func(input, size, "/group add", roster_find_group);
if (result != NULL) {
return result;
2012-11-27 21:53:56 +00:00
}
result = autocomplete_param_with_func(input, size, "/group remove", roster_find_group);
if (result != NULL) {
return result;
2012-10-28 18:51:13 +00:00
}
result = autocomplete_param_with_ac(input, size, "/group", group_ac, TRUE);
if (result != NULL) {
return result;
2012-11-27 21:20:00 +00:00
}
return NULL;
2012-10-28 18:51:13 +00:00
}
static char *
_bookmark_autocomplete(char *input, int *size)
2012-10-27 17:12:04 +00:00
{
char *found = NULL;
gboolean result;
gchar **args = parse_args(input, 3, 8, &result);
2014-05-14 20:01:54 +00:00
gboolean handle_options = result && (g_strv_length(args) > 2);
2014-05-14 20:01:54 +00:00
if (handle_options && ((strcmp(args[0], "add") == 0) || (strcmp(args[0], "update") == 0)) ) {
GString *beginning = g_string_new("/bookmark");
gboolean autojoin = FALSE;
int num_args = g_strv_length(args);
2014-05-14 20:01:54 +00:00
g_string_append(beginning, " ");
g_string_append(beginning, args[0]);
g_string_append(beginning, " ");
g_string_append(beginning, args[1]);
if (num_args == 4 && g_strcmp0(args[2], "autojoin") == 0) {
g_string_append(beginning, " ");
2014-05-14 20:01:54 +00:00
g_string_append(beginning, args[2]);
autojoin = TRUE;
2014-05-14 19:53:31 +00:00
}
2014-05-14 19:53:31 +00:00
if (num_args > 4) {
g_string_append(beginning, " ");
g_string_append(beginning, args[2]);
g_string_append(beginning, " ");
g_string_append(beginning, args[3]);
if (num_args == 6 && g_strcmp0(args[4], "autojoin") == 0) {
g_string_append(beginning, " ");
2014-05-14 19:53:31 +00:00
g_string_append(beginning, args[4]);
autojoin = TRUE;
}
}
2014-05-14 19:53:31 +00:00
if (num_args > 6) {
g_string_append(beginning, " ");
g_string_append(beginning, args[4]);
g_string_append(beginning, " ");
g_string_append(beginning, args[5]);
if (num_args == 8 && g_strcmp0(args[6], "autojoin") == 0) {
g_string_append(beginning, " ");
g_string_append(beginning, args[6]);
autojoin = TRUE;
}
2014-05-14 19:53:31 +00:00
}
2012-02-09 23:15:53 +00:00
2014-05-14 20:01:54 +00:00
if (autojoin) {
found = autocomplete_param_with_func(input, size, beginning->str, prefs_autocomplete_boolean_choice);
} else {
found = autocomplete_param_with_ac(input, size, beginning->str, bookmark_property_ac, TRUE);
2014-05-14 20:01:54 +00:00
}
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
}
}
found = autocomplete_param_with_func(input, size, "/bookmark remove", bookmark_find);
if (found != NULL) {
return found;
}
found = autocomplete_param_with_func(input, size, "/bookmark join", bookmark_find);
if (found != NULL) {
return found;
}
found = autocomplete_param_with_func(input, size, "/bookmark update", bookmark_find);
if (found != NULL) {
return found;
}
found = autocomplete_param_with_ac(input, size, "/bookmark", bookmark_ac, TRUE);
return found;
2013-06-24 23:49:29 +00:00
}
static char *
_notify_autocomplete(char *input, int *size)
2013-06-24 23:49:29 +00:00
{
int i = 0;
char *result = NULL;
2013-06-24 23:49:29 +00:00
result = autocomplete_param_with_func(input, size, "/notify room current", prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_func(input, size, "/notify message current", prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_func(input, size, "/notify typing current", prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_func(input, size, "/notify room text", prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_func(input, size, "/notify message text", prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/notify room", notify_room_ac, TRUE);
2014-05-24 15:46:05 +00:00
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/notify message", notify_message_ac, TRUE);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/notify typing", notify_typing_ac, TRUE);
if (result != NULL) {
return result;
}
gchar *boolean_choices[] = { "/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-06-24 23:49:29 +00:00
}
result = autocomplete_param_with_ac(input, size, "/notify", notify_ac, TRUE);
if (result != NULL) {
return result;
2013-06-24 23:49:29 +00:00
}
return NULL;
2013-06-24 23:49:29 +00:00
}
static char *
_autoaway_autocomplete(char *input, int *size)
{
char *result = NULL;
2012-08-14 22:22:12 +00:00
result = autocomplete_param_with_ac(input, size, "/autoaway mode", autoaway_mode_ac, TRUE);
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, TRUE);
if (result != NULL) {
return result;
2012-08-14 22:22:12 +00:00
}
2012-02-09 23:15:53 +00:00
return NULL;
2012-02-09 23:15:53 +00:00
}
2014-04-13 19:41:11 +00:00
static char *
_log_autocomplete(char *input, int *size)
{
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/log rotate",
prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
2014-04-13 20:56:35 +00:00
result = autocomplete_param_with_func(input, size, "/log shared",
prefs_autocomplete_boolean_choice);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/log", log_ac, TRUE);
2014-04-13 19:41:11 +00:00
if (result != NULL) {
return result;
}
return NULL;
}
static char *
_autoconnect_autocomplete(char *input, int *size)
{
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/autoconnect set", accounts_find_enabled);
if (result != NULL) {
return result;
2013-04-20 22:39:17 +00:00
}
result = autocomplete_param_with_ac(input, size, "/autoconnect", autoconnect_ac, TRUE);
if (result != NULL) {
return result;
}
2012-07-19 22:43:50 +00:00
return NULL;
2012-07-19 22:43:50 +00:00
}
2014-01-13 18:56:04 +00:00
static char *
_otr_autocomplete(char *input, int *size)
{
char *found = NULL;
2014-01-13 18:56:04 +00:00
found = autocomplete_param_with_func(input, size, "/otr start", roster_find_contact);
if (found != NULL) {
return found;
}
found = autocomplete_param_with_ac(input, size, "/otr log", otr_log_ac, TRUE);
if (found != NULL) {
return found;
2014-01-13 20:17:45 +00:00
}
// /otr policy always user@server.com
gboolean result;
gchar **args = parse_args(input, 3, 3, &result);
if (result && (strcmp(args[0], "policy") == 0)) {
GString *beginning = g_string_new("/otr ");
g_string_append(beginning, args[0]);
g_string_append(beginning, " ");
g_string_append(beginning, args[1]);
found = autocomplete_param_with_func(input, size, beginning->str, roster_find_contact);
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
}
2014-04-22 23:01:18 +00:00
}
found = autocomplete_param_with_ac(input, size, "/otr policy", otr_policy_ac, TRUE);
if (found != NULL) {
return found;
}
found = autocomplete_param_with_func(input, size, "/otr warn",
prefs_autocomplete_boolean_choice);
if (found != NULL) {
return found;
}
found = autocomplete_param_with_ac(input, size, "/otr", otr_ac, TRUE);
if (found != NULL) {
return found;
2014-01-13 18:56:04 +00:00
}
return NULL;
}
static char *
_theme_autocomplete(char *input, int *size)
2012-12-09 00:46:14 +00:00
{
2013-06-02 18:56:35 +00:00
char *result = NULL;
2012-12-09 00:53:26 +00:00
if ((strncmp(input, "/theme set ", 11) == 0) && (*size > 11)) {
2012-12-09 00:46:14 +00:00
if (theme_load_ac == NULL) {
theme_load_ac = autocomplete_new();
2012-12-09 00:46:14 +00:00
GSList *themes = theme_list();
while (themes != NULL) {
2013-08-26 00:29:50 +00:00
autocomplete_add(theme_load_ac, themes->data);
2012-12-09 00:46:14 +00:00
themes = g_slist_next(themes);
}
g_slist_free(themes);
autocomplete_add(theme_load_ac, "default");
2013-06-02 18:56:35 +00:00
}
result = autocomplete_param_with_ac(input, size, "/theme set", theme_load_ac, TRUE);
2013-06-02 18:56:35 +00:00
if (result != NULL) {
return result;
}
2012-12-09 00:46:14 +00:00
}
result = autocomplete_param_with_ac(input, size, "/theme", theme_ac, TRUE);
2013-06-02 18:56:35 +00:00
if (result != NULL) {
return result;
}
return NULL;
2012-12-09 00:46:14 +00:00
}
static char *
_statuses_autocomplete(char *input, int *size)
{
char *result = NULL;
result = autocomplete_param_with_ac(input, size, "/statuses console", statuses_setting_ac, TRUE);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/statuses chat", statuses_setting_ac, TRUE);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/statuses muc", statuses_setting_ac, TRUE);
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/statuses", statuses_ac, TRUE);
if (result != NULL) {
return result;
}
return NULL;
}
2014-01-25 01:00:51 +00:00
static char *
_alias_autocomplete(char *input, int *size)
{
char *result = NULL;
result = autocomplete_param_with_ac(input, size, "/alias remove", aliases_ac, TRUE);
2014-01-25 01:00:51 +00:00
if (result != NULL) {
return result;
}
result = autocomplete_param_with_ac(input, size, "/alias", alias_ac, TRUE);
2014-01-25 01:00:51 +00:00
if (result != NULL) {
return result;
}
return NULL;
}
static char *
_connect_autocomplete(char *input, int *size)
{
char *found = NULL;
gboolean result = FALSE;
input[*size] = '\0';
gchar **args = parse_args(input, 2, 4, &result);
if ((strncmp(input, "/connect", 8) == 0) && (result == TRUE)) {
GString *beginning = g_string_new("/connect ");
g_string_append(beginning, args[0]);
if (args[1] != NULL && args[2] != NULL) {
g_string_append(beginning, " ");
g_string_append(beginning, args[1]);
g_string_append(beginning, " ");
g_string_append(beginning, args[2]);
}
found = autocomplete_param_with_ac(input, size, beginning->str, connect_property_ac, TRUE);
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
}
}
found = autocomplete_param_with_func(input, size, "/connect", accounts_find_enabled);
if (found != NULL) {
return found;
}
return NULL;
}
2014-03-05 20:57:59 +00:00
static char *
_join_autocomplete(char *input, int *size)
{
char *found = NULL;
gboolean result = FALSE;
2014-03-05 20:57:59 +00:00
input[*size] = '\0';
found = autocomplete_param_with_func(input, size, "/join", bookmark_find);
if (found != NULL) {
return found;
}
gchar **args = parse_args(input, 2, 4, &result);
2014-03-05 20:57:59 +00:00
if ((strncmp(input, "/join", 5) == 0) && (result == TRUE)) {
2014-03-05 20:57:59 +00:00
GString *beginning = g_string_new("/join ");
g_string_append(beginning, args[0]);
if (args[1] != NULL && args[2] != NULL) {
g_string_append(beginning, " ");
g_string_append(beginning, args[1]);
g_string_append(beginning, " ");
g_string_append(beginning, args[2]);
}
found = autocomplete_param_with_ac(input, size, beginning->str, join_property_ac, TRUE);
2014-03-05 20:57:59 +00:00
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
2014-03-05 20:57:59 +00:00
}
}
return NULL;
}
2013-06-02 18:56:35 +00:00
static char *
2012-12-09 22:58:45 +00:00
_account_autocomplete(char *input, int *size)
{
char *found = NULL;
gboolean result = FALSE;
input[*size] = '\0';
gchar **args = parse_args(input, 3, 4, &result);
if ((strncmp(input, "/account set", 12) == 0) && (result == TRUE)) {
GString *beginning = g_string_new("/account set ");
g_string_append(beginning, args[1]);
if ((g_strv_length(args) > 3) && (g_strcmp0(args[2], "otr")) == 0) {
g_string_append(beginning, " ");
g_string_append(beginning, args[2]);
found = autocomplete_param_with_ac(input, size, beginning->str, otr_policy_ac, TRUE);
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
}
} else {
found = autocomplete_param_with_ac(input, size, beginning->str, account_set_ac, TRUE);
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
}
}
}
if ((strncmp(input, "/account clear", 14) == 0) && (result == TRUE)) {
GString *beginning = g_string_new("/account clear ");
g_string_append(beginning, args[1]);
found = autocomplete_param_with_ac(input, size, beginning->str, account_clear_ac, TRUE);
g_string_free(beginning, TRUE);
if (found != NULL) {
return found;
}
}
g_strfreev(args);
2013-06-02 18:56:35 +00:00
int i = 0;
gchar *account_choice[] = { "/account set", "/account show", "/account enable",
"/account disable", "/account rename", "/account clear" };
2013-06-02 18:56:35 +00:00
for (i = 0; i < ARRAY_SIZE(account_choice); i++) {
found = autocomplete_param_with_func(input, size, account_choice[i],
2013-06-02 18:56:35 +00:00
accounts_find_all);
if (found != NULL) {
return found;
2013-06-02 18:56:35 +00:00
}
}
found = autocomplete_param_with_ac(input, size, "/account", account_ac, TRUE);
return found;
2014-04-15 12:16:32 +00:00
}