You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

193 lines
4.8 KiB
C++

3 years ago
// This Source Code Form is subject to the terms of the Mozilla Public
// License, version 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <stdint.h>
3 years ago
#include <string.h>
3 years ago
#include <strophe.h>
3 years ago
#include <weechat/weechat-plugin.h>
2 years ago
#include "plugin.hh"
#include "account.hh"
#include "channel.hh"
2 years ago
#include "buffer.hh"
3 years ago
void buffer__get_account_and_channel(struct t_gui_buffer *buffer,
3 years ago
struct t_account **account,
struct t_channel **channel)
3 years ago
{
struct t_account *ptr_account;
struct t_channel *ptr_channel;
if (!buffer)
return;
3 years ago
*account = NULL;
*channel = NULL;
3 years ago
/* look for a account or channel using this buffer */
3 years ago
for (ptr_account = accounts; ptr_account;
ptr_account = ptr_account->next_account)
{
if (ptr_account->buffer == buffer)
{
if (account)
*account = ptr_account;
return;
}
for (ptr_channel = ptr_account->channels; ptr_channel;
ptr_channel = ptr_channel->next_channel)
{
if (ptr_channel->buffer == buffer)
{
if (account)
*account = ptr_account;
if (channel)
*channel = ptr_channel;
return;
}
}
}
}
3 years ago
char *buffer__typing_bar_cb(const void *pointer, void *data,
struct t_gui_bar_item *item,
struct t_gui_window *window,
struct t_gui_buffer *buffer,
struct t_hashtable *extra_info)
3 years ago
{
struct t_channel_typing *ptr_typing;
struct t_account *account;
struct t_channel *channel;
char notification[256];
unsigned typecount;
(void) pointer;
(void) data;
(void) item;
(void) window;
(void) extra_info;
account = NULL;
channel = NULL;
buffer__get_account_and_channel(buffer, &account, &channel);
if (!channel)
3 years ago
return strndup("", 0);
3 years ago
typecount = 0;
for (ptr_typing = channel->typings; ptr_typing;
ptr_typing = ptr_typing->next_typing)
{
switch (++typecount)
{
case 1:
strcpy(notification, ptr_typing->name);
break;
case 2:
strcat(notification, ", ");
strcat(notification, ptr_typing->name);
break;
case 3:
default:
strcpy(notification, "Several people");
break;
}
}
if (typecount)
{
strcat(notification, NG_(" is typing...",
" are typing...",
typecount));
return strdup(notification);
}
else
{
3 years ago
return strndup("", 0);
3 years ago
}
}
int buffer__nickcmp_cb(const void *pointer, void *data,
3 years ago
struct t_gui_buffer *buffer,
const char *nick1,
const char *nick2)
3 years ago
{
struct t_account *account;
(void) data;
if (pointer)
account = (struct t_account *)pointer;
else
buffer__get_account_and_channel(buffer, &account, NULL);
if (account)
{
return weechat_strcasecmp(nick1, nick2);
}
else
{
return weechat_strcasecmp(nick1, nick2);
}
}
int buffer__close_cb(const void *pointer, void *data,
3 years ago
struct t_gui_buffer *buffer)
3 years ago
{
struct t_weechat_plugin *buffer_plugin = NULL;
struct t_account *ptr_account = NULL;
struct t_channel *ptr_channel = NULL;
(void) pointer;
(void) data;
2 years ago
buffer_plugin = (struct t_weechat_plugin*)weechat_buffer_get_pointer(buffer, "plugin");
3 years ago
if (buffer_plugin != weechat_plugin)
return WEECHAT_RC_OK;
buffer__get_account_and_channel(buffer, &ptr_account, &ptr_channel);
const char* type = weechat_buffer_get_string(buffer, "localvar_type");
if (weechat_strcasecmp(type, "server") == 0)
3 years ago
{
3 years ago
if (ptr_account)
3 years ago
{
3 years ago
if (ptr_account->is_connected)
3 years ago
{
account__disconnect(ptr_account, 0);
}
3 years ago
3 years ago
ptr_account->buffer = NULL;
}
}
else if (weechat_strcasecmp(type, "channel") == 0)
{
if (ptr_account && ptr_channel)
{
3 years ago
if (ptr_account->is_connected)
3 years ago
{
channel__free(ptr_account, ptr_channel);
}
}
}
else if (weechat_strcasecmp(type, "private") == 0)
{
if (ptr_account && ptr_channel)
{
3 years ago
if (ptr_account->is_connected)
3 years ago
{
channel__free(ptr_account, ptr_channel);
}
}
}
else
{
3 years ago
}
return WEECHAT_RC_OK;
}