2012-02-20 15:07:38 -05:00
|
|
|
/*
|
|
|
|
* command.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* 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-09 18:15:53 -05:00
|
|
|
#include <string.h>
|
2012-02-19 15:57:46 -05:00
|
|
|
#include <stdlib.h>
|
2012-04-23 20:02:22 -04:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2012-08-10 18:18:02 -04:00
|
|
|
#include "common.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
#include "command.h"
|
2012-03-07 19:46:24 -05:00
|
|
|
#include "contact_list.h"
|
2012-02-26 20:44:09 -05:00
|
|
|
#include "history.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
#include "jabber.h"
|
2012-05-23 20:11:43 -04:00
|
|
|
#include "ui.h"
|
2012-02-18 17:51:08 -05:00
|
|
|
#include "util.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-07-27 20:36:08 -04:00
|
|
|
#include "tinyurl.h"
|
2012-02-09 18:15:53 -05:00
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
|
|
|
|
// helpers
|
2012-04-23 20:02:22 -04:00
|
|
|
static gboolean _handle_command(const char * const command,
|
|
|
|
const char * const inp);
|
2012-08-10 19:18:03 -04:00
|
|
|
static void _update_presence(const jabber_presence_t presence,
|
|
|
|
const char * const show, const char * const inp);
|
|
|
|
|
|
|
|
// command prototypes
|
2012-06-04 14:23:14 -04:00
|
|
|
static gboolean _cmd_quit(const char * const inp);
|
|
|
|
static gboolean _cmd_help(const char * const inp);
|
2012-07-19 18:43:50 -04:00
|
|
|
static gboolean _cmd_prefs(const char * const inp);
|
2012-06-04 14:23:14 -04:00
|
|
|
static gboolean _cmd_who(const char * const inp);
|
|
|
|
static gboolean _cmd_ros(const char * const inp);
|
2012-04-23 20:02:22 -04:00
|
|
|
static gboolean _cmd_connect(const char * const inp);
|
|
|
|
static gboolean _cmd_msg(const char * const inp);
|
2012-07-27 20:36:08 -04:00
|
|
|
static gboolean _cmd_tiny(const char * const inp);
|
2012-04-23 20:02:22 -04:00
|
|
|
static gboolean _cmd_close(const char * const inp);
|
2012-04-26 18:37:54 -04:00
|
|
|
static gboolean _cmd_set_beep(const char * const inp);
|
2012-06-28 18:45:37 -04:00
|
|
|
static gboolean _cmd_set_notify(const char * const inp);
|
2012-04-26 18:37:54 -04:00
|
|
|
static gboolean _cmd_set_flash(const char * const inp);
|
2012-06-03 18:02:13 -04:00
|
|
|
static gboolean _cmd_set_showsplash(const char * const inp);
|
2012-07-22 18:07:34 -04:00
|
|
|
static gboolean _cmd_set_chlog(const char * const inp);
|
2012-05-27 14:53:16 -04:00
|
|
|
static gboolean _cmd_away(const char * const inp);
|
2012-05-27 15:36:31 -04:00
|
|
|
static gboolean _cmd_online(const char * const inp);
|
2012-05-27 18:00:04 -04:00
|
|
|
static gboolean _cmd_dnd(const char * const inp);
|
|
|
|
static gboolean _cmd_chat(const char * const inp);
|
|
|
|
static gboolean _cmd_xa(const char * const inp);
|
2012-04-23 20:02:22 -04:00
|
|
|
static gboolean _cmd_default(const char * const inp);
|
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
/* command structure
|
|
|
|
* cmd - The actual string of the command
|
|
|
|
* func - The function to execute for the command
|
|
|
|
*/
|
2012-06-04 15:49:18 -04:00
|
|
|
struct cmd_t {
|
|
|
|
const gchar *cmd;
|
|
|
|
gboolean (*func)(const char * const inp);
|
2012-08-10 19:18:03 -04:00
|
|
|
const gchar *usage;
|
|
|
|
const gchar *short_help;
|
2012-06-04 15:49:18 -04:00
|
|
|
};
|
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
// The commands
|
2012-08-11 16:26:24 -04:00
|
|
|
static struct cmd_t main_commands[] = {
|
|
|
|
{ "/close", _cmd_close, NULL, "Close current chat window." },
|
|
|
|
{ "/connect", _cmd_connect, "/connect user@host", "Login to jabber." },
|
|
|
|
{ "/prefs", _cmd_prefs, NULL, "Show current preferences." },
|
|
|
|
{ "/msg", _cmd_msg, "/msg user@host mesg", "Send mesg to user." },
|
|
|
|
{ "/tiny", _cmd_tiny, "/tiny url", "Send url as tinyurl in current chat." },
|
|
|
|
{ "/quit", _cmd_quit, NULL, "Quit Profanity." },
|
|
|
|
{ "/ros", _cmd_ros, NULL, "List all contacts." },
|
|
|
|
{ "/who", _cmd_who, NULL, "Find out who is online." },
|
|
|
|
{ "/help", _cmd_help, NULL, "This help." }
|
|
|
|
};
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-08-11 16:26:24 -04:00
|
|
|
static struct cmd_t setting_commands[] = {
|
|
|
|
{ "/beep", _cmd_set_beep, "/beep on|off", "Enable/disable sound notifications." },
|
|
|
|
{ "/notify", _cmd_set_notify, "/notify on|off", "Enable/disable desktop notifications." },
|
|
|
|
{ "/flash", _cmd_set_flash, "/flash on|off", "Enable/disable screen flash notifications." },
|
|
|
|
{ "/showsplash", _cmd_set_showsplash, "/showsplash on|off", "Enable/disable splash logo on startup." },
|
|
|
|
{ "/chlog", _cmd_set_chlog, "/chlog on|off", "Enable/disable chat logging." }
|
|
|
|
};
|
2012-08-10 19:18:03 -04:00
|
|
|
|
2012-08-11 16:26:24 -04:00
|
|
|
static struct cmd_t status_commands[] = {
|
|
|
|
{ "/away", _cmd_away, "/away [msg]", "Set status to away." },
|
|
|
|
{ "/chat", _cmd_chat, "/chat [msg]", "Set status to chat (available for chat)." },
|
|
|
|
{ "/dnd", _cmd_dnd, "/dnd [msg]", "Set status to dnd (do not disturb." },
|
|
|
|
{ "/online", _cmd_online, "/online [msg]", "Set status to online." },
|
|
|
|
{ "/xa", _cmd_xa, "/xa [msg]", "Set status to xa (extended away)." }
|
2012-06-04 15:49:18 -04:00
|
|
|
};
|
|
|
|
|
2012-08-10 19:18:03 -04:00
|
|
|
static PAutocomplete commands_ac;
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
gboolean
|
|
|
|
process_input(char *inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-04-23 20:02:22 -04:00
|
|
|
gboolean result = FALSE;
|
2012-02-18 18:17:01 -05:00
|
|
|
|
2012-04-26 18:27:40 -04:00
|
|
|
g_strstrip(inp);
|
2012-02-18 18:17:01 -05:00
|
|
|
|
2012-02-26 18:33:14 -05:00
|
|
|
if (strlen(inp) > 0)
|
2012-02-26 20:44:09 -05:00
|
|
|
history_append(inp);
|
2012-02-26 18:33:14 -05:00
|
|
|
|
2012-02-18 18:17:01 -05:00
|
|
|
if (strlen(inp) == 0) {
|
2012-02-19 20:42:29 -05:00
|
|
|
result = TRUE;
|
|
|
|
} else if (inp[0] == '/') {
|
2012-04-28 14:08:33 -04:00
|
|
|
char inp_cpy[strlen(inp) + 1];
|
|
|
|
strcpy(inp_cpy, inp);
|
|
|
|
char *command = strtok(inp_cpy, " ");
|
|
|
|
result = _handle_command(command, inp);
|
2012-02-09 18:15:53 -05:00
|
|
|
} else {
|
2012-02-18 18:17:01 -05:00
|
|
|
result = _cmd_default(inp);
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 16:47:19 -05:00
|
|
|
inp_clear();
|
2012-03-10 18:01:59 -05:00
|
|
|
reset_search_attempts();
|
|
|
|
win_page_off();
|
2012-02-12 16:47:19 -05:00
|
|
|
|
2012-02-09 18:15:53 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
command_init(void)
|
2012-04-30 19:24:31 -04:00
|
|
|
{
|
2012-06-04 18:59:09 -04:00
|
|
|
commands_ac = p_autocomplete_new();
|
|
|
|
|
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;
|
|
|
|
p_autocomplete_add(commands_ac, (gchar *)pcmd->cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(setting_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = setting_commands+i;
|
|
|
|
p_autocomplete_add(commands_ac, (gchar *)pcmd->cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(status_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = status_commands+i;
|
2012-06-04 18:59:09 -04:00
|
|
|
p_autocomplete_add(commands_ac, (gchar *)pcmd->cmd);
|
|
|
|
}
|
|
|
|
|
2012-04-30 19:24:31 -04:00
|
|
|
history_init();
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
char *
|
|
|
|
cmd_complete(char *inp)
|
2012-06-04 18:59:09 -04:00
|
|
|
{
|
|
|
|
return p_autocomplete_complete(commands_ac, inp);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
|
|
|
reset_command_completer(void)
|
2012-06-04 18:59:09 -04:00
|
|
|
{
|
|
|
|
p_autocomplete_reset(commands_ac);
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_handle_command(const char * const command, const char * const inp)
|
2012-02-18 18:09:21 -05:00
|
|
|
{
|
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;
|
|
|
|
if (strcmp(pcmd->cmd, command) == 0) {
|
|
|
|
return (pcmd->func(inp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(setting_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = setting_commands+i;
|
|
|
|
if (strcmp(pcmd->cmd, command) == 0) {
|
|
|
|
return (pcmd->func(inp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(status_commands); i++) {
|
|
|
|
struct cmd_t *pcmd = status_commands+i;
|
2012-06-04 15:49:18 -04:00
|
|
|
if (strcmp(pcmd->cmd, command) == 0) {
|
|
|
|
return (pcmd->func(inp));
|
|
|
|
}
|
2012-02-19 20:42:29 -05:00
|
|
|
}
|
|
|
|
|
2012-06-04 15:49:18 -04:00
|
|
|
return _cmd_default(inp);
|
2012-02-18 18:09:21 -05:00
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_connect(const char * const inp)
|
2012-02-18 18:09:21 -05:00
|
|
|
{
|
2012-04-23 20:02:22 -04:00
|
|
|
gboolean result = FALSE;
|
2012-05-27 14:20:17 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_connection_status();
|
2012-02-18 18:09:21 -05:00
|
|
|
|
2012-02-26 12:18:03 -05:00
|
|
|
if ((conn_status != JABBER_DISCONNECTED) && (conn_status != JABBER_STARTED)) {
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("You are either connected already, or a login is in process.");
|
2012-02-19 20:42:29 -05:00
|
|
|
result = TRUE;
|
|
|
|
} else if (strlen(inp) < 10) {
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("Usage: /connect user@host");
|
2012-02-19 20:42:29 -05:00
|
|
|
result = TRUE;
|
2012-02-18 18:09:21 -05:00
|
|
|
} else {
|
2012-07-17 19:19:51 -04:00
|
|
|
char *user, *lower;
|
2012-02-18 18:09:21 -05:00
|
|
|
user = strndup(inp+9, strlen(inp)-9);
|
2012-07-17 19:19:51 -04:00
|
|
|
lower = g_utf8_strdown(user, -1);
|
|
|
|
|
2012-02-18 18:09:21 -05:00
|
|
|
status_bar_get_password();
|
|
|
|
status_bar_refresh();
|
2012-02-19 15:16:33 -05:00
|
|
|
char passwd[21];
|
2012-02-19 20:42:29 -05:00
|
|
|
inp_block();
|
2012-02-18 18:09:21 -05:00
|
|
|
inp_get_password(passwd);
|
2012-02-19 20:42:29 -05:00
|
|
|
inp_non_block();
|
2012-02-26 12:18:03 -05:00
|
|
|
|
2012-07-17 19:19:51 -04:00
|
|
|
conn_status = jabber_connect(lower, passwd);
|
2012-02-26 12:18:03 -05:00
|
|
|
if (conn_status == JABBER_CONNECTING)
|
2012-02-29 19:43:44 -05:00
|
|
|
cons_show("Connecting...");
|
2012-02-26 12:18:03 -05:00
|
|
|
if (conn_status == JABBER_DISCONNECTED)
|
|
|
|
cons_bad_show("Connection to server failed.");
|
|
|
|
|
2012-02-19 20:42:29 -05:00
|
|
|
result = TRUE;
|
2012-02-18 18:09:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_quit(const char * const inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_help(const char * const inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-02-12 17:23:51 -05:00
|
|
|
cons_help();
|
2012-02-09 18:15:53 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_prefs(const char * const inp)
|
2012-07-19 18:43:50 -04:00
|
|
|
{
|
|
|
|
cons_prefs();
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_ros(const char * const inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-05-27 14:20:17 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_connection_status();
|
2012-02-19 20:42:29 -05:00
|
|
|
|
2012-02-26 12:18:03 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED)
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("You are not currently connected.");
|
2012-02-19 20:42:29 -05:00
|
|
|
else
|
|
|
|
jabber_roster_request();
|
2012-02-09 18:15:53 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_who(const char * const inp)
|
2012-03-07 19:46:24 -05:00
|
|
|
{
|
2012-05-27 14:20:17 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_connection_status();
|
2012-03-08 18:14:35 -05:00
|
|
|
|
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("You are not currently connected.");
|
2012-03-08 18:14:35 -05:00
|
|
|
} else {
|
2012-05-09 19:30:03 -04:00
|
|
|
GSList *list = get_contact_list();
|
2012-03-08 18:14:35 -05:00
|
|
|
cons_show_online_contacts(list);
|
|
|
|
}
|
2012-03-07 19:46:24 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_msg(const char * const inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
|
|
|
char *usr = NULL;
|
|
|
|
char *msg = NULL;
|
|
|
|
|
2012-05-27 14:20:17 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_connection_status();
|
2012-02-19 20:42:29 -05:00
|
|
|
|
2012-02-26 12:18:03 -05:00
|
|
|
if (conn_status != JABBER_CONNECTED) {
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("You are not currently connected.");
|
2012-02-19 20:42:29 -05:00
|
|
|
} else {
|
|
|
|
// copy input
|
|
|
|
char inp_cpy[strlen(inp) + 1];
|
|
|
|
strcpy(inp_cpy, inp);
|
|
|
|
|
|
|
|
// get user
|
|
|
|
strtok(inp_cpy, " ");
|
|
|
|
usr = strtok(NULL, " ");
|
|
|
|
if ((usr != NULL) && (strlen(inp) > (5 + strlen(usr) + 1))) {
|
2012-03-08 20:06:55 -05:00
|
|
|
// get message
|
2012-02-19 20:42:29 -05:00
|
|
|
msg = strndup(inp+5+strlen(usr)+1, strlen(inp)-(5+strlen(usr)+1));
|
|
|
|
if (msg != NULL) {
|
|
|
|
jabber_send(msg, usr);
|
|
|
|
win_show_outgoing_msg("me", usr, msg);
|
|
|
|
} else {
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("Usage: /msg user@host message");
|
2012-02-19 20:42:29 -05:00
|
|
|
}
|
2012-02-18 19:17:36 -05:00
|
|
|
} else {
|
2012-05-09 20:22:47 -04:00
|
|
|
cons_show("Usage: /msg user@host message");
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-27 20:36:08 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_tiny(const char * const inp)
|
|
|
|
{
|
2012-07-29 16:32:04 -04:00
|
|
|
if (strlen(inp) > 6) {
|
|
|
|
char *url = strndup(inp+6, strlen(inp)-6);
|
|
|
|
|
|
|
|
if (!tinyurl_valid(url)) {
|
|
|
|
GString *error = g_string_new("/tiny, badly formed URL: ");
|
|
|
|
g_string_append(error, url);
|
|
|
|
cons_bad_show(error->str);
|
2012-07-29 16:47:30 -04:00
|
|
|
if (win_in_chat()) {
|
|
|
|
win_bad_show(error->str);
|
|
|
|
}
|
2012-07-29 16:32:04 -04:00
|
|
|
g_string_free(error, TRUE);
|
|
|
|
free(url);
|
|
|
|
} else if (win_in_chat()) {
|
|
|
|
char *tiny = tinyurl_get(url);
|
|
|
|
char *recipient = win_get_recipient();
|
|
|
|
jabber_send(tiny, recipient);
|
|
|
|
win_show_outgoing_msg("me", recipient, tiny);
|
|
|
|
free(recipient);
|
|
|
|
free(tiny);
|
|
|
|
free(url);
|
|
|
|
} else {
|
|
|
|
cons_bad_command(inp);
|
|
|
|
free(url);
|
|
|
|
}
|
2012-07-27 20:36:08 -04:00
|
|
|
} else {
|
2012-07-29 16:47:30 -04:00
|
|
|
cons_show("Usage: /tiny url");
|
|
|
|
if (win_in_chat()) {
|
|
|
|
win_show("Usage: /tiny url");
|
|
|
|
}
|
2012-07-27 20:36:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_close(const char * const inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-02-29 19:40:51 -05:00
|
|
|
if (!win_close_win())
|
2012-02-18 19:17:36 -05:00
|
|
|
cons_bad_command(inp);
|
2012-02-09 18:15:53 -05:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_set_beep(const char * const inp)
|
2012-04-23 20:24:54 -04:00
|
|
|
{
|
|
|
|
if (strcmp(inp, "/beep on") == 0) {
|
2012-04-23 20:39:23 -04:00
|
|
|
cons_show("Sound enabled.");
|
2012-05-10 04:55:55 -04:00
|
|
|
prefs_set_beep(TRUE);
|
2012-04-23 20:24:54 -04:00
|
|
|
} else if (strcmp(inp, "/beep off") == 0) {
|
2012-04-23 20:39:23 -04:00
|
|
|
cons_show("Sound disabled.");
|
2012-05-10 04:55:55 -04:00
|
|
|
prefs_set_beep(FALSE);
|
2012-04-23 20:24:54 -04:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: /beep <on/off>");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_set_notify(const char * const inp)
|
2012-06-28 18:45:37 -04:00
|
|
|
{
|
|
|
|
if (strcmp(inp, "/notify on") == 0) {
|
|
|
|
cons_show("Desktop notifications enabled.");
|
|
|
|
prefs_set_notify(TRUE);
|
|
|
|
} else if (strcmp(inp, "/notify off") == 0) {
|
|
|
|
cons_show("Desktop notifications disabled.");
|
|
|
|
prefs_set_notify(FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /notify <on/off>");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_set_flash(const char * const inp)
|
2012-04-23 20:39:23 -04:00
|
|
|
{
|
|
|
|
if (strcmp(inp, "/flash on") == 0) {
|
|
|
|
cons_show("Screen flash enabled.");
|
2012-05-10 04:55:55 -04:00
|
|
|
prefs_set_flash(TRUE);
|
2012-04-23 20:39:23 -04:00
|
|
|
} else if (strcmp(inp, "/flash off") == 0) {
|
|
|
|
cons_show("Screen flash disabled.");
|
2012-05-10 04:55:55 -04:00
|
|
|
prefs_set_flash(FALSE);
|
2012-04-23 20:39:23 -04:00
|
|
|
} else {
|
|
|
|
cons_show("Usage: /flash <on/off>");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_set_showsplash(const char * const inp)
|
2012-06-03 18:02:13 -04:00
|
|
|
{
|
|
|
|
if (strcmp(inp, "/showsplash on") == 0) {
|
|
|
|
cons_show("Splash screen enabled.");
|
|
|
|
prefs_set_showsplash(TRUE);
|
|
|
|
} else if (strcmp(inp, "/showsplash off") == 0) {
|
|
|
|
cons_show("Splash screen disabled.");
|
|
|
|
prefs_set_showsplash(FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /showsplash <on/off>");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_set_chlog(const char * const inp)
|
2012-07-22 18:07:34 -04:00
|
|
|
{
|
|
|
|
if (strcmp(inp, "/chlog on") == 0) {
|
|
|
|
cons_show("Chat logging enabled.");
|
|
|
|
prefs_set_chlog(TRUE);
|
|
|
|
} else if (strcmp(inp, "/chlog off") == 0) {
|
|
|
|
cons_show("Chat logging disabled.");
|
|
|
|
prefs_set_chlog(FALSE);
|
|
|
|
} else {
|
|
|
|
cons_show("Usage: /chlog <on/off>");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_away(const char * const inp)
|
2012-05-27 14:53:16 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
_update_presence(PRESENCE_AWAY, "away", inp);
|
2012-05-27 14:53:16 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_online(const char * const inp)
|
2012-05-27 15:36:31 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
_update_presence(PRESENCE_ONLINE, "online", inp);
|
2012-05-27 15:36:31 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_dnd(const char * const inp)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
_update_presence(PRESENCE_DND, "dnd", inp);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_chat(const char * const inp)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
_update_presence(PRESENCE_CHAT, "chat", inp);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_xa(const char * const inp)
|
2012-05-27 18:00:04 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
_update_presence(PRESENCE_XA, "xa", inp);
|
2012-05-27 18:00:04 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static gboolean
|
|
|
|
_cmd_default(const char * const inp)
|
2012-02-09 18:15:53 -05:00
|
|
|
{
|
2012-02-12 17:09:07 -05:00
|
|
|
if (win_in_chat()) {
|
2012-02-19 15:57:46 -05:00
|
|
|
char *recipient = win_get_recipient();
|
2012-02-18 19:17:36 -05:00
|
|
|
jabber_send(inp, recipient);
|
|
|
|
win_show_outgoing_msg("me", recipient, inp);
|
2012-02-19 15:57:46 -05:00
|
|
|
free(recipient);
|
2012-02-09 18:15:53 -05:00
|
|
|
} else {
|
2012-02-18 19:17:36 -05:00
|
|
|
cons_bad_command(inp);
|
2012-02-09 18:15:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-05-28 16:51:05 -04:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
static void
|
|
|
|
_update_presence(const jabber_presence_t presence,
|
2012-05-28 18:40:11 -04:00
|
|
|
const char * const show, const char * const inp)
|
2012-05-28 16:51:05 -04:00
|
|
|
{
|
2012-05-28 18:40:11 -04:00
|
|
|
char *msg;
|
|
|
|
if (strlen(inp) > strlen(show) + 2) {
|
|
|
|
msg = strndup(inp+(strlen(show) + 2), strlen(inp)-(strlen(show) + 2));
|
|
|
|
} else {
|
|
|
|
msg = NULL;
|
|
|
|
}
|
|
|
|
|
2012-05-28 16:51:05 -04:00
|
|
|
jabber_conn_status_t conn_status = jabber_connection_status();
|
|
|
|
|
|
|
|
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) {
|
|
|
|
char str[14 + strlen(show) + 3 + strlen(msg) + 2];
|
|
|
|
sprintf(str, "Status set to %s, \"%s\"", show, msg);
|
|
|
|
cons_show(str);
|
|
|
|
free(msg);
|
|
|
|
} else {
|
|
|
|
char str[14 + strlen(show) + 1];
|
|
|
|
sprintf(str, "Status set to %s", show);
|
|
|
|
cons_show(str);
|
|
|
|
}
|
2012-05-28 16:51:05 -04:00
|
|
|
}
|
2012-05-28 18:40:11 -04:00
|
|
|
|
2012-05-28 16:51:05 -04:00
|
|
|
}
|