2016-02-14 17:28:55 -05:00
|
|
|
/*
|
|
|
|
* c_plugins.c
|
|
|
|
*
|
2018-01-21 10:00:02 -05:00
|
|
|
* Copyright (C) 2012 - 2018 James Booth <boothj5@gmail.com>
|
2016-02-14 17:28:55 -05:00
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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.
|
|
|
|
*
|
|
|
|
* Profanity 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2016-02-14 17:28:55 -05:00
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "log.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "config/preferences.h"
|
2016-07-24 16:35:12 -04:00
|
|
|
#include "config/files.h"
|
2016-02-14 17:28:55 -05:00
|
|
|
#include "plugins/api.h"
|
|
|
|
#include "plugins/callbacks.h"
|
2016-08-11 18:20:59 -04:00
|
|
|
#include "plugins/disco.h"
|
2016-02-14 17:28:55 -05:00
|
|
|
#include "plugins/plugins.h"
|
|
|
|
#include "plugins/c_plugins.h"
|
|
|
|
#include "plugins/c_api.h"
|
|
|
|
#include "ui/ui.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
c_env_init(void)
|
|
|
|
{
|
|
|
|
c_api_init();
|
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
ProfPlugin*
|
|
|
|
c_plugin_create(const char *const filename)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
|
|
|
ProfPlugin *plugin;
|
|
|
|
void *handle = NULL;
|
|
|
|
|
2016-07-24 16:35:12 -04:00
|
|
|
char *plugins_dir = files_get_data_path(DIR_PLUGINS);
|
2016-02-14 17:28:55 -05:00
|
|
|
GString *path = g_string_new(plugins_dir);
|
2016-07-24 16:35:12 -04:00
|
|
|
free(plugins_dir);
|
2016-02-14 17:28:55 -05:00
|
|
|
g_string_append(path, "/");
|
|
|
|
g_string_append(path, filename);
|
|
|
|
|
|
|
|
handle = dlopen (path->str, RTLD_NOW | RTLD_GLOBAL);
|
|
|
|
|
|
|
|
if (!handle) {
|
2016-02-20 21:06:09 -05:00
|
|
|
log_warning("dlopen failed to open `%s', %s", filename, dlerror ());
|
2016-02-14 17:28:55 -05:00
|
|
|
g_string_free(path, TRUE);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin = malloc(sizeof(ProfPlugin));
|
2016-04-09 20:15:11 -04:00
|
|
|
plugin->name = strdup(filename);
|
2016-02-14 17:28:55 -05:00
|
|
|
plugin->lang = LANG_C;
|
|
|
|
plugin->module = handle;
|
|
|
|
plugin->init_func = c_init_hook;
|
2017-01-22 13:08:29 -05:00
|
|
|
plugin->contains_hook = c_contains_hook;
|
2016-02-14 17:28:55 -05:00
|
|
|
plugin->on_start_func = c_on_start_hook;
|
|
|
|
plugin->on_shutdown_func = c_on_shutdown_hook;
|
2016-07-05 17:03:14 -04:00
|
|
|
plugin->on_unload_func = c_on_unload_hook;
|
2016-02-14 17:28:55 -05:00
|
|
|
plugin->on_connect_func = c_on_connect_hook;
|
|
|
|
plugin->on_disconnect_func = c_on_disconnect_hook;
|
|
|
|
plugin->pre_chat_message_display = c_pre_chat_message_display_hook;
|
|
|
|
plugin->post_chat_message_display = c_post_chat_message_display_hook;
|
|
|
|
plugin->pre_chat_message_send = c_pre_chat_message_send_hook;
|
|
|
|
plugin->post_chat_message_send = c_post_chat_message_send_hook;
|
|
|
|
plugin->pre_room_message_display = c_pre_room_message_display_hook;
|
|
|
|
plugin->post_room_message_display = c_post_room_message_display_hook;
|
|
|
|
plugin->pre_room_message_send = c_pre_room_message_send_hook;
|
|
|
|
plugin->post_room_message_send = c_post_room_message_send_hook;
|
2016-04-07 19:11:33 -04:00
|
|
|
plugin->on_room_history_message = c_on_room_history_message_hook;
|
2016-02-14 17:28:55 -05:00
|
|
|
plugin->pre_priv_message_display = c_pre_priv_message_display_hook;
|
|
|
|
plugin->post_priv_message_display = c_post_priv_message_display_hook;
|
|
|
|
plugin->pre_priv_message_send = c_pre_priv_message_send_hook;
|
|
|
|
plugin->post_priv_message_send = c_post_priv_message_send_hook;
|
2016-03-26 11:50:16 -04:00
|
|
|
plugin->on_message_stanza_send = c_on_message_stanza_send_hook;
|
2016-03-27 16:36:29 -04:00
|
|
|
plugin->on_message_stanza_receive = c_on_message_stanza_receive_hook;
|
2016-03-26 11:50:16 -04:00
|
|
|
plugin->on_presence_stanza_send = c_on_presence_stanza_send_hook;
|
2016-03-27 16:36:29 -04:00
|
|
|
plugin->on_presence_stanza_receive = c_on_presence_stanza_receive_hook;
|
2016-03-26 11:50:16 -04:00
|
|
|
plugin->on_iq_stanza_send = c_on_iq_stanza_send_hook;
|
2016-03-27 16:36:29 -04:00
|
|
|
plugin->on_iq_stanza_receive = c_on_iq_stanza_receive_hook;
|
2016-03-30 18:18:12 -04:00
|
|
|
plugin->on_contact_offline = c_on_contact_offline_hook;
|
|
|
|
plugin->on_contact_presence = c_on_contact_presence_hook;
|
2016-04-07 17:06:14 -04:00
|
|
|
plugin->on_chat_win_focus = c_on_chat_win_focus_hook;
|
2016-04-07 17:15:03 -04:00
|
|
|
plugin->on_room_win_focus = c_on_room_win_focus_hook;
|
2016-02-14 17:28:55 -05:00
|
|
|
|
|
|
|
g_string_free(path, TRUE);
|
|
|
|
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-04-12 19:10:37 -04:00
|
|
|
c_init_hook(ProfPlugin *plugin, const char *const version, const char *const status, const char *const account_name,
|
|
|
|
const char *const fulljid)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-04-12 19:10:37 -04:00
|
|
|
void (*func)(const char *const __version, const char *const __status, const char *const __account_name,
|
|
|
|
const char *const __fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_init"))) {
|
2016-02-14 17:28:55 -05:00
|
|
|
log_warning ("warning: %s does not have init function", plugin->name);
|
2016-03-30 18:18:12 -04:00
|
|
|
return;
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-04-12 19:10:37 -04:00
|
|
|
func = (void (*)(const char *const, const char *const, const char *const, const char *const))f;
|
2016-02-14 17:28:55 -05:00
|
|
|
|
|
|
|
// FIXME maybe we want to make it boolean to see if it succeeded or not?
|
2016-04-12 19:10:37 -04:00
|
|
|
func(version, status, account_name, fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2017-01-22 13:08:29 -05:00
|
|
|
gboolean
|
|
|
|
c_contains_hook(ProfPlugin *plugin, const char *const hook)
|
|
|
|
{
|
|
|
|
if (dlsym(plugin->module, hook)) {
|
|
|
|
return TRUE;
|
|
|
|
} else {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
void
|
|
|
|
c_on_start_hook(ProfPlugin *plugin)
|
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-02-14 17:28:55 -05:00
|
|
|
void (*func)(void);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_start")))
|
|
|
|
return;
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(void))f;
|
|
|
|
func();
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
c_on_shutdown_hook(ProfPlugin *plugin)
|
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-02-14 17:28:55 -05:00
|
|
|
void (*func)(void);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_shutdown")))
|
|
|
|
return;
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(void))f;
|
|
|
|
func();
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-07-05 17:03:14 -04:00
|
|
|
void
|
|
|
|
c_on_unload_hook(ProfPlugin *plugin)
|
|
|
|
{
|
|
|
|
void *f = NULL;
|
|
|
|
void (*func)(void);
|
|
|
|
assert(plugin && plugin->module);
|
|
|
|
|
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_unload")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
func = (void (*)(void))f;
|
|
|
|
func();
|
|
|
|
}
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
void
|
2016-03-30 18:18:12 -04:00
|
|
|
c_on_connect_hook(ProfPlugin *plugin, const char *const account_name, const char *const fulljid)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
void (*func)(const char *const __account_name, const char *const __fulljid);
|
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_connect")))
|
|
|
|
return;
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *const))f;
|
|
|
|
func(account_name, fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-03-30 18:18:12 -04:00
|
|
|
c_on_disconnect_hook(ProfPlugin *plugin, const char *const account_name, const char *const fulljid)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
void (*func)(const char *const __account_name, const char *const __fulljid);
|
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_disconnect")))
|
|
|
|
return;
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *const))f;
|
|
|
|
func(account_name, fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
2016-08-10 16:37:22 -04:00
|
|
|
c_pre_chat_message_display_hook(ProfPlugin *plugin, const char *const barejid, const char *const resource, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*func)(const char *const __barejid, const char *const __resource, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_pre_chat_message_display")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-08-10 16:37:22 -04:00
|
|
|
func = (char* (*)(const char *const, const char *const, const char *))f;
|
|
|
|
return func(barejid, resource, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_post_chat_message_display_hook(ProfPlugin *plugin, const char *const barejid, const char *const resource, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *const __resource, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_post_chat_message_display")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return;
|
|
|
|
|
2016-08-10 16:37:22 -04:00
|
|
|
func = (void (*)(const char *const, const char *const, const char *))f;
|
|
|
|
func(barejid, resource, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
2016-08-10 16:37:22 -04:00
|
|
|
c_pre_chat_message_send_hook(ProfPlugin *plugin, const char *const barejid, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*func)(const char *const __barejid, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_pre_chat_message_send")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
return func(barejid, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_post_chat_message_send_hook(ProfPlugin *plugin, const char *const barejid, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_post_chat_message_send")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
2016-08-10 16:37:22 -04:00
|
|
|
c_pre_room_message_display_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*func)(const char *const __barejid, const char *const __nick, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_pre_room_message_display")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const, const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
return func(barejid, nick, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_post_room_message_display_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *const __nick, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_post_room_message_display")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid, nick, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
2016-08-10 16:37:22 -04:00
|
|
|
c_pre_room_message_send_hook(ProfPlugin *plugin, const char *const barejid, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*func)(const char *const __barejid, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_pre_room_message_send")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
return func(barejid, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_post_room_message_send_hook(ProfPlugin *plugin, const char *const barejid, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_post_room_message_send")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-04-07 19:11:33 -04:00
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_on_room_history_message_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick,
|
2016-04-07 19:11:33 -04:00
|
|
|
const char *const message, const char *const timestamp)
|
|
|
|
{
|
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *const __nick, const char *const __message,
|
2016-04-07 19:11:33 -04:00
|
|
|
const char *const __timestamp);
|
|
|
|
assert(plugin && plugin->module);
|
|
|
|
|
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_room_history_message")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
func = (void (*)(const char *const, const char *const, const char *const, const char *const))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid, nick, message, timestamp);
|
2016-04-07 19:11:33 -04:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
2016-08-10 16:37:22 -04:00
|
|
|
c_pre_priv_message_display_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*func)(const char *const __barejid, const char *const __nick, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_pre_priv_message_display")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const, const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
return func(barejid, nick, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_post_priv_message_display_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *const __nick, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_post_priv_message_display")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid, nick, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
2016-08-10 16:37:22 -04:00
|
|
|
c_pre_priv_message_send_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*func)(const char *const __barejid, const char *const __nick, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_pre_priv_message_send")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const, const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
return func(barejid, nick, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_post_priv_message_send_hook(ProfPlugin *plugin, const char *const barejid, const char *const nick, const char *message)
|
2016-02-14 17:28:55 -05:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid, const char *const __nick, const char *__message);
|
2016-03-30 18:18:12 -04:00
|
|
|
assert(plugin && plugin->module);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_post_priv_message_send")))
|
2016-02-14 17:28:55 -05:00
|
|
|
return;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (void (*)(const char *const, const char *const, const char *))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid, nick, message);
|
2016-02-14 17:28:55 -05:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
|
|
|
c_on_message_stanza_send_hook(ProfPlugin *plugin, const char *const text)
|
2016-03-26 11:50:16 -04:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
char* (*func)(const char *const __text);
|
|
|
|
assert(plugin && plugin->module);
|
2016-03-26 11:50:16 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_message_stanza_send")))
|
2016-03-26 11:50:16 -04:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const))f;
|
|
|
|
return func(text);
|
2016-03-26 11:50:16 -04:00
|
|
|
}
|
|
|
|
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean
|
|
|
|
c_on_message_stanza_receive_hook(ProfPlugin *plugin, const char *const text)
|
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
int (*func)(const char *const __text);
|
|
|
|
assert(plugin && plugin->module);
|
2016-03-27 16:36:29 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_message_stanza_receive")))
|
2016-03-27 16:36:29 -04:00
|
|
|
return TRUE;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (int (*)(const char *const))f;
|
|
|
|
return func(text);
|
2016-03-27 16:36:29 -04:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
|
|
|
c_on_presence_stanza_send_hook(ProfPlugin *plugin, const char *const text)
|
2016-03-26 11:50:16 -04:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
char* (*func)(const char *const __text);
|
|
|
|
assert(plugin && plugin->module);
|
2016-03-26 11:50:16 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_presence_stanza_send")))
|
2016-03-26 11:50:16 -04:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const))f;
|
|
|
|
return func(text);
|
2016-03-26 11:50:16 -04:00
|
|
|
}
|
|
|
|
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean
|
|
|
|
c_on_presence_stanza_receive_hook(ProfPlugin *plugin, const char *const text)
|
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
int (*func)(const char *const __text);
|
|
|
|
assert(plugin && plugin->module);
|
2016-03-27 16:36:29 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_presence_stanza_receive")))
|
2016-03-27 16:36:29 -04:00
|
|
|
return TRUE;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (int (*)(const char *const))f;
|
|
|
|
return func(text);
|
2016-03-27 16:36:29 -04:00
|
|
|
}
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
char*
|
|
|
|
c_on_iq_stanza_send_hook(ProfPlugin *plugin, const char *const text)
|
2016-03-26 11:50:16 -04:00
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
char* (*func)(const char *const __text);
|
|
|
|
assert(plugin && plugin->module);
|
2016-03-26 11:50:16 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_iq_stanza_send")))
|
2016-03-26 11:50:16 -04:00
|
|
|
return NULL;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (char* (*)(const char *const))f;
|
|
|
|
return func(text);
|
2016-03-26 11:50:16 -04:00
|
|
|
}
|
|
|
|
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean
|
|
|
|
c_on_iq_stanza_receive_hook(ProfPlugin *plugin, const char *const text)
|
|
|
|
{
|
2016-03-30 18:18:12 -04:00
|
|
|
void *f = NULL;
|
|
|
|
int (*func)(const char *const __text);
|
|
|
|
assert(plugin && plugin->module);
|
2016-03-27 16:36:29 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_iq_stanza_receive")))
|
2016-03-27 16:36:29 -04:00
|
|
|
return TRUE;
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
func = (int (*)(const char *const))f;
|
|
|
|
return func(text);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
c_on_contact_offline_hook(ProfPlugin *plugin, const char *const barejid, const char *const resource,
|
|
|
|
const char *const status)
|
|
|
|
{
|
|
|
|
void *f = NULL;
|
|
|
|
void (*func)(const char *const __barejid, const char *const __resource, const char *const __status);
|
|
|
|
assert(plugin && plugin->module);
|
|
|
|
|
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_contact_offline")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
func = (void (*)(const char *const, const char *const, const char *const))f;
|
|
|
|
func(barejid, resource, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
c_on_contact_presence_hook(ProfPlugin *plugin, const char *const barejid, const char *const resource,
|
|
|
|
const char *const presence, const char *const status, const int priority)
|
|
|
|
{
|
|
|
|
void *f = NULL;
|
|
|
|
void (*func)(const char *const __barejid, const char *const __resource, const char *const __presence,
|
|
|
|
const char *const __status, const int __priority);
|
|
|
|
assert(plugin && plugin->module);
|
|
|
|
|
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_contact_presence")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
func = (void (*)(const char *const, const char *const, const char *const, const char *const, const int))f;
|
|
|
|
func(barejid, resource, presence, status, priority);
|
2016-03-27 16:36:29 -04:00
|
|
|
}
|
|
|
|
|
2016-04-07 17:06:14 -04:00
|
|
|
void
|
|
|
|
c_on_chat_win_focus_hook(ProfPlugin *plugin, const char *const barejid)
|
|
|
|
{
|
|
|
|
void *f = NULL;
|
|
|
|
void (*func)(const char *const __barejid);
|
|
|
|
assert(plugin && plugin->module);
|
|
|
|
|
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_chat_win_focus")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
func = (void (*)(const char *const))f;
|
|
|
|
func(barejid);
|
|
|
|
}
|
|
|
|
|
2016-04-07 17:15:03 -04:00
|
|
|
void
|
2016-08-10 16:37:22 -04:00
|
|
|
c_on_room_win_focus_hook(ProfPlugin *plugin, const char *const barejid)
|
2016-04-07 17:15:03 -04:00
|
|
|
{
|
|
|
|
void *f = NULL;
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*func)(const char *const __barejid);
|
2016-04-07 17:15:03 -04:00
|
|
|
assert(plugin && plugin->module);
|
|
|
|
|
|
|
|
if (NULL == (f = dlsym(plugin->module, "prof_on_room_win_focus")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
func = (void (*)(const char *const))f;
|
2016-08-10 16:37:22 -04:00
|
|
|
func(barejid);
|
2016-04-07 17:15:03 -04:00
|
|
|
}
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
void
|
|
|
|
c_plugin_destroy(ProfPlugin *plugin)
|
|
|
|
{
|
|
|
|
assert (plugin && plugin->module);
|
|
|
|
|
2016-07-04 17:54:55 -04:00
|
|
|
callbacks_remove(plugin->name);
|
|
|
|
|
2016-08-11 18:20:59 -04:00
|
|
|
disco_remove_features(plugin->name);
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
if (dlclose (plugin->module)) {
|
|
|
|
log_warning ("dlclose failed to close `%s' with `%s'", plugin->name, dlerror ());
|
|
|
|
}
|
|
|
|
|
|
|
|
free(plugin->name);
|
|
|
|
free(plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
c_shutdown(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|