1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:57:45 +02:00
toxic/src/global_commands.c

435 lines
12 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* global_commands.c
*
*
* Copyright (C) 2014 Toxic All Rights Reserved.
*
* This file is part of Toxic.
*
* Toxic 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.
*
* Toxic 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 Toxic. If not, see <http://www.gnu.org/licenses/>.
*
2013-11-10 03:43:56 +01:00
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include "toxic_windows.h"
#include "misc_tools.h"
2013-11-30 00:52:21 +01:00
#include "friendlist.h"
2013-11-10 03:43:56 +01:00
extern char *DATA_FILE;
extern ToxWindow *prompt;
2013-11-10 03:43:56 +01:00
2013-11-30 00:52:21 +01:00
extern ToxicFriend friends[MAX_FRIENDS_NUM];
2013-11-10 03:43:56 +01:00
extern uint8_t pending_frnd_requests[MAX_FRIENDS_NUM][TOX_CLIENT_ID_SIZE];
extern uint8_t num_frnd_requests;
2013-11-30 00:52:21 +01:00
2013-11-10 03:43:56 +01:00
/* command functions */
void cmd_accept(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
/* check arguments */
if (argc != 1) {
wprintw(window, "Invalid syntax.\n");
return;
}
2013-11-12 08:41:55 +01:00
int req = atoi(argv[1]);
2013-11-10 03:43:56 +01:00
2013-11-12 08:41:55 +01:00
if ((req == 0 && strcmp(argv[1], "0"))|| req >= MAX_FRIENDS_NUM) {
2013-11-10 03:43:56 +01:00
wprintw(window, "No pending friend request with that number.\n");
return;
}
2013-11-12 08:41:55 +01:00
if (!strlen(pending_frnd_requests[req])) {
2013-11-10 03:43:56 +01:00
wprintw(window, "No pending friend request with that number.\n");
return;
}
2014-03-19 08:14:08 +01:00
int32_t friendnum = tox_add_friend_norequest(m, pending_frnd_requests[req]);
2013-11-10 03:43:56 +01:00
if (friendnum == -1)
wprintw(window, "Failed to add friend.\n");
else {
wprintw(window, "Friend request accepted.\n");
on_friendadded(m, friendnum, true);
2013-11-10 03:43:56 +01:00
}
2013-11-12 08:41:55 +01:00
memset(&pending_frnd_requests[req], 0, TOX_CLIENT_ID_SIZE);
2013-11-10 03:43:56 +01:00
int i;
for (i = num_frnd_requests; i > 0; --i) {
if (!strlen(pending_frnd_requests[i-1]))
break;
}
num_frnd_requests = i;
}
void cmd_add(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
if (argc < 1) {
wprintw(window, "Invalid syntax.\n");
return;
}
char *id = argv[1];
uint8_t msg[MAX_STR_SIZE];
2013-11-10 03:43:56 +01:00
if (argc > 1) {
uint8_t *temp = argv[2];
2013-11-10 03:43:56 +01:00
if (temp[0] != '\"') {
2013-11-10 03:43:56 +01:00
wprintw(window, "Message must be enclosed in quotes.\n");
return;
}
temp[strlen(++temp)-1] = L'\0';
snprintf(msg, sizeof(msg), "%s", temp);
} else {
uint8_t selfname[TOX_MAX_NAME_LENGTH];
2014-03-19 02:48:26 +01:00
tox_get_self_name(m, selfname);
snprintf(msg, sizeof(msg), "Hello, my name is %s. Care to Tox?", selfname);
}
2013-11-10 03:43:56 +01:00
if (strlen(id) != 2 * TOX_FRIEND_ADDRESS_SIZE) {
wprintw(window, "Invalid ID length.\n");
return;
}
size_t i;
char xx[3];
uint32_t x;
uint8_t id_bin[TOX_FRIEND_ADDRESS_SIZE];
for (i = 0; i < TOX_FRIEND_ADDRESS_SIZE; ++i) {
xx[0] = id[2 * i];
xx[1] = id[2 * i + 1];
xx[2] = '\0';
if (sscanf(xx, "%02x", &x) != 1) {
wprintw(window, "Invalid ID.\n");
return;
}
id_bin[i] = x;
}
for (i = 0; i < TOX_FRIEND_ADDRESS_SIZE; i++) {
id[i] = toupper(id[i]);
}
2014-03-19 08:14:08 +01:00
int32_t f_num = tox_add_friend(m, id_bin, msg, strlen(msg) + 1);
2013-11-10 03:43:56 +01:00
2013-11-12 08:41:55 +01:00
switch (f_num) {
2013-11-12 07:50:04 +01:00
case TOX_FAERR_TOOLONG:
wprintw(window, "Message is too long.\n");
break;
case TOX_FAERR_NOMESSAGE:
wprintw(window, "Please add a message to your request.\n");
break;
case TOX_FAERR_OWNKEY:
wprintw(window, "That appears to be your own ID.\n");
break;
case TOX_FAERR_ALREADYSENT:
wprintw(window, "Friend request has already been sent.\n");
break;
case TOX_FAERR_UNKNOWN:
wprintw(window, "Undefined error when adding friend.\n");
break;
case TOX_FAERR_BADCHECKSUM:
wprintw(window, "Bad checksum in address.\n");
break;
case TOX_FAERR_SETNEWNOSPAM:
wprintw(window, "Nospam was different (is this contact already added?)\n");
2013-11-12 07:50:04 +01:00
break;
default:
wprintw(window, "Friend request sent.\n");
on_friendadded(m, f_num, true);
2013-11-12 07:50:04 +01:00
break;
2013-11-10 03:43:56 +01:00
}
}
void cmd_clear(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
wclear(window);
wprintw(window, "\n\n");
}
void cmd_connect(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
/* check arguments */
if (argc != 3) {
wprintw(window, "Invalid syntax.\n");
return;
}
tox_IP_Port dht;
char *ip = argv[1];
char *port = argv[2];
char *key = argv[3];
if (atoi(port) == 0) {
wprintw(window, "Invalid syntax.\n");
return;
}
uint8_t *binary_string = hex_string_to_bin(key);
tox_bootstrap_from_address(m, ip, TOX_ENABLE_IPV6_DEFAULT,
htons(atoi(port)), binary_string);
free(binary_string);
}
void cmd_groupchat(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
2014-03-07 01:39:57 +01:00
if (get_num_active_windows() >= MAX_WINDOWS_NUM) {
wattron(window, COLOR_PAIR(RED));
wprintw(window, " * Warning: Too many windows are open.\n");
wattron(window, COLOR_PAIR(RED));
2013-11-10 03:43:56 +01:00
return;
}
int groupnum = tox_add_groupchat(m);
if (groupnum == -1) {
wprintw(window, "Group chat instance failed to initialize.\n");
return;
}
2014-02-27 01:45:11 +01:00
if (init_groupchat_win(prompt, m, groupnum) == -1) {
2013-11-10 03:43:56 +01:00
wprintw(window, "Group chat window failed to initialize.\n");
tox_del_groupchat(m, groupnum);
return;
}
wprintw(window, "Group chat created as %d.\n", groupnum);
}
2014-02-27 01:00:13 +01:00
void cmd_log(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
struct chatlog *log = self->chatwin->log;
2014-02-27 01:00:13 +01:00
if (argc == 0) {
if (log->log_on) {
2014-03-02 00:06:35 +01:00
wprintw(window, "Logging for this window is ");
wattron(window, COLOR_PAIR(GREEN) | A_BOLD);
wprintw(window, "[on]");
wattroff(window, COLOR_PAIR(GREEN) | A_BOLD);
wprintw(window, ". Type \"/log off\" to disable.\n");
} else {
2014-03-02 00:06:35 +01:00
wprintw(window, "Logging for this window is ");
wattron(window, COLOR_PAIR(RED) | A_BOLD);
wprintw(window, "[off]");
wattroff(window, COLOR_PAIR(RED) | A_BOLD);
wprintw(window, ". Type \"/log on\" to enable.\n");
}
2014-02-27 01:45:11 +01:00
2014-02-27 01:00:13 +01:00
return;
}
uint8_t *swch = argv[1];
if (!strcmp(swch, "1") || !strcmp(swch, "on")) {
2014-03-02 00:06:35 +01:00
if (self->is_chat) {
friends[self->num].logging_on = true;
log_enable(self->name, friends[self->num].pub_key, log);
2014-03-02 00:06:35 +01:00
} else if (self->is_prompt) {
uint8_t myid[TOX_FRIEND_ADDRESS_SIZE];
tox_get_address(m, myid);
log_enable(self->name, &myid, log);
2014-03-02 00:06:35 +01:00
} else if (self->is_groupchat) {
log_enable(self->name, NULL, log);
}
2014-02-27 01:00:13 +01:00
wprintw(window, "Logging ");
wattron(window, COLOR_PAIR(GREEN) | A_BOLD);
wprintw(window, "[on]\n");
wattroff(window, COLOR_PAIR(GREEN) | A_BOLD);
return;
} else if (!strcmp(swch, "0") || !strcmp(swch, "off")) {
if (self->is_chat)
friends[self->num].logging_on = false;
log_disable(log);
2014-02-27 01:00:13 +01:00
wprintw(window, "Logging ");
wattron(window, COLOR_PAIR(RED) | A_BOLD);
wprintw(window, "[off]\n");
wattroff(window, COLOR_PAIR(RED) | A_BOLD);
return;
}
wprintw(window, "Invalid option. Use \"/log on\" and \"/log off\" to toggle logging.\n");
2014-02-27 01:00:13 +01:00
}
void cmd_myid(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
char id[TOX_FRIEND_ADDRESS_SIZE * 2 + 1] = {0};
uint8_t address[TOX_FRIEND_ADDRESS_SIZE];
2013-11-29 16:38:43 +01:00
tox_get_address(m, address);
2013-11-10 03:43:56 +01:00
size_t i;
for (i = 0; i < TOX_FRIEND_ADDRESS_SIZE; ++i) {
char xx[3];
snprintf(xx, sizeof(xx), "%02X", address[i] & 0xff);
strcat(id, xx);
}
wprintw(window, "%s\n", id);
}
void cmd_nick(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
/* check arguments */
2013-11-26 23:39:11 +01:00
if (argc < 1) {
2013-11-28 01:34:15 +01:00
wprintw(window, "Invalid name.\n");
2013-11-10 03:43:56 +01:00
return;
}
uint8_t *nick = argv[1];
int len = strlen(nick);
if (nick[0] == '\"') {
++nick;
len -= 2;
nick[len] = L'\0';
}
2013-11-28 08:53:43 +01:00
if (!valid_nick(nick)) {
wprintw(window, "Invalid name.\n");
return;
2013-11-28 01:34:15 +01:00
}
2013-11-10 03:43:56 +01:00
if (len > TOXIC_MAX_NAME_LENGTH) {
nick[TOXIC_MAX_NAME_LENGTH] = L'\0';
2013-12-04 06:44:37 +01:00
len = TOXIC_MAX_NAME_LENGTH;
2013-11-10 03:43:56 +01:00
}
tox_set_name(m, nick, len+1);
2013-11-10 03:43:56 +01:00
prompt_update_nick(prompt, nick, len+1);
store_data(m, DATA_FILE);
}
void cmd_note(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
if (argc < 1) {
wprintw(window, "Wrong number of arguments.\n");
return;
}
uint8_t *msg = argv[1];
if (msg[0] != '\"') {
wprintw(window, "Note must be enclosed in quotes.\n");
return;
}
msg[strlen(++msg)-1] = L'\0';
uint16_t len = strlen(msg) + 1;
tox_set_status_message(m, msg, len);
2013-11-10 03:43:56 +01:00
prompt_update_statusmessage(prompt, msg, len);
}
void cmd_prompt_help(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
wclear(window);
wattron(window, COLOR_PAIR(CYAN) | A_BOLD);
2013-11-15 20:59:49 +01:00
wprintw(window, "\n\nGlobal commands:\n");
2013-12-04 00:01:17 +01:00
wattroff(window, COLOR_PAIR(CYAN) | A_BOLD);
wprintw(window, " /add <id> <msg> : Add friend with optional message\n");
wprintw(window, " /accept <n> : Accept friend request\n");
2014-03-03 16:55:10 +01:00
wprintw(window, " /connect <ip> <port> <key> : Manually connect to a DHT node\n");
wprintw(window, " /status <type> <msg> : Set status with optional note\n");
wprintw(window, " /note <msg> : Set a personal note\n");
wprintw(window, " /nick <nick> : Set your nickname\n");
2014-03-02 00:06:35 +01:00
wprintw(window, " /log <on> or <off> : Enable/disable logging\n");
wprintw(window, " /groupchat : Create a group chat\n");
wprintw(window, " /myid : Print your ID\n");
wprintw(window, " /help : Print this message again\n");
wprintw(window, " /clear : Clear the window\n");
wprintw(window, " /quit or /exit : Exit Toxic\n");
2014-03-08 01:12:51 +01:00
2014-03-08 16:36:42 +01:00
#ifdef _SUPPORT_AUDIO
2014-03-08 01:12:51 +01:00
wprintw(window, " /lsdev <type> : List devices where type: in|out\n");
wprintw(window, " /sdev <type> <id> : Set active device\n");
2014-03-08 16:36:42 +01:00
#endif /* _SUPPORT_AUDIO */
2014-03-08 01:12:51 +01:00
2013-12-04 00:01:17 +01:00
wattron(window, COLOR_PAIR(CYAN) | A_BOLD);
wprintw(window, " * Argument messages must be enclosed in quotation marks.\n");
wprintw(window, " * Use ctrl-o and ctrl-p to navigate through the tabs.\n\n");
2013-12-04 00:01:17 +01:00
wattroff(window, COLOR_PAIR(CYAN) | A_BOLD);
}
void cmd_quit(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
exit_toxic(m);
}
void cmd_status(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
uint8_t *msg = NULL;
if (argc >= 2) {
msg = argv[2];
if (msg[0] != '\"') {
wprintw(window, "Note must be enclosed in quotes.\n");
return;
}
} else if (argc != 1) {
wprintw(window, "Wrong number of arguments.\n");
return;
}
char *status = argv[1];
int len = strlen(status);
char l_status[len+1];
int i;
for (i = 0; i <= len; ++i)
l_status[i] = tolower(status[i]);
TOX_USERSTATUS status_kind;
if (!strcmp(l_status, "online"))
status_kind = TOX_USERSTATUS_NONE;
else if (!strcmp(l_status, "away"))
status_kind = TOX_USERSTATUS_AWAY;
else if (!strcmp(l_status, "busy"))
status_kind = TOX_USERSTATUS_BUSY;
else {
wprintw(window, "Invalid status. Valid statuses are: online, busy and away.\n");
return;
}
2013-12-04 00:06:28 +01:00
tox_set_user_status(m, status_kind);
2013-11-10 03:43:56 +01:00
prompt_update_status(prompt, status_kind);
if (msg != NULL) {
msg[strlen(++msg)-1] = L'\0'; /* remove opening and closing quotes */
uint16_t len = strlen(msg) + 1;
tox_set_status_message(m, msg, len);
2013-11-10 03:43:56 +01:00
prompt_update_statusmessage(prompt, msg, len);
}
}