mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-14 17:23:03 +01:00
7206a9ea73
..
540 lines
16 KiB
C
540 lines
16 KiB
C
/* prompt.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/>.
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "toxic_windows.h"
|
|
#include "prompt.h"
|
|
#include "execute.h"
|
|
#include "misc_tools.h"
|
|
#include "toxic_strings.h"
|
|
#include "log.h"
|
|
#include "line_info.h"
|
|
#include "settings.h"
|
|
|
|
uint8_t pending_frnd_requests[MAX_FRIENDS_NUM][TOX_CLIENT_ID_SIZE] = {0};
|
|
uint8_t num_frnd_requests = 0;
|
|
extern ToxWindow *prompt;
|
|
struct _Winthread Winthread;
|
|
|
|
extern struct user_settings *user_settings;
|
|
|
|
/* Array of global command names used for tab completion. */
|
|
const uint8_t glob_cmd_list[AC_NUM_GLOB_COMMANDS][MAX_CMDNAME_SIZE] = {
|
|
{ "/accept" },
|
|
{ "/add" },
|
|
{ "/clear" },
|
|
{ "/close" }, /* rm /close when groupchats gets its own list */
|
|
{ "/connect" },
|
|
{ "/exit" },
|
|
{ "/groupchat" },
|
|
{ "/help" },
|
|
{ "/join" },
|
|
{ "/log" },
|
|
{ "/myid" },
|
|
{ "/nick" },
|
|
{ "/note" },
|
|
{ "/quit" },
|
|
{ "/status" },
|
|
|
|
#ifdef _SUPPORT_AUDIO
|
|
|
|
{ "/lsdev" },
|
|
{ "/sdev" },
|
|
|
|
#endif /* _SUPPORT_AUDIO */
|
|
};
|
|
|
|
/* Updates own nick in prompt statusbar */
|
|
void prompt_update_nick(ToxWindow *prompt, uint8_t *nick, uint16_t len)
|
|
{
|
|
StatusBar *statusbar = prompt->stb;
|
|
snprintf(statusbar->nick, sizeof(statusbar->nick), "%s", nick);
|
|
statusbar->nick_len = strlen(statusbar->nick);
|
|
}
|
|
|
|
/* Updates own statusmessage in prompt statusbar */
|
|
void prompt_update_statusmessage(ToxWindow *prompt, uint8_t *statusmsg, uint16_t len)
|
|
{
|
|
StatusBar *statusbar = prompt->stb;
|
|
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
|
|
statusbar->statusmsg_len = strlen(statusbar->statusmsg);
|
|
}
|
|
|
|
/* Updates own status in prompt statusbar */
|
|
void prompt_update_status(ToxWindow *prompt, uint8_t status)
|
|
{
|
|
StatusBar *statusbar = prompt->stb;
|
|
statusbar->status = status;
|
|
}
|
|
|
|
/* Updates own connection status in prompt statusbar */
|
|
void prompt_update_connectionstatus(ToxWindow *prompt, bool is_connected)
|
|
{
|
|
StatusBar *statusbar = prompt->stb;
|
|
statusbar->is_online = is_connected;
|
|
}
|
|
|
|
/* Adds friend request to pending friend requests.
|
|
Returns request number on success, -1 if queue is full or other error. */
|
|
static int add_friend_request(uint8_t *public_key)
|
|
{
|
|
if (num_frnd_requests >= MAX_FRIENDS_NUM)
|
|
return -1;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i <= num_frnd_requests; ++i) {
|
|
if (!strlen(pending_frnd_requests[i])) {
|
|
memcpy(pending_frnd_requests[i], public_key, TOX_CLIENT_ID_SIZE);
|
|
|
|
if (i == num_frnd_requests)
|
|
++num_frnd_requests;
|
|
|
|
return i;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
|
|
{
|
|
ChatContext *ctx = self->chatwin;
|
|
|
|
int x, y, y2, x2;
|
|
getyx(ctx->history, y, x);
|
|
getmaxyx(ctx->history, y2, x2);
|
|
|
|
/* TODO this is buggy */
|
|
/* ESC key: Toggle history scroll mode */
|
|
/*
|
|
if (key == T_KEY_ESC) {
|
|
bool scroll = ctx->hst->scroll_mode ? false : true;
|
|
line_info_toggle_scroll(self, scroll);
|
|
}
|
|
*/
|
|
|
|
/* If we're in scroll mode ignore rest of function */
|
|
if (ctx->hst->scroll_mode) {
|
|
line_info_onKey(self, key);
|
|
return;
|
|
}
|
|
|
|
if (ltr) {
|
|
if (ctx->len < (MAX_STR_SIZE - 1)) {
|
|
add_char_to_buf(ctx->line, &ctx->pos, &ctx->len, key);
|
|
}
|
|
} else { /* if (!ltr) */
|
|
|
|
/* BACKSPACE key: Remove one character from line */
|
|
if (key == 0x107 || key == 0x8 || key == 0x7f) {
|
|
if (ctx->pos > 0) {
|
|
del_char_buf_bck(ctx->line, &ctx->pos, &ctx->len);
|
|
wmove(ctx->history, y, x - 1); /* not necessary but fixes a display glitch */
|
|
} else {
|
|
beep();
|
|
}
|
|
}
|
|
|
|
else if (key == KEY_DC) { /* DEL key: Remove character at pos */
|
|
if (ctx->pos != ctx->len) {
|
|
del_char_buf_frnt(ctx->line, &ctx->pos, &ctx->len);
|
|
} else {
|
|
beep();
|
|
}
|
|
}
|
|
|
|
else if (key == T_KEY_DISCARD) { /* CTRL-U: Delete entire line behind pos */
|
|
if (ctx->pos > 0) {
|
|
wmove(ctx->history, ctx->orig_y, X_OFST);
|
|
wclrtobot(ctx->history);
|
|
discard_buf(ctx->line, &ctx->pos, &ctx->len);
|
|
} else {
|
|
beep();
|
|
}
|
|
}
|
|
|
|
else if (key == T_KEY_KILL) { /* CTRL-K: Delete entire line in front of pos */
|
|
if (ctx->len != ctx->pos)
|
|
kill_buf(ctx->line, &ctx->pos, &ctx->len);
|
|
else
|
|
beep();
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
else if (key == KEY_LEFT) {
|
|
if (ctx->pos > 0)
|
|
--ctx->pos;
|
|
else
|
|
beep();
|
|
}
|
|
|
|
else if (key == KEY_RIGHT) {
|
|
if (ctx->pos < ctx->len)
|
|
++ctx->pos;
|
|
else
|
|
beep();
|
|
}
|
|
|
|
else if (key == KEY_UP) { /* fetches previous item in history */
|
|
wmove(ctx->history, ctx->orig_y, X_OFST);
|
|
fetch_hist_item(ctx->line, &ctx->pos, &ctx->len, ctx->ln_history, ctx->hst_tot,
|
|
&ctx->hst_pos, MOVE_UP);
|
|
|
|
/* adjust line y origin appropriately when window scrolls down */
|
|
if (ctx->at_bottom && ctx->len >= x2 - X_OFST) {
|
|
int px2 = ctx->len >= x2 ? x2 : x2 - X_OFST;
|
|
int p_ofst = px2 != x2 ? 0 : X_OFST;
|
|
|
|
if (px2 <= 0)
|
|
return;
|
|
|
|
int k = ctx->orig_y + ((ctx->len + p_ofst) / px2);
|
|
|
|
if (k >= y2) {
|
|
--ctx->orig_y;
|
|
}
|
|
}
|
|
}
|
|
|
|
else if (key == KEY_DOWN) { /* fetches next item in history */
|
|
wmove(ctx->history, ctx->orig_y, X_OFST);
|
|
fetch_hist_item(ctx->line, &ctx->pos, &ctx->len, ctx->ln_history, ctx->hst_tot,
|
|
&ctx->hst_pos, MOVE_DOWN);
|
|
}
|
|
|
|
else if (key == '\t') { /* TAB key: completes command */
|
|
if (ctx->len > 1 && ctx->line[0] == '/') {
|
|
if (complete_line(ctx->line, &ctx->pos, &ctx->len, glob_cmd_list, AC_NUM_GLOB_COMMANDS,
|
|
MAX_CMDNAME_SIZE) == -1)
|
|
beep();
|
|
} else {
|
|
beep();
|
|
}
|
|
}
|
|
|
|
/* RETURN key: execute command */
|
|
else if (key == '\n') {
|
|
wprintw(ctx->history, "\n");
|
|
uint8_t line[MAX_STR_SIZE] = {0};
|
|
|
|
if (wcs_to_mbs_buf(line, ctx->line, MAX_STR_SIZE) == -1)
|
|
memset(&line, 0, sizeof(line));
|
|
|
|
if (!string_is_empty(line))
|
|
add_line_to_hist(ctx->line, ctx->len, ctx->ln_history, &ctx->hst_tot, &ctx->hst_pos);
|
|
|
|
line_info_add(self, NULL, NULL, NULL, line, PROMPT, 0, 0);
|
|
execute(ctx->history, self, m, line, GLOBAL_COMMAND_MODE);
|
|
reset_buf(ctx->line, &ctx->pos, &ctx->len);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void prompt_onDraw(ToxWindow *self, Tox *m)
|
|
{
|
|
ChatContext *ctx = self->chatwin;
|
|
|
|
int x, y, x2, y2;
|
|
getyx(ctx->history, y, x);
|
|
getmaxyx(ctx->history, y2, x2);
|
|
|
|
if (!ctx->hst->scroll_mode) {
|
|
curs_set(1);
|
|
scrollok(ctx->history, 1);
|
|
}
|
|
|
|
line_info_print(self);
|
|
|
|
/* if len is >= screen width offset max x by X_OFST to account for prompt char */
|
|
int px2 = ctx->len >= x2 ? x2 : x2 - X_OFST;
|
|
|
|
if (px2 <= 0)
|
|
return;
|
|
|
|
/* len offset to account for prompt char (0 if len is < width of screen) */
|
|
int p_ofst = px2 != x2 ? 0 : X_OFST;
|
|
|
|
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->line, &ctx->pos, &ctx->len);
|
|
else
|
|
mvwprintw(ctx->history, ctx->orig_y, X_OFST, line);
|
|
|
|
int k = ctx->orig_y + ((ctx->len + p_ofst) / px2);
|
|
|
|
ctx->at_bottom = k == y2 - 1;
|
|
bool botm = k == y2;
|
|
bool edge = (ctx->len + p_ofst) % px2 == 0;
|
|
|
|
/* move point of line origin up when input scrolls screen down */
|
|
if (edge && botm)
|
|
--ctx->orig_y;
|
|
|
|
} else { /* Mark point of origin for new line */
|
|
ctx->orig_y = y;
|
|
}
|
|
|
|
wattron(ctx->history, COLOR_PAIR(GREEN));
|
|
mvwprintw(ctx->history, ctx->orig_y, 0, "$ ");
|
|
wattroff(ctx->history, COLOR_PAIR(GREEN));
|
|
|
|
StatusBar *statusbar = self->stb;
|
|
werase(statusbar->topline);
|
|
mvwhline(statusbar->topline, 1, 0, ACS_HLINE, x2);
|
|
wmove(statusbar->topline, 0, 0);
|
|
|
|
if (statusbar->is_online) {
|
|
int colour = WHITE;
|
|
const uint8_t *status_text = "Unknown";
|
|
|
|
switch (statusbar->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);
|
|
|
|
wattron(statusbar->topline, A_BOLD);
|
|
wprintw(statusbar->topline, " %s", statusbar->nick);
|
|
wattroff(statusbar->topline, A_BOLD);
|
|
} else {
|
|
wprintw(statusbar->topline, "[Offline]");
|
|
wattron(statusbar->topline, A_BOLD);
|
|
wprintw(statusbar->topline, " %s ", statusbar->nick);
|
|
wattroff(statusbar->topline, A_BOLD);
|
|
}
|
|
|
|
if (statusbar->statusmsg[0])
|
|
wprintw(statusbar->topline, " - %s", statusbar->statusmsg);
|
|
|
|
/* put cursor back in correct spot */
|
|
int y_m = ctx->orig_y + ((ctx->pos + p_ofst) / px2);
|
|
int x_m = (ctx->pos + X_OFST) % x2;
|
|
wmove(self->window, y_m, x_m);
|
|
}
|
|
|
|
static void prompt_onConnectionChange(ToxWindow *self, Tox *m, int32_t friendnum , uint8_t status)
|
|
{
|
|
if (friendnum < 0)
|
|
return;
|
|
|
|
ChatContext *ctx = self->chatwin;
|
|
|
|
uint8_t nick[TOX_MAX_NAME_LENGTH] = {0};
|
|
int n_len = tox_get_name(m, friendnum, nick);
|
|
n_len = MIN(n_len, TOXIC_MAX_NAME_LENGTH - 1);
|
|
|
|
if (!nick[0]) {
|
|
snprintf(nick, sizeof(nick), "%s", UNKNOWN_NAME);
|
|
n_len = strlen(UNKNOWN_NAME);
|
|
}
|
|
|
|
nick[n_len] = '\0';
|
|
|
|
uint8_t timefrmt[TIME_STR_SIZE];
|
|
get_time_str(timefrmt);
|
|
uint8_t *msg;
|
|
|
|
if (status == 1) {
|
|
msg = "has come online";
|
|
line_info_add(self, timefrmt, nick, NULL, msg, CONNECTION, 0, GREEN);
|
|
write_to_log(msg, nick, ctx->log, true);
|
|
alert_window(self, WINDOW_ALERT_2, false);
|
|
} else {
|
|
msg = "has gone offline";
|
|
line_info_add(self, timefrmt, nick, NULL, msg, CONNECTION, 0, RED);
|
|
write_to_log(msg, nick, ctx->log, true);
|
|
}
|
|
}
|
|
|
|
static void prompt_onFriendRequest(ToxWindow *self, Tox *m, uint8_t *key, uint8_t *data, uint16_t length)
|
|
{
|
|
data[length] = '\0';
|
|
|
|
ChatContext *ctx = self->chatwin;
|
|
|
|
uint8_t timefrmt[TIME_STR_SIZE];
|
|
get_time_str(timefrmt);
|
|
|
|
uint8_t msg[MAX_STR_SIZE];
|
|
snprintf(msg, sizeof(msg), "Friend request with the message '%s'", data);
|
|
line_info_add(self, timefrmt, NULL, NULL, msg, SYS_MSG, 0, 0);
|
|
write_to_log(msg, "", ctx->log, true);
|
|
|
|
int n = add_friend_request(key);
|
|
|
|
if (n == -1) {
|
|
uint8_t *errmsg = "Friend request queue is full. Discarding request.";
|
|
line_info_add(self, NULL, NULL, NULL, errmsg, SYS_MSG, 0, 0);
|
|
write_to_log(errmsg, "", ctx->log, true);
|
|
return;
|
|
}
|
|
|
|
snprintf(msg, sizeof(msg), "Type \"/accept %d\" to accept it.", n);
|
|
line_info_add(self, NULL, NULL, NULL, msg, SYS_MSG, 0, 0);
|
|
alert_window(self, WINDOW_ALERT_1, true);
|
|
}
|
|
|
|
void prompt_init_statusbar(ToxWindow *self, Tox *m)
|
|
{
|
|
int x2, y2;
|
|
getmaxyx(self->window, y2, x2);
|
|
|
|
/* Init statusbar info */
|
|
StatusBar *statusbar = self->stb;
|
|
statusbar->status = TOX_USERSTATUS_NONE;
|
|
statusbar->is_online = false;
|
|
|
|
uint8_t nick[TOX_MAX_NAME_LENGTH];
|
|
uint8_t statusmsg[MAX_STR_SIZE];
|
|
|
|
pthread_mutex_lock(&Winthread.lock);
|
|
uint16_t n_len = tox_get_self_name(m, nick);
|
|
uint16_t s_len = tox_get_self_status_message(m, statusmsg, MAX_STR_SIZE);
|
|
uint8_t status = tox_get_self_user_status(m);
|
|
pthread_mutex_unlock(&Winthread.lock);
|
|
|
|
nick[n_len] = '\0';
|
|
statusmsg[s_len] = '\0';
|
|
|
|
/* load prev status message or show toxic version if it has never been set */
|
|
uint8_t ver[strlen(TOXICVER) + 1];
|
|
strcpy(ver, TOXICVER);
|
|
const uint8_t *toxic_ver = strtok(ver, "_");
|
|
|
|
if ( (!strcmp("Online", statusmsg) || !strncmp("Toxing on Toxic", statusmsg, 15)) && toxic_ver != NULL) {
|
|
snprintf(statusmsg, MAX_STR_SIZE, "Toxing on Toxic v.%s", toxic_ver);
|
|
s_len = strlen(statusmsg);
|
|
statusmsg[s_len] = '\0';
|
|
}
|
|
|
|
prompt_update_statusmessage(prompt, statusmsg, s_len);
|
|
prompt_update_status(prompt, status);
|
|
prompt_update_nick(prompt, nick, n_len);
|
|
|
|
/* Init statusbar subwindow */
|
|
statusbar->topline = subwin(self->window, 2, x2, 0, 0);
|
|
}
|
|
|
|
static void prompt_onInit(ToxWindow *self, Tox *m)
|
|
{
|
|
ChatContext *ctx = self->chatwin;
|
|
|
|
curs_set(1);
|
|
int y2, x2;
|
|
getmaxyx(self->window, y2, x2);
|
|
|
|
ctx->history = subwin(self->window, y2, x2, 0, 0);
|
|
scrollok(ctx->history, 1);
|
|
|
|
ctx->log = malloc(sizeof(struct chatlog));
|
|
ctx->hst = malloc(sizeof(struct history));
|
|
|
|
if (ctx->log == NULL || ctx->hst == NULL) {
|
|
endwin();
|
|
fprintf(stderr, "malloc() failed. Aborting...\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
memset(ctx->log, 0, sizeof(struct chatlog));
|
|
memset(ctx->hst, 0, sizeof(struct history));
|
|
|
|
line_info_init(ctx->hst);
|
|
|
|
if (user_settings->autolog == AUTOLOG_ON) {
|
|
uint8_t myid[TOX_FRIEND_ADDRESS_SIZE];
|
|
tox_get_address(m, myid);
|
|
log_enable(self->name, myid, ctx->log);
|
|
}
|
|
|
|
execute(ctx->history, self, m, "/help", GLOBAL_COMMAND_MODE);
|
|
wmove(ctx->history, y2 - 1, 2);
|
|
}
|
|
|
|
ToxWindow new_prompt(void)
|
|
{
|
|
ToxWindow ret;
|
|
memset(&ret, 0, sizeof(ret));
|
|
|
|
ret.active = true;
|
|
ret.is_prompt = true;
|
|
|
|
ret.onKey = &prompt_onKey;
|
|
ret.onDraw = &prompt_onDraw;
|
|
ret.onInit = &prompt_onInit;
|
|
ret.onConnectionChange = &prompt_onConnectionChange;
|
|
ret.onFriendRequest = &prompt_onFriendRequest;
|
|
|
|
strcpy(ret.name, "prompt");
|
|
|
|
ChatContext *chatwin = calloc(1, sizeof(ChatContext));
|
|
StatusBar *stb = calloc(1, sizeof(StatusBar));
|
|
|
|
if (stb != NULL && chatwin != NULL) {
|
|
ret.chatwin = chatwin;
|
|
ret.stb = stb;
|
|
} else {
|
|
endwin();
|
|
fprintf(stderr, "calloc() failed. Aborting...\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
return ret;
|
|
}
|