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

219 lines
5.3 KiB
C
Raw Normal View History

2012-02-20 20:07:38 +00: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 23:15:53 +00:00
#include <string.h>
#include <stdlib.h>
2012-02-09 23:15:53 +00:00
#include "command.h"
2012-03-08 00:46:24 +00:00
#include "contact_list.h"
2012-02-27 01:44:09 +00:00
#include "history.h"
2012-02-09 23:15:53 +00:00
#include "jabber.h"
#include "windows.h"
2012-02-18 22:51:08 +00:00
#include "util.h"
2012-02-09 23:15:53 +00:00
2012-03-09 01:06:55 +00:00
static int _handle_command(const char * const command, const char * const inp);
2012-02-12 22:09:07 +00:00
static int _cmd_quit(void);
static int _cmd_help(void);
static int _cmd_who(void);
static int _cmd_ros(void);
2012-03-09 01:06:55 +00:00
static int _cmd_connect(const char * const inp);
static int _cmd_msg(const char * const inp);
static int _cmd_close(const char * const inp);
static int _cmd_default(const char * const inp);
2012-02-12 21:47:19 +00:00
2012-02-20 01:42:29 +00:00
int process_input(char *inp)
2012-02-09 23:15:53 +00:00
{
int result = FALSE;
2012-02-18 23:17:01 +00:00
if (strlen(inp) > 0)
2012-02-27 01:44:09 +00:00
history_append(inp);
2012-02-18 23:17:01 +00:00
if (strlen(inp) == 0) {
2012-02-20 01:42:29 +00:00
result = TRUE;
} else if (inp[0] == '/') {
2012-02-19 00:17:36 +00:00
inp = trim(inp);
2012-02-19 20:16:33 +00:00
char inp_cpy[strlen(inp) + 1];
2012-02-19 00:17:36 +00:00
strcpy(inp_cpy, inp);
char *command = strtok(inp_cpy, " ");
2012-02-20 01:42:29 +00:00
result = _handle_command(command, inp);
2012-02-09 23:15:53 +00:00
} else {
2012-02-18 23:17:01 +00:00
result = _cmd_default(inp);
2012-02-09 23:15:53 +00:00
}
2012-02-12 21:47:19 +00:00
inp_clear();
reset_search_attempts();
win_page_off();
2012-02-12 21:47:19 +00:00
2012-02-09 23:15:53 +00:00
return result;
}
2012-03-09 01:06:55 +00:00
static int _handle_command(const char * const command, const char * const inp)
2012-02-18 23:09:21 +00:00
{
2012-02-20 01:42:29 +00:00
int result = FALSE;
2012-02-18 23:09:21 +00:00
2012-02-20 01:42:29 +00:00
if (strcmp(command, "/quit") == 0) {
result = _cmd_quit();
} else if (strcmp(command, "/help") == 0) {
result = _cmd_help();
} else if (strcmp(command, "/ros") == 0) {
result = _cmd_ros();
2012-02-20 01:42:29 +00:00
} else if (strcmp(command, "/who") == 0) {
result = _cmd_who();
} else if (strcmp(command, "/msg") == 0) {
result = _cmd_msg(inp);
} else if (strcmp(command, "/close") == 0) {
result = _cmd_close(inp);
} else if (strcmp(command, "/connect") == 0) {
result = _cmd_connect(inp);
} else {
result = _cmd_default(inp);
}
return result;
2012-02-18 23:09:21 +00:00
}
2012-03-09 01:06:55 +00:00
static int _cmd_connect(const char * const inp)
2012-02-18 23:09:21 +00:00
{
2012-02-20 01:42:29 +00:00
int result = FALSE;
jabber_status_t conn_status = jabber_connection_status();
2012-02-18 23:09:21 +00:00
if ((conn_status != JABBER_DISCONNECTED) && (conn_status != JABBER_STARTED)) {
2012-02-20 01:42:29 +00:00
cons_not_disconnected();
result = TRUE;
} else if (strlen(inp) < 10) {
2012-02-18 23:09:21 +00:00
cons_bad_connect();
2012-02-20 01:42:29 +00:00
result = TRUE;
2012-02-18 23:09:21 +00:00
} else {
char *user;
user = strndup(inp+9, strlen(inp)-9);
status_bar_get_password();
status_bar_refresh();
2012-02-19 20:16:33 +00:00
char passwd[21];
2012-02-20 01:42:29 +00:00
inp_block();
2012-02-18 23:09:21 +00:00
inp_get_password(passwd);
2012-02-20 01:42:29 +00:00
inp_non_block();
conn_status = jabber_connect(user, passwd);
if (conn_status == JABBER_CONNECTING)
2012-03-01 00:43:44 +00:00
cons_show("Connecting...");
if (conn_status == JABBER_DISCONNECTED)
cons_bad_show("Connection to server failed.");
2012-02-20 01:42:29 +00:00
result = TRUE;
2012-02-18 23:09:21 +00:00
}
return result;
}
2012-02-12 22:09:07 +00:00
static int _cmd_quit(void)
2012-02-09 23:15:53 +00:00
{
return FALSE;
}
2012-02-12 22:09:07 +00:00
static int _cmd_help(void)
2012-02-09 23:15:53 +00:00
{
2012-02-12 22:23:51 +00:00
cons_help();
2012-02-09 23:15:53 +00:00
return TRUE;
}
static int _cmd_ros(void)
2012-02-09 23:15:53 +00:00
{
jabber_status_t conn_status = jabber_connection_status();
2012-02-20 01:42:29 +00:00
if (conn_status != JABBER_CONNECTED)
2012-02-20 01:42:29 +00:00
cons_not_connected();
else
jabber_roster_request();
2012-02-09 23:15:53 +00:00
return TRUE;
}
static int _cmd_who(void)
2012-03-08 00:46:24 +00:00
{
jabber_status_t conn_status = jabber_connection_status();
if (conn_status != JABBER_CONNECTED) {
cons_not_connected();
} else {
struct contact_node_t *list = get_contact_list();
cons_show_online_contacts(list);
}
2012-03-08 00:46:24 +00:00
return TRUE;
}
2012-03-09 01:06:55 +00:00
static int _cmd_msg(const char * const inp)
2012-02-09 23:15:53 +00:00
{
char *usr = NULL;
char *msg = NULL;
jabber_status_t conn_status = jabber_connection_status();
2012-02-20 01:42:29 +00:00
if (conn_status != JABBER_CONNECTED) {
2012-02-20 01:42:29 +00:00
cons_not_connected();
} 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-09 01:06:55 +00:00
// get message
2012-02-20 01:42:29 +00: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 {
cons_bad_message();
}
2012-02-19 00:17:36 +00:00
} else {
cons_bad_message();
2012-02-09 23:15:53 +00:00
}
}
return TRUE;
}
2012-03-09 01:06:55 +00:00
static int _cmd_close(const char * const inp)
2012-02-09 23:15:53 +00:00
{
2012-03-01 00:40:51 +00:00
if (!win_close_win())
2012-02-19 00:17:36 +00:00
cons_bad_command(inp);
2012-02-09 23:15:53 +00:00
return TRUE;
}
2012-03-09 01:06:55 +00:00
static int _cmd_default(const char * const inp)
2012-02-09 23:15:53 +00:00
{
2012-02-12 22:09:07 +00:00
if (win_in_chat()) {
char *recipient = win_get_recipient();
2012-02-19 00:17:36 +00:00
jabber_send(inp, recipient);
win_show_outgoing_msg("me", recipient, inp);
free(recipient);
2012-02-09 23:15:53 +00:00
} else {
2012-02-19 00:17:36 +00:00
cons_bad_command(inp);
2012-02-09 23:15:53 +00:00
}
return TRUE;
}