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

554 lines
16 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
*/
#include <stdlib.h>
#include <string.h>
2014-06-22 03:41:38 +02:00
#include <arpa/inet.h>
2013-11-10 03:43:56 +01:00
#include "toxic.h"
#include "windows.h"
2013-11-10 03:43:56 +01:00
#include "misc_tools.h"
2013-11-30 00:52:21 +01:00
#include "friendlist.h"
2014-03-25 13:25:10 +01:00
#include "log.h"
2014-03-25 08:17:22 +01:00
#include "line_info.h"
2014-06-17 03:22:26 +02:00
#include "dns.h"
2014-06-22 03:41:38 +02:00
#include "groupchat.h"
#include "prompt.h"
#include "help.h"
2013-11-10 03:43:56 +01:00
extern char *DATA_FILE;
extern ToxWindow *prompt;
2014-09-28 23:49:48 +02:00
extern FriendsList Friends;
extern FriendRequests FrndRequests;
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
{
2014-08-04 20:35:34 +02:00
if (argc < 1) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Request ID required.");
2014-03-25 08:17:22 +01:00
return;
2013-11-10 03:43:56 +01:00
}
2013-11-12 08:41:55 +01:00
int req = atoi(argv[1]);
2013-11-10 03:43:56 +01:00
if ((req == 0 && strcmp(argv[1], "0")) || req < 0 || req > MAX_FRIEND_REQUESTS) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "No pending friend request with that ID.");
2013-11-10 03:43:56 +01:00
return;
}
2014-09-28 23:49:48 +02:00
if (!FrndRequests.request[req].active) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "No pending friend request with that ID.");
2013-11-10 03:43:56 +01:00
return;
}
2014-08-04 20:35:34 +02:00
const char *msg;
2014-09-28 23:49:48 +02:00
int32_t friendnum = tox_add_friend_norequest(m, FrndRequests.request[req].key);
2013-11-10 03:43:56 +01:00
if (friendnum == -1)
2014-03-25 08:17:22 +01:00
msg = "Failed to add friend.";
2013-11-10 03:43:56 +01:00
else {
2014-03-25 08:17:22 +01:00
msg = "Friend request accepted.";
on_friendadded(m, friendnum, true);
2013-11-10 03:43:56 +01:00
}
2014-09-28 23:49:48 +02:00
memset(&FrndRequests.request[req], 0, sizeof(struct friend_request));
2013-11-10 03:43:56 +01:00
int i;
2014-09-28 23:49:48 +02:00
for (i = FrndRequests.max_idx; i > 0; --i) {
if (FrndRequests.request[i - 1].active)
2013-11-10 03:43:56 +01:00
break;
}
2014-09-28 23:49:48 +02:00
FrndRequests.max_idx = i;
--FrndRequests.num_requests;
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "%s", msg);
2013-11-10 03:43:56 +01:00
}
void cmd_add_helper(ToxWindow *self, Tox *m, char *id_bin, char *msg)
2014-06-18 01:10:25 +02:00
{
const char *errmsg;
int32_t f_num = tox_add_friend(m, (uint8_t *) id_bin, (uint8_t *) msg, (uint16_t) strlen(msg));
2014-06-18 01:10:25 +02:00
switch (f_num) {
case TOX_FAERR_TOOLONG:
errmsg = "Message is too long.";
break;
case TOX_FAERR_NOMESSAGE:
errmsg = "Please add a message to your request.";
break;
case TOX_FAERR_OWNKEY:
errmsg = "That appears to be your own ID.";
break;
case TOX_FAERR_ALREADYSENT:
errmsg = "Friend request has already been sent.";
break;
case TOX_FAERR_UNKNOWN:
errmsg = "Undefined error when adding friend.";
break;
case TOX_FAERR_BADCHECKSUM:
errmsg = "Bad checksum in address.";
break;
case TOX_FAERR_SETNEWNOSPAM:
errmsg = "Nospam was different.";
break;
default:
errmsg = "Friend request sent.";
on_friendadded(m, f_num, true);
break;
}
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, errmsg);
2014-06-18 01:10:25 +02:00
}
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) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Tox ID or address required.");
2013-11-10 03:43:56 +01:00
return;
}
const char *id = argv[1];
char msg[MAX_STR_SIZE];
2013-11-10 03:43:56 +01:00
if (argc > 1) {
if (argv[2][0] != '\"') {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Message must be enclosed in quotes.");
2013-11-10 03:43:56 +01:00
return;
}
/* remove opening and closing quotes */
char tmp[MAX_STR_SIZE];
snprintf(tmp, sizeof(tmp), "%s", &argv[2][1]);
int len = strlen(tmp) - 1;
tmp[len] = '\0';
snprintf(msg, sizeof(msg), "%s", tmp);
} else {
char selfname[TOX_MAX_NAME_LENGTH];
uint16_t n_len = tox_get_self_name(m, (uint8_t *) selfname);
selfname[n_len] = '\0';
snprintf(msg, sizeof(msg), "Hello, my name is %s. Care to Tox?", selfname);
}
2013-11-10 03:43:56 +01:00
char id_bin[TOX_FRIEND_ADDRESS_SIZE] = {0};
uint16_t id_len = (uint16_t) strlen(id);
2013-11-10 03:43:56 +01:00
2014-06-17 03:22:26 +02:00
/* try to add tox ID */
if (id_len == 2 * TOX_FRIEND_ADDRESS_SIZE) {
size_t i;
char xx[3];
uint32_t x;
2013-11-10 03:43:56 +01:00
2014-06-17 03:22:26 +02:00
for (i = 0; i < TOX_FRIEND_ADDRESS_SIZE; ++i) {
xx[0] = id[2 * i];
xx[1] = id[2 * i + 1];
xx[2] = '\0';
2013-11-10 03:43:56 +01:00
2014-06-17 03:22:26 +02:00
if (sscanf(xx, "%02x", &x) != 1) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Invalid Tox ID.");
2014-06-17 03:22:26 +02:00
return;
}
2013-11-10 03:43:56 +01:00
2014-06-17 03:22:26 +02:00
id_bin[i] = x;
}
2013-11-10 03:43:56 +01:00
2014-06-18 01:10:25 +02:00
cmd_add_helper(self, m, id_bin, msg);
} else { /* assume id is a username@domain address and do DNS lookup */
dns3_lookup(self, m, id_bin, id, msg);
2013-11-10 03:43:56 +01:00
}
}
void cmd_avatar(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
if (argc < 2) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: No file path supplied.");
return;
}
2014-09-27 09:01:23 +02:00
/* turns the avatar off */
if (strlen(argv[1]) < 3) {
2014-09-28 23:49:48 +02:00
tox_unset_avatar(m);
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "No avatar set.");
return;
2014-09-27 09:01:23 +02:00
}
if (argv[1][0] != '\"') {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Path must be enclosed in quotes.");
return;
}
/* remove opening and closing quotes */
char path[MAX_STR_SIZE];
snprintf(path, sizeof(path), "%s", &argv[1][1]);
int len = strlen(path) - 1;
path[len] = '\0';
off_t sz = file_size(path);
if (sz <= 8) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: Invalid file.");
return;
}
if (sz > TOX_AVATAR_MAX_DATA_LENGTH) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: File is too large.");
return;
}
FILE *fp = fopen(path, "rb");
if (fp == NULL) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: Could not open file.");
return;
}
char PNG_signature[8] = {0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A};
if (check_file_signature(PNG_signature, sizeof(PNG_signature), fp) != 0) {
fclose(fp);
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: File type not supported.");
return;
}
char *avatar = malloc(sz);
if (avatar == NULL)
exit_toxic_err("Failed in set_avatar", FATALERR_MEMORY);
if (fread(avatar, sz, 1, fp) != 1) {
fclose(fp);
free(avatar);
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: Read fail.");
return;
}
if (tox_set_avatar(m, TOX_AVATAR_FORMAT_PNG, (const uint8_t *) avatar, (uint32_t) sz) == -1)
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to set avatar: Core error.");
2014-09-28 23:49:48 +02:00
char filename[MAX_STR_SIZE];
get_file_name(filename, sizeof(filename), path);
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Avatar set to '%s'", filename);
fclose(fp);
free(avatar);
}
void cmd_clear(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
2014-03-26 02:43:49 +01:00
line_info_clear(self->chatwin->hst);
2014-04-23 03:16:35 +02:00
wclear(window);
endwin();
refresh();
2013-11-10 03:43:56 +01:00
}
void cmd_connect(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
if (argc != 3) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Require: <ip> <port> <key>");
return;
2013-11-10 03:43:56 +01:00
}
const char *ip = argv[1];
const char *port = argv[2];
const char *key = argv[3];
2013-11-10 03:43:56 +01:00
if (atoi(port) == 0) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Invalid port.");
2013-11-10 03:43:56 +01:00
return;
}
char *binary_string = hex_string_to_bin(key);
tox_bootstrap_from_address(m, ip, atoi(port), (uint8_t *) binary_string);
2013-11-10 03:43:56 +01:00
free(binary_string);
}
2014-08-25 20:08:01 +02:00
void cmd_decline(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
if (argc < 1) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Request ID required.");
return;
}
int req = atoi(argv[1]);
if ((req == 0 && strcmp(argv[1], "0")) || req < 0 || req > MAX_FRIEND_REQUESTS) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "No pending friend request with that ID.");
return;
}
2014-09-28 23:49:48 +02:00
if (!FrndRequests.request[req].active) {
2014-08-25 20:08:01 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "No pending friend request with that ID.");
return;
}
2014-09-28 23:49:48 +02:00
memset(&FrndRequests.request[req], 0, sizeof(struct friend_request));
2014-08-25 20:08:01 +02:00
int i;
2014-09-28 23:49:48 +02:00
for (i = FrndRequests.max_idx; i > 0; --i) {
if (FrndRequests.request[i - 1].active)
2014-08-25 20:08:01 +02:00
break;
}
2014-09-28 23:49:48 +02:00
FrndRequests.max_idx = i;
--FrndRequests.num_requests;
2014-08-25 20:08:01 +02:00
}
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) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, RED, " * Warning: Too many windows are open.");
2013-11-10 03:43:56 +01:00
return;
}
int groupnum = tox_add_groupchat(m);
if (groupnum == -1) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Group chat instance failed to initialize.");
2013-11-10 03:43:56 +01:00
return;
}
2014-02-27 01:45:11 +01:00
if (init_groupchat_win(prompt, m, groupnum) == -1) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Group chat window failed to initialize.");
2013-11-10 03:43:56 +01:00
tox_del_groupchat(m, groupnum);
return;
}
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Group chat [%d] created.", groupnum);
2013-11-10 03:43:56 +01:00
}
2014-02-27 01:00:13 +01:00
void cmd_log(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
const char *msg;
struct chatlog *log = self->chatwin->log;
2014-02-27 01:00:13 +01:00
if (argc == 0) {
2014-03-25 08:17:22 +01:00
if (log->log_on)
msg = "Logging for this window is ON. Type \"/log off\" to disable.";
else
msg = "Logging for this window is OFF. Type \"/log on\" to enable.";
2014-02-27 01:45:11 +01:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, msg);
2014-02-27 01:00:13 +01:00
return;
}
const char *swch = argv[1];
2014-02-27 01:00:13 +01:00
if (!strcmp(swch, "1") || !strcmp(swch, "on")) {
char myid[TOX_FRIEND_ADDRESS_SIZE];
tox_get_address(m, (uint8_t *) myid);
2014-03-02 00:06:35 +01:00
if (self->is_chat) {
Friends.list[self->num].logging_on = true;
log_enable(self->name, myid, Friends.list[self->num].pub_key, log, LOG_CHAT);
2014-03-02 00:06:35 +01:00
} else if (self->is_prompt) {
log_enable(self->name, myid, NULL, log, LOG_PROMPT);
2014-03-02 00:06:35 +01:00
} else if (self->is_groupchat) {
log_enable(self->name, myid, NULL, log, LOG_GROUP);
}
2014-02-27 01:00:13 +01:00
2014-03-25 08:17:22 +01:00
msg = "Logging enabled";
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, msg);
2014-02-27 01:00:13 +01:00
return;
} else if (!strcmp(swch, "0") || !strcmp(swch, "off")) {
if (self->is_chat)
Friends.list[self->num].logging_on = false;
log_disable(log);
2014-02-27 01:00:13 +01:00
2014-03-25 08:17:22 +01:00
msg = "Logging disabled";
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, msg);
2014-02-27 01:00:13 +01:00
return;
}
2014-03-25 08:17:22 +01:00
msg = "Invalid option. Use \"/log on\" and \"/log off\" to toggle logging.";
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, msg);
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};
char address[TOX_FRIEND_ADDRESS_SIZE];
tox_get_address(m, (uint8_t *) 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);
}
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "%s", id);
2013-11-10 03:43:56 +01:00
}
void cmd_nick(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
2013-11-26 23:39:11 +01:00
if (argc < 1) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Input required.");
return;
2013-11-10 03:43:56 +01:00
}
char nick[MAX_STR_SIZE];
int len = 0;
2013-11-10 03:43:56 +01:00
if (argv[1][0] == '\"') { /* remove opening and closing quotes */
snprintf(nick, sizeof(nick), "%s", &argv[1][1]);
len = strlen(nick) - 1;
nick[len] = '\0';
} else {
snprintf(nick, sizeof(nick), "%s", argv[1]);
len = strlen(nick);
2013-11-10 03:43:56 +01:00
}
2013-11-28 08:53:43 +01:00
if (!valid_nick(nick)) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Invalid name.");
2013-11-28 08:53:43 +01:00
return;
2013-11-28 01:34:15 +01:00
}
len = MIN(len, TOXIC_MAX_NAME_LENGTH - 1);
nick[len] = '\0';
2013-11-10 03:43:56 +01:00
tox_set_name(m, (uint8_t *) nick, (uint16_t) len);
prompt_update_nick(prompt, nick);
2013-11-10 03:43:56 +01:00
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) {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Input required.");
2013-11-10 03:43:56 +01:00
return;
}
if (argv[1][0] != '\"') {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Note must be enclosed in quotes.");
2013-11-10 03:43:56 +01:00
return;
}
/* remove opening and closing quotes */
char msg[MAX_STR_SIZE];
snprintf(msg, sizeof(msg), "%s", &argv[1][1]);
2014-07-07 05:08:36 +02:00
int len = strlen(msg) - 1;
msg[len] = '\0';
2014-08-12 09:01:18 +02:00
prompt_update_statusmessage(prompt, m, msg);
2013-11-10 03:43:56 +01:00
}
void cmd_prompt_help(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
help_init_menu(self);
}
void cmd_quit(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
2013-11-10 03:43:56 +01:00
{
2014-06-18 21:54:05 +02:00
exit_toxic_success(m);
2013-11-10 03:43:56 +01:00
}
void cmd_requests(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
2014-09-28 23:49:48 +02:00
if (FrndRequests.num_requests == 0) {
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "No pending friend requests.");
return;
}
2014-08-20 05:40:49 +02:00
int i, j;
int count = 0;
2014-09-28 23:49:48 +02:00
for (i = 0; i < FrndRequests.max_idx; ++i) {
if (!FrndRequests.request[i].active)
continue;
char id[TOX_CLIENT_ID_SIZE * 2 + 1] = {0};
for (j = 0; j < TOX_CLIENT_ID_SIZE; ++j) {
char d[3];
2014-09-28 23:49:48 +02:00
snprintf(d, sizeof(d), "%02X", FrndRequests.request[i].key[j] & 0xff);
strcat(id, d);
}
2014-08-20 05:40:49 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "%d : %s", i, id);
2014-09-28 23:49:48 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "%s", FrndRequests.request[i].msg);
2014-09-28 23:49:48 +02:00
if (++count < FrndRequests.num_requests)
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "");
}
}
void cmd_status(WINDOW *window, ToxWindow *self, Tox *m, int argc, char (*argv)[MAX_STR_SIZE])
{
bool have_note = false;
const char *errmsg;
2013-11-10 03:43:56 +01:00
if (argc >= 2) {
have_note = true;
2014-08-04 20:35:34 +02:00
} else if (argc < 1) {
errmsg = "Require a status. Statuses are: online, busy and away.";
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, errmsg);
2013-11-10 03:43:56 +01:00
return;
}
char status[MAX_STR_SIZE];
snprintf(status, sizeof(status), "%s", argv[1]);
str_to_lower(status);
2013-11-10 03:43:56 +01:00
TOX_USERSTATUS status_kind;
if (!strcmp(status, "online"))
2013-11-10 03:43:56 +01:00
status_kind = TOX_USERSTATUS_NONE;
else if (!strcmp(status, "away"))
2013-11-10 03:43:56 +01:00
status_kind = TOX_USERSTATUS_AWAY;
else if (!strcmp(status, "busy"))
2013-11-10 03:43:56 +01:00
status_kind = TOX_USERSTATUS_BUSY;
else {
2014-03-25 08:17:22 +01:00
errmsg = "Invalid status. Valid statuses are: online, busy and away.";
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, errmsg);
2013-11-10 03:43:56 +01:00
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 (have_note) {
if (argv[2][0] != '\"') {
2014-08-04 20:35:34 +02:00
line_info_add(self, NULL, NULL, NULL, SYS_MSG, 0, 0, "Note must be enclosed in quotes.");
return;
}
/* remove opening and closing quotes */
char msg[MAX_STR_SIZE];
snprintf(msg, sizeof(msg), "%s", &argv[2][1]);
2014-07-07 05:08:36 +02:00
int len = strlen(msg) - 1;
msg[len] = '\0';
2014-08-12 09:01:18 +02:00
prompt_update_statusmessage(prompt, m, msg);
2013-11-10 03:43:56 +01:00
}
}