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

3726 lines
123 KiB
C
Raw Normal View History

/*
2012-02-20 20:07:38 +00:00
* command.c
*
2013-01-11 02:05:29 +00:00
* Copyright (C) 2012, 2013 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/>.
*
*/
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>
2012-10-31 21:30:58 +00:00
#include "chat_session.h"
#include "command/command.h"
#include "command/history.h"
#include "command/parser.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"
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"
2012-11-19 23:15:42 +00:00
#include "profanity.h"
#include "tools/autocomplete.h"
#include "tools/tinyurl.h"
2013-02-02 19:57:46 +00:00
#include "ui/ui.h"
2013-02-02 19:47:41 +00:00
#include "xmpp/xmpp.h"
2012-02-09 23:15:53 +00:00
/*
2012-08-22 22:57:34 +00:00
* Command structure
*
* cmd - The command string including leading '/'
2012-08-12 00:39:51 +00:00
* func - The function to execute for the command
* parser - The function used to parse arguments
* min_args - Minimum number of arguments
* max_args - Maximum number of arguments
2012-08-22 22:57:34 +00:00
* help - A help struct containing usage info etc
2012-08-12 00:39:51 +00:00
*/
2013-06-24 23:49:29 +00:00
typedef struct cmd_t {
gchar *cmd;
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;
void (*setting_func)(void);
2013-06-24 23:49:29 +00:00
CommandHelp help;
} Command;
2012-08-12 00:39:51 +00:00
typedef char*(*autocompleter)(char*, int*);
static void _update_presence(const resource_presence_t presence,
const char * const show, gchar **args);
2012-11-30 23:34:14 +00:00
static gboolean _cmd_set_boolean_preference(gchar *arg, struct cmd_help_t help,
2013-02-03 02:51:15 +00:00
const char * const display, preference_t pref);
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 * _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);
static int _strtoi(char *str, int *saveptr, int min, int max);
// command prototypes
static gboolean _cmd_about(gchar **args, struct cmd_help_t help);
static gboolean _cmd_account(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00:00
static gboolean _cmd_autoaway(gchar **args, struct cmd_help_t help);
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);
static gboolean _cmd_clear(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00:00
static gboolean _cmd_close(gchar **args, struct cmd_help_t help);
static gboolean _cmd_connect(gchar **args, struct cmd_help_t help);
static gboolean _cmd_decline(gchar **args, struct cmd_help_t help);
2013-03-14 20:50:09 +00:00
static gboolean _cmd_disco(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00: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 20:21:14 +00:00
static gboolean _cmd_log(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00: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 20:21:14 +00:00
static gboolean _cmd_priority(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00:00
static gboolean _cmd_quit(gchar **args, struct cmd_help_t help);
2013-06-23 20:21:14 +00:00
static gboolean _cmd_reconnect(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00:00
static gboolean _cmd_rooms(gchar **args, struct cmd_help_t help);
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 20:21:14 +00: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 20:29:12 +00:00
static gboolean _cmd_status(gchar **args, struct cmd_help_t help);
2013-06-23 20:21:14 +00:00
static gboolean _cmd_statuses(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00: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);
static gboolean _cmd_vercheck(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00:00
static gboolean _cmd_who(gchar **args, struct cmd_help_t help);
static gboolean _cmd_wins(gchar **args, struct cmd_help_t help);
2013-06-23 20:29:12 +00:00
static gboolean _cmd_xa(gchar **args, struct cmd_help_t help);
2012-04-24 00:02:22 +00:00
2013-06-24 23:49:29 +00:00
static GHashTable *commands = NULL;
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,
2013-06-25 21:16:23 +00:00
{ "/help [area|command]", "Get help on using Profanity",
{ "/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.",
"Supply a command (without the leading slash) to see help on 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",
"------",
"Show versioning and license information.",
NULL } } },
{ "/connect",
_cmd_connect, parse_args, 1, 2, NULL,
2012-12-22 23:48:45 +00:00
{ "/connect account [server]", "Login to a chat service.",
{ "/connect account [server]",
"-------------------------",
"Connect to an XMPP service using the specified account.",
2013-03-10 19:17:24 +00:00
"Use the server argument for chat services hosted at a different domain to the 'domainpart' of the Jabber ID.",
2012-12-22 23:48:45 +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",
"Example: /connect myuser@mycompany.com talk.google.com",
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,
2013-06-01 23:45:40 +00: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-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",
"Example : /roster nick kai@server.com (clears handle)",
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",
_cmd_join, parse_args_with_freetext, 1, 2, NULL,
{ "/join room[@server] [nick]", "Join a chat room.",
{ "/join room[@server] [nick]",
"--------------------------",
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.",
2013-03-10 19:17:24 +00:00
"Otherwise the 'localpart' of your JID (before the @) will be used.",
2013-06-30 21:59:06 +00:00
"If no server is supplied, a default of 'conference.<domain-part>' will be used.",
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",
"Example : /join jdev@conference.jabber.org mynick",
"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.",
"If a message is supplied it will be send 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 domainpart of the current logged in JID is used,",
"with a prefix of 'conference'.",
"",
"Example : /rooms conference.jabber.org",
"Example : /rooms (if logged in as me@server.org, is equivalent to /rooms conference.server.org)",
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 } } },
{ "/wins",
_cmd_wins, parse_args, 0, 1, NULL,
{ "/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 21:59:06 +00:00
"tidy : Shuffle windows so there are no gaps.",
"prune : Close all windows with no unread messages, and then tidy as above.",
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",
_cmd_notify, parse_args, 2, 2, cons_notify_setting,
{ "/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",
"invite : Notifications for chat room invites.",
" : on|off",
"sub : Notifications for subscription requests.",
" : on|off",
"",
"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)",
"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 recieved.",
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 } } },
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, 2, 2, cons_titlebar_setting,
2012-12-02 20:53:45 +00:00
{ "/titlebar property on|off", "Show various properties in the window title bar.",
{ "/titlebar property on|off",
"-------------------------",
2012-12-09 18:59:11 +00:00
"Show various properties in the window title bar.",
2013-03-10 19:17:24 +00:00
"Currently The only supported property is 'version'.",
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 } } },
{ "/chlog",
_cmd_chlog, parse_args, 1, 1, cons_chlog_setting,
2012-10-27 18:46:48 +00:00
{ "/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,
2013-05-04 23:16:10 +00: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.",
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 } } },
{ "/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",
_cmd_log, parse_args, 2, 2, cons_log_setting,
2012-12-09 18:59:11 +00:00
{ "/log maxsize value", "Manage system logging settings.",
{ "/log maxsize value",
"------------------",
"maxsize : When log file size exceeds this value it will be automatically",
" rotated (file will be renamed). Default value is 1048580 (1MB)",
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'.",
"",
"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.",
"",
"Example : /account add work",
" : /account set work jid myuser@mycompany.com",
" : /account set work server talk.google.com",
" : /account set work resource desktop",
" : /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",
_cmd_statuses, parse_args, 1, 1, cons_statuses_setting,
{ "/statuses on|off", "Set notifications for status messages.",
{ "/statuses on|off",
2013-03-10 19:17:24 +00: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 23:49:29 +00:00
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;
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 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;
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();
2013-06-24 23:49:29 +00:00
help_ac = autocomplete_new();
autocomplete_add(help_ac, strdup("commands"));
autocomplete_add(help_ac, strdup("basic"));
autocomplete_add(help_ac, strdup("chatting"));
autocomplete_add(help_ac, strdup("groupchat"));
autocomplete_add(help_ac, strdup("presence"));
2013-07-03 20:23:18 +00:00
autocomplete_add(help_ac, strdup("contacts"));
2013-06-24 23:49:29 +00:00
autocomplete_add(help_ac, strdup("service"));
autocomplete_add(help_ac, strdup("settings"));
autocomplete_add(help_ac, strdup("other"));
autocomplete_add(help_ac, strdup("navigation"));
// 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
autocomplete_add(commands_ac, (gchar *)strdup(pcmd->cmd));
autocomplete_add(help_ac, (gchar *)strdup(pcmd->cmd+1));
}
prefs_ac = autocomplete_new();
autocomplete_add(prefs_ac, strdup("ui"));
autocomplete_add(prefs_ac, strdup("desktop"));
autocomplete_add(prefs_ac, strdup("chat"));
autocomplete_add(prefs_ac, strdup("log"));
autocomplete_add(prefs_ac, strdup("conn"));
autocomplete_add(prefs_ac, strdup("presence"));
notify_ac = autocomplete_new();
autocomplete_add(notify_ac, strdup("message"));
autocomplete_add(notify_ac, strdup("typing"));
autocomplete_add(notify_ac, strdup("remind"));
autocomplete_add(notify_ac, strdup("invite"));
autocomplete_add(notify_ac, strdup("sub"));
sub_ac = autocomplete_new();
autocomplete_add(sub_ac, strdup("request"));
autocomplete_add(sub_ac, strdup("allow"));
autocomplete_add(sub_ac, strdup("deny"));
autocomplete_add(sub_ac, strdup("show"));
autocomplete_add(sub_ac, strdup("sent"));
autocomplete_add(sub_ac, strdup("received"));
titlebar_ac = autocomplete_new();
autocomplete_add(titlebar_ac, strdup("version"));
log_ac = autocomplete_new();
autocomplete_add(log_ac, strdup("maxsize"));
autoaway_ac = autocomplete_new();
autocomplete_add(autoaway_ac, strdup("mode"));
autocomplete_add(autoaway_ac, strdup("time"));
autocomplete_add(autoaway_ac, strdup("message"));
autocomplete_add(autoaway_ac, strdup("check"));
autoaway_mode_ac = autocomplete_new();
autocomplete_add(autoaway_mode_ac, strdup("away"));
autocomplete_add(autoaway_mode_ac, strdup("idle"));
autocomplete_add(autoaway_mode_ac, strdup("off"));
theme_ac = autocomplete_new();
autocomplete_add(theme_ac, strdup("list"));
autocomplete_add(theme_ac, strdup("set"));
2013-03-14 20:50:09 +00:00
disco_ac = autocomplete_new();
autocomplete_add(disco_ac, strdup("info"));
autocomplete_add(disco_ac, strdup("items"));
account_ac = autocomplete_new();
autocomplete_add(account_ac, strdup("list"));
autocomplete_add(account_ac, strdup("show"));
autocomplete_add(account_ac, strdup("add"));
autocomplete_add(account_ac, strdup("enable"));
autocomplete_add(account_ac, strdup("disable"));
autocomplete_add(account_ac, strdup("rename"));
autocomplete_add(account_ac, strdup("set"));
2012-12-09 22:58:45 +00:00
2013-05-16 21:49:35 +00:00
close_ac = autocomplete_new();
autocomplete_add(close_ac, strdup("read"));
autocomplete_add(close_ac, strdup("all"));
wins_ac = autocomplete_new();
autocomplete_add(wins_ac, strdup("prune"));
autocomplete_add(wins_ac, strdup("tidy"));
2013-05-19 01:30:03 +00:00
roster_ac = autocomplete_new();
2013-06-01 23:06:05 +00:00
autocomplete_add(roster_ac, strdup("add"));
2013-05-19 01:30:03 +00:00
autocomplete_add(roster_ac, strdup("nick"));
2013-06-01 23:06:05 +00:00
autocomplete_add(roster_ac, strdup("remove"));
2013-05-19 01:30:03 +00:00
group_ac = autocomplete_new();
autocomplete_add(group_ac, strdup("show"));
autocomplete_add(group_ac, strdup("add"));
autocomplete_add(group_ac, strdup("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();
autocomplete_add(who_ac, strdup("chat"));
autocomplete_add(who_ac, strdup("online"));
autocomplete_add(who_ac, strdup("away"));
autocomplete_add(who_ac, strdup("xa"));
autocomplete_add(who_ac, strdup("dnd"));
autocomplete_add(who_ac, strdup("offline"));
autocomplete_add(who_ac, strdup("available"));
autocomplete_add(who_ac, strdup("unavailable"));
2013-06-02 02:02:32 +00:00
autocomplete_add(who_ac, strdup("any"));
2012-10-28 02:58:12 +00:00
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_close(void)
{
autocomplete_free(commands_ac);
autocomplete_free(who_ac);
autocomplete_free(help_ac);
autocomplete_free(notify_ac);
autocomplete_free(sub_ac);
autocomplete_free(log_ac);
autocomplete_free(prefs_ac);
autocomplete_free(autoaway_ac);
autocomplete_free(autoaway_mode_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);
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);
2012-10-21 23:29:39 +00:00
}
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
{
int i = 0;
char *found = NULL;
char *auto_msg = NULL;
char inp_cpy[*size];
2012-10-21 22:37:20 +00:00
// autocomplete command
if ((strncmp(input, "/", 1) == 0) && (!str_contains(input, *size, ' '))) {
for(i = 0; i < *size; i++) {
inp_cpy[i] = input[i];
}
inp_cpy[i] = '\0';
found = autocomplete_complete(commands_ac, inp_cpy);
if (found != NULL) {
auto_msg = (char *) malloc((strlen(found) + 1) * sizeof(char));
strcpy(auto_msg, found);
inp_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(sub_ac);
if (ui_current_win_type() == WIN_MUC) {
2013-04-21 18:44:31 +00:00
Autocomplete nick_ac = muc_get_roster_ac(ui_current_recipient());
if (nick_ac != NULL) {
autocomplete_reset(nick_ac);
}
}
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-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);
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);
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);
2012-08-14 23:42:38 +00:00
if (cmd != NULL) {
gchar **args = cmd->parser(inp, cmd->min_args, cmd->max_args);
if ((args == NULL) && (cmd->setting_func != NULL)) {
cons_show("");
cmd->setting_func();
2013-06-25 22:41:53 +00:00
cons_show("Usage: %s", cmd->help.usage);
return TRUE;
} else if (args == NULL) {
cons_show("");
cons_show("Usage: %s", cmd->help.usage);
if (ui_current_win_type() == WIN_CHAT) {
char usage[strlen(cmd->help.usage) + 8];
sprintf(usage, "Usage: %s", cmd->help.usage);
2013-04-21 18:44:31 +00:00
ui_current_print_line(usage);
}
return TRUE;
} else {
gboolean result = cmd->func(args, cmd->help);
g_strfreev(args);
return result;
}
2012-08-14 23:42:38 +00:00
} else {
2012-08-22 23:41:22 +00:00
return cmd_execute_default(inp);
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 * const inp)
{
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();
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);
free(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 {
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);
free(recipient);
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);
free(recipient);
}
break;
case WIN_CONSOLE:
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);
free(recipient);
}
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",
"/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-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) {
2013-04-21 18:44:31 +00:00
Autocomplete nick_ac = muc_get_roster_ac(ui_current_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);
if (result != NULL) {
inp_replace_input(input, result, size);
g_free(result);
return;
}
}
}
2013-06-02 18:56:35 +00:00
// otherwise autocomple 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) {
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;
}
}
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-06-24 20:38:02 +00:00
gchar *cmds[] = { "/help", "/prefs", "/log", "/disco", "/close", "/wins" };
2013-06-02 18:56:35 +00:00
Autocomplete completers[] = { help_ac, prefs_ac, log_ac, disco_ac, close_ac, wins_ac };
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]);
2013-06-02 18:56:35 +00:00
if (result != NULL) {
inp_replace_input(input, result, size);
g_free(result);
return;
}
}
autocompleter acs[] = { _who_autocomplete, _sub_autocomplete, _notify_autocomplete,
_autoaway_autocomplete, _titlebar_autocomplete, _theme_autocomplete,
_account_autocomplete, _roster_autocomplete, _group_autocomplete };
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 18:56:35 +00:00
}
return;
2012-10-28 00:08:04 +00:00
}
2012-08-22 23:44:14 +00:00
// The command functions
2012-08-22 23:41:22 +00:00
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_connect(gchar **args, struct cmd_help_t help)
2012-02-18 23:09:21 +00:00
{
2012-04-24 00:02:22 +00:00
gboolean result = FALSE;
2012-02-18 23:09:21 +00: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-20 01:42:29 +00:00
result = TRUE;
2012-02-18 23:09:21 +00:00
} else {
char *user = args[0];
char *altdomain = args[1];
char *lower = g_utf8_strdown(user, -1);
2012-12-09 22:14:38 +00:00
char *jid;
status_bar_get_password();
status_bar_refresh();
char passwd[21];
inp_block();
inp_get_password(passwd);
inp_non_block();
2012-12-09 22:14:38 +00:00
ProfAccount *account = accounts_get_account(lower);
if (account != NULL) {
if (account->resource != NULL) {
jid = create_fulljid(account->jid, account->resource);
} else {
jid = strdup(account->jid);
}
cons_show("Connecting with account %s as %s", account->name, jid);
2012-12-09 22:14:38 +00:00
conn_status = jabber_connect_with_account(account, passwd);
} else {
jid = strdup(lower);
cons_show("Connecting as %s", jid);
conn_status = jabber_connect_with_details(jid, passwd, altdomain);
2012-12-09 22:14:38 +00:00
}
if (conn_status == JABBER_DISCONNECTED) {
cons_show_error("Connection attempt for %s failed.", jid);
log_debug("Connection attempt for %s failed", jid);
}
2012-12-09 22:14:38 +00:00
accounts_free_account(account);
free(jid);
result = TRUE;
2012-02-18 23:09:21 +00:00
}
2012-02-18 23:09:21 +00:00
return result;
}
static gboolean
_cmd_account(gchar **args, struct cmd_help_t help)
{
char *command = args[0];
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) {
gchar **accounts = accounts_get_list();
cons_show_account_list(accounts);
g_strfreev(accounts);
2012-12-09 22:58:45 +00: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-10 00:08:03 +00:00
cons_show("");
2012-12-09 22:58:45 +00:00
} else {
cons_show_account(account);
accounts_free_account(account);
}
}
2012-12-10 01:14:21 +00:00
} else if (strcmp(command, "add") == 0) {
2012-12-10 00:08:03 +00:00
char *account_name = args[1];
if (account_name == NULL) {
cons_show("Usage: %s", help.usage);
} else {
accounts_add(account_name, NULL);
2012-12-10 00:08:03 +00: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("");
}
}
} 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)) {
cons_show("Account %s doesn't exist");
cons_show("");
} else {
if (strcmp(property, "jid") == 0) {
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) {
accounts_set_resource(account_name, jid->resourcepart);
cons_show("Updated resource for account %s: %s", account_name, jid->resourcepart);
}
cons_show("");
}
jid_destroy(jid);
} 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("");
} 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-01-30 22:45:35 +00:00
} else if (strcmp(property, "status") == 0) {
if (!valid_resource_presence_string(value) && (strcmp(value, "last") != 0)) {
cons_show("Invalid status: %s", value);
2013-01-30 22:45:35 +00:00
} else {
accounts_set_login_presence(account_name, value);
cons_show("Updated login status for account %s: %s", account_name, value);
}
cons_show("");
} else if (valid_resource_presence_string(property)) {
2013-01-31 23:49:29 +00:00
int intval;
if (_strtoi(value, &intval, -128, 127) == 0) {
resource_presence_t presence_type = resource_presence_from_string(property);
2013-01-31 23:49:29 +00:00
switch (presence_type)
{
case (RESOURCE_ONLINE):
2013-01-31 23:49:29 +00:00
accounts_set_priority_online(account_name, intval);
break;
case (RESOURCE_CHAT):
2013-01-31 23:49:29 +00:00
accounts_set_priority_chat(account_name, intval);
break;
case (RESOURCE_AWAY):
2013-01-31 23:49:29 +00:00
accounts_set_priority_away(account_name, intval);
break;
case (RESOURCE_XA):
2013-01-31 23:49:29 +00:00
accounts_set_priority_xa(account_name, intval);
break;
case (RESOURCE_DND):
2013-01-31 23:49:29 +00:00
accounts_set_priority_dnd(account_name, intval);
break;
}
jabber_conn_status_t conn_status = jabber_get_connection_status();
resource_presence_t last_presence = accounts_get_last_presence(jabber_get_account_name());
2013-02-10 13:36:11 +00:00
if (conn_status == JABBER_CONNECTED && presence_type == last_presence) {
presence_update(last_presence, jabber_get_presence_message(), 0);
2013-01-31 23:49:29 +00:00
}
cons_show("Updated %s priority for account %s: %s", property, account_name, value);
cons_show("");
}
} else {
cons_show("Invalid property: %s", property);
cons_show("");
}
}
}
2012-12-09 22:58:45 +00:00
} else {
cons_show("");
}
return TRUE;
}
2012-10-28 18:51:13 +00:00
static gboolean
_cmd_sub(gchar **args, struct cmd_help_t help)
2012-10-28 18:51:13 +00:00
{
jabber_conn_status_t conn_status = jabber_get_connection_status();
win_type_t win_type = ui_current_win_type();
if (conn_status != JABBER_CONNECTED) {
cons_show("You are currently not connected.");
2012-11-27 21:20:00 +00:00
return TRUE;
}
2012-11-11 12:00:21 +00:00
2012-11-27 21:20:00 +00:00
char *subcmd, *jid, *bare_jid;
subcmd = args[0];
jid = args[1];
2012-11-15 02:31:31 +00:00
2012-11-27 21:20:00 +00:00
if (subcmd == NULL) {
cons_show("Usage: %s", help.usage);
return TRUE;
}
2012-11-28 00:36:51 +00:00
if (strcmp(subcmd, "sent") == 0) {
cons_show_sent_subs();
2012-11-28 00:36:51 +00:00
return TRUE;
}
if (strcmp(subcmd, "received") == 0) {
cons_show_received_subs();
2012-11-28 00:36:51 +00:00
return TRUE;
}
if ((win_type != WIN_CHAT) && (jid == NULL)) {
2012-11-27 21:53:56 +00:00
cons_show("You must specify a contact.");
return TRUE;
}
2012-11-27 21:20:00 +00:00
if (jid != NULL) {
jid = strdup(jid);
} else {
2013-04-21 18:44:31 +00:00
jid = ui_current_recipient();
2012-10-28 18:51:13 +00:00
}
2012-11-27 21:20:00 +00:00
bare_jid = strtok(jid, "/");
2012-11-27 23:43:32 +00:00
if (strcmp(subcmd, "allow") == 0) {
2013-01-28 22:24:47 +00:00
presence_subscription(bare_jid, PRESENCE_SUBSCRIBED);
2012-11-27 21:20:00 +00:00
cons_show("Accepted subscription for %s", bare_jid);
log_info("Accepted subscription for %s", bare_jid);
2012-11-27 23:43:32 +00:00
} else if (strcmp(subcmd, "deny") == 0) {
2013-01-28 22:24:47 +00:00
presence_subscription(bare_jid, PRESENCE_UNSUBSCRIBED);
2012-11-27 23:43:32 +00:00
cons_show("Deleted/denied subscription for %s", bare_jid);
log_info("Deleted/denied subscription for %s", bare_jid);
} else if (strcmp(subcmd, "request") == 0) {
2013-01-28 22:24:47 +00:00
presence_subscription(bare_jid, PRESENCE_SUBSCRIBE);
2012-11-27 21:20:00 +00:00
cons_show("Sent subscription request to %s.", bare_jid);
log_info("Sent subscription request to %s.", bare_jid);
} else if (strcmp(subcmd, "show") == 0) {
PContact contact = roster_get_contact(bare_jid);
if ((contact == NULL) || (p_contact_subscription(contact) == NULL)) {
if (win_type == WIN_CHAT) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("No subscription information for %s.", bare_jid);
2012-11-27 21:53:56 +00:00
} else {
cons_show("No subscription information for %s.", bare_jid);
}
} else {
if (win_type == WIN_CHAT) {
if (p_contact_pending_out(contact)) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("%s subscription status: %s, request pending.",
bare_jid, p_contact_subscription(contact));
} else {
2013-04-21 18:44:31 +00:00
ui_current_print_line("%s subscription status: %s.", bare_jid,
p_contact_subscription(contact));
}
2012-11-27 21:53:56 +00:00
} else {
if (p_contact_pending_out(contact)) {
cons_show("%s subscription status: %s, request pending.",
bare_jid, p_contact_subscription(contact));
} else {
cons_show("%s subscription status: %s.", bare_jid,
p_contact_subscription(contact));
}
2012-11-27 21:53:56 +00:00
}
}
2012-11-27 21:20:00 +00:00
} else {
cons_show("Usage: %s", help.usage);
}
free(jid);
return TRUE;
2012-10-28 18:51:13 +00:00
}
2012-10-27 17:12:04 +00:00
static gboolean
_cmd_disconnect(gchar **args, struct cmd_help_t help)
2012-10-27 17:12:04 +00:00
{
2012-10-27 17:26:57 +00:00
if (jabber_get_connection_status() == JABBER_CONNECTED) {
2013-05-21 21:00:42 +00:00
char *jid = strdup(jabber_get_fulljid());
prof_handle_disconnect(jid);
2012-10-27 17:26:57 +00:00
free(jid);
} else {
cons_show("You are not currently connected.");
2012-10-27 17:12:04 +00:00
}
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_quit(gchar **args, struct cmd_help_t help)
2012-02-09 23:15:53 +00:00
{
log_info("Profanity is shutting down...");
exit(0);
return FALSE;
2012-02-09 23:15:53 +00:00
}
static gboolean
_cmd_wins(gchar **args, struct cmd_help_t help)
{
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();
}
return TRUE;
}
2013-06-24 23:49:29 +00: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 22:19:48 +00:00
static gboolean
_cmd_help(gchar **args, struct cmd_help_t help)
2012-02-09 23:15:53 +00:00
{
int num_args = g_strv_length(args);
if (num_args == 0) {
cons_help();
2013-06-24 23:49:29 +00:00
} else if (strcmp(args[0], "commands") == 0) {
cons_show("");
2013-06-24 23:49:29 +00: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);
}
2013-06-24 23:49:29 +00: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);
}
2013-06-24 23:49:29 +00: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("");
} else if (strcmp(args[0], "basic") == 0) {
2013-06-24 23:49:29 +00: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));
} else if (strcmp(args[0], "presence") == 0) {
2013-06-24 23:49:29 +00: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 20:23:18 +00:00
} else if (strcmp(args[0], "contacts") == 0) {
2013-06-24 23:49:29 +00: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));
} else if (strcmp(args[0], "settings") == 0) {
2013-06-24 23:49:29 +00:00
gchar *filter[] = { "/account", "/autoaway", "/autoping", "/beep",
"/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));
} 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 22:22:12 +00:00
const gchar **help_text = NULL;
2013-06-24 23:49:29 +00:00
Command *command = g_hash_table_lookup(commands, cmd_with_slash);
2012-08-14 22:22:12 +00:00
if (command != NULL) {
help_text = command->help.long_help;
}
cons_show("");
2012-08-14 22:22:12 +00:00
if (help_text != NULL) {
int i;
for (i = 0; help_text[i] != NULL; i++) {
cons_show(help_text[i]);
2012-08-14 22:22:12 +00:00
}
} else {
cons_show("No such command.");
2012-08-14 22:22:12 +00:00
}
cons_show("");
2012-08-14 22:22:12 +00:00
}
2012-02-09 23:15:53 +00:00
return TRUE;
2012-02-09 23:15:53 +00:00
}
static gboolean
_cmd_about(gchar **args, struct cmd_help_t help)
{
cons_show("");
cons_about();
if (ui_current_win_type() != WIN_CONSOLE) {
2013-04-20 22:39:17 +00:00
status_bar_new(0);
}
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_prefs(gchar **args, struct cmd_help_t help)
2012-07-19 22:43:50 +00:00
{
if (args[0] == NULL) {
cons_prefs();
cons_show("Use the /account command for preferences for individual accounts.");
} 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 23:34:14 +00:00
} else if (strcmp(args[0], "conn") == 0) {
cons_show("");
2012-11-30 23:34:14 +00:00
cons_show_connection_prefs();
cons_show("");
} else if (strcmp(args[0], "presence") == 0) {
cons_show("");
cons_show_presence_prefs();
cons_show("");
} else {
cons_show("Usage: %s", help.usage);
}
2012-07-19 22:43:50 +00:00
return TRUE;
}
static gboolean
_cmd_theme(gchar **args, struct cmd_help_t help)
{
2012-12-09 00:21:33 +00: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-09 00:53:26 +00:00
} else if (strcmp(args[0], "set") == 0) {
2012-12-09 00:46:14 +00:00
if (args[1] == NULL) {
cons_show("Usage: %s", help.usage);
} else if (theme_load(args[1])) {
ui_load_colours();
2013-02-03 03:24:13 +00:00
prefs_set_string(PREF_THEME, args[1]);
cons_show("Loaded theme: %s", args[1]);
} else {
cons_show("Couldn't find theme: %s", args[1]);
}
} else {
cons_show("Usage: %s", help.usage);
}
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_who(gchar **args, struct cmd_help_t help)
2012-03-08 00:46:24 +00:00
{
jabber_conn_status_t conn_status = jabber_get_connection_status();
win_type_t win_type = ui_current_win_type();
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
} else {
char *presence = args[0];
2013-06-02 02:33:49 +00:00
char *group = NULL;
if ((g_strv_length(args) == 2) && (args[1] != NULL)) {
group = args[1];
}
// 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-02 02:02:32 +00:00
&& (strcmp(presence, "dnd") != 0)
&& (strcmp(presence, "any") != 0)) {
cons_show("Usage: %s", help.usage);
// valid arg
} else {
if (win_type == WIN_MUC) {
2013-06-02 02:33:49 +00:00
if (group != NULL) {
cons_show("The group argument is not valid when in a chat room.");
return TRUE;
}
2013-04-21 18:44:31 +00:00
char *room = ui_current_recipient();
2013-01-15 23:17:07 +00:00
GList *list = muc_get_roster(room);
// no arg, show all contacts
2013-06-02 02:02:32 +00:00
if ((presence == NULL) || (g_strcmp0(presence, "any") == 0)) {
2013-04-21 18:44:31 +00:00
ui_room_roster(room, list, NULL);
2013-01-15 23:17:07 +00:00
// available
} else if (strcmp("available", presence) == 0) {
GList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (p_contact_is_available(contact)) {
2013-01-15 23:17:07 +00:00
filtered = g_list_append(filtered, contact);
}
list = g_list_next(list);
}
2013-04-21 18:44:31 +00:00
ui_room_roster(room, filtered, "available");
2013-01-15 23:17:07 +00:00
// unavailable
} else if (strcmp("unavailable", presence) == 0) {
GList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (!p_contact_is_available(contact)) {
2013-01-15 23:17:07 +00:00
filtered = g_list_append(filtered, contact);
}
list = g_list_next(list);
}
2013-04-21 18:44:31 +00:00
ui_room_roster(room, filtered, "unavailable");
2013-01-15 23:17:07 +00:00
// online, available resources
2013-01-15 23:17:07 +00:00
} else if (strcmp("online", presence) == 0) {
GList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (p_contact_has_available_resource(contact)) {
2013-01-15 23:17:07 +00:00
filtered = g_list_append(filtered, contact);
}
list = g_list_next(list);
}
2013-04-21 18:44:31 +00:00
ui_room_roster(room, filtered, "online");
2013-01-15 23:17:07 +00:00
// offline, no available resources
} 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 18:44:31 +00:00
ui_room_roster(room, filtered, "offline");
2013-01-15 23:17:07 +00: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 18:44:31 +00:00
ui_room_roster(room, filtered, presence);
2013-01-15 23:17:07 +00:00
}
// not in groupchat window
} else {
2013-01-20 03:32:51 +00:00
cons_show("");
2013-06-02 02:33:49 +00:00
GSList *list = NULL;
if (group != NULL) {
list = roster_get_group(group);
} else {
list = roster_get_contacts();
}
// no arg, show all contacts
2013-06-02 02:02:32 +00:00
if ((presence == NULL) || (g_strcmp0(presence, "any") == 0)) {
2013-06-02 02:33:49 +00:00
if (group != NULL) {
cons_show("%s:", group);
} else {
cons_show("All contacts:");
}
cons_show_contacts(list);
// available
} else if (strcmp("available", presence) == 0) {
2013-06-02 02:33:49 +00:00
if (group != NULL) {
cons_show("%s (%s):", group, presence);
} else {
cons_show("Contacts (%s):", presence);
}
GSList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (p_contact_is_available(contact)) {
filtered = g_slist_append(filtered, contact);
}
list = g_slist_next(list);
}
cons_show_contacts(filtered);
// unavailable
} else if (strcmp("unavailable", presence) == 0) {
2013-06-02 02:33:49 +00:00
if (group != NULL) {
cons_show("%s (%s):", group, presence);
} else {
cons_show("Contacts (%s):", presence);
}
GSList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (!p_contact_is_available(contact)) {
filtered = g_slist_append(filtered, contact);
}
list = g_slist_next(list);
}
cons_show_contacts(filtered);
// online, available resources
} else if (strcmp("online", presence) == 0) {
2013-06-02 02:33:49 +00:00
if (group != NULL) {
cons_show("%s (%s):", group, presence);
} else {
cons_show("Contacts (%s):", presence);
}
GSList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
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-02 02:33:49 +00:00
} else if (strcmp("offline", presence) == 0) {
if (group != NULL) {
cons_show("%s (%s):", group, presence);
} else {
cons_show("Contacts (%s):", presence);
}
GSList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (!p_contact_has_available_resource(contact)) {
filtered = g_slist_append(filtered, contact);
}
list = g_slist_next(list);
}
cons_show_contacts(filtered);
// show specific status
} else {
2013-06-02 02:33:49 +00:00
if (group != NULL) {
cons_show("%s (%s):", group, presence);
} else {
cons_show("Contacts (%s):", presence);
}
GSList *filtered = NULL;
while (list != NULL) {
PContact contact = list->data;
if (strcmp(p_contact_presence(contact), presence) == 0) {
filtered = g_slist_append(filtered, contact);
}
list = g_slist_next(list);
2012-11-18 00:54:39 +00:00
}
cons_show_contacts(filtered);
}
}
}
}
2012-03-08 00:46:24 +00:00
if (win_type != WIN_CONSOLE) {
2013-04-20 22:39:17 +00:00
status_bar_new(0);
}
return TRUE;
2012-03-08 00:46:24 +00:00
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_msg(gchar **args, struct cmd_help_t help)
2012-02-09 23:15:53 +00:00
{
char *usr = args[0];
char *msg = args[1];
2012-02-20 01:42:29 +00:00
jabber_conn_status_t conn_status = jabber_get_connection_status();
win_type_t win_type = ui_current_win_type();
2012-11-18 00:54:39 +00:00
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
return TRUE;
}
if (ui_windows_full()) {
cons_show_error("Windows all used, close a window and try again.");
return TRUE;
}
if (win_type == WIN_MUC) {
2013-04-21 18:44:31 +00:00
char *room_name = ui_current_recipient();
2013-01-12 01:34:09 +00:00
if (muc_nick_in_roster(room_name, usr)) {
GString *full_jid = g_string_new(room_name);
g_string_append(full_jid, "/");
g_string_append(full_jid, usr);
if (msg != NULL) {
2013-01-29 00:21:04 +00:00
message_send(msg, full_jid->str);
2013-04-21 18:44:31 +00:00
ui_outgoing_msg("me", full_jid->str, msg);
} else {
2013-04-21 18:44:31 +00:00
ui_new_chat_win(full_jid->str);
}
g_string_free(full_jid, TRUE);
2012-11-18 00:54:39 +00:00
} else {
2013-04-21 18:44:31 +00:00
ui_current_print_line("No such participant \"%s\" in room.", usr);
2012-02-09 23:15:53 +00:00
}
return TRUE;
} else {
char *usr_jid = roster_barejid_from_name(usr);
2013-05-22 12:47:25 +00:00
if (usr_jid == NULL) {
usr_jid = usr;
}
if (msg != NULL) {
2013-05-19 22:35:02 +00:00
message_send(msg, usr_jid);
ui_outgoing_msg("me", usr_jid, msg);
2013-04-28 03:14:23 +00:00
if (((win_type == WIN_CHAT) || (win_type == WIN_CONSOLE)) && prefs_get_boolean(PREF_CHLOG)) {
2013-05-21 21:00:42 +00:00
const char *jid = jabber_get_fulljid();
2013-01-29 23:01:15 +00:00
Jid *jidp = jid_create(jid);
2013-05-19 22:35:02 +00:00
chat_log_chat(jidp->barejid, usr_jid, msg, PROF_OUT_LOG, NULL);
2013-01-29 23:01:15 +00:00
jid_destroy(jidp);
}
return TRUE;
} else {
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);
}
}
ui_new_chat_win(usr_jid);
return TRUE;
}
}
2012-02-09 23:15:53 +00: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) {
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.");
}
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;
}
static gboolean
_cmd_roster(gchar **args, struct cmd_help_t help)
{
2013-06-01 22:48:24 +00: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;
}
// show roster
if (args[0] == NULL) {
GSList *list = roster_get_contacts();
cons_show_roster(list);
return TRUE;
}
2013-06-01 22:48:24 +00:00
// add contact
if (strcmp(args[0], "add") == 0) {
2013-06-01 22:48:24 +00:00
if (args[1] == NULL) {
cons_show("Usage: %s", help.usage);
return TRUE;
}
2013-06-01 22:48:24 +00:00
char *jid = args[1];
char *name = args[2];
2013-06-01 22:48:24 +00:00
roster_add_new(jid, name);
2013-05-20 21:51:35 +00:00
return TRUE;
}
2013-06-01 23:06:05 +00: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 22:48:24 +00:00
// change nickname
if (strcmp(args[0], "nick") == 0) {
2013-06-01 22:48:24 +00: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 22:48:24 +00:00
cons_show("Usage: %s", help.usage);
return TRUE;
}
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 (ui_windows_full()) {
cons_show_error("Windows all used, close a window and try again.");
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;
}
static gboolean
_cmd_status(gchar **args, struct cmd_help_t help)
{
char *usr = args[0];
2013-05-20 21:51:35 +00:00
char *usr_jid = NULL;
jabber_conn_status_t conn_status = jabber_get_connection_status();
win_type_t win_type = ui_current_win_type();
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
return TRUE;
}
switch (win_type)
{
case WIN_MUC:
if (usr != NULL) {
2013-04-21 18:44:31 +00:00
ui_status_room(usr);
} else {
2013-04-21 18:44:31 +00:00
ui_current_print_line("You must specify a nickname.");
}
break;
case WIN_CHAT:
if (usr != NULL) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("No parameter required when in chat.");
} else {
2013-04-21 18:44:31 +00:00
ui_status();
}
break;
case WIN_PRIVATE:
if (usr != NULL) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("No parameter required when in chat.");
} else {
2013-04-21 18:44:31 +00:00
ui_status_private();
}
break;
case WIN_CONSOLE:
if (usr != NULL) {
usr_jid = roster_barejid_from_name(usr);
2013-05-20 21:51:35 +00:00
if (usr_jid == NULL) {
usr_jid = usr;
}
cons_show_status(usr_jid);
} else {
cons_show("Usage: %s", help.usage);
}
break;
default:
break;
}
return TRUE;
}
static gboolean
_cmd_info(gchar **args, struct cmd_help_t help)
{
char *usr = args[0];
2013-05-19 22:44:28 +00:00
char *usr_jid = NULL;
2012-11-15 02:31:31 +00:00
jabber_conn_status_t conn_status = jabber_get_connection_status();
win_type_t win_type = ui_current_win_type();
PContact pcontact = NULL;
2012-11-15 02:31:31 +00:00
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
return TRUE;
}
switch (win_type)
{
case WIN_MUC:
if (usr != NULL) {
2013-04-21 18:44:31 +00:00
pcontact = muc_get_participant(ui_current_recipient(), usr);
if (pcontact != NULL) {
cons_show_info(pcontact);
} else {
cons_show("No such participant \"%s\" in room.", usr);
}
} else {
cons_show("No nickname supplied to /info in chat room.");
}
break;
case WIN_CHAT:
if (usr != NULL) {
cons_show("No parameter required for /info in chat.");
} else {
pcontact = roster_get_contact(ui_current_recipient());
if (pcontact != NULL) {
cons_show_info(pcontact);
} else {
2013-04-21 18:44:31 +00:00
cons_show("No such contact \"%s\" in roster.", ui_current_recipient());
}
}
break;
case WIN_PRIVATE:
if (usr != NULL) {
2013-04-21 18:44:31 +00:00
ui_current_print_line("No parameter required when in chat.");
} else {
2013-04-21 18:44:31 +00:00
Jid *jid = jid_create(ui_current_recipient());
pcontact = muc_get_participant(jid->barejid, jid->resourcepart);
if (pcontact != NULL) {
cons_show_info(pcontact);
} else {
cons_show("No such participant \"%s\" in room.", jid->resourcepart);
}
jid_destroy(jid);
}
break;
case WIN_CONSOLE:
if (usr != NULL) {
usr_jid = roster_barejid_from_name(usr);
2013-05-19 22:44:28 +00:00
if (usr_jid == NULL) {
usr_jid = usr;
}
pcontact = roster_get_contact(usr_jid);
if (pcontact != NULL) {
cons_show_info(pcontact);
} else {
cons_show("No such contact \"%s\" in roster.", usr);
2013-02-17 01:04:10 +00:00
}
} else {
cons_show("Usage: %s", help.usage);
}
break;
default:
break;
2013-02-17 01:04:10 +00:00
}
return TRUE;
}
static gboolean
_cmd_caps(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();
PContact pcontact = NULL;
2013-02-17 01:04:10 +00:00
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
return TRUE;
}
switch (win_type)
{
case WIN_MUC:
if (args[0] != NULL) {
2013-04-21 18:44:31 +00:00
pcontact = muc_get_participant(ui_current_recipient(), args[0]);
2013-02-17 01:04:10 +00:00
if (pcontact != NULL) {
Resource *resource = p_contact_get_resource(pcontact, args[0]);
cons_show_caps(args[0], resource);
2013-02-17 01:04:10 +00:00
} else {
cons_show("No such participant \"%s\" in room.", args[0]);
2013-02-17 01:04:10 +00:00
}
} else {
cons_show("No nickname supplied to /caps in chat room.");
2013-02-17 01:04:10 +00:00
}
break;
case WIN_CHAT:
case WIN_CONSOLE:
if (args[0] != NULL) {
Jid *jid = jid_create(args[0]);
2013-02-17 01:04:10 +00:00
if (jid->fulljid == NULL) {
cons_show("You must provide a full jid to the /caps command.");
2013-02-17 01:04:10 +00:00
} else {
pcontact = roster_get_contact(jid->barejid);
2013-02-17 19:28:25 +00: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-17 01:04:10 +00:00
}
} else {
cons_show("You must provide a jid to the /caps command.");
2013-02-17 01:04:10 +00:00
}
break;
case WIN_PRIVATE:
if (args[0] != NULL) {
cons_show("No parameter needed to /caps when in private chat.");
2013-02-17 01:04:10 +00:00
} else {
2013-04-21 18:44:31 +00:00
Jid *jid = jid_create(ui_current_recipient());
pcontact = muc_get_participant(jid->barejid, jid->resourcepart);
Resource *resource = p_contact_get_resource(pcontact, jid->resourcepart);
cons_show_caps(jid->resourcepart, resource);
}
break;
default:
break;
}
return TRUE;
}
static gboolean
_cmd_software(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();
PContact pcontact = NULL;
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
return TRUE;
}
switch (win_type)
{
case WIN_MUC:
if (args[0] != NULL) {
2013-04-21 18:44:31 +00:00
pcontact = muc_get_participant(ui_current_recipient(), args[0]);
if (pcontact != NULL) {
2013-04-21 18:44:31 +00:00
Jid *jid = jid_create_from_bare_and_resource(ui_current_recipient(), args[0]);
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.");
}
break;
case WIN_CHAT:
case WIN_CONSOLE:
if (args[0] != NULL) {
Jid *jid = jid_create(args[0]);
if (jid->fulljid == NULL) {
cons_show("You must provide a full jid to the /software command.");
} else {
iq_send_software_version(jid->fulljid);
}
} else {
cons_show("You must provide a jid to the /software command.");
}
break;
case WIN_PRIVATE:
if (args[0] != NULL) {
cons_show("No parameter needed to /software when in private chat.");
} else {
2013-04-21 18:44:31 +00:00
iq_send_software_version(ui_current_recipient());
}
break;
default:
break;
}
return TRUE;
}
2012-11-04 01:27:01 +00:00
static gboolean
_cmd_join(gchar **args, struct cmd_help_t help)
2012-11-04 01:27:01 +00:00
{
2013-01-13 03:14:36 +00:00
jabber_conn_status_t conn_status = jabber_get_connection_status();
2013-01-13 17:58:25 +00:00
2013-01-13 03:14:36 +00:00
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
return TRUE;
}
if (ui_windows_full()) {
cons_show_error("Windows all used, close a window and try again.");
2013-01-13 03:14:36 +00:00
return TRUE;
}
int num_args = g_strv_length(args);
char *room = NULL;
char *nick = NULL;
Jid *room_arg = jid_create(args[0]);
GString *room_str = g_string_new("");
2013-05-21 21:00:42 +00:00
Jid *my_jid = jid_create(jabber_get_fulljid());
2012-11-04 01:27:01 +00:00
// full room jid supplied (room@server)
if (room_arg->localpart != NULL) {
room = args[0];
// server not supplied (room), guess conference.<users-domain-part>
} else {
g_string_append(room_str, args[0]);
g_string_append(room_str, "@conference.");
2013-06-30 14:19:43 +00:00
g_string_append(room_str, my_jid->domainpart);
room = room_str->str;
}
// nick supplied
if (num_args == 2) {
nick = args[1];
// use localpart for nick
2013-01-13 03:14:36 +00:00
} else {
nick = my_jid->localpart;
}
2012-11-04 01:27:01 +00:00
Jid *room_jid = jid_create_from_bare_and_resource(room, nick);
2012-11-04 01:27:01 +00:00
2013-01-13 03:14:36 +00:00
if (!muc_room_is_active(room_jid)) {
2013-01-28 22:55:26 +00:00
presence_join_room(room_jid);
2012-11-04 01:27:01 +00:00
}
2013-04-21 18:44:31 +00:00
ui_room_join(room_jid);
muc_remove_invite(room);
2012-11-04 01:27:01 +00:00
2013-06-30 14:19:43 +00:00
jid_destroy(room_arg);
jid_destroy(room_jid);
jid_destroy(my_jid);
g_string_free(room_str, TRUE);
return TRUE;
2012-11-04 01:27:01 +00: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;
}
if (ui_current_win_type() != WIN_MUC) {
cons_show("You must be in a chat room to send an invite.");
return TRUE;
}
char *usr_jid = roster_barejid_from_name(contact);
if (usr_jid == NULL) {
usr_jid = contact;
}
2013-04-21 18:44:31 +00:00
room = ui_current_recipient();
message_send_invite(room, usr_jid, reason);
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;
}
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;
}
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) {
cons_show("You are currenlty connect.");
return TRUE;
}
if (args[0] == NULL) {
2013-05-21 21:00:42 +00:00
Jid *jid = jid_create(jabber_get_fulljid());
GString *conference_node = g_string_new("conference.");
2013-06-30 14:19:43 +00:00
g_string_append(conference_node, jid->domainpart);
jid_destroy(jid);
iq_room_list_request(conference_node->str);
g_string_free(conference_node, TRUE);
} else {
iq_room_list_request(args[0]);
}
return TRUE;
}
2013-03-14 20:50:09 +00: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) {
cons_show("You are currenlty connect.");
return TRUE;
}
GString *jid = g_string_new("");
if (args[1] != NULL) {
jid = g_string_append(jid, args[1]);
} else {
2013-05-21 21:00:42 +00:00
Jid *jidp = jid_create(jabber_get_fulljid());
2013-06-30 14:19:43 +00:00
jid = g_string_append(jid, jidp->domainpart);
jid_destroy(jidp);
}
2013-03-14 20:50:09 +00:00
if (g_strcmp0(args[0], "info") == 0) {
iq_disco_info_request(jid->str);
2013-03-14 20:50:09 +00:00
} else {
iq_disco_items_request(jid->str);
2013-03-14 20:50:09 +00:00
}
g_string_free(jid, TRUE);
2013-03-14 20:50:09 +00:00
return TRUE;
}
2012-11-18 18:36:17 +00: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;
}
if (ui_current_win_type() != WIN_MUC) {
2012-11-18 18:36:17 +00:00
cons_show("You can only change your nickname in a chat room window.");
return TRUE;
}
2013-04-21 18:44:31 +00:00
char *room = ui_current_recipient();
2012-11-18 18:36:17 +00:00
char *nick = args[0];
2013-01-28 22:55:26 +00:00
presence_change_room_nick(room, nick);
2012-11-18 18:36:17 +00:00
return TRUE;
}
2012-07-28 00:36:08 +00:00
static gboolean
_cmd_tiny(gchar **args, struct cmd_help_t help)
2012-07-28 00:36:08 +00:00
{
char *url = args[0];
win_type_t win_type = ui_current_win_type();
2012-11-15 02:31:31 +00:00
if (!tinyurl_valid(url)) {
GString *error = g_string_new("/tiny, badly formed URL: ");
g_string_append(error, url);
cons_show_error(error->str);
if (win_type != WIN_CONSOLE) {
2013-04-21 18:44:31 +00:00
ui_current_error_line(error->str);
}
g_string_free(error, TRUE);
} else if (win_type != WIN_CONSOLE) {
char *tiny = tinyurl_get(url);
2012-07-29 20:32:04 +00:00
if (tiny != NULL) {
if (win_type == WIN_CHAT) {
2013-04-21 18:44:31 +00:00
char *recipient = ui_current_recipient();
2013-01-29 00:21:04 +00:00
message_send(tiny, recipient);
2013-02-03 02:35:04 +00:00
if (prefs_get_boolean(PREF_CHLOG)) {
2013-05-21 21:00:42 +00:00
const char *jid = jabber_get_fulljid();
2013-01-29 23:01:15 +00:00
Jid *jidp = jid_create(jid);
chat_log_chat(jidp->barejid, recipient, tiny, PROF_OUT_LOG, NULL);
jid_destroy(jidp);
2013-01-15 21:58:41 +00:00
}
2013-04-21 18:44:31 +00:00
ui_outgoing_msg("me", recipient, tiny);
2013-01-15 21:58:41 +00:00
free(recipient);
} else if (win_type == WIN_PRIVATE) {
2013-04-21 18:44:31 +00:00
char *recipient = ui_current_recipient();
2013-01-29 00:21:04 +00:00
message_send(tiny, recipient);
2013-04-21 18:44:31 +00:00
ui_outgoing_msg("me", recipient, tiny);
2013-01-15 21:58:41 +00:00
free(recipient);
} else { // groupchat
2013-04-21 18:44:31 +00:00
char *recipient = ui_current_recipient();
message_send_groupchat(tiny, recipient);
2013-01-15 21:58:41 +00:00
free(recipient);
}
free(tiny);
2012-07-29 20:32:04 +00:00
} else {
cons_show_error("Couldn't get tinyurl.");
2012-07-29 20:32:04 +00:00
}
} else {
cons_show("/tiny can only be used in chat windows");
2012-07-28 00:36:08 +00:00
}
return TRUE;
2012-07-28 00:36:08 +00:00
}
static gboolean
_cmd_clear(gchar **args, struct cmd_help_t help)
{
ui_clear_current();
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_close(gchar **args, struct cmd_help_t help)
2012-02-09 23:15:53 +00:00
{
jabber_conn_status_t conn_status = jabber_get_connection_status();
int index = 0;
int curr = 0;
int count = 0;
if (args[0] == NULL) {
index = ui_current_win_index();
} else if (strcmp(args[0], "all") == 0) {
for (curr = 1; curr <= 9; curr++) {
if (ui_win_exists(curr)) {
if (conn_status == JABBER_CONNECTED) {
ui_close_connected_win(curr);
}
ui_close_win(curr);
count++;
}
}
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);
}
return TRUE;
} else if (strcmp(args[0], "read") == 0) {
for (curr = 1; curr <= 9; curr++) {
if (ui_win_exists(curr) && (ui_win_unread(curr) == 0)) {
if (conn_status == JABBER_CONNECTED) {
ui_close_connected_win(curr);
}
ui_close_win(curr);
count++;
}
}
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);
}
return TRUE;
} else {
index = atoi(args[0]);
if (index == 0) {
index = 9;
} else if (index != 10) {
index--;
}
}
2012-10-31 21:30:58 +00:00
if (index == 0) {
cons_show("Cannot close console window.");
return TRUE;
}
if (index > 9 || index < 0) {
cons_show("No such window exists.");
return TRUE;
}
if (!ui_win_exists(index)) {
cons_show("Window is not open.");
return TRUE;
}
// handle leaving rooms, or chat
if (conn_status == JABBER_CONNECTED) {
ui_close_connected_win(index);
2012-10-31 21:30:58 +00:00
}
// close the window
ui_close_win(index);
2013-05-16 22:08:58 +00:00
int ui_index = index + 1;
if (ui_index == 10) {
ui_index = 0;
}
cons_show("Closed window %d", ui_index);
2012-02-09 23:15:53 +00:00
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
2013-05-30 21:48:56 +00: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 20:21:14 +00:00
_cmd_beep(gchar **args, struct cmd_help_t help)
2012-04-24 00:24:54 +00:00
{
2013-02-03 02:51:15 +00:00
return _cmd_set_boolean_preference(args[0], help, "Sound", PREF_BEEP);
2012-04-24 00:24:54 +00:00
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_states(gchar **args, struct cmd_help_t help)
{
gboolean result = _cmd_set_boolean_preference(args[0], help, "Sending chat states",
2013-02-03 02:51:15 +00:00
PREF_STATES);
// 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;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_titlebar(gchar **args, struct cmd_help_t help)
{
2012-12-02 20:53:45 +00: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-03 02:51:15 +00:00
"Show version in window title", PREF_TITLEBARVERSION);
2012-12-02 20:53:45 +00:00
}
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_outtype(gchar **args, struct cmd_help_t help)
{
gboolean result = _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Sending typing notifications", PREF_OUTTYPE);
// if enabled, enable states
if (result == TRUE && (strcmp(args[0], "on") == 0)) {
prefs_set_boolean(PREF_STATES, TRUE);
}
return result;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_gone(gchar **args, struct cmd_help_t help)
{
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);
}
// if enabled, enable states
if (period > 0) {
prefs_set_boolean(PREF_STATES, TRUE);
}
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_notify(gchar **args, struct cmd_help_t help)
2012-06-28 22:45:37 +00:00
{
char *kind = args[0];
char *value = args[1];
// bad kind
if ((strcmp(kind, "message") != 0) && (strcmp(kind, "typing") != 0) &&
(strcmp(kind, "remind") != 0) && (strcmp(kind, "invite") != 0) &&
(strcmp(kind, "sub") != 0)) {
2012-11-15 02:31:31 +00:00
cons_show("Usage: %s", help.usage);
// set message setting
} else if (strcmp(kind, "message") == 0) {
if (strcmp(value, "on") == 0) {
cons_show("Message notifications enabled.");
2013-02-03 02:51:15 +00:00
prefs_set_boolean(PREF_NOTIFY_MESSAGE, TRUE);
} else if (strcmp(value, "off") == 0) {
cons_show("Message notifications disabled.");
2013-02-03 02:51:15 +00:00
prefs_set_boolean(PREF_NOTIFY_MESSAGE, FALSE);
} else {
cons_show("Usage: /notify message on|off");
}
// set typing setting
} else if (strcmp(kind, "typing") == 0) {
if (strcmp(value, "on") == 0) {
cons_show("Typing notifications enabled.");
2013-02-03 02:51:15 +00:00
prefs_set_boolean(PREF_NOTIFY_TYPING, TRUE);
} else if (strcmp(value, "off") == 0) {
cons_show("Typing notifications disabled.");
2013-02-03 02:51:15 +00:00
prefs_set_boolean(PREF_NOTIFY_TYPING, FALSE);
} else {
cons_show("Usage: /notify typing on|off");
}
2012-11-15 02:31:31 +00: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");
}
// 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");
}
// set remind setting
} else if (strcmp(kind, "remind") == 0) {
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);
}
} else {
cons_show("Unknown command: %s.", kind);
}
2012-11-15 02:31:31 +00:00
return TRUE;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_log(gchar **args, struct cmd_help_t help)
{
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);
}
} else {
cons_show("Usage: %s", help.usage);
}
/* TODO: make 'level' subcommand for debug level */
return TRUE;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_reconnect(gchar **args, struct cmd_help_t help)
{
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);
}
return TRUE;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_autoping(gchar **args, struct cmd_help_t help)
{
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);
}
return TRUE;
}
2012-11-30 23:34:14 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_autoaway(gchar **args, struct cmd_help_t help)
2012-11-30 23:34:14 +00: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-03 03:24:13 +00:00
prefs_set_string(PREF_AUTOAWAY_MODE, value);
2012-11-30 23:34:14 +00: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 17:46:25 +00:00
if (strcmp(value, "off") == 0) {
2013-02-03 03:24:13 +00:00
prefs_set_string(PREF_AUTOAWAY_MESSAGE, NULL);
2012-12-01 17:46:25 +00:00
cons_show("Auto away message cleared.");
} else {
2013-02-03 03:24:13 +00:00
prefs_set_string(PREF_AUTOAWAY_MESSAGE, value);
2012-12-01 17:46:25 +00:00
cons_show("Auto away message set to: \"%s\".", value);
}
2012-11-30 23:34:14 +00:00
return TRUE;
}
if (strcmp(setting, "check") == 0) {
return _cmd_set_boolean_preference(value, help, "Online check",
2013-02-03 02:51:15 +00:00
PREF_AUTOAWAY_CHECK);
2012-11-30 23:34:14 +00:00
}
return TRUE;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_priority(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;
}
char *value = args[0];
int intval;
if (_strtoi(value, &intval, -128, 127) == 0) {
accounts_set_priority_all(jabber_get_account_name(), intval);
resource_presence_t last_presence = accounts_get_last_presence(jabber_get_account_name());
2013-02-10 13:36:11 +00:00
presence_update(last_presence, jabber_get_presence_message(), 0);
cons_show("Priority set to %d.", intval);
}
2012-11-15 02:31:31 +00:00
return TRUE;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_statuses(gchar **args, struct cmd_help_t help)
{
return _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Status notifications", PREF_STATUSES);
}
2012-10-24 00:35:36 +00:00
static gboolean
_cmd_vercheck(gchar **args, struct cmd_help_t help)
2012-10-24 00:35:36 +00:00
{
int num_args = g_strv_length(args);
if (num_args == 0) {
2012-10-24 00:35:36 +00:00
cons_check_version(TRUE);
return TRUE;
} else {
2012-11-30 23:34:14 +00:00
return _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Version checking", PREF_VERCHECK);
2012-10-24 00:35:36 +00:00
}
}
2012-07-24 22:19:48 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_flash(gchar **args, struct cmd_help_t help)
2012-04-24 00:39:23 +00:00
{
2012-11-30 23:34:14 +00:00
return _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Screen flash", PREF_FLASH);
2012-04-24 00:39:23 +00:00
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_intype(gchar **args, struct cmd_help_t help)
{
2012-11-30 23:34:14 +00:00
return _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Show contact typing", PREF_INTYPE);
}
2012-07-24 22:19:48 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_splash(gchar **args, struct cmd_help_t help)
2012-06-03 22:02:13 +00:00
{
2012-11-30 23:34:14 +00:00
return _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Splash screen", PREF_SPLASH);
2012-06-03 22:02:13 +00:00
}
2012-07-24 22:19:48 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_chlog(gchar **args, struct cmd_help_t help)
{
gboolean result = _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Chat logging", PREF_CHLOG);
// if set to off, disable history
if (result == TRUE && (strcmp(args[0], "off") == 0)) {
prefs_set_boolean(PREF_HISTORY, FALSE);
}
return result;
}
2013-05-04 23:16:10 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_grlog(gchar **args, struct cmd_help_t help)
2013-05-04 23:16:10 +00:00
{
gboolean result = _cmd_set_boolean_preference(args[0], help,
"Groupchat logging", PREF_GRLOG);
return result;
}
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_mouse(gchar **args, struct cmd_help_t help)
{
return _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Mouse handling", PREF_MOUSE);
}
2012-10-14 17:26:08 +00:00
static gboolean
2013-06-23 20:21:14 +00:00
_cmd_history(gchar **args, struct cmd_help_t help)
2012-10-14 17:26:08 +00:00
{
gboolean result = _cmd_set_boolean_preference(args[0], help,
2013-02-03 02:51:15 +00:00
"Chat history", PREF_HISTORY);
// 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 17:26:08 +00:00
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_away(gchar **args, struct cmd_help_t help)
{
_update_presence(RESOURCE_AWAY, "away", args);
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_online(gchar **args, struct cmd_help_t help)
2012-05-27 19:36:31 +00:00
{
_update_presence(RESOURCE_ONLINE, "online", args);
2012-05-27 19:36:31 +00:00
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_dnd(gchar **args, struct cmd_help_t help)
2012-05-27 22:00:04 +00:00
{
_update_presence(RESOURCE_DND, "dnd", args);
2012-05-27 22:00:04 +00:00
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_chat(gchar **args, struct cmd_help_t help)
2012-05-27 22:00:04 +00:00
{
_update_presence(RESOURCE_CHAT, "chat", args);
2012-05-27 22:00:04 +00:00
return TRUE;
}
2012-07-24 22:19:48 +00:00
static gboolean
_cmd_xa(gchar **args, struct cmd_help_t help)
2012-05-27 22:00:04 +00:00
{
_update_presence(RESOURCE_XA, "xa", args);
2012-05-27 22:00:04 +00:00
return TRUE;
}
2012-08-22 23:44:14 +00:00
// helper function for status change commands
2012-07-24 22:19:48 +00:00
static void
_update_presence(const resource_presence_t resource_presence,
const char * const show, gchar **args)
2012-05-28 20:51:05 +00:00
{
char *msg = NULL;
int num_args = g_strv_length(args);
if (num_args == 1) {
msg = args[0];
2012-05-28 22:40:11 +00:00
}
jabber_conn_status_t conn_status = jabber_get_connection_status();
2012-05-28 20:51:05 +00:00
if (conn_status != JABBER_CONNECTED) {
cons_show("You are not currently connected.");
} else {
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 22:40:11 +00:00
if (msg != NULL) {
2013-01-31 23:49:29 +00:00
cons_show("Status set to %s (priority %d), \"%s\".", show, priority, msg);
2012-05-28 22:40:11 +00:00
} else {
2013-01-31 23:49:29 +00:00
cons_show("Status set to %s (priority %d).", show, priority);
2012-05-28 22:40:11 +00:00
}
2012-05-28 20:51:05 +00:00
}
2012-05-28 22:40:11 +00:00
}
2012-08-22 23:30:11 +00:00
2012-08-22 23:44:14 +00:00
// helper function for boolean preference commands
2012-08-22 23:30:11 +00:00
static gboolean
2012-11-30 23:34:14 +00:00
_cmd_set_boolean_preference(gchar *arg, struct cmd_help_t help,
2013-02-03 02:51:15 +00:00
const char * const display, preference_t pref)
2012-08-22 23:30:11 +00: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 23:34:14 +00:00
if (strcmp(arg, "on") == 0) {
2012-08-22 23:30:11 +00:00
cons_show(enabled->str);
2013-02-03 02:51:15 +00:00
prefs_set_boolean(pref, TRUE);
2012-11-30 23:34:14 +00:00
} else if (strcmp(arg, "off") == 0) {
2012-08-22 23:30:11 +00:00
cons_show(disabled->str);
2013-02-03 02:51:15 +00:00
prefs_set_boolean(pref, FALSE);
2012-08-22 23:30:11 +00:00
} else {
char usage[strlen(help.usage) + 8];
2012-08-22 23:30:11 +00:00
sprintf(usage, "Usage: %s", help.usage);
cons_show(usage);
}
2012-08-22 23:30:11 +00:00
g_string_free(enabled, TRUE);
g_string_free(disabled, TRUE);
return TRUE;
}
2013-06-02 18:56:35 +00:00
static char *
_sub_autocomplete(char *input, int *size)
2012-10-28 00:08:04 +00:00
{
2013-06-02 18:56:35 +00:00
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/sub allow", presence_sub_request_find);
if (result != NULL) {
return result;
2012-10-28 00:08:04 +00:00
}
2013-06-02 18:56:35 +00: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;
}
2013-06-02 18:56:35 +00:00
return NULL;
}
2013-06-02 18:56:35 +00:00
static char *
_who_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00: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 21:49:51 +00:00
}
}
2013-06-02 18:56:35 +00:00
result = autocomplete_param_with_ac(input, size, "/who", who_ac);
if (result != NULL) {
return result;
}
2013-06-02 18:56:35 +00:00
return NULL;
}
2013-06-02 18:56:35 +00:00
static char *
2013-05-19 01:30:03 +00:00
_roster_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00: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-19 01:30:03 +00:00
}
2013-06-02 18:56:35 +00:00
result = autocomplete_param_with_ac(input, size, "/roster", roster_ac);
if (result != NULL) {
return result;
}
return NULL;
2013-05-19 01:30:03 +00:00
}
2013-06-02 18:56:35 +00:00
static char *
_group_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00:00
char *result = NULL;
result = autocomplete_param_with_func(input, size, "/group show", roster_find_group);
if (result != NULL) {
return result;
}
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 18:56:35 +00: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 18:56:35 +00:00
result = autocomplete_param_with_ac(input, size, "/group", group_ac);
if (result != NULL) {
return result;
}
return NULL;
}
2013-06-02 18:56:35 +00:00
static char *
_notify_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00: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-06-02 18:56:35 +00:00
result = autocomplete_param_with_ac(input, size, "/notify", notify_ac);
if (result != NULL) {
return result;
}
return NULL;
}
2013-06-02 18:56:35 +00:00
static char *
2012-12-02 20:53:45 +00:00
_titlebar_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00: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 20:53:45 +00:00
}
2013-06-02 18:56:35 +00:00
return NULL;
2012-12-02 20:53:45 +00:00
}
2013-06-02 18:56:35 +00:00
static char *
_autoaway_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00:00
char *result = NULL;
2013-06-02 18:56:35 +00: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;
}
2013-06-02 18:56:35 +00:00
return NULL;
}
2013-06-02 18:56:35 +00:00
static char *
2012-12-09 00:46:14 +00:00
_theme_autocomplete(char *input, int *size)
{
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) {
autocomplete_add(theme_load_ac, strdup(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);
if (result != NULL) {
return result;
}
2012-12-09 00:46:14 +00:00
}
2013-06-02 18:56:35 +00:00
result = autocomplete_param_with_ac(input, size, "/theme", theme_ac);
if (result != NULL) {
return result;
}
return NULL;
2012-12-09 00:46:14 +00:00
}
2013-06-02 18:56:35 +00:00
static char *
2012-12-09 22:58:45 +00:00
_account_autocomplete(char *input, int *size)
{
2013-06-02 18:56:35 +00: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 22:58:45 +00:00
}
2013-06-02 18:56:35 +00:00
return NULL;
2012-12-09 22:58:45 +00: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;
}