2014-09-28 03:29:34 +02:00
|
|
|
/*
|
2017-02-04 01:00:25 +01:00
|
|
|
* Copyright (c) 2017 Håvard Pettersson <mail@haavard.me>
|
2014-09-28 03:29:34 +02:00
|
|
|
*
|
|
|
|
* This file is part of Tox-WeeChat.
|
|
|
|
*
|
|
|
|
* Tox-WeeChat 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.
|
|
|
|
*
|
|
|
|
* Tox-WeeChat 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 Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-02-10 07:04:39 +01:00
|
|
|
#include <inttypes.h>
|
2017-02-11 04:08:26 +01:00
|
|
|
#include <string.h>
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
#include <tox/tox.h>
|
2017-02-11 04:08:26 +01:00
|
|
|
#include <weechat/weechat-plugin.h>
|
2014-09-28 03:29:34 +02:00
|
|
|
|
2016-12-03 12:33:05 +01:00
|
|
|
#ifdef TOXAV_ENABLED
|
2017-02-11 04:08:26 +01:00
|
|
|
#include <tox/toxav.h>
|
|
|
|
#endif /* TOXAV_ENABLED */
|
2016-12-03 12:33:05 +01:00
|
|
|
|
2014-09-28 03:29:34 +02:00
|
|
|
#include "twc-chat.h"
|
|
|
|
#include "twc-friend-request.h"
|
2014-10-04 23:13:49 +02:00
|
|
|
#include "twc-group-invite.h"
|
2014-09-28 03:29:34 +02:00
|
|
|
#include "twc-message-queue.h"
|
2017-02-11 04:08:26 +01:00
|
|
|
#include "twc-profile.h"
|
2014-09-28 03:29:34 +02:00
|
|
|
#include "twc-utils.h"
|
2017-02-11 04:08:26 +01:00
|
|
|
#include "twc.h"
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
#include "twc-tox-callbacks.h"
|
|
|
|
|
|
|
|
int
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_do_timer_cb(const void *pointer, void *data, int remaining_calls)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
2016-05-10 10:51:08 +02:00
|
|
|
/* TODO: don't strip the const */
|
|
|
|
struct t_twc_profile *profile = (void *)pointer;
|
2014-09-28 03:29:34 +02:00
|
|
|
|
2016-12-22 13:35:08 +01:00
|
|
|
tox_iterate(profile->tox, profile);
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_hook *hook =
|
|
|
|
weechat_hook_timer(tox_iteration_interval(profile->tox), 0, 1,
|
|
|
|
twc_do_timer_cb, profile, NULL);
|
2014-09-28 03:29:34 +02:00
|
|
|
profile->tox_do_timer = hook;
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
/* check connection status */
|
2015-04-10 00:08:40 +02:00
|
|
|
TOX_CONNECTION connection = tox_self_get_connection_status(profile->tox);
|
2017-02-11 04:08:26 +01:00
|
|
|
bool is_connected =
|
|
|
|
connection == TOX_CONNECTION_TCP || connection == TOX_CONNECTION_UDP;
|
2015-04-10 00:08:40 +02:00
|
|
|
twc_profile_set_online_status(profile, is_connected);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
return WEECHAT_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-10 00:08:40 +02:00
|
|
|
twc_friend_message_callback(Tox *tox, uint32_t friend_number,
|
2017-02-11 04:08:26 +01:00
|
|
|
TOX_MESSAGE_TYPE type, const uint8_t *message,
|
|
|
|
size_t length, void *data)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_friend(profile, friend_number, true);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
char *name = twc_get_name_nt(profile->tox, friend_number);
|
|
|
|
char *message_nt = twc_null_terminate(message, length);
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_chat_print_message(chat, "notify_private",
|
|
|
|
weechat_color("chat_nick_other"), name, message_nt,
|
|
|
|
type);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
free(name);
|
|
|
|
free(message_nt);
|
|
|
|
}
|
|
|
|
|
2014-10-04 23:13:49 +02:00
|
|
|
void
|
2015-04-10 00:08:40 +02:00
|
|
|
twc_connection_status_callback(Tox *tox, uint32_t friend_number,
|
|
|
|
TOX_CONNECTION status, void *data)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
|
|
|
char *name = twc_get_name_nt(profile->tox, friend_number);
|
2016-12-05 01:19:33 +01:00
|
|
|
struct t_gui_nick *nick = NULL;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_friend(profile, friend_number, false);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
/* TODO: print in friend's buffer if it exists */
|
2014-09-28 03:29:34 +02:00
|
|
|
if (status == 0)
|
|
|
|
{
|
2016-12-05 01:19:33 +01:00
|
|
|
nick = weechat_nicklist_search_nick(profile->buffer,
|
|
|
|
profile->nicklist_group, name);
|
|
|
|
if (nick)
|
|
|
|
weechat_nicklist_remove_nick(profile->buffer, nick);
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(profile->buffer, "%s%s just went offline.",
|
|
|
|
weechat_prefix("network"), name);
|
2016-12-04 23:50:53 +01:00
|
|
|
if (chat)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(chat->buffer, "%s%s just went offline.",
|
|
|
|
weechat_prefix("network"), name);
|
2016-12-04 23:50:53 +01:00
|
|
|
}
|
2014-09-28 03:29:34 +02:00
|
|
|
}
|
|
|
|
else if (status == 1)
|
|
|
|
{
|
2016-12-05 01:19:33 +01:00
|
|
|
weechat_nicklist_add_nick(profile->buffer, profile->nicklist_group,
|
|
|
|
name, NULL, NULL, NULL, 1);
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(profile->buffer, "%s%s just came online.",
|
|
|
|
weechat_prefix("network"), name);
|
2016-12-04 23:50:53 +01:00
|
|
|
if (chat)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(chat->buffer, "%s%s just came online.",
|
|
|
|
weechat_prefix("network"), name);
|
2016-12-04 23:50:53 +01:00
|
|
|
}
|
2014-09-28 03:29:34 +02:00
|
|
|
twc_message_queue_flush_friend(profile, friend_number);
|
|
|
|
}
|
|
|
|
free(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_name_change_callback(Tox *tox, uint32_t friend_number, const uint8_t *name,
|
|
|
|
size_t length, void *data)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
2016-12-05 01:19:33 +01:00
|
|
|
struct t_gui_nick *nick = NULL;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_friend(profile, friend_number, false);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
char *old_name = twc_get_name_nt(profile->tox, friend_number);
|
|
|
|
char *new_name = twc_null_terminate(name, length);
|
|
|
|
|
|
|
|
if (strcmp(old_name, new_name) != 0)
|
|
|
|
{
|
|
|
|
if (chat)
|
|
|
|
{
|
|
|
|
twc_chat_queue_refresh(chat);
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(chat->buffer, "%s%s is now known as %s",
|
|
|
|
weechat_prefix("network"), old_name, new_name);
|
2014-09-28 03:29:34 +02:00
|
|
|
}
|
|
|
|
|
2016-12-05 01:19:33 +01:00
|
|
|
nick = weechat_nicklist_search_nick(profile->buffer,
|
|
|
|
profile->nicklist_group, old_name);
|
|
|
|
if (nick)
|
|
|
|
weechat_nicklist_remove_nick(profile->buffer, nick);
|
|
|
|
|
|
|
|
weechat_nicklist_add_nick(profile->buffer, profile->nicklist_group,
|
|
|
|
new_name, NULL, NULL, NULL, 1);
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(profile->buffer, "%s%s is now known as %s",
|
|
|
|
weechat_prefix("network"), old_name, new_name);
|
2014-09-28 03:29:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
free(old_name);
|
|
|
|
free(new_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-10 00:08:40 +02:00
|
|
|
twc_user_status_callback(Tox *tox, uint32_t friend_number,
|
|
|
|
TOX_USER_STATUS status, void *data)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_friend(profile, friend_number, false);
|
2014-09-28 03:29:34 +02:00
|
|
|
if (chat)
|
|
|
|
twc_chat_queue_refresh(chat);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-04-10 00:08:40 +02:00
|
|
|
twc_status_message_callback(Tox *tox, uint32_t friend_number,
|
2017-02-11 04:08:26 +01:00
|
|
|
const uint8_t *message, size_t length, void *data)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_friend(profile, friend_number, false);
|
2014-09-28 03:29:34 +02:00
|
|
|
if (chat)
|
|
|
|
twc_chat_queue_refresh(chat);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-11-18 16:12:45 +01:00
|
|
|
twc_friend_request_callback(Tox *tox, const uint8_t *public_key,
|
2017-02-11 04:08:26 +01:00
|
|
|
const uint8_t *message, size_t length, void *data)
|
2014-09-28 03:29:34 +02:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
|
|
|
|
|
|
|
char *message_nt = twc_null_terminate(message, length);
|
|
|
|
int rc = twc_friend_request_add(profile, public_key, message_nt);
|
|
|
|
|
|
|
|
if (rc == -1)
|
|
|
|
{
|
2016-12-05 02:59:18 +01:00
|
|
|
weechat_printf_date_tags(profile->buffer, 0, "notify_highlight",
|
2017-02-11 04:08:26 +01:00
|
|
|
"%sReceived a friend request, but your friend "
|
|
|
|
"request list is full!",
|
|
|
|
weechat_prefix("warning"));
|
2014-09-28 03:29:34 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-09 19:01:33 +02:00
|
|
|
char hex_address[TOX_PUBLIC_KEY_SIZE * 2 + 1];
|
|
|
|
twc_bin2hex(public_key, TOX_PUBLIC_KEY_SIZE, hex_address);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
profile->buffer, 0, "notify_highlight",
|
|
|
|
"%sReceived a friend request from %s with message \"%s\"; "
|
|
|
|
"accept it with \"/friend accept %d\"",
|
|
|
|
weechat_prefix("network"), hex_address, message_nt, rc);
|
2014-09-28 03:29:34 +02:00
|
|
|
|
|
|
|
if (rc == -2)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
profile->buffer, 0, "notify_highlight",
|
|
|
|
"%sFailed to save friend request, try manually "
|
|
|
|
"accepting with /friend add",
|
|
|
|
weechat_prefix("error"));
|
2014-09-28 03:29:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(message_nt);
|
|
|
|
}
|
|
|
|
|
2014-10-04 23:13:49 +02:00
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_group_invite_callback(Tox *tox, uint32_t friend_number,
|
|
|
|
TOX_CONFERENCE_TYPE type, const uint8_t *invite_data,
|
|
|
|
size_t length, void *data)
|
2014-10-04 23:13:49 +02:00
|
|
|
{
|
2016-12-22 13:35:08 +01:00
|
|
|
TOX_ERR_CONFERENCE_JOIN err = TOX_ERR_CONFERENCE_JOIN_OK;
|
2014-10-04 23:13:49 +02:00
|
|
|
struct t_twc_profile *profile = data;
|
2014-11-18 13:56:48 +01:00
|
|
|
char *friend_name = twc_get_name_nt(profile->tox, friend_number);
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *friend_chat =
|
|
|
|
twc_chat_search_friend(profile, friend_number, false);
|
2016-12-03 12:33:05 +01:00
|
|
|
int64_t rc;
|
2016-12-05 02:59:18 +01:00
|
|
|
char *tags;
|
2014-11-19 04:49:39 +01:00
|
|
|
|
|
|
|
char *type_str;
|
|
|
|
switch (type)
|
2014-11-18 13:56:48 +01:00
|
|
|
{
|
2016-12-22 13:35:08 +01:00
|
|
|
case TOX_CONFERENCE_TYPE_TEXT:
|
2017-02-11 04:08:26 +01:00
|
|
|
type_str = "a text-only group chat";
|
|
|
|
break;
|
2016-12-22 13:35:08 +01:00
|
|
|
case TOX_CONFERENCE_TYPE_AV:
|
2017-02-11 04:08:26 +01:00
|
|
|
type_str = "an audio/vikdeo group chat";
|
|
|
|
break;
|
2014-11-19 04:49:39 +01:00
|
|
|
default:
|
2017-02-11 04:08:26 +01:00
|
|
|
type_str = "a group chat";
|
|
|
|
break;
|
2014-11-19 04:49:39 +01:00
|
|
|
}
|
2014-10-04 23:13:49 +02:00
|
|
|
|
2016-12-03 12:33:05 +01:00
|
|
|
if (TWC_PROFILE_OPTION_BOOLEAN(profile, TWC_PROFILE_OPTION_AUTOJOIN))
|
2014-11-19 04:49:39 +01:00
|
|
|
{
|
2016-12-03 12:33:05 +01:00
|
|
|
switch (type)
|
|
|
|
{
|
2016-12-22 13:35:08 +01:00
|
|
|
case TOX_CONFERENCE_TYPE_TEXT:
|
2017-02-11 04:08:26 +01:00
|
|
|
rc = tox_conference_join(tox, friend_number, invite_data,
|
|
|
|
length, &err);
|
2016-12-03 12:33:05 +01:00
|
|
|
break;
|
|
|
|
#ifdef TOXAV_ENABLED
|
2016-12-22 13:35:08 +01:00
|
|
|
case TOX_CONFERENCE_TYPE_AV:
|
2017-02-11 04:08:26 +01:00
|
|
|
rc = toxav_join_av_groupchat(tox, friend_number, invite_data,
|
|
|
|
length, NULL, NULL);
|
2016-12-03 12:33:05 +01:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-12-22 13:35:08 +01:00
|
|
|
if (rc >= 0 && err == TOX_ERR_CONFERENCE_JOIN_OK)
|
2016-12-03 12:33:05 +01:00
|
|
|
{
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "notify_private";
|
|
|
|
if (friend_chat)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
friend_chat->buffer, 0, tags,
|
|
|
|
"%sWe joined the %s%s%s's invite to %s.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"), type_str);
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "";
|
|
|
|
}
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
profile->buffer, 0, tags,
|
|
|
|
"%sWe joined the %s%s%s's invite to %s.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"), type_str);
|
2016-12-03 12:33:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "notify_highlight";
|
|
|
|
if (friend_chat)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
friend_chat->buffer, 0, tags,
|
|
|
|
"%s%s%s%s invites you to join %s, but we failed to "
|
|
|
|
"process the invite. Please try again.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"));
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "";
|
|
|
|
}
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
profile->buffer, 0, tags,
|
|
|
|
"%s%s%s%s invites you to join %s, but we failed to "
|
|
|
|
"process the invite. Please try again.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"));
|
2016-12-03 12:33:05 +01:00
|
|
|
}
|
2014-11-18 13:56:48 +01:00
|
|
|
}
|
2014-11-19 04:49:39 +01:00
|
|
|
else
|
2014-11-18 13:56:48 +01:00
|
|
|
{
|
2016-12-03 12:33:05 +01:00
|
|
|
rc = twc_group_chat_invite_add(profile, friend_number, type,
|
|
|
|
(uint8_t *)invite_data, length);
|
2014-10-04 23:13:49 +02:00
|
|
|
|
2016-12-03 12:33:05 +01:00
|
|
|
if (rc >= 0)
|
|
|
|
{
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "notify_highlight";
|
|
|
|
if (friend_chat)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
friend_chat->buffer, 0, tags,
|
|
|
|
"%s%s%s%s invites you to join %s. Type "
|
|
|
|
"\"/group join %d\" to accept.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"), type_str, rc);
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "";
|
|
|
|
}
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
profile->buffer, 0, tags,
|
|
|
|
"%s%s%s%s invites you to join %s. Type "
|
|
|
|
"\"/group join %d\" to accept.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"), type_str, rc);
|
2016-12-03 12:33:05 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "notify_highlight";
|
|
|
|
if (friend_chat)
|
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
friend_chat->buffer, 0, tags,
|
|
|
|
"%s%s%s%s invites you to join %s, but we failed to "
|
|
|
|
"process the invite with error %d. Please try again.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"), rc, err);
|
2016-12-05 02:59:18 +01:00
|
|
|
tags = "";
|
|
|
|
}
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf_date_tags(
|
|
|
|
profile->buffer, 0, tags,
|
|
|
|
"%s%s%s%s invites you to join %s, but we failed to "
|
|
|
|
"process the invite. Please try again.",
|
|
|
|
weechat_prefix("network"), weechat_color("chat_nick_other"),
|
|
|
|
friend_name, weechat_color("reset"), rc);
|
2016-12-03 12:33:05 +01:00
|
|
|
}
|
|
|
|
}
|
2014-10-04 23:13:49 +02:00
|
|
|
free(friend_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_handle_group_message(Tox *tox, int32_t group_number, int32_t peer_number,
|
|
|
|
const uint8_t *message, uint16_t length, void *data,
|
2016-12-22 13:35:08 +01:00
|
|
|
TOX_MESSAGE_TYPE message_type)
|
2014-10-04 23:13:49 +02:00
|
|
|
{
|
2016-12-22 13:35:08 +01:00
|
|
|
TOX_ERR_CONFERENCE_PEER_QUERY err = TOX_ERR_CONFERENCE_PEER_QUERY_OK;
|
|
|
|
bool rc;
|
2014-10-04 23:13:49 +02:00
|
|
|
struct t_twc_profile *profile = data;
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_group(profile, group_number, true);
|
2014-10-04 23:13:49 +02:00
|
|
|
|
2016-12-05 04:15:19 +01:00
|
|
|
char *myname = twc_get_self_name_nt(profile->tox);
|
2014-10-04 23:13:49 +02:00
|
|
|
char *name = twc_get_peer_name_nt(profile->tox, group_number, peer_number);
|
2016-12-05 00:44:28 +01:00
|
|
|
char *tags = "notify_message";
|
2014-10-04 23:13:49 +02:00
|
|
|
char *message_nt = twc_null_terminate(message, length);
|
|
|
|
|
2016-05-10 11:29:50 +02:00
|
|
|
const char *nick_color;
|
2017-02-11 04:08:26 +01:00
|
|
|
rc = tox_conference_peer_number_is_ours(tox, group_number, peer_number,
|
|
|
|
&err);
|
2016-12-22 13:35:08 +01:00
|
|
|
if (rc && (err == TOX_ERR_CONFERENCE_PEER_QUERY_OK))
|
2016-05-10 11:29:50 +02:00
|
|
|
nick_color = weechat_color("chat_nick_self");
|
|
|
|
else
|
|
|
|
nick_color = weechat_info_get("nick_color", name);
|
|
|
|
|
2016-12-05 04:15:19 +01:00
|
|
|
if (weechat_string_has_highlight(message_nt, myname))
|
2016-12-05 00:44:28 +01:00
|
|
|
tags = "notify_highlight";
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_chat_print_message(chat, tags, nick_color, name, message_nt,
|
|
|
|
message_type);
|
2014-10-04 23:13:49 +02:00
|
|
|
|
|
|
|
free(name);
|
2016-12-05 04:15:19 +01:00
|
|
|
free(myname);
|
2014-10-04 23:13:49 +02:00
|
|
|
free(message_nt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_group_message_callback(Tox *tox, uint32_t group_number,
|
|
|
|
uint32_t peer_number, TOX_MESSAGE_TYPE type,
|
|
|
|
const uint8_t *message, size_t length, void *data)
|
2014-10-04 23:13:49 +02:00
|
|
|
{
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_handle_group_message(tox, group_number, peer_number, message, length,
|
|
|
|
data, type);
|
2014-10-04 23:13:49 +02:00
|
|
|
}
|
|
|
|
|
2014-10-05 05:22:59 +02:00
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_group_namelist_change_callback(Tox *tox, uint32_t group_number,
|
|
|
|
uint32_t peer_number,
|
2016-12-22 13:35:08 +01:00
|
|
|
TOX_CONFERENCE_STATE_CHANGE change_type,
|
2014-10-05 05:22:59 +02:00
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_group(profile, group_number, true);
|
2014-10-05 05:22:59 +02:00
|
|
|
|
2014-10-18 12:02:14 +02:00
|
|
|
struct t_gui_nick *nick = NULL;
|
2017-01-03 13:41:35 +01:00
|
|
|
int i, npeers;
|
|
|
|
TOX_ERR_CONFERENCE_PEER_QUERY err = TOX_ERR_CONFERENCE_PEER_QUERY_OK;
|
|
|
|
|
|
|
|
struct t_weelist *new_nicks;
|
|
|
|
struct t_weelist_item *n;
|
2014-10-05 05:22:59 +02:00
|
|
|
|
2017-01-03 13:41:35 +01:00
|
|
|
npeers = tox_conference_peer_count(profile->tox, group_number, &err);
|
2014-10-05 05:22:59 +02:00
|
|
|
|
2017-01-03 13:41:35 +01:00
|
|
|
if (err == TOX_ERR_CONFERENCE_PEER_QUERY_OK)
|
2014-10-05 05:22:59 +02:00
|
|
|
{
|
2017-01-03 13:41:35 +01:00
|
|
|
new_nicks = weechat_list_new();
|
|
|
|
for (i = 0; i < npeers; i++)
|
2014-10-18 12:02:14 +02:00
|
|
|
{
|
2017-01-03 13:41:35 +01:00
|
|
|
char *name = twc_get_peer_name_nt(profile->tox, group_number, i);
|
|
|
|
weechat_list_add(new_nicks, name, WEECHAT_LIST_POS_SORT, NULL);
|
|
|
|
free(name);
|
2014-10-18 12:02:14 +02:00
|
|
|
}
|
2016-12-04 23:50:53 +01:00
|
|
|
}
|
2017-01-03 13:41:35 +01:00
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
/* searching for exits */
|
2017-01-03 13:41:35 +01:00
|
|
|
n = weechat_list_get(chat->nicks, 0);
|
2014-10-05 05:22:59 +02:00
|
|
|
|
2017-01-03 13:41:35 +01:00
|
|
|
while (n)
|
2016-12-04 23:50:53 +01:00
|
|
|
{
|
2017-01-03 13:41:35 +01:00
|
|
|
const char *name = weechat_list_string(n);
|
|
|
|
if (!weechat_list_search(new_nicks, name))
|
2014-11-22 22:32:32 +01:00
|
|
|
{
|
2017-01-03 13:41:35 +01:00
|
|
|
weechat_printf(chat->buffer, "%s%s just left the group chat",
|
|
|
|
weechat_prefix("quit"), name);
|
|
|
|
nick = weechat_nicklist_search_nick(chat->buffer,
|
2017-02-11 04:08:26 +01:00
|
|
|
chat->nicklist_group, name);
|
2017-01-03 13:41:35 +01:00
|
|
|
weechat_nicklist_remove_nick(chat->buffer, nick);
|
2014-11-22 22:32:32 +01:00
|
|
|
}
|
2017-01-03 13:41:35 +01:00
|
|
|
n = weechat_list_next(n);
|
2014-10-05 05:22:59 +02:00
|
|
|
}
|
2014-10-18 02:14:44 +02:00
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
/* searching for joins */
|
2017-01-03 13:41:35 +01:00
|
|
|
n = weechat_list_get(new_nicks, 0);
|
|
|
|
|
|
|
|
while (n)
|
2014-10-18 02:14:44 +02:00
|
|
|
{
|
2017-01-03 13:41:35 +01:00
|
|
|
const char *name = weechat_list_string(n);
|
|
|
|
if (!weechat_list_search(chat->nicks, name))
|
|
|
|
{
|
|
|
|
weechat_printf(chat->buffer, "%s%s just joined the group chat",
|
|
|
|
weechat_prefix("join"), name);
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_nicklist_add_nick(chat->buffer, chat->nicklist_group, name,
|
|
|
|
NULL, NULL, NULL, 1);
|
2017-01-03 13:41:35 +01:00
|
|
|
}
|
|
|
|
n = weechat_list_next(n);
|
2014-10-18 02:14:44 +02:00
|
|
|
}
|
2014-11-20 11:13:20 +01:00
|
|
|
|
2017-01-03 13:41:35 +01:00
|
|
|
weechat_list_remove_all(chat->nicks);
|
|
|
|
weechat_list_free(chat->nicks);
|
|
|
|
chat->nicks = new_nicks;
|
2014-10-05 05:22:59 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:04:57 +01:00
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_group_title_callback(Tox *tox, uint32_t group_number, uint32_t peer_number,
|
|
|
|
const uint8_t *title, size_t length, void *data)
|
2014-11-18 16:04:57 +01:00
|
|
|
{
|
|
|
|
struct t_twc_profile *profile = data;
|
2017-02-11 04:08:26 +01:00
|
|
|
struct t_twc_chat *chat =
|
|
|
|
twc_chat_search_group(profile, group_number, true);
|
2014-11-18 16:04:57 +01:00
|
|
|
twc_chat_queue_refresh(chat);
|
|
|
|
|
2016-12-22 13:35:08 +01:00
|
|
|
char *name = twc_get_peer_name_nt(profile->tox, group_number, peer_number);
|
2014-11-18 16:04:57 +01:00
|
|
|
|
2016-12-22 13:35:08 +01:00
|
|
|
char *topic = strndup((char *)title, length);
|
|
|
|
weechat_printf(chat->buffer, "%s%s has changed the topic to \"%s\"",
|
|
|
|
weechat_prefix("network"), name, topic);
|
|
|
|
free(topic);
|
2014-11-18 16:04:57 +01:00
|
|
|
}
|
|
|
|
|
2017-02-10 07:04:39 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
void
|
2017-02-11 04:08:26 +01:00
|
|
|
twc_tox_log_callback(Tox *tox, TOX_LOG_LEVEL level, const char *file,
|
|
|
|
uint32_t line, const char *func, const char *message,
|
|
|
|
void *user_data)
|
2017-02-10 07:04:39 +01:00
|
|
|
{
|
|
|
|
struct t_twc_profile *const profile = user_data;
|
|
|
|
|
|
|
|
char const *color;
|
|
|
|
switch (level)
|
|
|
|
{
|
|
|
|
case TOX_LOG_LEVEL_TRACE:
|
|
|
|
color = weechat_color("gray");
|
|
|
|
break;
|
|
|
|
case TOX_LOG_LEVEL_DEBUG:
|
|
|
|
color = weechat_color("white");
|
|
|
|
break;
|
|
|
|
case TOX_LOG_LEVEL_INFO:
|
|
|
|
color = weechat_color("lightblue");
|
|
|
|
break;
|
|
|
|
case TOX_LOG_LEVEL_WARNING:
|
|
|
|
color = weechat_color("yellow");
|
|
|
|
break;
|
|
|
|
case TOX_LOG_LEVEL_ERROR:
|
|
|
|
color = weechat_color("red");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
color = weechat_color("reset");
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:08:26 +01:00
|
|
|
weechat_printf(profile->buffer, "%stox\t%s%s:%" PRIu32 " [%s]%s %s", color,
|
|
|
|
weechat_color("reset"), file, line, func,
|
|
|
|
weechat_color("lightred"), message);
|
2017-02-10 07:04:39 +01:00
|
|
|
}
|
|
|
|
#endif /* !NDEBUG */
|