Implemented /topic.
This commit is contained in:
parent
4811c7bc66
commit
f17482aef3
@ -836,6 +836,45 @@ twc_cmd_statusmsg(void *data, struct t_gui_buffer *buffer,
|
||||
return WEECHAT_RC_OK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Command /topic callback.
|
||||
*/
|
||||
int
|
||||
twc_cmd_topic(void *data, struct t_gui_buffer *buffer,
|
||||
int argc, char **argv, char **argv_eol)
|
||||
{
|
||||
if (argc == 1)
|
||||
return WEECHAT_RC_ERROR;
|
||||
|
||||
struct t_twc_chat *chat = twc_chat_search_buffer(buffer);
|
||||
TWC_CHECK_CHAT(chat);
|
||||
TWC_CHECK_PROFILE_LOADED(chat->profile);
|
||||
|
||||
if (chat->group_number < 0)
|
||||
{
|
||||
weechat_printf(NULL,
|
||||
"%s%s: command \"%s\" must be executed in a group chat "
|
||||
"buffer",
|
||||
weechat_prefix("error"), weechat_plugin->name, argv[0]);
|
||||
return WEECHAT_RC_OK;
|
||||
}
|
||||
|
||||
char *topic = argv_eol[1];
|
||||
|
||||
int result = tox_group_set_title(chat->profile->tox, chat->group_number,
|
||||
(uint8_t *)topic, strlen(topic));
|
||||
if (result == -1)
|
||||
{
|
||||
weechat_printf(chat->buffer, "%s%s",
|
||||
weechat_prefix("error"), "Could not set topic.");
|
||||
return WEECHAT_RC_OK;
|
||||
}
|
||||
|
||||
twc_chat_queue_refresh(chat);
|
||||
|
||||
return WEECHAT_RC_OK;
|
||||
}
|
||||
|
||||
/**
|
||||
* Command /tox callback.
|
||||
*/
|
||||
@ -1059,6 +1098,12 @@ twc_commands_init()
|
||||
"message: your new status message",
|
||||
NULL, twc_cmd_statusmsg, NULL);
|
||||
|
||||
weechat_hook_command("topic",
|
||||
"set a group chat topic",
|
||||
"<topic>",
|
||||
"topic: new group chat topic",
|
||||
NULL, twc_cmd_topic, NULL);
|
||||
|
||||
weechat_hook_command("tox",
|
||||
"manage Tox profiles",
|
||||
"list"
|
||||
|
Loading…
Reference in New Issue
Block a user