Implemented more things.

This commit is contained in:
Håvard Pettersson 2014-09-02 20:15:08 +02:00
parent b65e289d91
commit 926b6951f6
4 changed files with 242 additions and 29 deletions

View File

@ -89,7 +89,13 @@ tox_weechat_friend_chat_new(int32_t friend_number)
} }
struct t_tox_chat * struct t_tox_chat *
tox_weechat_get_friend_chat(int32_t friend_number) tox_weechat_get_first_chat()
{
return tox_weechat_chats_head;
}
struct t_tox_chat *
tox_weechat_get_existing_friend_chat(int32_t friend_number)
{ {
for (struct t_tox_chat *chat = tox_weechat_chats_head; for (struct t_tox_chat *chat = tox_weechat_chats_head;
chat; chat;
@ -99,7 +105,18 @@ tox_weechat_get_friend_chat(int32_t friend_number)
return chat; return chat;
} }
return tox_weechat_friend_chat_new(friend_number); return NULL;
}
struct t_tox_chat *
tox_weechat_get_friend_chat(int32_t friend_number)
{
struct t_tox_chat *chat = tox_weechat_get_existing_friend_chat(friend_number);
if (chat)
return chat;
else
return tox_weechat_friend_chat_new(friend_number);
} }
struct t_tox_chat * struct t_tox_chat *
@ -135,6 +152,17 @@ tox_weechat_chat_print_action(struct t_tox_chat *chat,
sender, message); sender, message);
} }
void
tox_weechat_chat_print_name_change(struct t_tox_chat *chat,
const char *old_name,
const char *new_name)
{
weechat_printf(chat->buffer,
"%s%s is now known as %s",
weechat_prefix("network"),
old_name, new_name);
}
int int
tox_weechat_buffer_input_callback(void *data, tox_weechat_buffer_input_callback(void *data,
struct t_gui_buffer *weechat_buffer, struct t_gui_buffer *weechat_buffer,

View File

@ -17,13 +17,21 @@ struct t_tox_chat
}; };
struct t_tox_chat *tox_weechat_get_friend_chat(int32_t friend_number); struct t_tox_chat *tox_weechat_get_friend_chat(int32_t friend_number);
struct t_tox_chat *tox_weechat_get_existing_friend_chat(int32_t friend_number);
struct t_tox_chat *tox_weechat_get_chat_for_buffer(struct t_gui_buffer *target_buffer); struct t_tox_chat *tox_weechat_get_chat_for_buffer(struct t_gui_buffer *target_buffer);
struct t_tox_chat *tox_weechat_get_first_chat();
void tox_weechat_chat_print_message(struct t_tox_chat *chat, void tox_weechat_chat_print_message(struct t_tox_chat *chat,
const char *sender, const char *sender,
const char *message); const char *message);
void tox_weechat_chat_print_action(struct t_tox_chat *chat, void tox_weechat_chat_print_action(struct t_tox_chat *chat,
const char *sender, const char *sender,
const char *message); const char *message);
void tox_weechat_chat_print_name_change(struct t_tox_chat *chat,
const char *old_name,
const char *new_name);
void tox_weechat_chat_refresh(struct t_tox_chat *chat);
#endif // TOX_WEECHAT_CHATS_H #endif // TOX_WEECHAT_CHATS_H

View File

