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

133 lines
2.7 KiB
C
Raw Normal View History

2012-02-09 23:15:53 +00:00
#include <string.h>
#include <ncurses.h>
#include "command.h"
#include "jabber.h"
#include "windows.h"
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_msg(char *cmd);
static int _cmd_close(char *cmd);
static int _cmd_default(char *cmd);
2012-02-09 23:15:53 +00:00
2012-02-10 23:53:13 +00:00
int handle_start_command(char *cmd)
{
int result;
if (strcmp(cmd, "/quit") == 0) {
result = QUIT_PROF;
} else if (strncmp(cmd, "/help", 5) == 0) {
2012-02-12 22:23:51 +00:00
cons_help();
2012-02-17 00:42:41 +00:00
gui_refresh();
2012-02-10 23:53:13 +00:00
result = AWAIT_COMMAND;
} else if (strncmp(cmd, "/connect ", 9) == 0) {
char *user;
user = strndup(cmd+9, strlen(cmd)-9);
2012-02-12 22:20:21 +00:00
status_bar_get_password();
2012-02-12 22:34:31 +00:00
status_bar_refresh();
2012-02-10 23:53:13 +00:00
char passwd[20];
inp_get_password(passwd);
2012-02-17 00:42:41 +00:00
int connect_status = jabber_connect(user, passwd);
if (connect_status == CONNECTING)
result = START_MAIN;
else
result = AWAIT_COMMAND;
2012-02-10 23:53:13 +00:00
} else {
2012-02-12 22:23:51 +00:00
cons_bad_command(cmd);
2012-02-17 00:42:41 +00:00
gui_refresh();
2012-02-10 23:53:13 +00:00
result = AWAIT_COMMAND;
}
2012-02-12 21:47:19 +00:00
inp_clear();
2012-02-10 23:53:13 +00:00
return result;
}
2012-02-09 23:15:53 +00:00
int handle_command(char *cmd)
{
int result = FALSE;
if (strcmp(cmd, "/quit") == 0) {
2012-02-12 22:09:07 +00:00
result = _cmd_quit();
2012-02-09 23:15:53 +00:00
} else if (strncmp(cmd, "/help", 5) == 0) {
2012-02-12 22:09:07 +00:00
result = _cmd_help();
2012-02-09 23:15:53 +00:00
} else if (strncmp(cmd, "/who", 4) == 0) {
2012-02-12 22:09:07 +00:00
result = _cmd_who();
2012-02-09 23:15:53 +00:00
} else if (strncmp(cmd, "/msg ", 5) == 0) {
2012-02-12 22:09:07 +00:00
result = _cmd_msg(cmd);
2012-02-09 23:15:53 +00:00
} else if (strncmp(cmd, "/close", 6) == 0) {
2012-02-12 22:09:07 +00:00
result = _cmd_close(cmd);
2012-02-09 23:15:53 +00:00
} else {
2012-02-12 22:09:07 +00:00
result = _cmd_default(cmd);
2012-02-09 23:15:53 +00:00
}
2012-02-12 21:47:19 +00:00
inp_clear();
2012-02-09 23:15:53 +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;
}
2012-02-12 22:09:07 +00:00
static int _cmd_who(void)
2012-02-09 23:15:53 +00:00
{
jabber_roster_request();
return TRUE;
}
2012-02-12 22:09:07 +00:00
static int _cmd_msg(char *cmd)
2012-02-09 23:15:53 +00:00
{
char *usr_msg = NULL;
char *usr = NULL;
char *msg = NULL;
usr_msg = strndup(cmd+5, strlen(cmd)-5);
usr = strtok(usr_msg, " ");
if (usr != NULL) {
msg = strndup(cmd+5+strlen(usr)+1, strlen(cmd)-(5+strlen(usr)+1));
if (msg != NULL) {
jabber_send(msg, usr);
2012-02-12 22:09:07 +00:00
win_show_outgoing_msg("me", usr, msg);
2012-02-09 23:15:53 +00:00
}
}
return TRUE;
}
2012-02-12 22:09:07 +00:00
static int _cmd_close(char *cmd)
2012-02-09 23:15:53 +00:00
{
2012-02-12 22:09:07 +00:00
if (win_in_chat()) {
win_close_win();
2012-02-09 23:15:53 +00:00
} else {
2012-02-12 22:23:51 +00:00
cons_bad_command(cmd);
2012-02-09 23:15:53 +00:00
}
return TRUE;
}
2012-02-12 22:09:07 +00:00
static int _cmd_default(char *cmd)
2012-02-09 23:15:53 +00:00
{
2012-02-12 22:09:07 +00:00
if (win_in_chat()) {
2012-02-09 23:15:53 +00:00
char recipient[100] = "";
2012-02-12 22:09:07 +00:00
win_get_recipient(recipient);
2012-02-09 23:15:53 +00:00
jabber_send(cmd, recipient);
2012-02-12 22:09:07 +00:00
win_show_outgoing_msg("me", recipient, cmd);
2012-02-09 23:15:53 +00:00
} else {
2012-02-12 22:23:51 +00:00
cons_bad_command(cmd);
2012-02-09 23:15:53 +00:00
}
return TRUE;
}