2014-02-25 08:28:24 +01:00
|
|
|
/* friendlist.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-07-30 21:47:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
2013-08-28 20:47:47 +02:00
|
|
|
#include <stdlib.h>
|
2014-03-14 22:48:52 +01:00
|
|
|
#include <time.h>
|
2014-07-31 21:02:19 +02:00
|
|
|
#include <arpa/inet.h>
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-08-24 04:15:15 +02:00
|
|
|
#include <tox/tox.h>
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2014-06-22 02:18:23 +02:00
|
|
|
#include "toxic.h"
|
|
|
|
#include "windows.h"
|
2013-11-19 21:32:35 +01:00
|
|
|
#include "chat.h"
|
2013-08-13 00:50:43 +02:00
|
|
|
#include "friendlist.h"
|
2013-11-24 23:12:24 +01:00
|
|
|
#include "misc_tools.h"
|
2014-03-25 13:21:50 +01:00
|
|
|
#include "line_info.h"
|
2014-04-07 10:42:10 +02:00
|
|
|
#include "settings.h"
|
2014-07-21 03:25:21 +02:00
|
|
|
#include "notify.h"
|
2014-07-31 19:49:15 +02:00
|
|
|
#include "help.h"
|
2014-09-27 08:28:11 +02:00
|
|
|
#include "log.h"
|
2015-04-04 09:26:38 +02:00
|
|
|
#include "avatars.h"
|
2014-03-16 20:28:46 +01:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-03-07 03:14:04 +01:00
|
|
|
#include "audio_call.h"
|
2014-03-16 20:28:46 +01:00
|
|
|
#endif
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2014-07-21 03:25:21 +02:00
|
|
|
|
2013-08-28 11:46:09 +02:00
|
|
|
extern char *DATA_FILE;
|
2014-07-31 18:48:49 +02:00
|
|
|
extern char *BLOCK_FILE;
|
2013-09-07 01:59:45 +02:00
|
|
|
extern ToxWindow *prompt;
|
2014-09-23 03:24:45 +02:00
|
|
|
extern struct Winthread Winthread;
|
|
|
|
extern struct user_settings *user_settings;
|
2014-07-31 18:48:49 +02:00
|
|
|
extern struct arg_opts arg_opts;
|
2013-09-07 01:59:45 +02:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
static uint8_t blocklist_view = 0; /* 0 if we're in friendlist view, 1 if we're in blocklist view */
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2014-09-28 23:49:48 +02:00
|
|
|
FriendsList Friends;
|
2013-11-24 23:12:24 +01:00
|
|
|
|
2014-09-28 23:49:48 +02:00
|
|
|
static struct Blocked {
|
2014-07-31 18:48:49 +02:00
|
|
|
int num_selected;
|
2014-08-07 19:05:42 +02:00
|
|
|
int max_idx;
|
2014-07-31 18:48:49 +02:00
|
|
|
int num_blocked;
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t *index;
|
2014-08-07 19:05:42 +02:00
|
|
|
BlockedFriend *list;
|
2014-08-08 01:24:56 +02:00
|
|
|
} Blocked;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static struct PendingDel {
|
|
|
|
uint32_t num;
|
2014-03-15 22:18:23 +01:00
|
|
|
bool active;
|
2014-06-24 00:54:23 +02:00
|
|
|
WINDOW *popup;
|
2015-03-26 03:56:45 +01:00
|
|
|
} PendingDelete;
|
2014-03-09 05:57:21 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
static void realloc_friends(int n)
|
|
|
|
{
|
|
|
|
if (n <= 0) {
|
|
|
|
free(Friends.list);
|
|
|
|
free(Friends.index);
|
|
|
|
Friends.list = NULL;
|
|
|
|
Friends.index = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ToxicFriend *f = realloc(Friends.list, n * sizeof(ToxicFriend));
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t *f_idx = realloc(Friends.index, n * sizeof(uint32_t));
|
2014-08-07 19:05:42 +02:00
|
|
|
|
|
|
|
if (f == NULL || f_idx == NULL)
|
|
|
|
exit_toxic_err("failed in realloc_friends", FATALERR_MEMORY);
|
|
|
|
|
|
|
|
Friends.list = f;
|
|
|
|
Friends.index = f_idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void realloc_blocklist(int n)
|
|
|
|
{
|
|
|
|
if (n <= 0) {
|
2014-08-08 01:24:56 +02:00
|
|
|
free(Blocked.list);
|
|
|
|
free(Blocked.index);
|
|
|
|
Blocked.list = NULL;
|
|
|
|
Blocked.index = NULL;
|
2014-08-07 19:05:42 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
BlockedFriend *b = realloc(Blocked.list, n * sizeof(BlockedFriend));
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t *b_idx = realloc(Blocked.index, n * sizeof(uint32_t));
|
2014-08-07 19:05:42 +02:00
|
|
|
|
|
|
|
if (b == NULL || b_idx == NULL)
|
|
|
|
exit_toxic_err("failed in realloc_blocklist", FATALERR_MEMORY);
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
Blocked.list = b;
|
|
|
|
Blocked.index = b_idx;
|
2014-08-07 19:05:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void kill_friendlist(void)
|
|
|
|
{
|
2014-09-28 04:50:20 +02:00
|
|
|
int i;
|
|
|
|
|
2014-09-29 07:30:22 +02:00
|
|
|
for (i = 0; i < Friends.max_idx; ++i) {
|
2014-09-28 23:49:48 +02:00
|
|
|
if (Friends.list[i].active && Friends.list[i].group_invite.key != NULL)
|
2014-09-28 04:50:20 +02:00
|
|
|
free(Friends.list[i].group_invite.key);
|
|
|
|
}
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
realloc_blocklist(0);
|
|
|
|
realloc_friends(0);
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
static int save_blocklist(char *path)
|
|
|
|
{
|
|
|
|
if (path == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
int len = sizeof(BlockedFriend) * Blocked.num_blocked;
|
2014-07-31 18:48:49 +02:00
|
|
|
char *data = malloc(len);
|
|
|
|
|
|
|
|
if (data == NULL)
|
|
|
|
exit_toxic_err("Failed in save_blocklist", FATALERR_MEMORY);
|
|
|
|
|
|
|
|
int i;
|
2014-10-03 04:25:21 +02:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
int count = 0;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
for (i = 0; i < Blocked.max_idx; ++i) {
|
|
|
|
if (count > Blocked.num_blocked)
|
2014-09-04 18:49:50 +02:00
|
|
|
goto on_error;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (Blocked.list[i].active) {
|
2014-07-31 18:48:49 +02:00
|
|
|
BlockedFriend tmp;
|
|
|
|
memset(&tmp, 0, sizeof(BlockedFriend));
|
2014-08-08 01:24:56 +02:00
|
|
|
tmp.namelength = htons(Blocked.list[i].namelength);
|
|
|
|
memcpy(tmp.name, Blocked.list[i].name, Blocked.list[i].namelength + 1);
|
2015-02-01 21:09:48 +01:00
|
|
|
memcpy(tmp.pub_key, Blocked.list[i].pub_key, TOX_PUBLIC_KEY_SIZE);
|
2014-07-31 20:53:02 +02:00
|
|
|
|
|
|
|
uint8_t lastonline[sizeof(uint64_t)];
|
2014-08-08 01:24:56 +02:00
|
|
|
memcpy(lastonline, &Blocked.list[i].last_on, sizeof(uint64_t));
|
2014-08-15 18:22:39 +02:00
|
|
|
hst_to_net(lastonline, sizeof(uint64_t));
|
2014-07-31 20:53:02 +02:00
|
|
|
memcpy(&tmp.last_on, lastonline, sizeof(uint64_t));
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
memcpy(data + count * sizeof(BlockedFriend), &tmp, sizeof(BlockedFriend));
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *fp = fopen(path, "wb");
|
|
|
|
|
2014-09-04 18:49:50 +02:00
|
|
|
if (fp == NULL)
|
|
|
|
goto on_error;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-10-04 05:41:30 +02:00
|
|
|
if (fwrite(data, len, 1, fp) != 1)
|
2014-10-03 04:25:21 +02:00
|
|
|
goto on_error;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
fclose(fp);
|
2014-10-04 05:41:30 +02:00
|
|
|
free(data);
|
2014-10-03 04:25:21 +02:00
|
|
|
return 0;
|
2014-09-24 04:51:56 +02:00
|
|
|
|
2014-09-04 18:49:50 +02:00
|
|
|
on_error:
|
2014-07-31 18:48:49 +02:00
|
|
|
free(data);
|
2014-10-03 04:25:21 +02:00
|
|
|
return -1;
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
2013-12-14 02:57:32 +01:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
static void sort_blocklist_index(void);
|
|
|
|
|
|
|
|
int load_blocklist(char *path)
|
|
|
|
{
|
|
|
|
if (path == NULL)
|
|
|
|
return -1;
|
2013-12-14 02:57:32 +01:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
FILE *fp = fopen(path, "rb");
|
|
|
|
|
|
|
|
if (fp == NULL)
|
|
|
|
return -1;
|
|
|
|
|
2014-09-24 20:23:08 +02:00
|
|
|
off_t len = file_size(path);
|
2014-09-24 04:51:56 +02:00
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
if (len == 0) {
|
2014-09-24 04:51:56 +02:00
|
|
|
fclose(fp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
char *data = malloc(len);
|
|
|
|
|
2015-01-01 18:50:51 +01:00
|
|
|
if (data == NULL) {
|
2014-07-31 18:48:49 +02:00
|
|
|
fclose(fp);
|
|
|
|
exit_toxic_err("Failed in load_blocklist", FATALERR_MEMORY);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fread(data, len, 1, fp) != 1) {
|
|
|
|
fclose(fp);
|
|
|
|
free(data);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len % sizeof(BlockedFriend) != 0) {
|
|
|
|
fclose(fp);
|
|
|
|
free(data);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int num = len / sizeof(BlockedFriend);
|
2014-08-08 01:24:56 +02:00
|
|
|
Blocked.max_idx = num;
|
2014-08-07 19:05:42 +02:00
|
|
|
realloc_blocklist(num);
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num; ++i) {
|
2014-08-08 01:24:56 +02:00
|
|
|
memset(&Blocked.list[i], 0, sizeof(BlockedFriend));
|
2014-08-07 19:05:42 +02:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
BlockedFriend tmp;
|
|
|
|
memcpy(&tmp, data + i * sizeof(BlockedFriend), sizeof(BlockedFriend));
|
2014-08-08 01:24:56 +02:00
|
|
|
Blocked.list[i].active = true;
|
|
|
|
Blocked.list[i].num = i;
|
|
|
|
Blocked.list[i].namelength = ntohs(tmp.namelength);
|
|
|
|
memcpy(Blocked.list[i].name, tmp.name, Blocked.list[i].namelength + 1);
|
2015-02-01 21:09:48 +01:00
|
|
|
memcpy(Blocked.list[i].pub_key, tmp.pub_key, TOX_PUBLIC_KEY_SIZE);
|
2014-07-31 20:53:02 +02:00
|
|
|
|
|
|
|
uint8_t lastonline[sizeof(uint64_t)];
|
|
|
|
memcpy(lastonline, &tmp.last_on, sizeof(uint64_t));
|
|
|
|
net_to_host(lastonline, sizeof(uint64_t));
|
2014-08-08 01:24:56 +02:00
|
|
|
memcpy(&Blocked.list[i].last_on, lastonline, sizeof(uint64_t));
|
2014-07-31 20:53:02 +02:00
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
++Blocked.num_blocked;
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
free(data);
|
|
|
|
fclose(fp);
|
|
|
|
sort_blocklist_index();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define S_WEIGHT 100000
|
2013-11-26 00:49:31 +01:00
|
|
|
static int index_name_cmp(const void *n1, const void *n2)
|
2013-11-24 23:12:24 +01:00
|
|
|
{
|
2015-03-28 07:56:54 +01:00
|
|
|
int res = qsort_strcasecmp_hlpr(Friends.list[*(int *) n1].name, Friends.list[*(int *) n2].name);
|
2013-11-25 00:22:48 +01:00
|
|
|
|
|
|
|
/* Use weight to make qsort always put online friends before offline */
|
2015-03-28 07:56:54 +01:00
|
|
|
res = Friends.list[*(int *) n1].connection_status ? (res - S_WEIGHT) : (res + S_WEIGHT);
|
|
|
|
res = Friends.list[*(int *) n2].connection_status ? (res + S_WEIGHT) : (res - S_WEIGHT);
|
2013-11-25 00:22:48 +01:00
|
|
|
|
|
|
|
return res;
|
2013-11-24 23:12:24 +01:00
|
|
|
}
|
2013-11-09 08:50:32 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
/* sorts Friends.index first by connection status then alphabetically */
|
2014-03-14 04:30:44 +01:00
|
|
|
void sort_friendlist_index(void)
|
2013-11-09 08:50:32 +01:00
|
|
|
{
|
2015-03-28 07:56:54 +01:00
|
|
|
size_t i;
|
|
|
|
uint32_t n = 0;
|
2013-11-09 08:50:32 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
for (i = 0; i < Friends.max_idx; ++i) {
|
|
|
|
if (Friends.list[i].active)
|
|
|
|
Friends.index[n++] = Friends.list[i].num;
|
2013-11-09 08:50:32 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
qsort(Friends.index, Friends.num_friends, sizeof(uint32_t), index_name_cmp);
|
2013-11-09 08:50:32 +01:00
|
|
|
}
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
static int index_name_cmp_block(const void *n1, const void *n2)
|
|
|
|
{
|
2015-03-28 07:56:54 +01:00
|
|
|
return qsort_strcasecmp_hlpr(Blocked.list[*(int *) n1].name, Blocked.list[*(int *) n2].name);
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sort_blocklist_index(void)
|
|
|
|
{
|
2015-03-28 07:56:54 +01:00
|
|
|
size_t i;
|
|
|
|
uint32_t n = 0;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
for (i = 0; i < Blocked.max_idx; ++i) {
|
|
|
|
if (Blocked.list[i].active)
|
|
|
|
Blocked.index[n++] = Blocked.list[i].num;
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
qsort(Blocked.index, Blocked.num_blocked, sizeof(uint32_t), index_name_cmp_block);
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
static void update_friend_last_online(uint32_t num, uint64_t timestamp)
|
2014-03-15 22:18:23 +01:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[num].last_online.last_on = timestamp;
|
|
|
|
Friends.list[num].last_online.tm = *localtime((const time_t*)×tamp);
|
2014-03-19 08:14:08 +01:00
|
|
|
|
|
|
|
/* if the format changes make sure TIME_STR_SIZE is the correct size */
|
2015-02-20 00:20:38 +01:00
|
|
|
const char *t = user_settings->timestamp_format;
|
2014-08-07 19:05:42 +02:00
|
|
|
strftime(Friends.list[num].last_online.hour_min_str, TIME_STR_SIZE, t,
|
|
|
|
&Friends.list[num].last_online.tm);
|
2014-03-15 22:18:23 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void friendlist_onMessage(ToxWindow *self, Tox *m, uint32_t num, TOX_MESSAGE_TYPE type, const char *str,
|
|
|
|
size_t length)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
if (num >= Friends.max_idx)
|
2013-08-16 19:11:09 +02:00
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (Friends.list[num].chatwin != -1)
|
|
|
|
return;
|
2013-11-30 11:35:25 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (get_num_active_windows() < MAX_WINDOWS_NUM) {
|
|
|
|
Friends.list[num].chatwin = add_window(m, new_chat(m, Friends.list[num].num));
|
|
|
|
return;
|
|
|
|
}
|
2013-11-30 11:35:25 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
char nick[TOX_MAX_NAME_LENGTH];
|
|
|
|
get_nick_truncate(m, nick, num);
|
2014-03-25 13:21:50 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
char timefrmt[TIME_STR_SIZE];
|
|
|
|
get_time_str(timefrmt, sizeof(timefrmt));
|
|
|
|
|
|
|
|
line_info_add(prompt, timefrmt, nick, NULL, IN_MSG, 0, 0, "%s", str);
|
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, RED, "* Warning: Too many windows are open.");
|
|
|
|
sound_notify(prompt, notif_error, NT_WNDALERT_1, NULL);
|
2013-07-31 20:20:16 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void friendlist_onConnectionChange(ToxWindow *self, Tox *m, uint32_t num, TOX_CONNECTION connection_status)
|
2013-09-05 03:25:59 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
if (num >= Friends.max_idx)
|
2013-09-05 03:25:59 +02:00
|
|
|
return;
|
|
|
|
|
2015-04-04 09:26:38 +02:00
|
|
|
if (connection_status == TOX_CONNECTION_NONE) {
|
2015-03-26 03:56:45 +01:00
|
|
|
--Friends.num_online;
|
2015-04-04 09:26:38 +02:00
|
|
|
} else if (Friends.list[num].connection_status == TOX_CONNECTION_NONE) {
|
2015-03-26 03:56:45 +01:00
|
|
|
++Friends.num_online;
|
|
|
|
|
2015-04-04 09:26:38 +02:00
|
|
|
if (avatar_send(m, num) == -1)
|
|
|
|
fprintf(stderr, "avatar_send failed for friend %d\n", num);
|
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
Friends.list[num].connection_status = connection_status;
|
2014-03-15 22:18:23 +01:00
|
|
|
update_friend_last_online(num, get_unix_time());
|
2014-03-14 22:48:52 +01:00
|
|
|
store_data(m, DATA_FILE);
|
2014-03-14 04:30:44 +01:00
|
|
|
sort_friendlist_index();
|
2013-09-05 03:25:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void friendlist_onNickChange(ToxWindow *self, Tox *m, uint32_t num, const char *nick, size_t length)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2014-10-03 23:53:50 +02:00
|
|
|
if (num >= Friends.max_idx)
|
2013-08-16 19:11:09 +02:00
|
|
|
return;
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2014-09-27 08:28:11 +02:00
|
|
|
/* save old name for log renaming */
|
2014-10-03 23:53:50 +02:00
|
|
|
char oldname[TOXIC_MAX_NAME_LENGTH + 1];
|
2014-09-27 08:28:11 +02:00
|
|
|
snprintf(oldname, sizeof(oldname), "%s", Friends.list[num].name);
|
|
|
|
|
|
|
|
/* update name */
|
2014-10-03 23:53:50 +02:00
|
|
|
snprintf(Friends.list[num].name, sizeof(Friends.list[num].name), "%s", nick);
|
|
|
|
Friends.list[num].namelength = strlen(Friends.list[num].name);
|
2014-09-27 08:28:11 +02:00
|
|
|
|
|
|
|
/* get data for chatlog renaming */
|
2014-10-03 23:53:50 +02:00
|
|
|
char newnamecpy[TOXIC_MAX_NAME_LENGTH + 1];
|
2015-03-26 03:56:45 +01:00
|
|
|
char myid[TOX_ADDRESS_SIZE];
|
2014-10-03 23:53:50 +02:00
|
|
|
strcpy(newnamecpy, Friends.list[num].name);
|
2015-03-26 03:56:45 +01:00
|
|
|
tox_self_get_address(m, (uint8_t *) myid);
|
2014-09-27 08:28:11 +02:00
|
|
|
|
|
|
|
if (strcmp(oldname, newnamecpy) != 0)
|
|
|
|
rename_logfile(oldname, newnamecpy, myid, Friends.list[num].pub_key, Friends.list[num].chatwin);
|
|
|
|
|
2014-03-14 04:30:44 +01:00
|
|
|
sort_friendlist_index();
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void friendlist_onStatusChange(ToxWindow *self, Tox *m, uint32_t num, TOX_USER_STATUS status)
|
2013-09-05 03:25:59 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
if (num >= Friends.max_idx)
|
2013-09-05 03:25:59 +02:00
|
|
|
return;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[num].status = status;
|
2013-09-05 03:25:59 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void friendlist_onStatusMessageChange(ToxWindow *self, uint32_t num, const char *note, size_t length)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2015-03-28 07:56:54 +01:00
|
|
|
if (length > TOX_MAX_STATUS_MESSAGE_LENGTH || num >= Friends.max_idx)
|
2013-08-16 19:11:09 +02:00
|
|
|
return;
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
snprintf(Friends.list[num].statusmsg, sizeof(Friends.list[num].statusmsg), "%s", note);
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[num].statusmsg_len = strlen(Friends.list[num].statusmsg);
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
void friendlist_onFriendAdded(ToxWindow *self, Tox *m, uint32_t num, bool sort)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
realloc_friends(Friends.max_idx + 1);
|
|
|
|
memset(&Friends.list[Friends.max_idx], 0, sizeof(ToxicFriend));
|
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
uint32_t i;
|
2013-08-28 11:46:09 +02:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
for (i = 0; i <= Friends.max_idx; ++i) {
|
|
|
|
if (Friends.list[i].active)
|
|
|
|
continue;
|
2013-09-04 03:31:50 +02:00
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
++Friends.num_friends;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[i].num = num;
|
|
|
|
Friends.list[i].active = true;
|
|
|
|
Friends.list[i].chatwin = -1;
|
2015-03-26 03:56:45 +01:00
|
|
|
Friends.list[i].connection_status = TOX_CONNECTION_NONE;
|
|
|
|
Friends.list[i].status = TOX_USER_STATUS_NONE;
|
2014-09-23 03:24:45 +02:00
|
|
|
Friends.list[i].logging_on = (bool) user_settings->autolog == AUTOLOG_ON;
|
2015-03-26 03:56:45 +01:00
|
|
|
|
2015-04-04 09:26:38 +02:00
|
|
|
TOX_ERR_FRIEND_GET_PUBLIC_KEY pkerr;
|
|
|
|
tox_friend_get_public_key(m, num, (uint8_t *) Friends.list[i].pub_key, &pkerr);
|
|
|
|
|
|
|
|
if (pkerr != TOX_ERR_FRIEND_GET_PUBLIC_KEY_OK)
|
|
|
|
fprintf(stderr, "tox_friend_get_public_key failed (error %d)\n", pkerr);
|
|
|
|
|
|
|
|
TOX_ERR_FRIEND_GET_LAST_ONLINE loerr;
|
|
|
|
uint64_t t = tox_friend_get_last_online(m, num, &loerr);
|
2015-03-28 07:56:54 +01:00
|
|
|
|
2015-04-04 09:26:38 +02:00
|
|
|
if (loerr != TOX_ERR_FRIEND_GET_LAST_ONLINE_OK)
|
|
|
|
t = 0;
|
2015-03-28 07:56:54 +01:00
|
|
|
|
2015-04-04 09:26:38 +02:00
|
|
|
update_friend_last_online(i, t);
|
2014-08-07 19:05:42 +02:00
|
|
|
|
|
|
|
char tempname[TOX_MAX_NAME_LENGTH] = {0};
|
2015-03-28 07:56:54 +01:00
|
|
|
get_nick_truncate(m, tempname, num);
|
|
|
|
snprintf(Friends.list[i].name, sizeof(Friends.list[i].name), "%s", tempname);
|
|
|
|
Friends.list[i].namelength = strlen(Friends.list[i].name);
|
2014-02-08 05:28:17 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (i == Friends.max_idx)
|
|
|
|
++Friends.max_idx;
|
2013-11-09 08:50:32 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (sort)
|
|
|
|
sort_friendlist_index();
|
2013-12-04 07:08:26 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
return;
|
2013-08-28 11:46:09 +02:00
|
|
|
}
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
/* puts blocked friend back in friendlist. fnum is new friend number, bnum is blocked number */
|
2015-03-26 03:56:45 +01:00
|
|
|
static void friendlist_add_blocked(Tox *m, uint32_t fnum, uint32_t bnum)
|
2014-07-31 18:48:49 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
realloc_friends(Friends.max_idx + 1);
|
|
|
|
memset(&Friends.list[Friends.max_idx], 0, sizeof(ToxicFriend));
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
int i;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
for (i = 0; i <= Friends.max_idx; ++i) {
|
|
|
|
if (Friends.list[i].active)
|
2014-07-31 18:48:49 +02:00
|
|
|
continue;
|
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
++Friends.num_friends;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[i].num = fnum;
|
|
|
|
Friends.list[i].active = true;
|
|
|
|
Friends.list[i].chatwin = -1;
|
2015-03-26 03:56:45 +01:00
|
|
|
Friends.list[i].status = TOX_USER_STATUS_NONE;
|
2014-09-23 03:24:45 +02:00
|
|
|
Friends.list[i].logging_on = (bool) user_settings->autolog == AUTOLOG_ON;
|
2014-08-08 01:24:56 +02:00
|
|
|
Friends.list[i].namelength = Blocked.list[bnum].namelength;
|
|
|
|
update_friend_last_online(i, Blocked.list[bnum].last_on);
|
|
|
|
memcpy(Friends.list[i].name, Blocked.list[bnum].name, Friends.list[i].namelength + 1);
|
2015-02-01 21:09:48 +01:00
|
|
|
memcpy(Friends.list[i].pub_key, Blocked.list[bnum].pub_key, TOX_PUBLIC_KEY_SIZE);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (i == Friends.max_idx)
|
|
|
|
++Friends.max_idx;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
sort_blocklist_index();
|
|
|
|
sort_friendlist_index();
|
2014-08-07 19:05:42 +02:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-30 00:33:51 +02:00
|
|
|
static void friendlist_onFileRecv(ToxWindow *self, Tox *m, uint32_t num, uint32_t filenum,
|
2015-03-28 07:56:54 +01:00
|
|
|
uint64_t file_size, const char *filename, size_t name_length)
|
2013-10-11 06:23:39 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
if (num >= Friends.max_idx)
|
2013-10-11 06:23:39 +02:00
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (Friends.list[num].chatwin != -1)
|
|
|
|
return;
|
2013-11-30 11:35:25 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (get_num_active_windows() < MAX_WINDOWS_NUM) {
|
|
|
|
Friends.list[num].chatwin = add_window(m, new_chat(m, Friends.list[num].num));
|
|
|
|
return;
|
|
|
|
}
|
2013-11-30 11:35:25 +01:00
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
tox_file_control(m, num, filenum, TOX_FILE_CONTROL_CANCEL, NULL);
|
2015-01-01 18:50:51 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
char nick[TOX_MAX_NAME_LENGTH];
|
|
|
|
get_nick_truncate(m, nick, num);
|
|
|
|
|
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, RED,
|
|
|
|
"* File transfer from %s failed: too many windows are open.", nick);
|
|
|
|
|
|
|
|
sound_notify(prompt, notif_error, NT_WNDALERT_1, NULL);
|
2013-10-11 06:23:39 +02:00
|
|
|
}
|
|
|
|
|
2015-03-28 07:56:54 +01:00
|
|
|
static void friendlist_onGroupInvite(ToxWindow *self, Tox *m, int32_t num, uint8_t type, const char *group_pub_key,
|
2014-11-12 00:30:23 +01:00
|
|
|
uint16_t length)
|
2013-11-10 03:43:56 +01:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
if (num >= Friends.max_idx)
|
2013-11-10 03:43:56 +01:00
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (Friends.list[num].chatwin != -1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (get_num_active_windows() < MAX_WINDOWS_NUM) {
|
|
|
|
Friends.list[num].chatwin = add_window(m, new_chat(m, Friends.list[num].num));
|
2015-03-28 07:56:54 +01:00
|
|
|
return;
|
2013-11-30 11:35:25 +01:00
|
|
|
}
|
2015-03-26 03:56:45 +01:00
|
|
|
|
|
|
|
char nick[TOX_MAX_NAME_LENGTH];
|
|
|
|
get_nick_truncate(m, nick, num);
|
|
|
|
|
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, RED,
|
|
|
|
"* Group chat invite from %s failed: too many windows are open.", nick);
|
|
|
|
|
|
|
|
sound_notify(prompt, notif_error, NT_WNDALERT_1, NULL);
|
2013-11-10 03:43:56 +01:00
|
|
|
}
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
/* move friendlist/blocklist cursor up and down */
|
2014-07-31 19:49:15 +02:00
|
|
|
static void select_friend(ToxWindow *self, wint_t key, int *selected, int num)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2014-07-31 19:49:15 +02:00
|
|
|
if (num <= 0)
|
2014-07-31 18:48:49 +02:00
|
|
|
return;
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
if (key == KEY_UP) {
|
2014-07-31 18:48:49 +02:00
|
|
|
if (--(*selected) < 0)
|
2014-07-31 19:49:15 +02:00
|
|
|
*selected = num - 1;
|
2013-08-16 19:11:09 +02:00
|
|
|
} else if (key == KEY_DOWN) {
|
2014-07-31 19:49:15 +02:00
|
|
|
*selected = (*selected + 1) % num;
|
2013-11-09 08:50:32 +01:00
|
|
|
}
|
2013-08-28 11:46:09 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void delete_friend(Tox *m, uint32_t f_num)
|
2013-08-28 11:46:09 +02:00
|
|
|
{
|
2015-03-28 07:56:54 +01:00
|
|
|
TOX_ERR_FRIEND_DELETE err;
|
|
|
|
if (tox_friend_delete(m, f_num, &err) != true) {
|
|
|
|
fprintf(stderr, "tox_friend_delete failed with error %d\n", err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
--Friends.num_friends;
|
|
|
|
|
|
|
|
if (Friends.list[f_num].connection_status != TOX_CONNECTION_NONE)
|
|
|
|
--Friends.num_online;
|
|
|
|
|
|
|
|
/* close friend's chatwindow if it's currently open */
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.list[f_num].chatwin >= 0) {
|
|
|
|
ToxWindow *toxwin = get_window_ptr(Friends.list[f_num].chatwin);
|
2014-08-01 03:59:53 +02:00
|
|
|
|
|
|
|
if (toxwin != NULL) {
|
2014-08-05 23:38:33 +02:00
|
|
|
kill_chat_window(toxwin, m);
|
2014-08-01 03:59:53 +02:00
|
|
|
set_active_window(1); /* keep friendlist focused */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-28 04:50:20 +02:00
|
|
|
if (Friends.list[f_num].group_invite.key != NULL)
|
|
|
|
free(Friends.list[f_num].group_invite.key);
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
memset(&Friends.list[f_num], 0, sizeof(ToxicFriend));
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2013-08-28 11:46:09 +02:00
|
|
|
int i;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
for (i = Friends.max_idx; i > 0; --i) {
|
|
|
|
if (Friends.list[i - 1].active)
|
2013-08-28 11:46:09 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.max_idx = i;
|
|
|
|
realloc_friends(i);
|
2013-09-05 07:34:23 +02:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
/* make sure num_selected stays within Friends.num_friends range */
|
|
|
|
if (Friends.num_friends && Friends.num_selected == Friends.num_friends)
|
|
|
|
--Friends.num_selected;
|
2013-11-18 04:28:22 +01:00
|
|
|
|
2013-09-05 07:34:23 +02:00
|
|
|
store_data(m, DATA_FILE);
|
2013-08-28 11:46:09 +02:00
|
|
|
}
|
|
|
|
|
2014-03-09 05:57:21 +01:00
|
|
|
/* activates delete friend popup */
|
2015-03-26 03:56:45 +01:00
|
|
|
static void del_friend_activate(ToxWindow *self, Tox *m, uint32_t f_num)
|
2014-03-09 05:57:21 +01:00
|
|
|
{
|
2015-03-26 03:56:45 +01:00
|
|
|
PendingDelete.popup = newwin(3, 22 + TOXIC_MAX_NAME_LENGTH, 8, 8);
|
|
|
|
PendingDelete.active = true;
|
|
|
|
PendingDelete.num = f_num;
|
2014-03-09 05:57:21 +01:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
static void delete_blocked_friend(uint32_t bnum);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-03-09 05:57:21 +01:00
|
|
|
/* deactivates delete friend popup and deletes friend if instructed */
|
|
|
|
static void del_friend_deactivate(ToxWindow *self, Tox *m, wint_t key)
|
|
|
|
{
|
2014-07-31 18:48:49 +02:00
|
|
|
if (key == 'y') {
|
|
|
|
if (blocklist_view == 0) {
|
2015-03-26 03:56:45 +01:00
|
|
|
delete_friend(m, PendingDelete.num);
|
2014-07-31 18:48:49 +02:00
|
|
|
sort_friendlist_index();
|
|
|
|
} else {
|
2015-03-26 03:56:45 +01:00
|
|
|
delete_blocked_friend(PendingDelete.num);
|
2014-07-31 18:48:49 +02:00
|
|
|
sort_blocklist_index();
|
|
|
|
}
|
|
|
|
}
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
delwin(PendingDelete.popup);
|
|
|
|
memset(&PendingDelete, 0, sizeof(PendingDelete));
|
2014-03-09 05:57:21 +01:00
|
|
|
clear();
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
2014-07-31 19:49:15 +02:00
|
|
|
static void draw_del_popup(void)
|
2014-03-09 05:57:21 +01:00
|
|
|
{
|
2015-03-26 03:56:45 +01:00
|
|
|
if (!PendingDelete.active)
|
2014-03-09 05:57:21 +01:00
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
wattron(PendingDelete.popup, A_BOLD);
|
|
|
|
box(PendingDelete.popup, ACS_VLINE, ACS_HLINE);
|
|
|
|
wattroff(PendingDelete.popup, A_BOLD);
|
2014-03-09 07:02:54 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
wmove(PendingDelete.popup, 1, 1);
|
|
|
|
wprintw(PendingDelete.popup, "Delete contact ");
|
|
|
|
wattron(PendingDelete.popup, A_BOLD);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
if (blocklist_view == 0)
|
2015-03-26 03:56:45 +01:00
|
|
|
wprintw(PendingDelete.popup, "%s", Friends.list[PendingDelete.num].name);
|
2014-07-31 18:48:49 +02:00
|
|
|
else
|
2015-03-26 03:56:45 +01:00
|
|
|
wprintw(PendingDelete.popup, "%s", Blocked.list[PendingDelete.num].name);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
wattroff(PendingDelete.popup, A_BOLD);
|
|
|
|
wprintw(PendingDelete.popup, "? y/n");
|
2014-03-09 07:02:54 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
wrefresh(PendingDelete.popup);
|
2014-03-09 05:57:21 +01:00
|
|
|
}
|
|
|
|
|
2014-07-31 19:49:15 +02:00
|
|
|
/* deletes contact from blocked list */
|
2015-03-26 03:56:45 +01:00
|
|
|
static void delete_blocked_friend(uint32_t bnum)
|
2014-07-31 19:49:15 +02:00
|
|
|
{
|
2014-08-08 01:24:56 +02:00
|
|
|
memset(&Blocked.list[bnum], 0, sizeof(BlockedFriend));
|
2014-07-31 19:49:15 +02:00
|
|
|
|
|
|
|
int i;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
for (i = Blocked.max_idx; i > 0; --i) {
|
|
|
|
if (Blocked.list[i - 1].active)
|
2014-07-31 19:49:15 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
--Blocked.num_blocked;
|
|
|
|
Blocked.max_idx = i;
|
2014-08-07 19:05:42 +02:00
|
|
|
realloc_blocklist(i);
|
2014-07-31 19:49:15 +02:00
|
|
|
save_blocklist(BLOCK_FILE);
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (Blocked.num_blocked && Blocked.num_selected == Blocked.num_blocked)
|
|
|
|
--Blocked.num_selected;
|
2014-07-31 19:49:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* deletes contact from friendlist and puts in blocklist */
|
2015-03-26 03:56:45 +01:00
|
|
|
void block_friend(Tox *m, uint32_t fnum)
|
2014-07-31 18:48:49 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.num_friends <= 0)
|
2014-07-31 18:48:49 +02:00
|
|
|
return;
|
|
|
|
|
2015-01-01 18:50:51 +01:00
|
|
|
realloc_blocklist(Blocked.max_idx + 1);
|
2014-08-08 01:24:56 +02:00
|
|
|
memset(&Blocked.list[Blocked.max_idx], 0, sizeof(BlockedFriend));
|
2014-08-07 19:05:42 +02:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
int i;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
for (i = 0; i <= Blocked.max_idx; ++i) {
|
|
|
|
if (Blocked.list[i].active)
|
2014-07-31 18:48:49 +02:00
|
|
|
continue;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
Blocked.list[i].active = true;
|
|
|
|
Blocked.list[i].num = i;
|
|
|
|
Blocked.list[i].namelength = Friends.list[fnum].namelength;
|
|
|
|
Blocked.list[i].last_on = Friends.list[fnum].last_online.last_on;
|
2015-02-01 21:09:48 +01:00
|
|
|
memcpy(Blocked.list[i].pub_key, Friends.list[fnum].pub_key, TOX_PUBLIC_KEY_SIZE);
|
2015-03-26 03:56:45 +01:00
|
|
|
memcpy(Blocked.list[i].name, Friends.list[fnum].name, Friends.list[fnum].namelength + 1);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
++Blocked.num_blocked;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (i == Blocked.max_idx)
|
|
|
|
++Blocked.max_idx;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
delete_friend(m, fnum);
|
|
|
|
save_blocklist(BLOCK_FILE);
|
|
|
|
sort_blocklist_index();
|
|
|
|
sort_friendlist_index();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* removes friend from blocklist, puts back in friendlist */
|
2015-03-26 03:56:45 +01:00
|
|
|
static void unblock_friend(Tox *m, uint32_t bnum)
|
2014-07-31 18:48:49 +02:00
|
|
|
{
|
2014-08-08 01:24:56 +02:00
|
|
|
if (Blocked.num_blocked <= 0)
|
2014-07-31 18:48:49 +02:00
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
TOX_ERR_FRIEND_ADD err;
|
|
|
|
uint32_t friendnum = tox_friend_add_norequest(m, (uint8_t *) Blocked.list[bnum].pub_key, &err);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (err != TOX_ERR_FRIEND_ADD_OK) {
|
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, 0, "Failed to unblock friend (error %d)\n", err);
|
2014-07-31 18:48:49 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
friendlist_add_blocked(m, friendnum, bnum);
|
2014-07-31 19:49:15 +02:00
|
|
|
delete_blocked_friend(bnum);
|
2014-07-31 18:48:49 +02:00
|
|
|
sort_blocklist_index();
|
|
|
|
sort_friendlist_index();
|
|
|
|
}
|
|
|
|
|
2014-03-30 22:40:13 +02:00
|
|
|
static void friendlist_onKey(ToxWindow *self, Tox *m, wint_t key, bool ltr)
|
2013-08-28 11:46:09 +02:00
|
|
|
{
|
2014-07-31 19:49:15 +02:00
|
|
|
|
|
|
|
if (self->help->active) {
|
|
|
|
help_onKey(self, key);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == 'h') {
|
|
|
|
help_init_menu(self);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (!blocklist_view && !Friends.num_friends && (key != KEY_RIGHT && key != KEY_LEFT))
|
2014-07-31 18:48:49 +02:00
|
|
|
return;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (blocklist_view && !Blocked.num_blocked && (key != KEY_RIGHT && key != KEY_LEFT))
|
2013-11-18 04:28:22 +01:00
|
|
|
return;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
int f = 0;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (blocklist_view == 1 && Blocked.num_blocked)
|
|
|
|
f = Blocked.index[Blocked.num_selected];
|
2014-08-07 19:05:42 +02:00
|
|
|
else if (Friends.num_friends)
|
|
|
|
f = Friends.index[Friends.num_selected];
|
2013-11-09 08:50:32 +01:00
|
|
|
|
2014-03-09 05:57:21 +01:00
|
|
|
/* lock screen and force decision on deletion popup */
|
2015-03-26 03:56:45 +01:00
|
|
|
if (PendingDelete.active) {
|
2014-03-09 05:57:21 +01:00
|
|
|
if (key == 'y' || key == 'n')
|
|
|
|
del_friend_deactivate(self, m, key);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
if (key == ltr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case '\n':
|
|
|
|
if (blocklist_view)
|
|
|
|
break;
|
|
|
|
|
2014-03-30 22:40:13 +02:00
|
|
|
/* Jump to chat window if already open */
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.list[f].chatwin != -1) {
|
|
|
|
set_active_window(Friends.list[f].chatwin);
|
2014-03-30 22:40:13 +02:00
|
|
|
} else if (get_num_active_windows() < MAX_WINDOWS_NUM) {
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[f].chatwin = add_window(m, new_chat(m, Friends.list[f].num));
|
|
|
|
set_active_window(Friends.list[f].chatwin);
|
2014-03-30 22:40:13 +02:00
|
|
|
} else {
|
2014-07-25 04:43:32 +02:00
|
|
|
const char *msg = "* Warning: Too many windows are open.";
|
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, RED, msg);
|
2015-03-26 03:56:45 +01:00
|
|
|
sound_notify(prompt, notif_error, NT_WNDALERT_1, NULL);
|
2014-03-30 22:40:13 +02:00
|
|
|
}
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_DC:
|
2014-03-30 22:40:13 +02:00
|
|
|
del_friend_activate(self, m, f);
|
2014-07-31 18:48:49 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
if (!blocklist_view)
|
|
|
|
block_friend(m, f);
|
|
|
|
else
|
|
|
|
unblock_friend(m, f);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_RIGHT:
|
|
|
|
case KEY_LEFT:
|
|
|
|
blocklist_view ^= 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (blocklist_view == 0)
|
2014-08-07 19:05:42 +02:00
|
|
|
select_friend(self, key, &Friends.num_selected, Friends.num_friends);
|
2014-07-31 18:48:49 +02:00
|
|
|
else
|
2014-08-08 01:24:56 +02:00
|
|
|
select_friend(self, key, &Blocked.num_selected, Blocked.num_blocked);
|
2014-07-31 18:48:49 +02:00
|
|
|
break;
|
2013-11-18 04:28:22 +01:00
|
|
|
}
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2014-04-25 05:25:38 +02:00
|
|
|
#define FLIST_OFST 6 /* Accounts for space at top and bottom */
|
2013-12-03 00:23:04 +01:00
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
static void blocklist_onDraw(ToxWindow *self, Tox *m, int y2, int x2)
|
|
|
|
{
|
|
|
|
wattron(self->window, A_BOLD);
|
|
|
|
wprintw(self->window, " Blocked: ");
|
|
|
|
wattroff(self->window, A_BOLD);
|
2014-08-08 01:24:56 +02:00
|
|
|
wprintw(self->window, "%d\n\n", Blocked.num_blocked);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
if ((y2 - FLIST_OFST) <= 0)
|
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t selected_num = 0;
|
2014-07-31 18:48:49 +02:00
|
|
|
|
|
|
|
/* Determine which portion of friendlist to draw based on current position */
|
2014-08-08 01:24:56 +02:00
|
|
|
int page = Blocked.num_selected / (y2 - FLIST_OFST);
|
2014-07-31 18:48:49 +02:00
|
|
|
int start = (y2 - FLIST_OFST) * page;
|
|
|
|
int end = y2 - FLIST_OFST + start;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
for (i = start; i < Blocked.num_blocked && i < end; ++i) {
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t f = Blocked.index[i];
|
2014-07-31 18:48:49 +02:00
|
|
|
bool f_selected = false;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (i == Blocked.num_selected) {
|
2014-07-31 18:48:49 +02:00
|
|
|
wattron(self->window, A_BOLD);
|
|
|
|
wprintw(self->window, " > ");
|
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
selected_num = f;
|
|
|
|
f_selected = true;
|
|
|
|
} else {
|
|
|
|
wprintw(self->window, " ");
|
|
|
|
}
|
|
|
|
|
|
|
|
wattron(self->window, COLOR_PAIR(RED));
|
|
|
|
wprintw(self->window, "x");
|
|
|
|
wattroff(self->window, COLOR_PAIR(RED));
|
|
|
|
|
|
|
|
if (f_selected)
|
|
|
|
wattron(self->window, COLOR_PAIR(BLUE));
|
|
|
|
|
|
|
|
wattron(self->window, A_BOLD);
|
2014-08-08 01:24:56 +02:00
|
|
|
wprintw(self->window, " %s\n", Blocked.list[f].name);
|
2014-07-31 18:48:49 +02:00
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
|
|
|
|
if (f_selected)
|
|
|
|
wattroff(self->window, COLOR_PAIR(BLUE));
|
|
|
|
}
|
|
|
|
|
|
|
|
wprintw(self->window, "\n");
|
|
|
|
self->x = x2;
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
if (Blocked.num_blocked) {
|
2014-07-31 18:48:49 +02:00
|
|
|
wmove(self->window, y2 - 1, 1);
|
|
|
|
|
|
|
|
wattron(self->window, A_BOLD);
|
2014-08-20 02:49:29 +02:00
|
|
|
wprintw(self->window, "Key: ");
|
2014-07-31 18:48:49 +02:00
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
2015-02-01 21:09:48 +01:00
|
|
|
for (i = 0; i < TOX_PUBLIC_KEY_SIZE; ++i)
|
2014-08-08 01:24:56 +02:00
|
|
|
wprintw(self->window, "%02X", Blocked.list[selected_num].pub_key[i] & 0xff);
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wrefresh(self->window);
|
2014-07-31 19:49:15 +02:00
|
|
|
draw_del_popup();
|
|
|
|
|
|
|
|
if (self->help->active)
|
|
|
|
help_onDraw(self);
|
2014-07-31 18:48:49 +02:00
|
|
|
}
|
|
|
|
|
2013-08-23 23:03:44 +02:00
|
|
|
static void friendlist_onDraw(ToxWindow *self, Tox *m)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
curs_set(0);
|
|
|
|
werase(self->window);
|
2013-12-03 00:23:04 +01:00
|
|
|
int x2, y2;
|
|
|
|
getmaxyx(self->window, y2, x2);
|
2013-11-15 23:03:24 +01:00
|
|
|
|
2014-07-04 09:24:29 +02:00
|
|
|
bool fix_statuses = x2 != self->x; /* true if window max x value has changed */
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2013-12-15 01:29:45 +01:00
|
|
|
wattron(self->window, COLOR_PAIR(CYAN));
|
2014-07-31 19:49:15 +02:00
|
|
|
wprintw(self->window, " Press the");
|
2013-12-15 01:29:45 +01:00
|
|
|
wattron(self->window, A_BOLD);
|
2014-08-14 11:02:57 +02:00
|
|
|
wprintw(self->window, " h ");
|
2013-12-15 01:29:45 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
2014-07-31 19:49:15 +02:00
|
|
|
wprintw(self->window, "key for help\n\n");
|
2013-12-15 01:29:45 +01:00
|
|
|
wattroff(self->window, COLOR_PAIR(CYAN));
|
|
|
|
|
2014-07-31 18:48:49 +02:00
|
|
|
if (blocklist_view == 1) {
|
|
|
|
blocklist_onDraw(self, m, y2, x2);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-03 04:19:09 +02:00
|
|
|
uint64_t cur_time = get_unix_time();
|
|
|
|
struct tm cur_loc_tm = *localtime((const time_t *) &cur_time);
|
2014-07-31 18:48:49 +02:00
|
|
|
|
2013-12-15 01:29:45 +01:00
|
|
|
wattron(self->window, A_BOLD);
|
2014-03-15 09:14:46 +01:00
|
|
|
wprintw(self->window, " Online: ");
|
2013-12-15 01:29:45 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
2015-03-26 03:56:45 +01:00
|
|
|
wprintw(self->window, "%d/%d \n\n", Friends.num_online, Friends.num_friends);
|
2013-08-16 19:11:09 +02:00
|
|
|
|
2014-07-04 09:24:29 +02:00
|
|
|
if ((y2 - FLIST_OFST) <= 0)
|
2013-12-03 00:34:14 +01:00
|
|
|
return;
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t selected_num = 0;
|
2014-04-25 05:25:38 +02:00
|
|
|
|
2013-12-03 00:23:04 +01:00
|
|
|
/* Determine which portion of friendlist to draw based on current position */
|
2014-08-07 19:05:42 +02:00
|
|
|
int page = Friends.num_selected / (y2 - FLIST_OFST);
|
2013-12-03 00:23:04 +01:00
|
|
|
int start = (y2 - FLIST_OFST) * page;
|
|
|
|
int end = y2 - FLIST_OFST + start;
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
for (i = start; i < Friends.num_friends && i < end; ++i) {
|
2015-03-26 03:56:45 +01:00
|
|
|
uint32_t f = Friends.index[i];
|
2013-11-18 04:28:22 +01:00
|
|
|
bool f_selected = false;
|
2013-11-09 08:50:32 +01:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.list[f].active) {
|
|
|
|
if (i == Friends.num_selected) {
|
2013-11-18 01:45:53 +01:00
|
|
|
wattron(self->window, A_BOLD);
|
2013-09-02 04:11:47 +02:00
|
|
|
wprintw(self->window, " > ");
|
2013-11-18 01:45:53 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
2014-04-25 05:25:38 +02:00
|
|
|
selected_num = f;
|
2013-11-18 01:45:53 +01:00
|
|
|
f_selected = true;
|
|
|
|
} else {
|
2013-09-02 04:11:47 +02:00
|
|
|
wprintw(self->window, " ");
|
2013-11-18 01:45:53 +01:00
|
|
|
}
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
if (Friends.list[f].connection_status != TOX_CONNECTION_NONE) {
|
|
|
|
TOX_USER_STATUS status = Friends.list[f].status;
|
|
|
|
int colour = MAGENTA;
|
2013-09-02 04:11:47 +02:00
|
|
|
|
2013-11-12 07:50:04 +01:00
|
|
|
switch (status) {
|
2015-03-26 03:56:45 +01:00
|
|
|
case TOX_USER_STATUS_NONE:
|
2014-04-19 23:58:13 +02:00
|
|
|
colour = GREEN;
|
|
|
|
break;
|
2015-03-26 03:56:45 +01:00
|
|
|
case TOX_USER_STATUS_AWAY:
|
2014-04-19 23:58:13 +02:00
|
|
|
colour = YELLOW;
|
|
|
|
break;
|
2015-03-26 03:56:45 +01:00
|
|
|
case TOX_USER_STATUS_BUSY:
|
2014-04-19 23:58:13 +02:00
|
|
|
colour = RED;
|
|
|
|
break;
|
2013-09-02 04:11:47 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 07:34:23 +02:00
|
|
|
wattron(self->window, COLOR_PAIR(colour) | A_BOLD);
|
2014-07-27 01:16:07 +02:00
|
|
|
wprintw(self->window, "%s ", ONLINE_CHAR);
|
2013-09-05 07:34:23 +02:00
|
|
|
wattroff(self->window, COLOR_PAIR(colour) | A_BOLD);
|
2013-11-18 01:45:53 +01:00
|
|
|
|
|
|
|
if (f_selected)
|
2014-03-15 09:14:46 +01:00
|
|
|
wattron(self->window, COLOR_PAIR(BLUE));
|
2013-11-18 01:45:53 +01:00
|
|
|
|
2014-03-15 09:14:46 +01:00
|
|
|
wattron(self->window, A_BOLD);
|
2014-08-07 19:05:42 +02:00
|
|
|
wprintw(self->window, "%s", Friends.list[f].name);
|
2014-03-15 09:14:46 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
2013-11-18 01:45:53 +01:00
|
|
|
|
|
|
|
if (f_selected)
|
2014-03-15 09:14:46 +01:00
|
|
|
wattroff(self->window, COLOR_PAIR(BLUE));
|
2013-09-10 10:04:13 +02:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
/* Reset Friends.list[f].statusmsg on window resize */
|
2013-11-15 23:03:24 +01:00
|
|
|
if (fix_statuses) {
|
2015-03-26 03:56:45 +01:00
|
|
|
char statusmsg[TOX_MAX_STATUS_MESSAGE_LENGTH];
|
2014-03-14 04:30:44 +01:00
|
|
|
|
2014-03-13 11:06:53 +01:00
|
|
|
pthread_mutex_lock(&Winthread.lock);
|
2015-03-28 07:56:54 +01:00
|
|
|
tox_friend_get_status_message(m, Friends.list[f].num, (uint8_t *) statusmsg, NULL);
|
|
|
|
size_t s_len = tox_friend_get_status_message_size(m, Friends.list[f].num, NULL);
|
2015-04-04 09:26:38 +02:00
|
|
|
statusmsg[s_len] = '\0';
|
2014-03-13 11:06:53 +01:00
|
|
|
pthread_mutex_unlock(&Winthread.lock);
|
2014-03-14 04:30:44 +01:00
|
|
|
|
2014-10-07 22:18:06 +02:00
|
|
|
filter_str(statusmsg, s_len);
|
2014-08-07 19:05:42 +02:00
|
|
|
snprintf(Friends.list[f].statusmsg, sizeof(Friends.list[f].statusmsg), "%s", statusmsg);
|
|
|
|
Friends.list[f].statusmsg_len = strlen(Friends.list[f].statusmsg);
|
2013-09-13 08:02:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Truncate note if it doesn't fit on one line */
|
2015-03-26 03:56:45 +01:00
|
|
|
size_t maxlen = x2 - getcurx(self->window) - 2;
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.list[f].statusmsg_len > maxlen) {
|
|
|
|
Friends.list[f].statusmsg[maxlen - 3] = '\0';
|
|
|
|
strcat(Friends.list[f].statusmsg, "...");
|
|
|
|
Friends.list[f].statusmsg[maxlen] = '\0';
|
|
|
|
Friends.list[f].statusmsg_len = maxlen;
|
2013-09-10 10:04:13 +02:00
|
|
|
}
|
|
|
|
|
2015-04-04 09:26:38 +02:00
|
|
|
if (Friends.list[f].statusmsg_len > 0)
|
2014-08-07 19:05:42 +02:00
|
|
|
wprintw(self->window, " %s", Friends.list[f].statusmsg);
|
2014-03-14 22:48:52 +01:00
|
|
|
|
|
|
|
wprintw(self->window, "\n");
|
2013-09-02 04:11:47 +02:00
|
|
|
} else {
|
2014-07-27 01:16:07 +02:00
|
|
|
wprintw(self->window, "%s ", OFFLINE_CHAR);
|
2013-11-18 01:45:53 +01:00
|
|
|
|
|
|
|
if (f_selected)
|
2014-03-15 09:14:46 +01:00
|
|
|
wattron(self->window, COLOR_PAIR(BLUE));
|
2013-11-18 01:45:53 +01:00
|
|
|
|
2014-03-15 09:14:46 +01:00
|
|
|
wattron(self->window, A_BOLD);
|
2014-08-07 19:05:42 +02:00
|
|
|
wprintw(self->window, "%s", Friends.list[f].name);
|
2014-03-15 09:14:46 +01:00
|
|
|
wattroff(self->window, A_BOLD);
|
2013-11-18 01:45:53 +01:00
|
|
|
|
|
|
|
if (f_selected)
|
2014-05-01 10:00:19 +02:00
|
|
|
wattroff(self->window, COLOR_PAIR(BLUE));
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2015-04-03 04:19:09 +02:00
|
|
|
uint64_t last_seen = Friends.list[f].last_online.last_on;
|
|
|
|
|
|
|
|
if (last_seen != 0) {
|
|
|
|
int day_dist = (
|
|
|
|
cur_loc_tm.tm_yday - Friends.list[f].last_online.tm.tm_yday
|
|
|
|
+ ((cur_loc_tm.tm_year - Friends.list[f].last_online.tm.tm_year) * 365)
|
|
|
|
);
|
|
|
|
const char *hourmin = Friends.list[f].last_online.hour_min_str;
|
|
|
|
|
|
|
|
switch (day_dist) {
|
|
|
|
case 0:
|
|
|
|
wprintw(self->window, " Last seen: Today %s\n", hourmin);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
wprintw(self->window, " Last seen: Yesterday %s\n", hourmin);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
wprintw(self->window, " Last seen: %d days ago\n", day_dist);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wprintw(self->window, " Last seen: Never\n");
|
|
|
|
}
|
2013-09-02 04:11:47 +02:00
|
|
|
}
|
2013-11-10 03:43:56 +01:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
2013-09-05 03:25:59 +02:00
|
|
|
|
2013-12-03 00:23:04 +01:00
|
|
|
self->x = x2;
|
2014-04-25 05:25:38 +02:00
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.num_friends) {
|
2014-04-25 05:25:38 +02:00
|
|
|
wmove(self->window, y2 - 1, 1);
|
|
|
|
|
|
|
|
wattron(self->window, A_BOLD);
|
2014-08-20 05:40:49 +02:00
|
|
|
wprintw(self->window, "Key: ");
|
2014-04-25 05:25:38 +02:00
|
|
|
wattroff(self->window, A_BOLD);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
2015-02-01 21:09:48 +01:00
|
|
|
for (i = 0; i < TOX_PUBLIC_KEY_SIZE; ++i)
|
2014-08-07 19:05:42 +02:00
|
|
|
wprintw(self->window, "%02X", Friends.list[selected_num].pub_key[i] & 0xff);
|
2014-04-25 05:25:38 +02:00
|
|
|
}
|
2014-07-05 20:46:16 +02:00
|
|
|
|
|
|
|
wrefresh(self->window);
|
2014-07-31 19:49:15 +02:00
|
|
|
draw_del_popup();
|
|
|
|
|
|
|
|
if (self->help->active)
|
|
|
|
help_onDraw(self);
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
void disable_chatwin(uint32_t f_num)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[f_num].chatwin = -1;
|
2013-08-05 07:57:29 +02:00
|
|
|
}
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-05-16 20:00:01 +02:00
|
|
|
static void friendlist_onAv(ToxWindow *self, ToxAv *av, int call_index)
|
2014-03-07 03:14:04 +01:00
|
|
|
{
|
2014-05-16 20:00:01 +02:00
|
|
|
int id = toxav_get_peer_id(av, call_index, 0);
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2014-11-30 15:27:45 +01:00
|
|
|
if ( id != av_ErrorUnknown && id >= Friends.max_idx)
|
2014-03-07 03:14:04 +01:00
|
|
|
return;
|
2014-04-19 23:58:13 +02:00
|
|
|
|
|
|
|
Tox *m = toxav_get_tox(av);
|
|
|
|
|
2014-08-07 19:05:42 +02:00
|
|
|
if (Friends.list[id].chatwin == -1) {
|
2014-03-11 01:04:53 +01:00
|
|
|
if (get_num_active_windows() < MAX_WINDOWS_NUM) {
|
2014-07-21 01:12:13 +02:00
|
|
|
if (toxav_get_call_state(av, call_index) == av_CallStarting) { /* Only open windows when call is incoming */
|
2014-08-07 19:05:42 +02:00
|
|
|
Friends.list[id].chatwin = add_window(m, new_chat(m, Friends.list[id].num));
|
2015-01-01 18:50:51 +01:00
|
|
|
}
|
2014-03-07 03:14:04 +01:00
|
|
|
} else {
|
2014-07-07 04:15:35 +02:00
|
|
|
char nick[TOX_MAX_NAME_LENGTH];
|
2014-08-07 19:05:42 +02:00
|
|
|
get_nick_truncate(m, nick, Friends.list[id].num);
|
2014-08-02 21:35:57 +02:00
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, 0, "Audio action from: %s!", nick);
|
2014-03-25 13:21:50 +01:00
|
|
|
|
2014-07-25 04:43:32 +02:00
|
|
|
const char *errmsg = "* Warning: Too many windows are open.";
|
|
|
|
line_info_add(prompt, NULL, NULL, NULL, SYS_MSG, 0, RED, errmsg);
|
2015-01-01 18:50:51 +01:00
|
|
|
|
2015-03-26 03:56:45 +01:00
|
|
|
sound_notify(prompt, notif_error, NT_WNDALERT_1, NULL);
|
2014-03-07 03:14:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* AUDIO */
|
2014-03-07 03:14:04 +01:00
|
|
|
|
2013-11-03 01:32:35 +01:00
|
|
|
ToxWindow new_friendlist(void)
|
2013-08-16 19:11:09 +02:00
|
|
|
{
|
|
|
|
ToxWindow ret;
|
|
|
|
memset(&ret, 0, sizeof(ret));
|
|
|
|
|
2013-11-30 11:35:25 +01:00
|
|
|
ret.active = true;
|
2014-06-29 00:40:22 +02:00
|
|
|
ret.is_friendlist = true;
|
2013-11-30 11:35:25 +01:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
ret.onKey = &friendlist_onKey;
|
|
|
|
ret.onDraw = &friendlist_onDraw;
|
2013-11-15 20:59:49 +01:00
|
|
|
ret.onFriendAdded = &friendlist_onFriendAdded;
|
2013-08-16 19:11:09 +02:00
|
|
|
ret.onMessage = &friendlist_onMessage;
|
2013-09-05 03:25:59 +02:00
|
|
|
ret.onConnectionChange = &friendlist_onConnectionChange;
|
2013-08-16 19:11:09 +02:00
|
|
|
ret.onNickChange = &friendlist_onNickChange;
|
2013-09-05 03:25:59 +02:00
|
|
|
ret.onStatusChange = &friendlist_onStatusChange;
|
2013-09-03 05:27:34 +02:00
|
|
|
ret.onStatusMessageChange = &friendlist_onStatusMessageChange;
|
2015-03-28 07:56:54 +01:00
|
|
|
ret.onFileRecv = &friendlist_onFileRecv;
|
2013-11-10 03:43:56 +01:00
|
|
|
ret.onGroupInvite = &friendlist_onGroupInvite;
|
2014-04-19 23:58:13 +02:00
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifdef AUDIO
|
2014-03-07 03:14:04 +01:00
|
|
|
ret.onInvite = &friendlist_onAv;
|
|
|
|
ret.onRinging = &friendlist_onAv;
|
|
|
|
ret.onStarting = &friendlist_onAv;
|
|
|
|
ret.onEnding = &friendlist_onAv;
|
|
|
|
ret.onError = &friendlist_onAv;
|
|
|
|
ret.onStart = &friendlist_onAv;
|
|
|
|
ret.onCancel = &friendlist_onAv;
|
|
|
|
ret.onReject = &friendlist_onAv;
|
|
|
|
ret.onEnd = &friendlist_onAv;
|
2014-03-14 23:08:08 +01:00
|
|
|
ret.onRequestTimeout = &friendlist_onAv;
|
|
|
|
ret.onPeerTimeout = &friendlist_onAv;
|
2015-01-01 18:50:51 +01:00
|
|
|
|
2014-06-21 01:58:00 +02:00
|
|
|
ret.call_idx = -1;
|
|
|
|
ret.device_selection[0] = ret.device_selection[1] = -1;
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* AUDIO */
|
2015-01-01 18:50:51 +01:00
|
|
|
|
2014-08-02 00:37:02 +02:00
|
|
|
ret.active_box = -1;
|
2014-07-31 19:49:15 +02:00
|
|
|
|
|
|
|
Help *help = calloc(1, sizeof(Help));
|
|
|
|
|
|
|
|
if (help == NULL)
|
|
|
|
exit_toxic_err("failed in new_friendlist", FATALERR_MEMORY);
|
2015-01-01 18:50:51 +01:00
|
|
|
|
2014-07-31 19:49:15 +02:00
|
|
|
ret.help = help;
|
2014-07-13 21:34:09 +02:00
|
|
|
strcpy(ret.name, "contacts");
|
2013-08-16 19:11:09 +02:00
|
|
|
return ret;
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|