@ -30,7 +30,7 @@ tox_weechat_cmd_friend(void *data, struct t_gui_buffer *buffer,
} }
weechat_printf(tox_main_buffer, weechat_printf(tox_main_buffer,
"%s[ID] Name [client ID]", "%s[#] Name [client ID]",
weechat_prefix("network")); weechat_prefix("network"));
for (size_t i = 0; i < friend_count; ++i) for (size_t i = 0; i < friend_count; ++i)
@ -54,9 +54,61 @@ tox_weechat_cmd_friend(void *data, struct t_gui_buffer *buffer,
return WEECHAT_RC_OK; return WEECHAT_RC_OK;
} }
if (argc == 3 && (weechat_strcasecmp(argv[1], "add") == 0)) if (argc >= 3 && (weechat_strcasecmp(argv[1], "add") == 0))
{ {
weechat_printf(tox_main_buffer, "TODO: friend add"); uint8_t *address = tox_weechat_hex2bin(argv[2]);
char *message;
if (argc == 3 || strlen(argv_eol[3]) == 0)
message = "Hi! Please add me on Tox!";
else
message = argv_eol[3];
int32_t result = tox_add_friend(tox,
address,
(uint8_t *)message,
strlen(message));
switch (result)
{
case TOX_FAERR_TOOLONG:
weechat_printf(tox_main_buffer,
"%sFriend request message too long! Try again.",
weechat_prefix("error"));
break;
case TOX_FAERR_ALREADYSENT:
weechat_printf(tox_main_buffer,
"%sYou have already sent a friend request to that address.",
weechat_prefix("error"));
break;
case TOX_FAERR_OWNKEY:
weechat_printf(tox_main_buffer,
"%sYou can't add yourself as a friend.",
weechat_prefix("error"));
break;
case TOX_FAERR_BADCHECKSUM:
weechat_printf(tox_main_buffer,
"%sInvalid friend address - try again.",
weechat_prefix("error"));
break;
case TOX_FAERR_NOMEM:
weechat_printf(tox_main_buffer,
"%sCould not add friend (out of memory).",
weechat_prefix("error"));
break;
case TOX_FAERR_UNKNOWN:
case TOX_FAERR_SETNEWNOSPAM:
weechat_printf(tox_main_buffer,
"%sCould not add friend (unknown error).",
weechat_prefix("error"));
break;
default:
weechat_printf(tox_main_buffer,
"Friend request sent!",
weechat_prefix("network"));
break;
}
return WEECHAT_RC_OK; return WEECHAT_RC_OK;
} }
@ -64,7 +116,7 @@ tox_weechat_cmd_friend(void *data, struct t_gui_buffer *buffer,
// /friend accept // /friend accept
if (argc == 3 && if (argc == 3 &&
(weechat_strcasecmp(argv[1], "accept") == 0 (weechat_strcasecmp(argv[1], "accept") == 0
|| weechat_strcasecmp(argv[1], "decline"))) || weechat_strcasecmp(argv[1], "decline") == 0))
{ {
int accept = weechat_strcasecmp(argv[1], "accept") == 0; int accept = weechat_strcasecmp(argv[1], "accept") == 0;
@ -158,6 +210,61 @@ tox_weechat_cmd_friend(void *data, struct t_gui_buffer *buffer,
return WEECHAT_RC_ERROR; return WEECHAT_RC_ERROR;
} }
int
tox_weechat_cmd_me(void *data, struct t_gui_buffer *buffer,
int argc, char **argv, char **argv_eol)
{
if (argc == 1)
return WEECHAT_RC_ERROR;
struct t_tox_chat *chat = tox_weechat_get_chat_for_buffer(buffer);
tox_send_action(tox,
chat->friend_number,
(uint8_t *)argv_eol[1],
strlen(argv_eol[1]));
char *name = tox_weechat_get_self_name_nt();
tox_weechat_chat_print_action(chat, name, argv_eol[1]);
free(name);
return WEECHAT_RC_OK;
}
int
tox_weechat_cmd_msg(void *data, struct t_gui_buffer *buffer,
int argc, char **argv, char **argv_eol)
{
if (argc == 1)
return WEECHAT_RC_ERROR;
char *endptr;
unsigned long friend_number = strtoul(argv[1], &endptr, 10);
if (endptr == argv[1] || !tox_friend_exists(tox, friend_number))
{
weechat_printf(tox_main_buffer,
"%sInvalid friend number.",
weechat_prefix("error"));
return WEECHAT_RC_OK;
}
struct t_tox_chat *chat = tox_weechat_get_friend_chat(friend_number);
if (argc >= 3)
{
tox_send_message(tox,
friend_number,
(uint8_t *)argv_eol[1],
strlen(argv_eol[1]));
char *name = tox_weechat_get_self_name_nt();
tox_weechat_chat_print_action(chat, name, argv_eol[1]);
free(name);
}
return WEECHAT_RC_OK;
}
int int
tox_weechat_cmd_myaddress(void *data, struct t_gui_buffer *buffer, tox_weechat_cmd_myaddress(void *data, struct t_gui_buffer *buffer,
int argc, char **argv, char **argv_eol) int argc, char **argv, char **argv_eol)
@ -177,43 +284,34 @@ tox_weechat_cmd_myaddress(void *data, struct t_gui_buffer *buffer,
return WEECHAT_RC_OK; return WEECHAT_RC_OK;
} }
int
tox_weechat_cmd_me(void *data, struct t_gui_buffer *buffer,
int argc, char **argv, char **argv_eol)
{
struct t_tox_chat *chat = tox_weechat_get_chat_for_buffer(buffer);
tox_send_message(tox,
chat->friend_number,
(uint8_t *)argv_eol[1],
strlen(argv_eol[1]));
char *name = tox_weechat_get_self_name_nt();
tox_weechat_chat_print_action(chat, name, argv_eol[1]);
free(name);
return WEECHAT_RC_OK;
}
int int
tox_weechat_cmd_name(void *data, struct t_gui_buffer *buffer, tox_weechat_cmd_name(void *data, struct t_gui_buffer *buffer,
int argc, char **argv, char **argv_eol) int argc, char **argv, char **argv_eol)
{ {
char *message = argv_eol[1]; if (argc == 1)
return WEECHAT_RC_ERROR;
int result = tox_set_name(tox, (uint8_t *)message, strlen(message)); char *name = argv_eol[1];
int result = tox_set_name(tox, (uint8_t *)name, strlen(name));
if (result == -1) if (result == -1)
{ {
weechat_printf(tox_main_buffer, weechat_printf(tox_main_buffer,
"%s%s", "%s%s",
weechat_prefix("error"), weechat_prefix("error"),
"Could not change name."); "Could not change name.");
return WEECHAT_RC_ERROR; return WEECHAT_RC_OK;
} }
weechat_bar_item_update("input_prompt"); weechat_bar_item_update("input_prompt");
for (struct t_tox_chat *chat = tox_weechat_get_first_chat();
chat;
chat = chat->next)
{
tox_weechat_chat_print_name_change(chat, "You", name);
}
return WEECHAT_RC_OK; return WEECHAT_RC_OK;
} }
@ -224,7 +322,6 @@ tox_weechat_commands_init()
"manage friends", "manage friends",
"list" "list"
" || add <address>" " || add <address>"
" || remove <name>|<address>|<id>"
" || requests" " || requests"
" || accept <number>|all" " || accept <number>|all"
" || decline <number>|all", " || decline <number>|all",
@ -241,6 +338,13 @@ tox_weechat_commands_init()
"message: message to send", "message: message to send",
NULL, tox_weechat_cmd_me, NULL); NULL, tox_weechat_cmd_me, NULL);
weechat_hook_command("msg",
"send a message to a Tox friend",
"<id> [<message>]",
" id: friend number of the person to message\n"
"message: message to send",
NULL, tox_weechat_cmd_msg, NULL);
weechat_hook_command("myaddress", weechat_hook_command("myaddress",
"get your Tox address to give to friends", "get your Tox address to give to friends",
"", "", "", "",

View File

@ -118,6 +118,74 @@ tox_weechat_friend_action_callback(Tox *tox,
free(message_nt); free(message_nt);
} }
void
tox_weechat_connection_status_callback(Tox *tox,
int32_t friend_number,
uint8_t status,
void *data)
{
if (status == 1)
{
char *name = tox_weechat_get_name_nt(friend_number);
if (weechat_utf8_strlen(name) == 0)
{
free(name);
uint8_t client_id[TOX_CLIENT_ID_SIZE];
tox_get_client_id(tox, friend_number, client_id);
name = tox_weechat_bin2hex(client_id, TOX_CLIENT_ID_SIZE);
}
weechat_printf(tox_main_buffer,
"%s%s just went online!",
weechat_prefix("network"),
name);
free(name);
}
}
void
tox_weechat_name_change_callback(Tox *tox,
int32_t friend_number,
const uint8_t *name,
uint16_t length,
void *data)
{
struct t_tox_chat *chat = tox_weechat_get_existing_friend_chat(friend_number);
if (chat)
{
tox_weechat_chat_refresh(chat);
char *old_name = tox_weechat_get_name_nt(friend_number);
char *new_name = tox_weechat_null_terminate(name, length);
tox_weechat_chat_print_name_change(chat, old_name, new_name);
free(old_name);
free(new_name);
}
}
void
tox_weechat_user_status_callback(Tox *tox,
int32_t friend_number,
uint8_t status,
void *data)
{
struct t_tox_chat *chat = tox_weechat_get_existing_friend_chat(friend_number);
if (chat)
tox_weechat_chat_refresh(chat);
}
void
tox_weechat_status_message_callback(Tox *tox,
int32_t friend_number,
const uint8_t *message,
uint16_t length,
void *data)
{
struct t_tox_chat *chat = tox_weechat_get_existing_friend_chat(friend_number);
if (chat)
tox_weechat_chat_refresh(chat);
}
void void
tox_weechat_tox_init() tox_weechat_tox_init()
{ {
@ -140,8 +208,13 @@ tox_weechat_tox_init()
// start tox_do loop // start tox_do loop
tox_weechat_do_timer_cb(NULL, 0); tox_weechat_do_timer_cb(NULL, 0);
// register tox callbacks
tox_callback_friend_message(tox, tox_weechat_friend_message_callback, NULL); tox_callback_friend_message(tox, tox_weechat_friend_message_callback, NULL);
tox_callback_friend_action(tox, tox_weechat_friend_action_callback, NULL); tox_callback_friend_action(tox, tox_weechat_friend_action_callback, NULL);
tox_callback_connection_status(tox, tox_weechat_connection_status_callback, NULL);
tox_callback_name_change(tox, tox_weechat_name_change_callback, NULL);
tox_callback_user_status(tox, tox_weechat_user_status_callback, NULL);
tox_callback_status_message(tox, tox_weechat_status_message_callback, NULL);
} }
void void