2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-02-20 15:07:38 -05:00
|
|
|
* command.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-19 15:57:46 -05:00
|
|
|
#include <stdlib.h>
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <string.h>
|
2012-11-13 17:23:06 -05:00
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
2012-04-23 20:02:22 -04:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2012-10-31 17:30:58 -04:00
|
|
|
#include "chat_session.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
#include "command.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "common.h"
|
2012-10-04 17:48:41 -04:00
|
|
|
#include "contact.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "contact_list.h"
|
2012-10-02 17:00:05 -04:00
|
|
|
#include "chat_log.h"
|
2012-02-26 20:44:09 -05:00
|
|
|
#include "history.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
#include "jabber.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "log.h"
|
2012-11-17 19:07:00 -05:00
|
|
|
#include "parser.h"
|
2012-05-10 04:55:55 -04:00
|
|
|
#include "preferences.h"
|
2012-06-04 18:59:09 -04:00
|
|
|
#include "prof_autocomplete.h"
|
2012-11-19 18:15:42 -05:00
|
|
|
#include "profanity.h"
|
2012-11-21 17:33:07 -05:00
|
|
|
#include "theme.h"
|
2012-07-27 20:36:08 -04:00
|
|
|
#include "tinyurl.h"
|
2012-08-25 20:50:50 -04:00
|
|
|
#include "ui.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
|
2012-10-27 20:08:04 -04:00
|
|
|
typedef char*(*autocomplete_func)(char *);
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-08-22 18:57:34 -04:00
|
|
|
* Command structure
|
|
|
|
*
|
|
|
|
* cmd - The command string including leading '/'
|
2012-08-11 20:39:51 -04:00
|
|
|
* func - The function to execute for the command
|
2012-11-17 21:40:49 -05:00
|
|
|
* parser - The function used to parse arguments
|
|
|
|
* min_args - Minimum number of arguments
|
|
|
|
* max_args - Maximum number of arguments
|
2012-08-22 18:57:34 -04:00
|
|
|
* help - A help struct containing usage info etc
|
2012-08-11 20:39:51 -04:00
|
|
|
*/
|
|
|
|
struct cmd_t {
|
|
|
|
const gchar *cmd;
|
2012-11-17 21:40:49 -05:00
|
|
|
gboolean (*func)(gchar **args, struct cmd_help_t help);
|
|
|
|
gchar** (*parser)(const char * const inp, int min, int max);
|
|
|
|
int min_args;
|
|
|
|
int max_args;
|
2012-08-11 20:39:51 -04:00
|
|
|
struct cmd_help_t help;
|
|
|
|
};
|
|
|
|
|
2012-08-14 19:42:38 -04:00
|
|
|
static struct cmd_t * _cmd_get_command(const char * const command);
|
2012-10-21 15:02:20 -04:00
|
|
|
static void _update_presence(const jabber_presence_t presence,
|
2012-11-17 21:40:49 -05:00
|
|
|
const char * const show, gchar **args);
|
|
|
|
static gboolean _cmd_set_boolean_preference(gchar **args, struct cmd_help_t help,
|
|
|
|
const char * const cmd_str, const char * const display,
|
2012-08-22 19:30:11 -04:00
|
|
|
void (*set_func)(gboolean));
|
2012-10-27 20:42:26 -04:00
|
|
|
|
|
|
|
static char *_cmd_complete(char *inp);
|
|
|
|
static void _cmd_reset_command_completer(void);
|
2012-10-27 20:47:57 -04:00
|
|
|
static char *_cmd_who_complete(char *inp);
|
2012-11-11 09:32:18 -05:00
|
|
|
static void _cmd_who_reset_completer(void);
|
2012-10-27 20:08:04 -04:00
|
|
|
static char *_cmd_help_complete(char *inp);
|
2012-10-27 20:42:26 -04:00
|
|
|
static void _cmd_help_reset_completer(void);
|
|
|
|
static char *_cmd_notify_complete(char *inp);
|
|
|
|
static void _cmd_notify_reset_completer(void);
|
2012-11-11 09:16:31 -05:00
|
|
|
static char *_cmd_sub_complete(char *inp);
|
|
|
|
static void _cmd_sub_reset_completer(void);
|
2012-11-12 04:13:03 -05:00
|
|
|
static char *_cmd_log_complete(char *inp);
|
|
|
|
static void _cmd_log_reset_completer(void);
|
2012-10-27 20:42:26 -04:00
|
|
|
static void _cmd_complete_parameters(char *input, int *size);
|
|
|
|
static void _notify_autocomplete(char *input, int *size);
|
2012-10-27 20:08:04 -04:00
|
|
|
static void _parameter_autocomplete(char *input, int *size, char *command,
|
|
|
|
autocomplete_func func);
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-11-13 17:23:06 -05:00
|
|
|
static int _strtoi(char *str, int *saveptr, int min, int max);
|
2012-11-14 21:31:31 -05:00
|
|
|
gchar** _cmd_parse_args(const char * const inp, int min, int max, int *num);
|
2012-11-13 17:23:06 -05:00
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
// command prototypes
|
2012-11-17 21:40:49 -05:00
|
|
|
static gboolean _cmd_quit(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_help(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_about(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_prefs(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_who(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_connect(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_disconnect(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_sub(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_msg(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_tiny(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_close(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_join(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_beep(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_notify(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_log(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_priority(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_intype(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_flash(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_showsplash(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_chlog(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_history(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_states(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_set_outtype(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_vercheck(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_away(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_online(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_dnd(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_chat(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_xa(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_info(gchar **args, struct cmd_help_t help);
|
|
|
|
static gboolean _cmd_wins(gchar **args, struct cmd_help_t help);
|
2012-11-18 13:36:17 -05:00
|
|
|
static gboolean _cmd_nick(gchar **args, struct cmd_help_t help);
|
2012-11-21 17:33:07 -05:00
|
|
|
static gboolean _cmd_theme(gchar **args, struct cmd_help_t help);
|
2012-04-23 20:02:22 -04:00
|
|
|
|
2012-08-22 18:57:34 -04:00
|
|
|
/*
|
|
|
|
* The commands are broken down into three groups:
|
|
|
|
* Main commands
|
|
|
|
* Commands to change preferences
|
|
|
|
* Commands to change users status
|
|
|
|
*/
|
2012-10-21 15:02:20 -04:00
|
|
|
static struct cmd_t main_commands[] =
|
2012-08-11 20:39:51 -04:00
|
|
|
{
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/help",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_help, parse_args, 0, 1,
|
2012-11-11 18:57:02 -05:00
|
|
|
{ "/help [list|area|command]", "Show help summary, or help on a specific area or command",
|
|
|
|
{ "/help [list|area|command]",
|
|
|
|
"-------------------------",
|
2012-10-22 18:58:47 -04:00
|
|
|
"Show help options.",
|
2012-11-11 18:57:02 -05:00
|
|
|
"Specify list if you want a list of all commands.",
|
2012-11-13 17:24:37 -05:00
|
|
|
"Specify an area (basic, presence, settings, navigation) for more help on that area.",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Specify the command if you want more detailed help on a specific command.",
|
2012-08-14 17:50:38 -04:00
|
|
|
"",
|
2012-11-11 18:57:02 -05:00
|
|
|
"Example : /help list",
|
2012-08-14 19:31:24 -04:00
|
|
|
"Example : /help connect",
|
2012-10-22 18:58:47 -04:00
|
|
|
"Example : /help settings",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-10-22 19:18:28 -04:00
|
|
|
{ "/about",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_about, parse_args, 0, 0,
|
2012-10-22 19:18:28 -04:00
|
|
|
{ "/about", "About Profanity",
|
|
|
|
{ "/about",
|
|
|
|
"------",
|
|
|
|
"Show versioning and license information.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/connect",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_connect, parse_args, 1, 1,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/connect user@host", "Login to jabber.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/connect user@host",
|
|
|
|
"------------------",
|
|
|
|
"Connect to the jabber server at host using the username user.",
|
|
|
|
"Profanity should work with any XMPP (Jabber) compliant chat host.",
|
|
|
|
"You can use tab completion to autocomplete any logins you have used before.",
|
|
|
|
"",
|
2012-10-21 15:02:20 -04:00
|
|
|
"Example: /connect myuser@gmail.com",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-10-27 13:12:04 -04:00
|
|
|
{ "/disconnect",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_disconnect, parse_args, 0, 0,
|
2012-10-27 13:12:04 -04:00
|
|
|
{ "/disconnect", "Logout of current jabber session.",
|
|
|
|
{ "/disconnect",
|
|
|
|
"------------------",
|
|
|
|
"Disconnect from the current jabber session.",
|
|
|
|
"See the /connect command for connecting again.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/prefs",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_prefs, parse_args, 0, 0,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/prefs", "Show current preferences.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/prefs",
|
|
|
|
"------",
|
|
|
|
"List all current user preference settings.",
|
|
|
|
"User preferences are stored at:",
|
|
|
|
"",
|
|
|
|
" ~/.profanity/config",
|
|
|
|
"",
|
|
|
|
"Preference changes made using the various commands take effect immediately,",
|
|
|
|
"you will need to restart Profanity for config file edits to take effect.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-11-21 17:33:07 -05:00
|
|
|
{ "/theme",
|
|
|
|
_cmd_theme, parse_args, 1, 1,
|
|
|
|
{ "/theme [theme-name]", "Change colour theme.",
|
|
|
|
{ "/theme [theme-name]",
|
|
|
|
"--------------",
|
|
|
|
"Change the colour setting as defined in:",
|
|
|
|
"",
|
|
|
|
" ~/.profanity/themes/theme-name",
|
|
|
|
"",
|
|
|
|
"Using \"default\" as the theme name will reset to the default colours.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/msg",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_msg, parse_args_with_freetext, 2, 2,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/msg user@host mesg", "Send mesg to user.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/msg user@host mesg",
|
|
|
|
"-------------------",
|
|
|
|
"Send a message to the user specified.",
|
|
|
|
"Use tab completion to autocomplete online contacts.",
|
|
|
|
"If there is no current chat with the recipient, a new chat window",
|
|
|
|
"will be opened, and highlighted in the status bar at the bottom.",
|
|
|
|
"pressing the corresponding F key will take you to that window.",
|
|
|
|
"This command can be called from any window, including chat with other users.",
|
|
|
|
"",
|
|
|
|
"Example : /msg boothj5@gmail.com Hey, here's a message!",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-11-13 20:39:26 -05:00
|
|
|
{ "/info",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_info, parse_args, 1, 1,
|
2012-11-13 20:39:26 -05:00
|
|
|
{ "/info user@host", "Find out a contacts presence information.",
|
|
|
|
{ "/info user@host",
|
|
|
|
"---------------",
|
2012-11-13 17:08:46 -05:00
|
|
|
"Find out someones presence information.",
|
|
|
|
"Use tab completion to autocomplete the contact.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-03 21:27:01 -04:00
|
|
|
{ "/join",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_join, parse_args_with_freetext, 1, 2,
|
2012-11-03 21:27:01 -04:00
|
|
|
{ "/join room@server [nick]", "Join a chat room.",
|
|
|
|
{ "/join room@server [nick]",
|
|
|
|
"------------------------",
|
|
|
|
"Join a chat room at the conference server.",
|
|
|
|
"If nick is specified you will join with this nickname,",
|
|
|
|
"otherwise the first part of your JID (before the @) will be used.",
|
2012-11-07 19:29:52 -05:00
|
|
|
"If the room doesn't exist, and the server allows it, a new one will be created."
|
2012-11-03 21:27:01 -04:00
|
|
|
"",
|
|
|
|
"Example : /join jdev@conference.jabber.org",
|
|
|
|
"Example : /join jdev@conference.jabber.org mynick",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-18 13:36:17 -05:00
|
|
|
{ "/nick",
|
|
|
|
_cmd_nick, parse_args_with_freetext, 1, 1,
|
|
|
|
{ "/nick [nickname]", "Change nickname in chat room.",
|
|
|
|
{ "/nick [nickname]",
|
|
|
|
"------------------------",
|
|
|
|
"Change the name by which other member of a chat room see you.",
|
|
|
|
"This command is only valid when called within a chat room window.",
|
|
|
|
"The new nickname may contain spaces.",
|
|
|
|
"",
|
|
|
|
"Example : /nick kai hansen",
|
|
|
|
"Example : /nick bob",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
{ "/wins",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_wins, parse_args, 0, 0,
|
2012-11-13 19:39:34 -05:00
|
|
|
{ "/wins", "List active windows.",
|
|
|
|
{ "/wins",
|
|
|
|
"-----",
|
|
|
|
"List all currently active windows and information about them.",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-28 14:51:13 -04:00
|
|
|
{ "/sub",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_sub, parse_args, 1, 2,
|
2012-11-11 14:32:42 -05:00
|
|
|
{ "/sub <add|del|req|show> [jid]", "Manage subscriptions.",
|
|
|
|
{ "/sub <add|del|req|show> [jid]",
|
|
|
|
"-----------------------------",
|
|
|
|
"add : Approve subscription to a contact.",
|
|
|
|
"del : Remove subscription for a contact.",
|
|
|
|
"req : Send a subscription request to the user to be informed of their",
|
|
|
|
" : presence.",
|
|
|
|
"show : Show subscriprion status for a contact.",
|
2012-10-28 14:51:13 -04:00
|
|
|
"",
|
2012-11-11 07:00:21 -05:00
|
|
|
"If optional parameter 'jid' isn't set command belongs to the current window.",
|
|
|
|
"",
|
|
|
|
"Example: /sub add myfriend@jabber.org",
|
2012-10-28 14:51:13 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/tiny",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_tiny, parse_args, 1, 1,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/tiny url", "Send url as tinyurl in current chat.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/tiny url",
|
|
|
|
"---------",
|
|
|
|
"Send the url as a tiny url.",
|
|
|
|
"This command can only be called when in a chat window,",
|
|
|
|
"not from the console.",
|
|
|
|
"",
|
|
|
|
"Example : /tiny http://www.google.com",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/who",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_who, parse_args, 0, 1,
|
2012-10-04 18:18:48 -04:00
|
|
|
{ "/who [status]", "Show contacts with chosen status.",
|
|
|
|
{ "/who [status]",
|
|
|
|
"-------------",
|
|
|
|
"Show contacts with the specified status, no status shows all contacts.",
|
2012-11-11 19:21:49 -05:00
|
|
|
"Possible statuses are: online, offline, away, dnd, xa, chat, available, unavailable.",
|
|
|
|
"",
|
|
|
|
"\"/who online\" will list contacts that are connected, i.e. online, chat, away, xa, dnd",
|
|
|
|
"\"/who available\" will list contacts that are available for chat, i.e. online, chat.",
|
|
|
|
"\"/who unavailable\" will list contacts that are not available for chat, i.e. offline, away, xa, dnd.",
|
|
|
|
"",
|
2012-11-07 19:29:52 -05:00
|
|
|
"If in a chat room, this command shows the room roster in the room.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/close",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_close, parse_args, 0, 0,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/close", "Close current chat window.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/close",
|
|
|
|
"------",
|
|
|
|
"Close the current chat window, no message is sent to the recipient,",
|
|
|
|
"The chat window will become available for new chats.",
|
2012-11-07 19:29:52 -05:00
|
|
|
"If in a chat room, you will leave the room.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-14 17:06:27 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/quit",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_quit, parse_args, 0, 0,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/quit", "Quit Profanity.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/quit",
|
|
|
|
"-----",
|
|
|
|
"Logout of any current sessions, and quit Profanity.",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } }
|
2012-08-11 16:26:24 -04:00
|
|
|
};
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
static struct cmd_t setting_commands[] =
|
2012-08-11 20:39:51 -04:00
|
|
|
{
|
|
|
|
{ "/beep",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_beep, parse_args, 1, 1,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/beep on|off", "Terminal beep on new messages.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/beep on|off",
|
|
|
|
"------------",
|
|
|
|
"Switch the terminal bell on or off.",
|
|
|
|
"The bell will sound when incoming messages are received.",
|
|
|
|
"If the terminal does not support sounds, it may attempt to",
|
|
|
|
"flash the screen instead.",
|
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : beep=true|false",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-08-11 20:39:51 -04:00
|
|
|
{ "/notify",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_notify, parse_args, 2, 2,
|
2012-10-27 17:05:08 -04:00
|
|
|
{ "/notify type value", "Control various desktop noficiations.",
|
|
|
|
{ "/notify type value",
|
|
|
|
"------------------",
|
|
|
|
"Settings for various desktop notifications where type is one of:",
|
|
|
|
"message : Notificaitons for messages.",
|
|
|
|
" : on|off",
|
|
|
|
"remind : Notification reminders of unread messages.",
|
|
|
|
" : where value is the reminder period in seconds,",
|
|
|
|
" : use 0 to disable.",
|
|
|
|
"typing : Notifications when contacts are typing.",
|
|
|
|
" : on|off",
|
2012-08-15 19:50:32 -04:00
|
|
|
"",
|
2012-10-27 17:05:08 -04:00
|
|
|
"Example : /notify message on (enable message notifications)",
|
|
|
|
"Example : /notify remind 10 (remind every 10 seconds)",
|
|
|
|
"Example : /notify remind 0 (switch off reminders)",
|
|
|
|
"Example : /notify typing on (enable typing notifications)",
|
2012-09-23 17:24:31 -04:00
|
|
|
"",
|
2012-10-27 17:05:08 -04:00
|
|
|
"Config file section : [notifications]",
|
|
|
|
"Config file value : message=on|off",
|
|
|
|
"Config file value : typing=on|off",
|
2012-09-23 17:24:31 -04:00
|
|
|
"Config file value : remind=seconds",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/flash",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_flash, parse_args, 1, 1,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/flash on|off", "Terminal flash on new messages.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/flash on|off",
|
|
|
|
"-------------",
|
|
|
|
"Make the terminal flash when incoming messages are recieved.",
|
|
|
|
"The flash will only occur if you are not in the chat window associated",
|
|
|
|
"with the user sending the message.",
|
|
|
|
"The terminal must support flashing, if it doesn't it may attempt to beep.",
|
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : flash=true|false",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
{ "/intype",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_intype, parse_args, 1, 1,
|
2012-10-27 19:33:20 -04:00
|
|
|
{ "/intype on|off", "Show when contact is typing.",
|
|
|
|
{ "/intype on|off",
|
|
|
|
"--------------",
|
|
|
|
"Show when a contact is typing in the console, and in active message window.",
|
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : intype=true|false",
|
|
|
|
NULL } } },
|
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/showsplash",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_showsplash, parse_args, 1, 1,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/showsplash on|off", "Splash logo on startup.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/showsplash on|off",
|
|
|
|
"------------------",
|
|
|
|
"Switch on or off the ascii logo on start up.",
|
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : showsplash=true|false",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-10-27 12:40:17 -04:00
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
{ "/vercheck",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_vercheck, parse_args, 0, 1,
|
2012-10-23 20:35:36 -04:00
|
|
|
{ "/vercheck [on|off]", "Check for a new release.",
|
|
|
|
{ "/vercheck [on|off]",
|
|
|
|
"------------------",
|
|
|
|
"Without a parameter will check for a new release.",
|
|
|
|
"Switching on or off will enable/disable a version check when Profanity starts,",
|
|
|
|
"and each time the /about command is run.",
|
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/chlog",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_chlog, parse_args, 1, 1,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/chlog on|off", "Chat logging to file",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/chlog on|off",
|
|
|
|
"-------------",
|
|
|
|
"Switch chat logging on or off.",
|
|
|
|
"Chat logs are stored in the ~/.profanoty/log directory.",
|
|
|
|
"A folder is created for each login that you have used with Profanity.",
|
|
|
|
"Within in those folders, a log file is created for each user you chat to.",
|
|
|
|
"",
|
|
|
|
"For example if you are logged in as someuser@chatserv.com, and you chat",
|
|
|
|
"to myfriend@chatserv.com, the following chat log will be created:",
|
|
|
|
"",
|
|
|
|
" ~/.profanity/log/someuser_at_chatserv.com/myfriend_at_chatserv.com",
|
2012-10-31 17:41:00 -04:00
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : chlog=true|false",
|
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/states",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_states, parse_args, 1, 1,
|
2012-10-31 17:41:00 -04:00
|
|
|
{ "/states on|off", "Send chat states during a chat session.",
|
|
|
|
{ "/states on|off",
|
|
|
|
"--------------",
|
|
|
|
"Sending of chat state notifications during chat sessions.",
|
|
|
|
"Enabling this will send information about your activity during a chat",
|
|
|
|
"session with somebody, such as whether you have become inactive, or",
|
|
|
|
"have close the chat window.",
|
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : states=true|false",
|
2012-10-14 13:26:08 -04:00
|
|
|
NULL } } },
|
|
|
|
|
2012-10-31 20:12:35 -04:00
|
|
|
{ "/outtype",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_outtype, parse_args, 1, 1,
|
2012-10-31 20:12:35 -04:00
|
|
|
{ "/outtype on|off", "Send typing notification to recipient.",
|
|
|
|
{ "/outtype on|off",
|
|
|
|
"--------------",
|
|
|
|
"Send an indication that you are typing to the other person in chat.",
|
|
|
|
"Chat states must be enabled for this to work, see the /states command.",
|
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : outtype=true|false",
|
|
|
|
NULL } } },
|
2012-10-31 17:41:00 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/history",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_history, parse_args, 1, 1,
|
2012-10-27 14:46:48 -04:00
|
|
|
{ "/history on|off", "Chat history in message windows.",
|
2012-10-14 13:26:08 -04:00
|
|
|
{ "/history on|off",
|
2012-11-11 14:32:42 -05:00
|
|
|
"---------------",
|
2012-10-14 13:26:08 -04:00
|
|
|
"Switch chat history on or off, requires chlog to be enabled.",
|
|
|
|
"When history is enabled, previous messages are shown in chat windows.",
|
|
|
|
"The last day of messages are shown, or if you have had profanity open",
|
|
|
|
"for more than a day, messages will be shown from the day which",
|
|
|
|
"you started profanity.",
|
2012-10-31 17:41:00 -04:00
|
|
|
"",
|
|
|
|
"Config file section : [ui]",
|
|
|
|
"Config file value : history=true|false",
|
2012-11-12 04:13:03 -05:00
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/log",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_log, parse_args, 2, 2,
|
2012-11-12 04:13:03 -05:00
|
|
|
{ "/log maxsize <value>", "Manage system logging settings.",
|
2012-11-12 14:50:14 -05:00
|
|
|
{ "/log maxsize <value>",
|
|
|
|
"--------------------",
|
2012-11-12 04:13:03 -05:00
|
|
|
"maxsize : When log file size exceeds this value it will be automatically",
|
|
|
|
" rotated (file will be renamed). Default value is 1048580 (1MB)",
|
|
|
|
"",
|
|
|
|
"Config file section : [log]",
|
|
|
|
"Config file value : maxsize=bytes",
|
2012-11-13 05:51:28 -05:00
|
|
|
NULL } } },
|
|
|
|
|
|
|
|
{ "/priority",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_priority, parse_args, 1, 1,
|
2012-11-13 05:51:28 -05:00
|
|
|
{ "/priority <value>", "Set priority for connection.",
|
|
|
|
{ "/priority <value>",
|
|
|
|
"--------------------",
|
|
|
|
"value : Number between -128 and 127. Default value is 0.",
|
|
|
|
"",
|
|
|
|
"Config file section : [jabber]",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } }
|
2012-08-11 16:26:24 -04:00
|
|
|
};
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-11-13 17:24:37 -05:00
|
|
|
static struct cmd_t presence_commands[] =
|
2012-08-11 20:39:51 -04:00
|
|
|
{
|
|
|
|
{ "/away",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_away, parse_args_with_freetext, 0, 1,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/away [msg]", "Set status to away.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/away [msg]",
|
|
|
|
"-----------",
|
|
|
|
"Set your status to \"away\" with the optional message.",
|
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /away Gone for lunch",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
|
|
|
{ "/chat",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_chat, parse_args_with_freetext, 0, 1,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/chat [msg]", "Set status to chat (available for chat).",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/chat [msg]",
|
|
|
|
"-----------",
|
|
|
|
"Set your status to \"chat\", meaning \"available for chat\",",
|
|
|
|
"with the optional message.",
|
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /chat Please talk to me!",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
|
|
|
{ "/dnd",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_dnd, parse_args_with_freetext, 0, 1,
|
|
|
|
{ "/dnd [msg]", "Set status to dnd (do not disturb).",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/dnd [msg]",
|
|
|
|
"----------",
|
|
|
|
"Set your status to \"dnd\", meaning \"do not disturb\",",
|
|
|
|
"with the optional message.",
|
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /dnd I'm in the zone",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
{ "/online",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_online, parse_args_with_freetext, 0, 1,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/online [msg]", "Set status to online.",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/online [msg]",
|
|
|
|
"-------------",
|
|
|
|
"Set your status to \"online\" with the optional message.",
|
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /online Up the Irons!",
|
2012-08-14 18:22:12 -04:00
|
|
|
NULL } } },
|
2012-08-11 20:39:51 -04:00
|
|
|
|
|
|
|
{ "/xa",
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_xa, parse_args_with_freetext, 0, 1,
|
2012-08-14 17:50:38 -04:00
|
|
|
{ "/xa [msg]", "Set status to xa (extended away).",
|
2012-08-14 19:31:24 -04:00
|
|
|
{ "/xa [msg]",
|
|
|
|
"---------",
|
|
|
|
"Set your status to \"xa\", meaning \"extended away\",",
|
|
|
|
"with the optional message.",
|
|
|
|
"Your current status can be found in the top right of the screen.",
|
|
|
|
"",
|
|
|
|
"Example : /xa This meeting is going to be a long one",
|
|
|
|
NULL } } },
|
2012-06-04 15:49:18 -04:00
|
|
|
};
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
static PAutocomplete commands_ac;
|
2012-10-27 20:47:57 -04:00
|
|
|
static PAutocomplete who_ac;
|
2012-10-21 18:37:20 -04:00
|
|
|
static PAutocomplete help_ac;
|
2012-10-27 17:22:30 -04:00
|
|
|
static PAutocomplete notify_ac;
|
2012-11-11 09:16:31 -05:00
|
|
|
static PAutocomplete sub_ac;
|
2012-11-12 04:13:03 -05:00
|
|
|
static PAutocomplete log_ac;
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-08-22 18:57:34 -04:00
|
|
|
/*
|
|
|
|
* Initialise command autocompleter and history
|
|
|
|
*/
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-08-22 19:30:11 -04:00
|
|
|
cmd_init(void)
|
2012-04-30 19:24:31 -04:00
|
|
|
{
|
2012-08-25 19:54:18 -04:00
|
|
|
log_info("Initialising commands");
|
2012-10-27 20:47:57 -04:00
|
|
|
|
2012-06-04 18:59:09 -04:00
|
|
|
commands_ac = p_autocomplete_new();
|
2012-10-27 20:47:57 -04:00
|
|
|
who_ac = p_autocomplete_new();
|
|
|
|
|
2012-10-21 18:37:20 -04:00
|
|
|
help_ac = p_autocomplete_new();
|
2012-11-11 18:57:02 -05:00
|
|
|
p_autocomplete_add(help_ac, strdup("list"));
|
2012-10-22 18:58:47 -04:00
|
|
|
p_autocomplete_add(help_ac, strdup("basic"));
|
2012-11-13 17:24:37 -05:00
|
|
|
p_autocomplete_add(help_ac, strdup("presence"));
|
2012-10-22 18:58:47 -04:00
|
|
|
p_autocomplete_add(help_ac, strdup("settings"));
|
|
|
|
p_autocomplete_add(help_ac, strdup("navigation"));
|
2012-10-27 20:47:57 -04:00
|
|
|
|
2012-10-27 17:22:30 -04:00
|
|
|
notify_ac = p_autocomplete_new();
|
|
|
|
p_autocomplete_add(notify_ac, strdup("message"));
|
|
|
|
p_autocomplete_add(notify_ac, strdup("typing"));
|
|
|
|
p_autocomplete_add(notify_ac, strdup("remind"));
|
2012-06-04 18:59:09 -04:00
|
|
|
|
2012-11-11 09:16:31 -05:00
|
|
|
sub_ac = p_autocomplete_new();
|
|
|
|
p_autocomplete_add(sub_ac, strdup("add"));
|
|
|
|
p_autocomplete_add(sub_ac, strdup("del"));
|
2012-11-11 14:32:42 -05:00
|
|
|
p_autocomplete_add(sub_ac, strdup("req"));
|
2012-11-11 09:16:31 -05:00
|
|
|
p_autocomplete_add(sub_ac, strdup("show"));
|
|
|
|
|
2012-11-12 04:13:03 -05:00
|
|
|
log_ac = p_autocomplete_new();
|
|
|
|
p_autocomplete_add(log_ac, strdup("maxsize"));
|
|
|
|
|
2012-08-10 18:18:02 -04:00
|
|
|
unsigned int i;
|
2012-08-11 16:26:24 -04:00
|
|
|
for (i = 0; i < ARRAY_SIZE(main_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = main_commands+i;
|
2012-10-21 19:29:39 -04:00
|
|
|
p_autocomplete_add(commands_ac, (gchar *)strdup(pcmd->cmd));
|
|
|
|
p_autocomplete_add(help_ac, (gchar *)strdup(pcmd->cmd+1));
|
2012-08-11 16:26:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(setting_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = setting_commands+i;
|
2012-10-21 19:29:39 -04:00
|
|
|
p_autocomplete_add(commands_ac, (gchar *)strdup(pcmd->cmd));
|
|
|
|
p_autocomplete_add(help_ac, (gchar *)strdup(pcmd->cmd+1));
|
2012-08-11 16:26:24 -04:00
|
|
|
}
|
|
|
|
|
2012-11-13 17:24:37 -05:00
|
|
|
for (i = 0; i < ARRAY_SIZE(presence_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = presence_commands+i;
|
2012-10-21 19:29:39 -04:00
|
|
|
p_autocomplete_add(commands_ac, (gchar *)strdup(pcmd->cmd));
|
|
|
|
p_autocomplete_add(help_ac, (gchar *)strdup(pcmd->cmd+1));
|
2012-10-27 20:47:57 -04:00
|
|
|
p_autocomplete_add(who_ac, (gchar *)strdup(pcmd->cmd+1));
|
2012-06-04 18:59:09 -04:00
|
|
|
}
|
|
|
|
|
2012-10-28 14:01:13 -04:00
|
|
|
p_autocomplete_add(who_ac, strdup("offline"));
|
2012-11-11 19:21:49 -05:00
|
|
|
p_autocomplete_add(who_ac, strdup("available"));
|
|
|
|
p_autocomplete_add(who_ac, strdup("unavailable"));
|
2012-10-27 22:58:12 -04:00
|
|
|
|
2012-04-30 19:24:31 -04:00
|
|
|
history_init();
|
|
|
|
}
|
|
|
|
|
2012-10-21 19:29:39 -04:00
|
|
|
void
|
|
|
|
cmd_close(void)
|
|
|
|
{
|
|
|
|
p_autocomplete_clear(commands_ac);
|
2012-10-27 20:47:57 -04:00
|
|
|
p_autocomplete_clear(who_ac);
|
2012-10-21 19:29:39 -04:00
|
|
|
p_autocomplete_clear(help_ac);
|
2012-10-27 17:22:30 -04:00
|
|
|
p_autocomplete_clear(notify_ac);
|
2012-10-21 19:29:39 -04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// Command autocompletion functions
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2012-10-27 20:42:26 -04:00
|
|
|
cmd_autocomplete(char *input, int *size)
|
2012-10-21 18:37:20 -04:00
|
|
|
{
|
2012-10-27 20:42:26 -04:00
|
|
|
int i = 0;
|
|
|
|
char *found = NULL;
|
|
|
|
char *auto_msg = NULL;
|
|
|
|
char inp_cpy[*size];
|
2012-10-21 18:37:20 -04:00
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
if ((strncmp(input, "/", 1) == 0) && (!str_contains(input, *size, ' '))) {
|
|
|
|
for(i = 0; i < *size; i++) {
|
|
|
|
inp_cpy[i] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[i] = '\0';
|
|
|
|
found = _cmd_complete(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 19:44:14 -04:00
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
_cmd_complete_parameters(input, size);
|
2012-10-27 17:22:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-10-27 20:42:26 -04:00
|
|
|
cmd_reset_autocomplete()
|
2012-10-27 17:22:30 -04:00
|
|
|
{
|
2012-10-27 20:42:26 -04:00
|
|
|
contact_list_reset_search_attempts();
|
|
|
|
prefs_reset_login_search();
|
|
|
|
prefs_reset_boolean_choice();
|
|
|
|
_cmd_help_reset_completer();
|
|
|
|
_cmd_notify_reset_completer();
|
2012-11-11 09:16:31 -05:00
|
|
|
_cmd_sub_reset_completer();
|
2012-11-11 09:32:18 -05:00
|
|
|
_cmd_who_reset_completer();
|
2012-11-12 04:13:03 -05:00
|
|
|
_cmd_log_reset_completer();
|
2012-10-27 20:42:26 -04:00
|
|
|
_cmd_reset_command_completer();
|
2012-10-27 17:22:30 -04:00
|
|
|
}
|
|
|
|
|
2012-08-14 17:06:27 -04:00
|
|
|
GSList *
|
2012-08-22 19:30:11 -04:00
|
|
|
cmd_get_basic_help(void)
|
2012-08-14 17:06:27 -04:00
|
|
|
{
|
|
|
|
GSList *result = NULL;
|
|
|
|
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(main_commands); i++) {
|
|
|
|
result = g_slist_append(result, &((main_commands+i)->help));
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList *
|
2012-08-22 19:30:11 -04:00
|
|
|
cmd_get_settings_help(void)
|
2012-08-14 17:06:27 -04:00
|
|
|
{
|
|
|
|
GSList *result = NULL;
|
|
|
|
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(setting_commands); i++) {
|
|
|
|
result = g_slist_append(result, &((setting_commands+i)->help));
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSList *
|
2012-11-13 17:24:37 -05:00
|
|
|
cmd_get_presence_help(void)
|
2012-08-14 17:06:27 -04:00
|
|
|
{
|
|
|
|
GSList *result = NULL;
|
|
|
|
|
|
|
|
unsigned int i;
|
2012-11-13 17:24:37 -05:00
|
|
|
for (i = 0; i < ARRAY_SIZE(presence_commands); i++) {
|
|
|
|
result = g_slist_append(result, &((presence_commands+i)->help));
|
2012-08-14 17:06:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// Command execution
|
|
|
|
|
2012-08-22 19:41:22 -04:00
|
|
|
gboolean
|
|
|
|
cmd_execute(const char * const command, const char * const inp)
|
2012-08-14 19:42:38 -04:00
|
|
|
{
|
|
|
|
struct cmd_t *cmd = _cmd_get_command(command);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-08-14 19:42:38 -04:00
|
|
|
if (cmd != NULL) {
|
2012-11-17 21:40:49 -05:00
|
|
|
gchar **args = cmd->parser(inp, cmd->min_args, cmd->max_args);
|
|
|
|
if (args == NULL) {
|
|
|
|
cons_show("Usage: %s", cmd->help.usage);
|
|
|
|
if (win_in_chat()) {
|
|
|
|
char usage[strlen(cmd->help.usage) + 8];
|
|
|
|
sprintf(usage, "Usage: %s", cmd->help.usage);
|
|
|
|
win_show(usage);
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
gboolean result = cmd->func(args, cmd->help);
|
|
|
|
g_strfreev(args);
|
|
|
|
return result;
|
|
|
|
}
|
2012-08-14 19:42:38 -04:00
|
|
|
} else {
|
2012-08-22 19:41:22 -04:00
|
|
|
return cmd_execute_default(inp);
|
2012-08-14 19:42:38 -04:00
|
|
|
}
|
2012-02-18 18:09:21 -05:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:41:22 -04:00
|
|
|
gboolean
|
|
|
|
cmd_execute_default(const char * const inp)
|
|
|
|
{
|
2012-11-05 18:24:29 -05:00
|
|
|
if (win_in_groupchat()) {
|
2012-11-19 18:15:42 -05:00
|
|
|
jabber_conn_status_t status = jabber_get_connection_status();
|
|
|
|
if (status != JABBER_CONNECTED) {
|
|
|
|
win_show("You are not currently connected.");
|
|
|
|
} else {
|
|
|
|
char *recipient = win_get_recipient();
|
|
|
|
jabber_send_groupchat(inp, recipient);
|
|
|
|
free(recipient);
|
|
|
|
}
|
2012-11-13 19:39:34 -05:00
|
|
|
} else if (win_in_chat() || win_in_private_chat()) {
|
2012-11-19 18:15:42 -05:00
|
|
|
jabber_conn_status_t status = jabber_get_connection_status();
|
|
|
|
if (status != JABBER_CONNECTED) {
|
|
|
|
win_show("You are not currently connected.");
|
|
|
|
} else {
|
|
|
|
char *recipient = win_get_recipient();
|
|
|
|
jabber_send(inp, recipient);
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-19 18:15:42 -05:00
|
|
|
if (prefs_get_chlog()) {
|
|
|
|
const char *jid = jabber_get_jid();
|
|
|
|
chat_log_chat(jid, recipient, inp, OUT, NULL);
|
|
|
|
}
|
2012-10-02 17:00:05 -04:00
|
|
|
|
2012-11-19 18:15:42 -05:00
|
|
|
win_show_outgoing_msg("me", recipient, inp);
|
|
|
|
free(recipient);
|
|
|
|
}
|
2012-08-22 19:41:22 -04:00
|
|
|
} else {
|
|
|
|
cons_bad_command(inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
static char *
|
|
|
|
_cmd_complete(char *inp)
|
|
|
|
{
|
|
|
|
return p_autocomplete_complete(commands_ac, inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cmd_reset_command_completer(void)
|
|
|
|
{
|
|
|
|
p_autocomplete_reset(commands_ac);
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:47:57 -04:00
|
|
|
static char *
|
|
|
|
_cmd_who_complete(char *inp)
|
|
|
|
{
|
|
|
|
return p_autocomplete_complete(who_ac, inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-11-11 09:32:18 -05:00
|
|
|
_cmd_who_reset_completer(void)
|
2012-10-27 20:47:57 -04:00
|
|
|
{
|
|
|
|
p_autocomplete_reset(who_ac);
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
static char *
|
|
|
|
_cmd_help_complete(char *inp)
|
|
|
|
{
|
|
|
|
return p_autocomplete_complete(help_ac, inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cmd_help_reset_completer(void)
|
|
|
|
{
|
|
|
|
p_autocomplete_reset(help_ac);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
_cmd_notify_complete(char *inp)
|
|
|
|
{
|
|
|
|
return p_autocomplete_complete(notify_ac, inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cmd_notify_reset_completer(void)
|
|
|
|
{
|
|
|
|
p_autocomplete_reset(notify_ac);
|
|
|
|
}
|
|
|
|
|
2012-11-11 09:16:31 -05:00
|
|
|
static char *
|
|
|
|
_cmd_sub_complete(char *inp)
|
|
|
|
{
|
|
|
|
return p_autocomplete_complete(sub_ac, inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cmd_sub_reset_completer(void)
|
|
|
|
{
|
|
|
|
p_autocomplete_reset(sub_ac);
|
|
|
|
}
|
|
|
|
|
2012-11-12 04:13:03 -05:00
|
|
|
static char *
|
|
|
|
_cmd_log_complete(char *inp)
|
|
|
|
{
|
|
|
|
return p_autocomplete_complete(log_ac, inp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cmd_log_reset_completer(void)
|
|
|
|
{
|
|
|
|
p_autocomplete_reset(log_ac);
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
static void
|
|
|
|
_cmd_complete_parameters(char *input, int *size)
|
2012-10-27 20:08:04 -04:00
|
|
|
{
|
|
|
|
_parameter_autocomplete(input, size, "/beep",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
_parameter_autocomplete(input, size, "/intype",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
2012-10-31 20:12:35 -04:00
|
|
|
_parameter_autocomplete(input, size, "/states",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
_parameter_autocomplete(input, size, "/outtype",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
2012-10-27 20:08:04 -04:00
|
|
|
_parameter_autocomplete(input, size, "/flash",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
_parameter_autocomplete(input, size, "/showsplash",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
_parameter_autocomplete(input, size, "/chlog",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
_parameter_autocomplete(input, size, "/history",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
_parameter_autocomplete(input, size, "/vercheck",
|
|
|
|
prefs_autocomplete_boolean_choice);
|
|
|
|
|
|
|
|
_parameter_autocomplete(input, size, "/msg",
|
|
|
|
contact_list_find_contact);
|
2012-11-13 20:39:26 -05:00
|
|
|
_parameter_autocomplete(input, size, "/info",
|
2012-11-13 17:08:46 -05:00
|
|
|
contact_list_find_contact);
|
2012-10-27 20:08:04 -04:00
|
|
|
_parameter_autocomplete(input, size, "/connect",
|
|
|
|
prefs_find_login);
|
2012-11-11 07:00:21 -05:00
|
|
|
_parameter_autocomplete(input, size, "/sub",
|
2012-11-11 09:16:31 -05:00
|
|
|
_cmd_sub_complete);
|
2012-10-27 20:08:04 -04:00
|
|
|
_parameter_autocomplete(input, size, "/help",
|
|
|
|
_cmd_help_complete);
|
2012-10-27 20:47:57 -04:00
|
|
|
_parameter_autocomplete(input, size, "/who",
|
|
|
|
_cmd_who_complete);
|
2012-11-12 04:13:03 -05:00
|
|
|
_parameter_autocomplete(input, size, "/log",
|
|
|
|
_cmd_log_complete);
|
2012-10-27 20:42:26 -04:00
|
|
|
|
|
|
|
_notify_autocomplete(input, size);
|
2012-10-27 20:08:04 -04:00
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// The command functions
|
2012-08-22 19:41:22 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_connect(gchar **args, struct cmd_help_t help)
|
2012-02-18 18:09:21 -05:00
|
|
|
{
|
2012-04-23 20:02:22 -04:00
|
|
|
gboolean result = FALSE;
|
2012-02-18 18:09:21 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if ((conn_status != JABBER_DISCONNECTED) && (conn_status != JABBER_STARTED)) {
|
|
|
|
cons_show("You are either connected already, or a login is in process.");
|
2012-02-19 20:42:29 -05:00
|
|
|
result = TRUE;
|
2012-02-18 18:09:21 -05:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
char *user = args[0];
|
|
|
|
char *lower = g_utf8_strdown(user, -1);
|
|
|
|
|
|
|
|
status_bar_get_password();
|
|
|
|
status_bar_refresh();
|
|
|
|
char passwd[21];
|
|
|
|
inp_block();
|
|
|
|
inp_get_password(passwd);
|
|
|
|
inp_non_block();
|
|
|
|
|
|
|
|
log_debug("Connecting as %s", lower);
|
|
|
|
|
|
|
|
conn_status = jabber_connect(lower, passwd);
|
|
|
|
if (conn_status == JABBER_CONNECTING) {
|
|
|
|
cons_show("Connecting...");
|
|
|
|
log_debug("Connecting...");
|
2012-11-14 21:31:31 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status == JABBER_DISCONNECTED) {
|
|
|
|
cons_bad_show("Connection to server failed.");
|
|
|
|
log_debug("Connection using %s failed", lower);
|
|
|
|
}
|
|
|
|
|
|
|
|
result = TRUE;
|
2012-02-18 18:09:21 -05:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-18 18:09:21 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-10-28 14:51:13 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_sub(gchar **args, struct cmd_help_t help)
|
2012-10-28 14:51:13 -04:00
|
|
|
{
|
|
|
|
gboolean result = FALSE;
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are currently not connected.");
|
2012-10-28 14:51:13 -04:00
|
|
|
result = TRUE;
|
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
char *subcmd, *jid, *bare_jid;
|
|
|
|
subcmd = args[0];
|
|
|
|
jid = args[1];
|
2012-11-11 07:00:21 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (jid != NULL) {
|
|
|
|
jid = strdup(jid);
|
2012-11-11 07:00:21 -05:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
jid = win_get_recipient();
|
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
bare_jid = strtok(jid, "/");
|
|
|
|
|
|
|
|
if (strcmp(subcmd, "add") == 0) {
|
|
|
|
jabber_subscription(bare_jid, PRESENCE_SUBSCRIBED);
|
|
|
|
cons_show("Accepted subscription for %s", bare_jid);
|
|
|
|
log_info("Accepted subscription for %s", bare_jid);
|
|
|
|
} else if (strcmp(subcmd, "del") == 0) {
|
|
|
|
jabber_subscription(bare_jid, PRESENCE_UNSUBSCRIBED);
|
|
|
|
cons_show("Deleted subscription for %s", bare_jid);
|
|
|
|
log_info("Deleted subscription for %s", bare_jid);
|
|
|
|
} else if (strcmp(subcmd, "req") == 0) {
|
|
|
|
jabber_subscription(bare_jid, PRESENCE_SUBSCRIBE);
|
|
|
|
cons_show("Sent subscription request to %s.", bare_jid);
|
|
|
|
log_info("Sent subscription request to %s.", bare_jid);
|
|
|
|
} else if (strcmp(subcmd, "show") == 0) {
|
|
|
|
/* TODO: not implemented yet */
|
2012-11-14 21:31:31 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
free(jid);
|
|
|
|
result = TRUE;
|
2012-10-28 14:51:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-10-27 13:12:04 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_disconnect(gchar **args, struct cmd_help_t help)
|
2012-10-27 13:12:04 -04:00
|
|
|
{
|
2012-10-27 13:26:57 -04:00
|
|
|
if (jabber_get_connection_status() == JABBER_CONNECTED) {
|
|
|
|
char *jid = strdup(jabber_get_jid());
|
2012-11-19 17:23:48 -05:00
|
|
|
prof_handle_disconnect(jid);
|
2012-10-27 13:26:57 -04:00
|
|
|
free(jid);
|
|
|
|
} else {
|
|
|
|
cons_show("You are not currently connected.");
|
2012-10-27 13:12:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_quit(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-09-23 14:26:07 -04:00
|
|
|
log_info("Profanity is shutting down...");
|
|
|
|
exit(0);
|
2012-09-11 17:55:59 -04:00
|
|
|
return FALSE;
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 19:39:34 -05:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_wins(gchar **args, struct cmd_help_t help)
|
2012-11-13 19:39:34 -05:00
|
|
|
{
|
|
|
|
win_show_wins();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_help(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
if (num_args == 0) {
|
|
|
|
cons_help();
|
|
|
|
} else if (strcmp(args[0], "list") == 0) {
|
|
|
|
cons_show("");
|
|
|
|
cons_show("Basic commands:");
|
|
|
|
cons_show_time();
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(main_commands); i++) {
|
|
|
|
cons_show_word( (main_commands+i)->cmd );
|
|
|
|
if (i < ARRAY_SIZE(main_commands) - 1) {
|
|
|
|
cons_show_word(", ");
|
2012-11-11 18:57:02 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
|
|
|
cons_show_word("\n");
|
|
|
|
cons_show("Settings commands:");
|
|
|
|
cons_show_time();
|
|
|
|
for (i = 0; i < ARRAY_SIZE(setting_commands); i++) {
|
|
|
|
cons_show_word( (setting_commands+i)->cmd );
|
|
|
|
if (i < ARRAY_SIZE(setting_commands) - 1) {
|
|
|
|
cons_show_word(", ");
|
2012-11-11 18:57:02 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
|
|
|
cons_show_word("\n");
|
|
|
|
cons_show("Presence commands:");
|
|
|
|
cons_show_time();
|
|
|
|
for (i = 0; i < ARRAY_SIZE(presence_commands); i++) {
|
|
|
|
cons_show_word( (presence_commands+i)->cmd );
|
|
|
|
if (i < ARRAY_SIZE(presence_commands) - 1) {
|
|
|
|
cons_show_word(", ");
|
2012-11-11 18:57:02 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
}
|
|
|
|
cons_show_word("\n");
|
|
|
|
} else if (strcmp(args[0], "basic") == 0) {
|
|
|
|
cons_basic_help();
|
|
|
|
} else if (strcmp(args[0], "presence") == 0) {
|
|
|
|
cons_presence_help();
|
|
|
|
} else if (strcmp(args[0], "settings") == 0) {
|
|
|
|
cons_settings_help();
|
|
|
|
} else if (strcmp(args[0], "navigation") == 0) {
|
|
|
|
cons_navigation_help();
|
|
|
|
} else {
|
|
|
|
char *cmd = args[0];
|
|
|
|
char cmd_with_slash[1 + strlen(cmd) + 1];
|
|
|
|
sprintf(cmd_with_slash, "/%s", cmd);
|
2012-08-14 18:22:12 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
const gchar **help_text = NULL;
|
|
|
|
struct cmd_t *command = _cmd_get_command(cmd_with_slash);
|
2012-08-14 18:22:12 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (command != NULL) {
|
|
|
|
help_text = command->help.long_help;
|
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("");
|
2012-08-14 18:22:12 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (help_text != NULL) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; help_text[i] != NULL; i++) {
|
|
|
|
cons_show(help_text[i]);
|
2012-08-14 18:22:12 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("No such command.");
|
2012-08-14 18:22:12 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("");
|
2012-08-14 18:22:12 -04:00
|
|
|
}
|
2012-02-09 18:15:53 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-10-22 19:18:28 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_about(gchar **args, struct cmd_help_t help)
|
2012-10-22 19:18:28 -04:00
|
|
|
{
|
2012-10-23 20:39:52 -04:00
|
|
|
cons_show("");
|
2012-10-22 19:18:28 -04:00
|
|
|
cons_about();
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_prefs(gchar **args, struct cmd_help_t help)
|
2012-07-19 18:43:50 -04:00
|
|
|
{
|
|
|
|
cons_prefs();
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-11-21 17:33:07 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_theme(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
if (theme_change(args[0])) {
|
|
|
|
win_load_colours();
|
|
|
|
prefs_set_theme(args[0]);
|
|
|
|
cons_show("Loaded theme: %s", args[0]);
|
|
|
|
} else {
|
|
|
|
cons_show("Couldn't find theme: %s", args[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_who(gchar **args, struct cmd_help_t help)
|
2012-03-07 19:46:24 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2012-03-08 18:14:35 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
2012-03-08 18:14:35 -05:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
char *presence = args[0];
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
&& (strcmp(presence, "dnd") != 0)) {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// valid arg
|
2012-10-04 17:48:41 -04:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
if (win_in_groupchat()) {
|
|
|
|
char *room = win_get_recipient();
|
|
|
|
win_show_room_roster(room);
|
2012-11-07 19:22:15 -05:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
GSList *list = get_contact_list();
|
|
|
|
|
|
|
|
// no arg, show all contacts
|
|
|
|
if (presence == NULL) {
|
|
|
|
cons_show("All contacts:");
|
|
|
|
cons_show_contacts(list);
|
|
|
|
|
|
|
|
// available
|
|
|
|
} else if (strcmp("available", presence) == 0) {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
const char * const contact_presence = (p_contact_presence(contact));
|
|
|
|
if ((strcmp(contact_presence, "online") == 0)
|
|
|
|
|| (strcmp(contact_presence, "chat") == 0)) {
|
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-11 19:21:49 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
2012-11-11 19:21:49 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(filtered);
|
|
|
|
|
|
|
|
// unavailable
|
|
|
|
} else if (strcmp("unavailable", presence) == 0) {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
const char * const contact_presence = (p_contact_presence(contact));
|
|
|
|
if ((strcmp(contact_presence, "offline") == 0)
|
|
|
|
|| (strcmp(contact_presence, "away") == 0)
|
|
|
|
|| (strcmp(contact_presence, "dnd") == 0)
|
|
|
|
|| (strcmp(contact_presence, "xa") == 0)) {
|
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-11 19:21:49 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
2012-11-11 19:21:49 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(filtered);
|
|
|
|
|
|
|
|
// online, show all status that indicate online
|
|
|
|
} else if (strcmp("online", presence) == 0) {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
GSList *filtered = NULL;
|
|
|
|
|
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
const char * const contact_presence = (p_contact_presence(contact));
|
|
|
|
if ((strcmp(contact_presence, "online") == 0)
|
|
|
|
|| (strcmp(contact_presence, "away") == 0)
|
|
|
|
|| (strcmp(contact_presence, "dnd") == 0)
|
|
|
|
|| (strcmp(contact_presence, "xa") == 0)
|
|
|
|
|| (strcmp(contact_presence, "chat") == 0)) {
|
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-07 19:22:15 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
|
|
|
}
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show_contacts(filtered);
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// show specific status
|
|
|
|
} else {
|
|
|
|
cons_show("Contacts (%s):", presence);
|
|
|
|
GSList *filtered = NULL;
|
2012-10-04 17:48:41 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
while (list != NULL) {
|
|
|
|
PContact contact = list->data;
|
|
|
|
if (strcmp(p_contact_presence(contact), presence) == 0) {
|
|
|
|
filtered = g_slist_append(filtered, contact);
|
2012-11-07 19:22:15 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
list = g_slist_next(list);
|
2012-11-17 19:54:39 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
cons_show_contacts(filtered);
|
2012-11-07 19:22:15 -05:00
|
|
|
}
|
2012-10-04 17:48:41 -04:00
|
|
|
}
|
|
|
|
}
|
2012-03-08 18:14:35 -05:00
|
|
|
}
|
2012-03-07 19:46:24 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-03-07 19:46:24 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_msg(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *usr = args[0];
|
|
|
|
char *msg = args[1];
|
2012-02-19 20:42:29 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2012-11-17 19:54:39 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
} else {
|
|
|
|
jabber_send(msg, usr);
|
|
|
|
win_show_outgoing_msg("me", usr, msg);
|
2012-11-17 19:54:39 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (prefs_get_chlog()) {
|
|
|
|
const char *jid = jabber_get_jid();
|
|
|
|
chat_log_chat(jid, usr, msg, OUT, NULL);
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 17:08:46 -05:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_info(gchar **args, struct cmd_help_t help)
|
2012-11-13 17:08:46 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *usr = args[0];
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
} else {
|
|
|
|
win_show_status(usr);
|
2012-11-13 17:08:46 -05:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-11-13 17:08:46 -05:00
|
|
|
}
|
|
|
|
|
2012-11-03 21:27:01 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_join(gchar **args, struct cmd_help_t help)
|
2012-11-03 21:27:01 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *room = args[0];
|
|
|
|
char *nick = NULL;
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
if (num_args == 2) {
|
|
|
|
nick = args[1];
|
|
|
|
}
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2012-11-03 21:27:01 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
} else {
|
|
|
|
// if no nick, set to first part of jid
|
|
|
|
if (nick == NULL) {
|
|
|
|
const char *jid = jabber_get_jid();
|
|
|
|
char jid_cpy[strlen(jid) + 1];
|
|
|
|
strcpy(jid_cpy, jid);
|
|
|
|
nick = strdup(strtok(jid_cpy, "@"));
|
2012-11-03 21:27:01 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
jabber_join(room, nick);
|
|
|
|
win_join_chat(room, nick);
|
2012-11-03 21:27:01 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-11-03 21:27:01 -04:00
|
|
|
}
|
|
|
|
|
2012-11-18 13:36:17 -05:00
|
|
|
static gboolean
|
|
|
|
_cmd_nick(gchar **args, struct cmd_help_t help)
|
|
|
|
{
|
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
if (!win_in_groupchat()) {
|
|
|
|
cons_show("You can only change your nickname in a chat room window.");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *room = win_get_recipient();
|
|
|
|
char *nick = args[0];
|
|
|
|
jabber_change_room_nick(room, nick);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-27 20:36:08 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_tiny(gchar **args, struct cmd_help_t help)
|
2012-07-27 20:36:08 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *url = args[0];
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (!tinyurl_valid(url)) {
|
|
|
|
GString *error = g_string_new("/tiny, badly formed URL: ");
|
|
|
|
g_string_append(error, url);
|
|
|
|
cons_bad_show(error->str);
|
2012-11-14 21:31:31 -05:00
|
|
|
if (win_in_chat()) {
|
2012-11-17 21:40:49 -05:00
|
|
|
win_bad_show(error->str);
|
2012-10-24 06:43:25 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
g_string_free(error, TRUE);
|
|
|
|
} else if (win_in_chat()) {
|
|
|
|
char *tiny = tinyurl_get(url);
|
2012-07-29 16:32:04 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (tiny != NULL) {
|
|
|
|
char *recipient = win_get_recipient();
|
|
|
|
jabber_send(tiny, recipient);
|
2012-10-02 17:00:05 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (prefs_get_chlog()) {
|
|
|
|
const char *jid = jabber_get_jid();
|
|
|
|
chat_log_chat(jid, recipient, tiny, OUT, NULL);
|
2012-10-23 21:18:20 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
|
|
|
|
win_show_outgoing_msg("me", recipient, tiny);
|
|
|
|
free(recipient);
|
|
|
|
free(tiny);
|
2012-07-29 16:32:04 -04:00
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_bad_show("Couldn't get tinyurl.");
|
2012-07-29 16:32:04 -04:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("/tiny can only be used in chat windows");
|
2012-07-27 20:36:08 -04:00
|
|
|
}
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-07-27 20:36:08 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_close(gchar **args, struct cmd_help_t help)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-11-05 19:00:25 -05:00
|
|
|
if (win_in_groupchat()) {
|
|
|
|
char *room_jid = win_get_recipient();
|
|
|
|
jabber_leave_chat_room(room_jid);
|
2012-11-09 21:28:38 -05:00
|
|
|
win_close_win();
|
2012-11-13 19:39:34 -05:00
|
|
|
} else if (win_in_chat() || win_in_private_chat()) {
|
2012-10-31 17:30:58 -04:00
|
|
|
|
2012-10-31 18:08:00 -04:00
|
|
|
if (prefs_get_states()) {
|
|
|
|
char *recipient = win_get_recipient();
|
|
|
|
|
|
|
|
// send <gone/> chat state before closing
|
|
|
|
if (chat_session_get_recipient_supports(recipient)) {
|
2012-10-31 19:41:30 -04:00
|
|
|
chat_session_set_gone(recipient);
|
2012-10-31 18:08:00 -04:00
|
|
|
jabber_send_gone(recipient);
|
|
|
|
chat_session_end(recipient);
|
|
|
|
}
|
2012-10-31 17:30:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
win_close_win();
|
|
|
|
|
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
cons_show("Cannot close console window.");
|
2012-10-31 17:30:58 -04:00
|
|
|
}
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-02-09 18:15:53 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_beep(gchar **args, struct cmd_help_t help)
|
2012-04-23 20:24:54 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/beep",
|
2012-08-22 19:30:11 -04:00
|
|
|
"Sound", prefs_set_beep);
|
2012-04-23 20:24:54 -04:00
|
|
|
}
|
|
|
|
|
2012-10-31 17:41:00 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_states(gchar **args, struct cmd_help_t help)
|
2012-10-31 17:41:00 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/states",
|
2012-10-31 17:41:00 -04:00
|
|
|
"Sending chat states", prefs_set_states);
|
|
|
|
}
|
|
|
|
|
2012-10-31 20:12:35 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_outtype(gchar **args, struct cmd_help_t help)
|
2012-10-31 20:12:35 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/outtype",
|
2012-10-31 20:12:35 -04:00
|
|
|
"Sending typing notifications", prefs_set_outtype);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_notify(gchar **args, struct cmd_help_t help)
|
2012-06-28 18:45:37 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *kind = args[0];
|
|
|
|
char *value = args[1];
|
2012-10-27 17:05:08 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// bad kind
|
|
|
|
if ((strcmp(kind, "message") != 0) && (strcmp(kind, "typing") != 0) &&
|
|
|
|
(strcmp(kind, "remind") != 0)) {
|
2012-11-14 21:31:31 -05:00
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-10-27 17:05:08 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// set message setting
|
|
|
|
} else if (strcmp(kind, "message") == 0) {
|
|
|
|
if (strcmp(value, "on") == 0) {
|
|
|
|
cons_show("Message notifications enabled.");
|
|
|
|
prefs_set_notify_message(TRUE);
|
|
|
|
} else if (strcmp(value, "off") == 0) {
|
|
|
|
cons_show("Message notifications disabled.");
|
|
|
|
prefs_set_notify_message(FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify message on|off");
|
|
|
|
}
|
2012-10-27 17:05:08 -04:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
// set typing setting
|
|
|
|
} else if (strcmp(kind, "typing") == 0) {
|
|
|
|
if (strcmp(value, "on") == 0) {
|
|
|
|
cons_show("Typing notifications enabled.");
|
|
|
|
prefs_set_notify_typing(TRUE);
|
|
|
|
} else if (strcmp(value, "off") == 0) {
|
|
|
|
cons_show("Typing notifications disabled.");
|
|
|
|
prefs_set_notify_typing(FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify typing on|off");
|
2012-10-27 17:05:08 -04:00
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
} else { // remind
|
|
|
|
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);
|
|
|
|
}
|
2012-10-27 17:05:08 -04:00
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-08-15 19:50:32 -04:00
|
|
|
}
|
|
|
|
|
2012-11-12 04:13:03 -05:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_log(gchar **args, struct cmd_help_t help)
|
2012-11-12 04:13:03 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *subcmd = args[0];
|
|
|
|
char *value = args[1];
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (strcmp(subcmd, "maxsize") == 0) {
|
|
|
|
if (_strtoi(value, &intval, PREFS_MIN_LOG_SIZE, INT_MAX) == 0) {
|
|
|
|
prefs_set_max_log_size(intval);
|
|
|
|
cons_show("Log maxinum size set to %d bytes", intval);
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
2012-11-17 21:40:49 -05:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: %s", help.usage);
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
2012-11-13 17:23:06 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
/* TODO: make 'level' subcommand for debug level */
|
|
|
|
|
|
|
|
return TRUE;
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
|
|
|
|
2012-11-13 05:51:28 -05:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_priority(gchar **args, struct cmd_help_t help)
|
2012-11-13 05:51:28 -05:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *value = args[0];
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
if (_strtoi(value, &intval, -128, 127) == 0) {
|
|
|
|
char *status = jabber_get_status();
|
|
|
|
prefs_set_priority((int)intval);
|
|
|
|
// update presence with new priority
|
|
|
|
jabber_update_presence(jabber_get_presence(), status);
|
|
|
|
if (status != NULL)
|
|
|
|
free(status);
|
|
|
|
cons_show("Priority set to %d.", intval);
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
2012-11-14 21:31:31 -05:00
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
return TRUE;
|
2012-11-12 04:13:03 -05:00
|
|
|
}
|
|
|
|
|
2012-10-23 20:35:36 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_vercheck(gchar **args, struct cmd_help_t help)
|
2012-10-23 20:35:36 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
|
|
|
|
if (num_args == 0) {
|
2012-10-23 20:35:36 -04:00
|
|
|
cons_check_version(TRUE);
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/vercheck",
|
2012-10-23 20:35:36 -04:00
|
|
|
"Version checking", prefs_set_vercheck);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_flash(gchar **args, struct cmd_help_t help)
|
2012-04-23 20:39:23 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/flash",
|
2012-08-22 19:30:11 -04:00
|
|
|
"Screen flash", prefs_set_flash);
|
2012-04-23 20:39:23 -04:00
|
|
|
}
|
|
|
|
|
2012-10-27 19:33:20 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_intype(gchar **args, struct cmd_help_t help)
|
2012-10-27 19:33:20 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/intype",
|
2012-10-27 19:33:20 -04:00
|
|
|
"Show contact typing", prefs_set_intype);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_showsplash(gchar **args, struct cmd_help_t help)
|
2012-06-03 18:02:13 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/showsplash",
|
2012-08-22 19:30:11 -04:00
|
|
|
"Splash screen", prefs_set_showsplash);
|
2012-06-03 18:02:13 -04:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_chlog(gchar **args, struct cmd_help_t help)
|
2012-07-22 18:07:34 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/chlog",
|
2012-08-22 19:30:11 -04:00
|
|
|
"Chat logging", prefs_set_chlog);
|
2012-07-22 18:07:34 -04:00
|
|
|
}
|
|
|
|
|
2012-10-14 13:26:08 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_history(gchar **args, struct cmd_help_t help)
|
2012-10-14 13:26:08 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
return _cmd_set_boolean_preference(args, help, "/history",
|
2012-10-14 13:26:08 -04:00
|
|
|
"Chat history", prefs_set_history);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_away(gchar **args, struct cmd_help_t help)
|
2012-05-27 14:53:16 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
_update_presence(PRESENCE_AWAY, "away", args);
|
2012-05-27 14:53:16 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_online(gchar **args, struct cmd_help_t help)
|
2012-05-27 15:36:31 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
_update_presence(PRESENCE_ONLINE, "online", args);
|
2012-05-27 15:36:31 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_dnd(gchar **args, struct cmd_help_t help)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
_update_presence(PRESENCE_DND, "dnd", args);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_chat(gchar **args, struct cmd_help_t help)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
_update_presence(PRESENCE_CHAT, "chat", args);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_xa(gchar **args, struct cmd_help_t help)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
_update_presence(PRESENCE_XA, "xa", args);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// helper function for status change commands
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
2012-10-21 15:02:20 -04:00
|
|
|
_update_presence(const jabber_presence_t presence,
|
2012-11-17 21:40:49 -05:00
|
|
|
const char * const show, gchar **args)
|
2012-05-28 16:51:05 -04:00
|
|
|
{
|
2012-11-17 21:40:49 -05:00
|
|
|
char *msg = NULL;
|
|
|
|
int num_args = g_strv_length(args);
|
|
|
|
if (num_args == 1) {
|
|
|
|
msg = args[0];
|
2012-05-28 18:40:11 -04:00
|
|
|
}
|
|
|
|
|
2012-10-02 16:37:55 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_get_connection_status();
|
2012-10-21 15:02:20 -04:00
|
|
|
|
2012-05-28 16:51:05 -04:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
|
|
|
cons_show("You are not currently connected.");
|
|
|
|
} else {
|
2012-05-28 18:40:11 -04:00
|
|
|
jabber_update_presence(presence, msg);
|
2012-05-28 16:51:05 -04:00
|
|
|
title_bar_set_status(presence);
|
2012-05-28 18:40:11 -04:00
|
|
|
if (msg != NULL) {
|
2012-10-03 17:19:46 -04:00
|
|
|
cons_show("Status set to %s, \"%s\"", show, msg);
|
2012-05-28 18:40:11 -04:00
|
|
|
} else {
|
2012-10-03 17:19:46 -04:00
|
|
|
cons_show("Status set to %s", show);
|
2012-05-28 18:40:11 -04:00
|
|
|
}
|
2012-05-28 16:51:05 -04:00
|
|
|
}
|
2012-05-28 18:40:11 -04:00
|
|
|
|
2012-10-21 15:02:20 -04:00
|
|
|
}
|
2012-08-22 19:30:11 -04:00
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// helper function for boolean preference commands
|
|
|
|
|
2012-08-22 19:30:11 -04:00
|
|
|
static gboolean
|
2012-11-17 21:40:49 -05:00
|
|
|
_cmd_set_boolean_preference(gchar **args, struct cmd_help_t help,
|
2012-10-21 15:02:20 -04:00
|
|
|
const char * const cmd_str, const char * const display,
|
2012-08-22 19:30:11 -04:00
|
|
|
void (*set_func)(gboolean))
|
|
|
|
{
|
|
|
|
GString *enabled = g_string_new(display);
|
|
|
|
g_string_append(enabled, " enabled.");
|
|
|
|
|
|
|
|
GString *disabled = g_string_new(display);
|
|
|
|
g_string_append(disabled, " disabled.");
|
|
|
|
|
2012-11-17 21:40:49 -05:00
|
|
|
if (strcmp(args[0], "on") == 0) {
|
2012-08-22 19:30:11 -04:00
|
|
|
cons_show(enabled->str);
|
|
|
|
set_func(TRUE);
|
2012-11-17 21:40:49 -05:00
|
|
|
} else if (strcmp(args[0], "off") == 0) {
|
2012-08-22 19:30:11 -04:00
|
|
|
cons_show(disabled->str);
|
|
|
|
set_func(FALSE);
|
|
|
|
} else {
|
2012-11-16 06:49:26 -05:00
|
|
|
char usage[strlen(help.usage) + 8];
|
2012-08-22 19:30:11 -04:00
|
|
|
sprintf(usage, "Usage: %s", help.usage);
|
|
|
|
cons_show(usage);
|
2012-10-21 15:02:20 -04:00
|
|
|
}
|
2012-08-22 19:30:11 -04:00
|
|
|
|
|
|
|
g_string_free(enabled, TRUE);
|
|
|
|
g_string_free(disabled, TRUE);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-08-22 19:44:14 -04:00
|
|
|
// helper to get command by string
|
|
|
|
|
2012-08-22 19:41:22 -04:00
|
|
|
static struct cmd_t *
|
|
|
|
_cmd_get_command(const char * const command)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(main_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = main_commands+i;
|
|
|
|
if (strcmp(pcmd->cmd, command) == 0) {
|
|
|
|
return pcmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(setting_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = setting_commands+i;
|
|
|
|
if (strcmp(pcmd->cmd, command) == 0) {
|
|
|
|
return pcmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-13 17:24:37 -05:00
|
|
|
for (i = 0; i < ARRAY_SIZE(presence_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = presence_commands+i;
|
2012-08-22 19:41:22 -04:00
|
|
|
if (strcmp(pcmd->cmd, command) == 0) {
|
|
|
|
return pcmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-10-27 20:08:04 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
_parameter_autocomplete(char *input, int *size, char *command,
|
|
|
|
autocomplete_func func)
|
|
|
|
{
|
|
|
|
char *found = NULL;
|
|
|
|
char *auto_msg = NULL;
|
|
|
|
char inp_cpy[*size];
|
|
|
|
int i;
|
|
|
|
char *command_cpy = malloc(strlen(command) + 2);
|
|
|
|
sprintf(command_cpy, "%s ", command);
|
|
|
|
int len = strlen(command_cpy);
|
|
|
|
if ((strncmp(input, command_cpy, len) == 0) && (*size > len)) {
|
|
|
|
for(i = len; i < *size; i++) {
|
|
|
|
inp_cpy[i-len] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[(*size) - len] = '\0';
|
|
|
|
found = func(inp_cpy);
|
|
|
|
if (found != NULL) {
|
|
|
|
auto_msg = (char *) malloc((len + (strlen(found) + 1)) * sizeof(char));
|
|
|
|
strcpy(auto_msg, command_cpy);
|
|
|
|
strcat(auto_msg, found);
|
|
|
|
inp_replace_input(input, auto_msg, size);
|
|
|
|
free(auto_msg);
|
|
|
|
free(found);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(command_cpy);
|
|
|
|
}
|
|
|
|
|
2012-10-27 20:42:26 -04:00
|
|
|
static void
|
|
|
|
_notify_autocomplete(char *input, int *size)
|
|
|
|
{
|
|
|
|
char *found = NULL;
|
|
|
|
char *auto_msg = NULL;
|
|
|
|
char inp_cpy[*size];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ((strncmp(input, "/notify message ", 16) == 0) && (*size > 16)) {
|
|
|
|
for(i = 16; i < *size; i++) {
|
|
|
|
inp_cpy[i-16] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[(*size) - 16] = '\0';
|
|
|
|
found = prefs_autocomplete_boolean_choice(inp_cpy);
|
|
|
|
if (found != NULL) {
|
|
|
|
auto_msg = (char *) malloc((16 + (strlen(found) + 1)) * sizeof(char));
|
|
|
|
strcpy(auto_msg, "/notify message ");
|
|
|
|
strcat(auto_msg, found);
|
|
|
|
inp_replace_input(input, auto_msg, size);
|
|
|
|
free(auto_msg);
|
|
|
|
free(found);
|
|
|
|
}
|
|
|
|
} else if ((strncmp(input, "/notify typing ", 15) == 0) && (*size > 15)) {
|
|
|
|
for(i = 15; i < *size; i++) {
|
|
|
|
inp_cpy[i-15] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[(*size) - 15] = '\0';
|
|
|
|
found = prefs_autocomplete_boolean_choice(inp_cpy);
|
|
|
|
if (found != NULL) {
|
|
|
|
auto_msg = (char *) malloc((15 + (strlen(found) + 1)) * sizeof(char));
|
|
|
|
strcpy(auto_msg, "/notify typing ");
|
|
|
|
strcat(auto_msg, found);
|
|
|
|
inp_replace_input(input, auto_msg, size);
|
|
|
|
free(auto_msg);
|
|
|
|
free(found);
|
|
|
|
}
|
|
|
|
} else if ((strncmp(input, "/notify ", 8) == 0) && (*size > 8)) {
|
|
|
|
for(i = 8; i < *size; i++) {
|
|
|
|
inp_cpy[i-8] = input[i];
|
|
|
|
}
|
|
|
|
inp_cpy[(*size) - 8] = '\0';
|
|
|
|
found = _cmd_notify_complete(inp_cpy);
|
|
|
|
if (found != NULL) {
|
|
|
|
auto_msg = (char *) malloc((8 + (strlen(found) + 1)) * sizeof(char));
|
|
|
|
strcpy(auto_msg, "/notify ");
|
|
|
|
strcat(auto_msg, found);
|
|
|
|
inp_replace_input(input, auto_msg, size);
|
|
|
|
free(auto_msg);
|
|
|
|
free(found);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-13 17:23:06 -05:00
|
|
|
|
|
|
|
static int
|
|
|
|
_strtoi(char *str, int *saveptr, int min, int max)
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
int val;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
val = (int)strtol(str, &ptr, 0);
|
|
|
|
if (*str == '\0' || *ptr != '\0') {
|
|
|
|
cons_show("Illegal character. Must be a number.");
|
|
|
|
return -1;
|
|
|
|
} else if (errno == ERANGE || val < min || val > max) {
|
|
|
|
cons_show("Value out of range. Must be in %d..%d.", min, max);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*saveptr = val;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|