1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:07:46 +02:00
toxic/src/chat.c

991 lines
29 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* chat.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/>.
*
*/
2014-06-22 03:41:38 +02:00
#define _GNU_SOURCE /* needed for strcasestr() and wcwidth() */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
2013-07-31 19:20:03 +02:00
#include <stdlib.h>
#include <string.h>
#include <time.h>
2014-06-22 03:41:38 +02:00
#include <wchar.h>
2013-07-31 19:20:03 +02:00
#include "toxic.h"
#include "windows.h"
2013-11-10 03:43:56 +01:00
#include "execute.h"
#include "misc_tools.h"
#include "friendlist.h"
2013-12-10 09:03:45 +01:00
#include "toxic_strings.h"
#include "log.h"
#include "line_info.h"
2014-04-07 10:42:10 +02:00
#include "settings.h"
2013-07-31 19:20:03 +02:00
2014-03-07 03:14:04 +01:00
#ifdef _SUPPORT_AUDIO
#include "audio_call.h"
2014-03-07 03:14:04 +01:00
#endif /* _SUPPORT_AUDIO */
2013-09-04 08:05:36 +02:00
extern char *DATA_FILE;
2013-11-30 00:52:21 +01:00
extern FileSender file_senders[MAX_FILES];
extern ToxicFriend friends[MAX_FRIENDS_NUM];
2014-04-07 10:42:10 +02:00
2014-03-13 11:06:53 +01:00
extern struct _Winthread Winthread;
2014-04-07 10:42:10 +02:00
extern struct user_settings *user_settings;
2014-03-07 03:27:48 +01:00
#ifdef _SUPPORT_AUDIO
#define AC_NUM_CHAT_COMMANDS 26
2014-03-07 03:27:48 +01:00
#else
#define AC_NUM_CHAT_COMMANDS 18
2014-03-07 03:27:48 +01:00
#endif /* _SUPPORT_AUDIO */
/* Array of chat command names used for tab completion. */
static const uint8_t chat_cmd_list[AC_NUM_CHAT_COMMANDS][MAX_CMDNAME_SIZE] = {
{ "/accept" },
{ "/add" },
{ "/clear" },
{ "/close" },
{ "/connect" },
{ "/exit" },
{ "/groupchat" },
{ "/help" },
{ "/invite" },
{ "/join" },
2014-02-27 01:00:13 +01:00
{ "/log" },
{ "/myid" },
{ "/nick" },
{ "/note" },
{ "/quit" },
{ "/savefile" },
{ "/sendfile" },
{ "/status" },
2014-03-07 03:14:04 +01:00
#ifdef _SUPPORT_AUDIO
2014-03-07 03:14:04 +01:00
{ "/call" },
{ "/cancel" },
{ "/answer" },
2014-03-23 22:54:56 +01:00
{ "/reject" },
2014-03-07 03:14:04 +01:00
{ "/hangup" },
2014-06-21 01:58:00 +02:00
{ "/sdev" },
{ "/mute" },
{ "/sense" },
2014-03-07 03:14:04 +01:00
#endif /* _SUPPORT_AUDIO */
};
2013-12-09 00:14:57 +01:00
2014-03-21 01:50:48 +01:00
static void set_typingstatus(ToxWindow *self, Tox *m, uint8_t is_typing)
2014-02-23 10:28:33 +01:00
{
ChatContext *ctx = self->chatwin;
tox_set_user_is_typing(m, self->num, is_typing);
ctx->self_is_typing = is_typing;
}
2014-02-26 11:23:11 +01:00
void kill_chat_window(ToxWindow *self)
{
set_active_window(0);
ChatContext *ctx = self->chatwin;
StatusBar *statusbar = self->stb;
log_disable(ctx->log);
line_info_cleanup(ctx->hst);
2014-02-26 11:23:11 +01:00
int f_num = self->num;
delwin(ctx->linewin);
delwin(statusbar->topline);
del_window(self);
disable_chatwin(f_num);
free(ctx->log);
free(ctx->hst);
2014-02-26 11:23:11 +01:00
free(ctx);
free(statusbar);
}
2014-03-19 02:48:26 +01:00
static void chat_onMessage(ToxWindow *self, Tox *m, int32_t num, uint8_t *msg, uint16_t len)
2013-08-07 00:27:51 +02:00
{
2013-09-15 22:38:38 +02:00
if (self->num != num)
return;
msg[len] = '\0';
ChatContext *ctx = self->chatwin;
2013-08-16 19:11:09 +02:00
uint8_t nick[TOX_MAX_NAME_LENGTH];
2014-04-01 09:53:12 +02:00
int n_len = tox_get_name(m, num, nick);
n_len = MIN(n_len, TOXIC_MAX_NAME_LENGTH - 1);
nick[n_len] = '\0';
2013-08-16 19:11:09 +02:00
uint8_t timefrmt[TIME_STR_SIZE];
get_time_str(timefrmt);
2013-09-26 06:33:51 +02:00
line_info_add(self, timefrmt, nick, NULL, msg, IN_MSG, 0, 0);
2013-08-16 19:11:09 +02:00
2014-03-04 01:21:52 +01:00
write_to_log(msg, nick, ctx->log, false);
2013-11-29 01:45:28 +01:00
alert_window(self, WINDOW_ALERT_1, true);
2013-07-31 19:20:03 +02:00
}
2014-03-19 02:48:26 +01:00
static void chat_onConnectionChange(ToxWindow *self, Tox *m, int32_t num, uint8_t status)
{
2013-09-15 22:38:38 +02:00
if (self->num != num)
return;
StatusBar *statusbar = self->stb;
2014-02-23 10:28:33 +01:00
if (status == 1) {
statusbar->is_online = true;
friends[num].is_typing = tox_get_is_typing(m, num);
} else {
statusbar->is_online = false;
2014-03-21 01:50:48 +01:00
friends[num].is_typing = 0;
2014-02-23 10:28:33 +01:00
}
}
2014-03-21 01:50:48 +01:00
static void chat_onTypingChange(ToxWindow *self, Tox *m, int32_t num, uint8_t is_typing)
2014-02-23 10:28:33 +01:00
{
if (self->num != num)
return;
friends[num].is_typing = is_typing;
}
2014-03-19 02:48:26 +01:00
static void chat_onAction(ToxWindow *self, Tox *m, int32_t num, uint8_t *action, uint16_t len)
2013-08-08 21:01:33 +02:00
{
2013-09-15 22:38:38 +02:00
if (self->num != num)
return;
action[len] = '\0';
ChatContext *ctx = self->chatwin;
2013-08-08 21:01:33 +02:00
uint8_t nick[TOX_MAX_NAME_LENGTH];
2014-04-01 09:53:12 +02:00
int n_len = tox_get_name(m, num, nick);
n_len = MIN(n_len, TOXIC_MAX_NAME_LENGTH - 1);;
nick[n_len] = '\0';
2013-08-31 08:22:07 +02:00
uint8_t timefrmt[TIME_STR_SIZE];
get_time_str(timefrmt);
2013-08-08 21:01:33 +02:00
line_info_add(self, timefrmt, nick, NULL, action, ACTION, 0, 0);
2014-03-04 01:21:52 +01:00
write_to_log(action, nick, ctx->log, true);
2013-11-29 01:45:28 +01:00
alert_window(self, WINDOW_ALERT_1, true);
2013-08-08 21:01:33 +02:00
}
2014-03-19 02:48:26 +01:00
static void chat_onNickChange(ToxWindow *self, Tox *m, int32_t num, uint8_t *nick, uint16_t len)
2013-08-07 00:27:51 +02:00
{
2013-09-15 22:38:38 +02:00
if (self->num != num)
2013-08-16 19:11:09 +02:00
return;
len = MIN(len, TOXIC_MAX_NAME_LENGTH - 1);
nick[len] = '\0';
2014-03-28 08:46:00 +01:00
strcpy(self->name, nick);
2013-07-31 19:20:03 +02:00
}
2014-03-19 02:48:26 +01:00
static void chat_onStatusChange(ToxWindow *self, Tox *m, int32_t num, uint8_t status)
2013-08-07 00:27:51 +02:00
{
2013-09-15 22:38:38 +02:00
if (self->num != num)
2013-08-16 19:11:09 +02:00
return;
StatusBar *statusbar = self->stb;
statusbar->status = status;
}
2014-03-19 02:48:26 +01:00
static void chat_onStatusMessageChange(ToxWindow *self, int32_t num, uint8_t *status, uint16_t len)
{
2013-09-15 22:38:38 +02:00
if (self->num != num)
return;
StatusBar *statusbar = self->stb;
status[len] = '\0';
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", status);
len = strlen(statusbar->statusmsg);
statusbar->statusmsg_len = len;
statusbar->statusmsg[len] = '\0';
2013-07-31 19:20:03 +02:00
}
static void chat_onFileSendRequest(ToxWindow *self, Tox *m, int32_t num, uint8_t filenum,
uint64_t filesize, uint8_t *pathname, uint16_t path_len)
2013-10-11 06:23:39 +02:00
{
if (self->num != num)
2013-10-11 06:23:39 +02:00
return;
uint8_t msg[MAX_STR_SIZE * 2];
uint8_t *errmsg;
2013-10-11 06:23:39 +02:00
2014-05-05 21:39:09 +02:00
pathname[path_len] = '\0';
/* holds the filename appended to the user specified path */
uint8_t filename_path[MAX_STR_SIZE] = {0};
/* holds the lone filename */
uint8_t filename_nopath[MAX_STR_SIZE];
get_file_name(filename_nopath, pathname);
int len = strlen(filename_nopath);
snprintf(msg, sizeof(msg), "File transfer request for '%s' (%llu bytes).", filename_nopath,
(long long unsigned int)filesize);
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2013-10-11 06:23:39 +02:00
if (filenum >= MAX_FILES) {
errmsg = "Too many pending file requests; discarding.";
line_info_add(self, NULL, NULL, NULL, errmsg, SYS_MSG, 0, 0);
2013-10-11 06:23:39 +02:00
return;
}
/* use specified path in config if possible */
if (user_settings->download_path[0]) {
snprintf(filename_path, sizeof(filename_path), "%s%s", user_settings->download_path, filename_nopath);
len += strlen(user_settings->download_path);
}
if (len >= sizeof(friends[num].file_receiver.filenames[filenum])) {
errmsg = "File name too long; discarding.";
line_info_add(self, NULL, NULL, NULL, errmsg, SYS_MSG, 0, 0);
return;
}
uint8_t filename[MAX_STR_SIZE];
if (filename_path[0])
strcpy(filename, filename_path);
else
strcpy(filename, filename_nopath);
2013-11-12 22:53:41 +01:00
/* Append a number to duplicate file names */
FILE *filecheck = NULL;
2013-11-12 08:18:43 +01:00
int count = 1;
while ((filecheck = fopen(filename, "r"))) {
filename[len] = '\0';
char d[9];
sprintf(d, "(%d)", count++);
int d_len = strlen(d);
if (len + d_len >= sizeof(filename)) {
len -= d_len;
filename[len] = '\0';
}
2013-11-12 08:18:43 +01:00
strcat(filename, d);
filename[len + d_len] = '\0';
2013-11-12 08:18:43 +01:00
if (count > 999) {
errmsg = "Error saving file to disk.";
line_info_add(self, NULL, NULL, NULL, errmsg, SYS_MSG, 0, 0);
2013-11-12 08:18:43 +01:00
return;
}
}
snprintf(msg, sizeof(msg), "Type '/savefile %d' to accept the file transfer.", filenum);
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2013-10-11 06:23:39 +02:00
friends[num].file_receiver.pending[filenum] = true;
friends[num].file_receiver.size[filenum] = filesize;
2013-10-18 01:53:29 +02:00
strcpy(friends[num].file_receiver.filenames[filenum], filename);
2013-10-11 06:23:39 +02:00
2013-11-29 01:45:28 +01:00
alert_window(self, WINDOW_ALERT_2, true);
2013-10-11 06:23:39 +02:00
}
static void chat_close_file_receiver(int num, uint8_t filenum)
{
friends[num].file_receiver.pending[filenum] = false;
friends[num].file_receiver.size[filenum] = 0;
FILE *file = friends[num].file_receiver.files[filenum];
if (file != NULL)
fclose(file);
}
static void chat_onFileControl(ToxWindow *self, Tox *m, int32_t num, uint8_t receive_send,
2013-10-11 10:42:30 +02:00
uint8_t filenum, uint8_t control_type, uint8_t *data, uint16_t length)
2013-10-11 06:23:39 +02:00
{
if (self->num != num)
return;
2014-03-19 08:14:08 +01:00
const uint8_t *filename;
uint8_t msg[MAX_STR_SIZE] = {0};
int i; /* file_sender index */
2013-10-11 06:23:39 +02:00
if (receive_send == 0) {
filename = friends[num].file_receiver.filenames[filenum];
} else {
for (i = 0; i < MAX_FILES; ++i) {
if (file_senders[i].filenum == filenum)
break;
}
filename = file_senders[i].pathname;
}
2013-10-18 01:53:29 +02:00
2013-11-12 07:50:04 +01:00
switch (control_type) {
case TOX_FILECONTROL_ACCEPT:
if (receive_send == 1) {
snprintf(msg, sizeof(msg), "File transfer for '%s' accepted (%.1f%%)", filename, 0.0);
file_senders[i].line_id = self->chatwin->hst->line_end->id + 1;
}
break;
case TOX_FILECONTROL_KILL:
snprintf(msg, sizeof(msg), "File transfer for '%s' failed.", filename);
if (receive_send == 0)
chat_close_file_receiver(num, filenum);
break;
case TOX_FILECONTROL_FINISHED:
if (receive_send == 0) {
snprintf(msg, sizeof(msg), "File transfer for '%s' complete.", filename);
chat_close_file_receiver(num, filenum);
}
break;
2013-10-11 06:23:39 +02:00
}
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2013-11-29 01:45:28 +01:00
alert_window(self, WINDOW_ALERT_2, true);
2013-10-11 06:23:39 +02:00
}
2014-03-19 02:48:26 +01:00
static void chat_onFileData(ToxWindow *self, Tox *m, int32_t num, uint8_t filenum, uint8_t *data,
2013-10-11 10:42:30 +02:00
uint16_t length)
2013-10-11 06:23:39 +02:00
{
if (self->num != num)
return;
if (fwrite(data, length, 1, friends[num].file_receiver.files[filenum]) != 1) {
uint8_t *msg = " * Error writing to file.";
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, RED);
2014-03-07 01:39:57 +01:00
2013-11-30 01:26:59 +01:00
tox_file_send_control(m, num, 1, filenum, TOX_FILECONTROL_KILL, 0, 0);
2014-03-07 01:39:57 +01:00
chat_close_file_receiver(num, filenum);
}
/* refresh line with percentage complete */
uint8_t msg[MAX_STR_SIZE];
uint64_t size = friends[num].file_receiver.size[filenum];
2014-03-28 04:13:38 +01:00
long double remain = (long double) tox_file_data_remaining(m, num, filenum, 1);
long double pct_remain = 100;
if (remain)
pct_remain = (1 - (remain / size)) * 100;
const uint8_t *name = friends[num].file_receiver.filenames[filenum];
snprintf(msg, sizeof(msg), "Saving file as: '%s' (%.1Lf%%)", name, pct_remain);
line_info_set(self, friends[num].file_receiver.line_id[filenum], msg);
2013-10-11 06:23:39 +02:00
}
2014-03-19 02:48:26 +01:00
static void chat_onGroupInvite(ToxWindow *self, Tox *m, int32_t friendnumber, uint8_t *group_pub_key)
{
2013-11-12 23:26:13 +01:00
if (self->num != friendnumber)
return;
uint8_t name[TOX_MAX_NAME_LENGTH];
2014-04-01 09:04:41 +02:00
uint8_t msg[MAX_STR_SIZE + TOX_MAX_NAME_LENGTH];
2014-04-01 09:53:12 +02:00
int n_len = tox_get_name(m, friendnumber, name);
n_len = MIN(n_len, TOXIC_MAX_NAME_LENGTH - 1);
2014-04-01 08:48:37 +02:00
name[n_len] = '\0';
snprintf(msg, sizeof(msg), "%s has invited you to a group chat.", name);
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
snprintf(msg, sizeof(msg), "Type \"/join\" to join the chat.", name);
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
2013-11-12 23:26:13 +01:00
memcpy(friends[friendnumber].pending_groupchat, group_pub_key, TOX_CLIENT_ID_SIZE);
2013-11-29 01:45:28 +01:00
alert_window(self, WINDOW_ALERT_2, true);
}
2013-08-03 16:00:48 +02:00
2014-03-07 03:14:04 +01:00
/* Av Stuff */
#ifdef _SUPPORT_AUDIO
2014-05-16 20:00:01 +02:00
void chat_onInvite (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-05-16 20:00:01 +02:00
if (self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-05-16 20:00:01 +02:00
/* call_index is set here and reset on call end */
2014-06-21 01:58:00 +02:00
self->call_idx = call_index;
2014-05-16 20:00:01 +02:00
2014-06-14 07:43:59 +02:00
line_info_add(self, NULL, NULL, NULL, "Incoming audio call! Type: \"/answer\" or \"/reject\"", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
alert_window(self, WINDOW_ALERT_0, true);
}
2014-05-16 20:00:01 +02:00
void chat_onRinging (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if ( self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-14 07:43:59 +02:00
line_info_add(self, NULL, NULL, NULL, "Ringing...\"cancel\" ?", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onStarting (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if ( self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-14 07:43:59 +02:00
line_info_add(self, NULL, NULL, NULL, "Call started! Type: \"/hangup\" to end it.", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onEnding (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if (self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "Call ended!", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onError (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if (self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "Error!", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onStart (ToxWindow *self, ToxAv *av, int call_index)
{
2014-06-21 01:58:00 +02:00
if ( self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-14 07:43:59 +02:00
line_info_add(self, NULL, NULL, NULL, "Call started! Type: \"/hangup\" to end it.", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onCancel (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if ( self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "Call canceled!", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onReject (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if (self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "Rejected!", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onEnd (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if (self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "Call ended!", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onRequestTimeout (ToxWindow *self, ToxAv *av, int call_index)
2014-03-07 03:14:04 +01:00
{
2014-06-21 01:58:00 +02:00
if (self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-07 03:14:04 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "No answer!", SYS_MSG, 0, 0);
2014-03-07 03:14:04 +01:00
}
2014-05-16 20:00:01 +02:00
void chat_onPeerTimeout (ToxWindow *self, ToxAv *av, int call_index)
2014-03-14 23:08:08 +01:00
{
2014-06-21 01:58:00 +02:00
if (self->call_idx != call_index || self->num != toxav_get_peer_id(av, call_index, 0))
2014-03-14 23:08:08 +01:00
return;
2014-06-21 01:58:00 +02:00
self->call_idx = -1;
2014-05-16 20:00:01 +02:00
line_info_add(self, NULL, NULL, NULL, "Peer disconnected; call ended!", SYS_MSG, 0, 0);
2014-03-14 23:08:08 +01:00
}
2014-03-07 03:14:04 +01:00
#endif /* _SUPPORT_AUDIO */
static void send_action(ToxWindow *self, ChatContext *ctx, Tox *m, uint8_t *action)
{
if (action == NULL)
return;
2013-09-02 07:14:51 +02:00
uint8_t selfname[TOX_MAX_NAME_LENGTH];
uint16_t len = tox_get_self_name(m, selfname);
selfname[len] = '\0';
2013-08-16 19:11:09 +02:00
uint8_t timefrmt[TIME_STR_SIZE];
get_time_str(timefrmt);
line_info_add(self, timefrmt, selfname, NULL, action, ACTION, 0, 0);
2013-08-16 19:11:09 +02:00
if (tox_send_action(m, self->num, action, strlen(action)) == 0) {
uint8_t *errmsg = " * Failed to send action.";
line_info_add(self, NULL, selfname, NULL, errmsg, SYS_MSG, 0, RED);
2014-02-26 09:51:26 +01:00
} else {
2014-03-04 01:21:52 +01:00
write_to_log(action, selfname, ctx->log, true);
}
2013-07-31 19:20:03 +02:00
}
2014-03-30 22:40:13 +02:00
static void chat_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
{
ChatContext *ctx = self->chatwin;
StatusBar *statusbar = self->stb;
int x, y, y2, x2;
getyx(self->window, y, x);
getmaxyx(self->window, y2, x2);
if (x2 <= 0)
return;
int cur_len = 0; /* widechar size of current char */
int x2_is_odd = x2 % 2 != 0;
if (ltr) { /* char is printable */
if (ctx->len < MAX_STR_SIZE - 1) {
add_char_to_buf(ctx, key);
if (x >= x2 - 1) {
wmove(self->window, y, x2 / 2 + x2_is_odd);
ctx->start += x2 / 2;
} else {
2014-03-30 22:40:13 +02:00
wmove(self->window, y, x + MAX(1, wcwidth(key)));
}
}
2013-12-01 22:57:05 +01:00
2014-03-30 22:40:13 +02:00
if (!ctx->self_is_typing && ctx->line[0] != '/')
set_typingstatus(self, m, 1);
2013-12-01 22:57:05 +01:00
2014-03-30 22:40:13 +02:00
} else { /* if (!ltr) */
if (line_info_onKey(self, key))
return;
2013-12-06 04:55:14 +01:00
2014-03-30 22:40:13 +02:00
if (key == 0x107 || key == 0x8 || key == 0x7f) { /* BACKSPACE key */
if (ctx->pos > 0) {
cur_len = MAX(1, wcwidth(ctx->line[ctx->pos]));
del_char_buf_bck(ctx);
2013-12-06 04:55:14 +01:00
if (x == 0) {
ctx->start = ctx->start >= x2 ? ctx->start - x2 : 0;
int new_x = ctx->start == 0 ? ctx->pos : x2 - cur_len;
wmove(self->window, y, new_x);
} else {
2014-03-30 22:40:13 +02:00
wmove(self->window, y, x - cur_len);
}
2014-03-30 22:40:13 +02:00
} else {
beep();
}
2013-12-04 22:21:32 +01:00
}
2013-12-01 22:57:05 +01:00
2014-03-30 22:40:13 +02:00
else if (key == KEY_DC) { /* DEL key: Remove character at pos */
if (ctx->pos != ctx->len)
del_char_buf_frnt(ctx);
2014-03-30 22:40:13 +02:00
else
beep();
2013-12-04 22:21:32 +01:00
}
2013-12-01 22:57:05 +01:00
2014-03-30 22:40:13 +02:00
else if (key == T_KEY_DISCARD) { /* CTRL-U: Delete entire line behind pos */
if (ctx->pos > 0) {
discard_buf(ctx);
2014-03-30 22:40:13 +02:00
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
} else {
beep();
}
}
2014-03-30 22:40:13 +02:00
else if (key == T_KEY_KILL) { /* CTRL-K: Delete entire line in front of pos */
if (ctx->pos != ctx->len)
kill_buf(ctx);
2013-12-01 19:25:03 +01:00
else
2014-03-30 22:40:13 +02:00
beep();
2013-12-01 19:25:03 +01:00
}
2013-12-01 22:57:05 +01:00
2014-03-30 22:40:13 +02:00
else if (key == KEY_HOME || key == T_KEY_C_A) { /* HOME/C-a key: Move cursor to start of line */
if (ctx->pos > 0) {
ctx->pos = 0;
ctx->start = 0;
2014-03-30 22:40:13 +02:00
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
}
}
2014-03-30 22:40:13 +02:00
else if (key == KEY_END || key == T_KEY_C_E) { /* END/C-e key: move cursor to end of line */
if (ctx->pos != ctx->len) {
ctx->pos = ctx->len;
ctx->start = x2 * (ctx->len / x2);
mv_curs_end(self->window, ctx->len, y2, x2);
2014-03-30 22:40:13 +02:00
}
2013-12-01 19:25:03 +01:00
}
2013-12-09 00:14:57 +01:00
2014-03-30 22:40:13 +02:00
else if (key == KEY_LEFT) {
if (ctx->pos > 0) {
--ctx->pos;
cur_len = MAX(1, wcwidth(ctx->line[ctx->pos]));
2013-12-11 06:10:09 +01:00
if (x == 0) {
wmove(self->window, y, x2 - cur_len);
ctx->start = ctx->start >= x2 ? ctx->start - x2 : 0;
ctx->pos = ctx->start + x2 - 1;
} else {
2014-03-30 22:40:13 +02:00
wmove(self->window, y, x - cur_len);
}
2014-03-30 22:40:13 +02:00
} else {
beep();
}
}
2013-12-11 06:10:09 +01:00
2014-03-30 22:40:13 +02:00
else if (key == KEY_RIGHT) {
if (ctx->pos < ctx->len) {
++ctx->pos;
2013-12-09 00:14:57 +01:00
if (x == x2 - 1) {
wmove(self->window, y, 0);
ctx->start += x2;
ctx->pos = ctx->start;
} else {
cur_len = MAX(1, wcwidth(ctx->line[ctx->pos]));
2014-03-30 22:40:13 +02:00
wmove(self->window, y, x + cur_len);
}
2013-12-16 02:52:10 +01:00
} else {
beep();
2013-12-09 00:14:57 +01:00
}
}
2014-03-30 22:40:13 +02:00
else if (key == KEY_UP) { /* fetches previous item in history */
fetch_hist_item(ctx, MOVE_UP);
ctx->start = x2 * (ctx->len / x2);
2014-03-30 22:40:13 +02:00
mv_curs_end(self->window, ctx->len, y2, x2);
}
2014-03-30 22:40:13 +02:00
else if (key == KEY_DOWN) { /* fetches next item in history */
fetch_hist_item(ctx, MOVE_DOWN);
ctx->start = x2 * (ctx->len / x2);
2014-03-30 22:40:13 +02:00
mv_curs_end(self->window, ctx->len, y2, x2);
}
2014-02-23 10:28:33 +01:00
2014-03-30 22:40:13 +02:00
else if (key == '\t') { /* TAB key: completes command */
if (ctx->len > 1 && ctx->line[0] == '/') {
int diff = complete_line(ctx, chat_cmd_list, AC_NUM_CHAT_COMMANDS, MAX_CMDNAME_SIZE);
2014-03-30 22:40:13 +02:00
if (diff != -1) {
if (x + diff > x2 - 1) {
//int ofst = x + diff - x2;
wmove(self->window, y, x + diff);
ctx->start += x2 / 2;
2014-03-30 22:40:13 +02:00
} else {
wmove(self->window, y, x + diff);
2014-03-30 22:40:13 +02:00
}
} else {
beep();
}
} else {
beep();
}
}
2014-03-30 22:40:13 +02:00
/* RETURN key: Execute command or print line */
else if (key == '\n') {
rm_trailing_spaces_buf(ctx);
2014-03-30 22:40:13 +02:00
uint8_t line[MAX_STR_SIZE];
2014-03-30 22:40:13 +02:00
if (wcs_to_mbs_buf(line, ctx->line, MAX_STR_SIZE) == -1)
memset(&line, 0, sizeof(line));
2013-10-23 09:24:08 +02:00
2014-03-30 22:40:13 +02:00
wclear(ctx->linewin);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
2013-12-11 06:10:09 +01:00
2014-03-30 22:40:13 +02:00
if (!string_is_empty(line))
add_line_to_hist(ctx);
2014-02-26 11:23:11 +01:00
2014-03-30 22:40:13 +02:00
if (line[0] == '/') {
if (strcmp(line, "/close") == 0) {
if (ctx->self_is_typing)
set_typingstatus(self, m, 0);
2013-12-14 02:57:32 +01:00
2014-03-30 22:40:13 +02:00
kill_chat_window(self);
return;
} else if (strncmp(line, "/me ", strlen("/me ")) == 0) {
send_action(self, ctx, m, line + strlen("/me "));
} else {
execute(ctx->history, self, m, line, CHAT_COMMAND_MODE);
}
} else if (!string_is_empty(line)) {
uint8_t selfname[TOX_MAX_NAME_LENGTH];
uint16_t len = tox_get_self_name(m, selfname);
selfname[len] = '\0';
2014-03-30 22:40:13 +02:00
uint8_t timefrmt[TIME_STR_SIZE];
get_time_str(timefrmt);
2013-09-26 06:33:51 +02:00
2014-03-30 22:40:13 +02:00
line_info_add(self, timefrmt, selfname, NULL, line, OUT_MSG, 0, 0);
if (!statusbar->is_online || tox_send_message(m, self->num, line, strlen(line)) == 0) {
2014-03-30 22:40:13 +02:00
uint8_t *errmsg = " * Failed to send message.";
line_info_add(self, NULL, NULL, NULL, errmsg, SYS_MSG, 0, RED);
} else {
write_to_log(line, selfname, ctx->log, false);
}
}
reset_buf(ctx);
2014-03-30 22:40:13 +02:00
}
}
2014-02-26 11:23:11 +01:00
if (ctx->len <= 0 && ctx->self_is_typing)
2014-03-21 01:50:48 +01:00
set_typingstatus(self, m, 0);
}
2013-08-23 23:03:44 +02:00
static void chat_onDraw(ToxWindow *self, Tox *m)
2013-08-07 00:27:51 +02:00
{
int x2, y2;
getmaxyx(self->window, y2, x2);
ChatContext *ctx = self->chatwin;
line_info_print(self);
wclear(ctx->linewin);
curs_set(1);
if (ctx->len > 0) {
uint8_t line[MAX_STR_SIZE];
if (wcs_to_mbs_buf(line, ctx->line, MAX_STR_SIZE) == -1) {
reset_buf(ctx);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
} else {
mvwprintw(ctx->linewin, 1, 0, "%s", &line[ctx->start]);
}
}
/* Draw status bar */
StatusBar *statusbar = self->stb;
mvwhline(statusbar->topline, 1, 0, ACS_HLINE, x2);
wmove(statusbar->topline, 0, 0);
/* Draw name, status and note in statusbar */
if (statusbar->is_online) {
2014-03-19 08:14:08 +01:00
const uint8_t *status_text = "Unknown";
int colour = WHITE;
2014-03-19 02:48:26 +01:00
uint8_t status = statusbar->status;
2013-11-12 07:50:04 +01:00
switch (status) {
case TOX_USERSTATUS_NONE:
status_text = "Online";
colour = GREEN;
break;
case TOX_USERSTATUS_AWAY:
status_text = "Away";
colour = YELLOW;
break;
case TOX_USERSTATUS_BUSY:
status_text = "Busy";
colour = RED;
break;
case TOX_USERSTATUS_INVALID:
status_text = "ERROR";
colour = MAGENTA;
break;
}
wattron(statusbar->topline, COLOR_PAIR(colour) | A_BOLD);
wprintw(statusbar->topline, " [%s]", status_text);
wattroff(statusbar->topline, COLOR_PAIR(colour) | A_BOLD);
2014-02-23 10:28:33 +01:00
if (friends[self->num].is_typing)
wattron(statusbar->topline, COLOR_PAIR(YELLOW));
wattron(statusbar->topline, A_BOLD);
2013-09-06 06:56:55 +02:00
wprintw(statusbar->topline, " %s ", self->name);
wattroff(statusbar->topline, A_BOLD);
2014-02-23 10:28:33 +01:00
if (friends[self->num].is_typing)
wattroff(statusbar->topline, COLOR_PAIR(YELLOW));
} else {
wprintw(statusbar->topline, " [Offline]");
wattron(statusbar->topline, A_BOLD);
2013-09-06 06:56:55 +02:00
wprintw(statusbar->topline, " %s ", self->name);
wattroff(statusbar->topline, A_BOLD);
}
/* Reset statusbar->statusmsg on window resize */
if (x2 != self->x) {
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH] = {'\0'};
2014-03-13 11:06:53 +01:00
pthread_mutex_lock(&Winthread.lock);
uint16_t s_len = tox_get_status_message(m, self->num, statusmsg, TOX_MAX_STATUSMESSAGE_LENGTH);
2014-03-13 11:06:53 +01:00
pthread_mutex_unlock(&Winthread.lock);
statusmsg[s_len] = '\0';
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
statusbar->statusmsg_len = s_len;
}
self->x = x2;
/* Truncate note if it doesn't fit in statusbar */
2014-02-22 23:58:36 +01:00
uint16_t maxlen = x2 - getcurx(statusbar->topline) - (KEY_IDENT_DIGITS * 2) - 7;
if (statusbar->statusmsg_len > maxlen) {
statusbar->statusmsg[maxlen] = '\0';
statusbar->statusmsg_len = maxlen;
}
if (statusbar->statusmsg[0])
wprintw(statusbar->topline, "- %s ", statusbar->statusmsg);
2014-02-22 23:58:36 +01:00
wclrtoeol(statusbar->topline);
wmove(statusbar->topline, 0, x2 - (KEY_IDENT_DIGITS * 2) - 3);
wprintw(statusbar->topline, "{");
int i;
for (i = 0; i < KEY_IDENT_DIGITS; ++i)
wprintw(statusbar->topline, "%02X", friends[self->num].pub_key[i] & 0xff);
wprintw(statusbar->topline, "}\n");
mvwhline(ctx->linewin, 0, 0, ACS_HLINE, x2);
2013-07-31 19:20:03 +02:00
}
2013-08-23 23:03:44 +02:00
static void chat_onInit(ToxWindow *self, Tox *m)
2013-08-07 00:27:51 +02:00
{
2014-03-25 13:21:50 +01:00
curs_set(1);
int x2, y2;
getmaxyx(self->window, y2, x2);
self->x = x2;
/* Init statusbar info */
StatusBar *statusbar = self->stb;
2014-03-25 13:21:50 +01:00
statusbar->status = tox_get_user_status(m, self->num);
statusbar->is_online = tox_get_friend_connection_status(m, self->num) == 1;
2013-09-08 09:18:34 +02:00
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH] = {'\0'};
uint16_t s_len = tox_get_status_message(m, self->num, statusmsg, TOX_MAX_STATUSMESSAGE_LENGTH);
statusmsg[s_len] = '\0';
2013-09-08 09:18:34 +02:00
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
statusbar->statusmsg_len = s_len;
/* Init subwindows */
ChatContext *ctx = self->chatwin;
2014-03-25 13:21:50 +01:00
statusbar->topline = subwin(self->window, 2, x2, 0, 0);
ctx->history = subwin(self->window, y2 - CHATBOX_HEIGHT + 1, x2, 0, 0);
ctx->linewin = subwin(self->window, CHATBOX_HEIGHT, x2, y2 - CHATBOX_HEIGHT, 0);
ctx->hst = malloc(sizeof(struct history));
ctx->log = malloc(sizeof(struct chatlog));
if (ctx->log == NULL || ctx->hst == NULL)
exit_toxic_err("failed in chat_onInit", FATALERR_MEMORY);
memset(ctx->hst, 0, sizeof(struct history));
memset(ctx->log, 0, sizeof(struct chatlog));
line_info_init(ctx->hst);
if (friends[self->num].logging_on)
2014-03-02 00:06:35 +01:00
log_enable(self->name, friends[self->num].pub_key, ctx->log);
execute(ctx->history, self, m, "/help", CHAT_COMMAND_MODE);
2014-02-27 01:00:13 +01:00
execute(ctx->history, self, m, "/log", GLOBAL_COMMAND_MODE);
scrollok(ctx->history, 0);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
2013-07-31 19:20:03 +02:00
}
2014-03-19 08:14:08 +01:00
ToxWindow new_chat(Tox *m, int32_t friendnum)
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
ToxWindow ret;
memset(&ret, 0, sizeof(ret));
ret.active = true;
2014-02-26 11:23:11 +01:00
ret.is_chat = true;
2013-08-16 19:11:09 +02:00
ret.onKey = &chat_onKey;
ret.onDraw = &chat_onDraw;
ret.onInit = &chat_onInit;
ret.onMessage = &chat_onMessage;
ret.onConnectionChange = &chat_onConnectionChange;
2014-02-23 10:28:33 +01:00
ret.onTypingChange = & chat_onTypingChange;
2013-11-10 03:43:56 +01:00
ret.onGroupInvite = &chat_onGroupInvite;
2013-08-16 19:11:09 +02:00
ret.onNickChange = &chat_onNickChange;
ret.onStatusChange = &chat_onStatusChange;
ret.onStatusMessageChange = &chat_onStatusMessageChange;
2013-08-16 19:11:09 +02:00
ret.onAction = &chat_onAction;
2013-10-11 06:23:39 +02:00
ret.onFileSendRequest = &chat_onFileSendRequest;
ret.onFileControl = &chat_onFileControl;
ret.onFileData = &chat_onFileData;
2014-03-07 03:14:04 +01:00
#ifdef _SUPPORT_AUDIO
ret.onInvite = &chat_onInvite;
ret.onRinging = &chat_onRinging;
ret.onStarting = &chat_onStarting;
ret.onEnding = &chat_onEnding;
ret.onError = &chat_onError;
ret.onStart = &chat_onStart;
ret.onCancel = &chat_onCancel;
ret.onReject = &chat_onReject;
ret.onEnd = &chat_onEnd;
2014-03-14 23:08:08 +01:00
ret.onRequestTimeout = &chat_onRequestTimeout;
ret.onPeerTimeout = &chat_onPeerTimeout;
2014-05-16 20:00:01 +02:00
2014-06-21 01:58:00 +02:00
ret.call_idx = -1;
ret.device_selection[0] = ret.device_selection[1] = -1;
2014-03-07 03:14:04 +01:00
#endif /* _SUPPORT_AUDIO */
2013-08-16 19:11:09 +02:00
uint8_t name[TOX_MAX_NAME_LENGTH] = {'\0'};
2014-04-01 09:53:12 +02:00
int len = tox_get_name(m, friendnum, name);
len = MIN(len, TOXIC_MAX_NAME_LENGTH - 1);
name[len] = '\0';
strcpy(ret.name, name);
2013-08-16 19:11:09 +02:00
ChatContext *chatwin = calloc(1, sizeof(ChatContext));
memset(chatwin, 0, sizeof(ChatContext));
StatusBar *stb = calloc(1, sizeof(StatusBar));
memset(stb, 0, sizeof(StatusBar));
2013-09-12 00:07:26 +02:00
if (stb != NULL && chatwin != NULL) {
ret.chatwin = chatwin;
ret.stb = stb;
2013-09-12 00:07:26 +02:00
} else {
exit_toxic_err("failed in new_chat", FATALERR_MEMORY);
2013-09-12 00:07:26 +02:00
}
2013-09-15 22:38:38 +02:00
ret.num = friendnum;
2013-08-16 19:11:09 +02:00
return ret;
2013-07-31 19:20:03 +02:00
}