2016-02-14 17:28:55 -05:00
|
|
|
/*
|
|
|
|
* plugins.h
|
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-07-24 09:51:39 -04:00
|
|
|
#ifndef PLUGINS_PLUGINS_H
|
|
|
|
#define PLUGINS_PLUGINS_H
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-05-22 18:59:52 -04:00
|
|
|
#include "command/cmd_defs.h"
|
2016-02-17 20:20:17 -05:00
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
typedef enum {
|
2016-02-23 19:31:55 -05:00
|
|
|
LANG_PYTHON,
|
2016-02-14 17:28:55 -05:00
|
|
|
LANG_C
|
|
|
|
} lang_t;
|
|
|
|
|
2017-02-05 16:09:03 -05:00
|
|
|
typedef struct prof_plugins_install_t {
|
|
|
|
GSList *installed;
|
|
|
|
GSList *failed;
|
|
|
|
} PluginsInstallResult;
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
typedef struct prof_plugin_t {
|
|
|
|
char *name;
|
|
|
|
lang_t lang;
|
|
|
|
void *module;
|
|
|
|
void (*init_func)(struct prof_plugin_t* plugin, const char * const version,
|
2016-04-12 19:10:37 -04:00
|
|
|
const char * const status, const char *const account_name, const char *const fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2017-01-22 13:08:29 -05:00
|
|
|
gboolean (*contains_hook)(struct prof_plugin_t* plugin, const char *const hook);
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
void (*on_start_func)(struct prof_plugin_t* plugin);
|
|
|
|
void (*on_shutdown_func)(struct prof_plugin_t* plugin);
|
2016-07-05 17:03:14 -04:00
|
|
|
void (*on_unload_func)(struct prof_plugin_t* plugin);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
void (*on_connect_func)(struct prof_plugin_t* plugin, const char *const account_name, const char *const fulljid);
|
|
|
|
void (*on_disconnect_func)(struct prof_plugin_t* plugin, const char *const account_name,
|
|
|
|
const char *const fulljid);
|
|
|
|
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*pre_chat_message_display)(struct prof_plugin_t* plugin, const char *const barejid, const char *const resource, const char *message);
|
|
|
|
void (*post_chat_message_display)(struct prof_plugin_t* plugin, const char *const barejid, const char *const resource, const char *message);
|
|
|
|
char* (*pre_chat_message_send)(struct prof_plugin_t* plugin, const char *const barejid, const char *message);
|
|
|
|
void (*post_chat_message_send)(struct prof_plugin_t* plugin, const char *const barejid, const char *message);
|
2016-03-30 18:18:12 -04:00
|
|
|
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*pre_room_message_display)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *message);
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*post_room_message_display)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *message);
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*pre_room_message_send)(struct prof_plugin_t* plugin, const char *const barejid, const char *message);
|
|
|
|
void (*post_room_message_send)(struct prof_plugin_t* plugin, const char *const barejid, const char *message);
|
|
|
|
void (*on_room_history_message)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick, const char *const message,
|
2016-04-07 19:11:33 -04:00
|
|
|
const char *const timestamp);
|
2016-03-30 18:18:12 -04:00
|
|
|
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*pre_priv_message_display)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *message);
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*post_priv_message_display)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *message);
|
2016-08-10 16:37:22 -04:00
|
|
|
char* (*pre_priv_message_send)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *const message);
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*post_priv_message_send)(struct prof_plugin_t* plugin, const char *const barejid, const char *const nick,
|
2016-03-30 18:18:12 -04:00
|
|
|
const char *const message);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-26 11:50:16 -04:00
|
|
|
char* (*on_message_stanza_send)(struct prof_plugin_t* plugin, const char *const text);
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean (*on_message_stanza_receive)(struct prof_plugin_t* plugin, const char *const text);
|
|
|
|
|
2016-03-26 11:50:16 -04:00
|
|
|
char* (*on_presence_stanza_send)(struct prof_plugin_t* plugin, const char *const text);
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean (*on_presence_stanza_receive)(struct prof_plugin_t* plugin, const char *const text);
|
|
|
|
|
2016-03-26 11:50:16 -04:00
|
|
|
char* (*on_iq_stanza_send)(struct prof_plugin_t* plugin, const char *const text);
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean (*on_iq_stanza_receive)(struct prof_plugin_t* plugin, const char *const text);
|
2016-03-30 18:18:12 -04:00
|
|
|
|
|
|
|
void (*on_contact_offline)(struct prof_plugin_t* plugin, const char *const barejid, const char *const resource,
|
|
|
|
const char *const status);
|
|
|
|
void (*on_contact_presence)(struct prof_plugin_t* plugin, const char *const barejid, const char *const resource,
|
|
|
|
const char *const presence, const char *const status, const int priority);
|
2016-04-07 17:06:14 -04:00
|
|
|
|
|
|
|
void (*on_chat_win_focus)(struct prof_plugin_t* plugin, const char *const barejid);
|
2016-08-10 16:37:22 -04:00
|
|
|
void (*on_room_win_focus)(struct prof_plugin_t* plugin, const char *const barejid);
|
2016-02-14 17:28:55 -05:00
|
|
|
} ProfPlugin;
|
|
|
|
|
|
|
|
void plugins_init(void);
|
2016-04-12 18:25:31 -04:00
|
|
|
GSList *plugins_unloaded_list(void);
|
2016-06-30 18:58:04 -04:00
|
|
|
GList *plugins_loaded_list(void);
|
2017-03-31 19:27:11 -04:00
|
|
|
char* plugins_autocomplete(const char *const input, gboolean previous);
|
2016-02-14 17:28:55 -05:00
|
|
|
void plugins_reset_autocomplete(void);
|
|
|
|
void plugins_shutdown(void);
|
|
|
|
|
2017-02-05 16:09:03 -05:00
|
|
|
void plugins_free_install_result(PluginsInstallResult *result);
|
|
|
|
|
2018-05-07 12:27:01 -04:00
|
|
|
gboolean plugins_install(const char *const plugin_name, const char *const filename, GString * error_message);
|
2018-05-07 14:29:34 -04:00
|
|
|
gboolean plugins_uninstall(const char *const plugin_name);
|
|
|
|
gboolean plugins_update(const char *const plugin_name, const char *const filename, GString * error_message);
|
2017-02-05 16:09:03 -05:00
|
|
|
PluginsInstallResult* plugins_install_all(const char *const path);
|
2016-04-09 20:15:11 -04:00
|
|
|
gboolean plugins_load(const char *const name);
|
2017-02-05 14:16:14 -05:00
|
|
|
GSList* plugins_load_all(void);
|
2016-06-30 18:14:05 -04:00
|
|
|
gboolean plugins_unload(const char *const name);
|
2017-02-05 14:16:14 -05:00
|
|
|
gboolean plugins_unload_all(void);
|
2016-07-09 20:07:41 -04:00
|
|
|
gboolean plugins_reload(const char *const name);
|
2016-07-09 20:28:30 -04:00
|
|
|
void plugins_reload_all(void);
|
2016-04-09 20:15:11 -04:00
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
void plugins_on_start(void);
|
|
|
|
void plugins_on_shutdown(void);
|
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
void plugins_on_connect(const char *const account_name, const char *const fulljid);
|
|
|
|
void plugins_on_disconnect(const char *const account_name, const char *const fulljid);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-08-10 16:37:22 -04:00
|
|
|
char* plugins_pre_chat_message_display(const char *const barejid, const char *const resource, const char *message);
|
|
|
|
void plugins_post_chat_message_display(const char *const barejid, const char *const resource, const char *message);
|
2016-08-10 15:45:14 -04:00
|
|
|
char* plugins_pre_chat_message_send(const char *const barejid, const char *message);
|
|
|
|
void plugins_post_chat_message_send(const char *const barejid, const char *message);
|
|
|
|
|
|
|
|
char* plugins_pre_room_message_display(const char *const barejid, const char *const nick, const char *message);
|
|
|
|
void plugins_post_room_message_display(const char *const barejid, const char *const nick, const char *message);
|
|
|
|
char* plugins_pre_room_message_send(const char *const barejid, const char *message);
|
|
|
|
void plugins_post_room_message_send(const char *const barejid, const char *message);
|
|
|
|
void plugins_on_room_history_message(const char *const barejid, const char *const nick, const char *const message,
|
2016-04-07 19:11:33 -04:00
|
|
|
GDateTime *timestamp);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-08-10 15:45:14 -04:00
|
|
|
char* plugins_pre_priv_message_display(const char *const fulljid, const char *message);
|
|
|
|
void plugins_post_priv_message_display(const char *const fulljid, const char *message);
|
|
|
|
char* plugins_pre_priv_message_send(const char *const fulljid, const char *const message);
|
|
|
|
void plugins_post_priv_message_send(const char *const fulljid, const char *const message);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
void plugins_win_process_line(char *win, const char *const line);
|
2016-07-11 21:16:12 -04:00
|
|
|
void plugins_close_win(const char *const plugin_name, const char *const tag);
|
2016-03-26 11:50:16 -04:00
|
|
|
|
|
|
|
char* plugins_on_message_stanza_send(const char *const text);
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean plugins_on_message_stanza_receive(const char *const text);
|
|
|
|
|
2016-03-26 11:50:16 -04:00
|
|
|
char* plugins_on_presence_stanza_send(const char *const text);
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean plugins_on_presence_stanza_receive(const char *const text);
|
|
|
|
|
2016-03-26 11:50:16 -04:00
|
|
|
char* plugins_on_iq_stanza_send(const char *const text);
|
2016-03-27 16:36:29 -04:00
|
|
|
gboolean plugins_on_iq_stanza_receive(const char *const text);
|
2016-03-26 11:50:16 -04:00
|
|
|
|
2016-03-30 18:18:12 -04:00
|
|
|
void plugins_on_contact_offline(const char *const barejid, const char *const resource, const char *const status);
|
|
|
|
void plugins_on_contact_presence(const char *const barejid, const char *const resource, const char *const presence,
|
|
|
|
const char *const status, const int priority);
|
|
|
|
|
2016-04-07 17:06:14 -04:00
|
|
|
void plugins_on_chat_win_focus(const char *const barejid);
|
2016-08-10 15:45:14 -04:00
|
|
|
void plugins_on_room_win_focus(const char *const barejid);
|
2016-04-07 17:06:14 -04:00
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
gboolean plugins_run_command(const char * const cmd);
|
|
|
|
void plugins_run_timed(void);
|
2016-02-18 16:53:20 -05:00
|
|
|
GList* plugins_get_command_names(void);
|
2016-02-14 17:28:55 -05:00
|
|
|
gchar * plugins_get_dir(void);
|
2016-02-17 20:20:17 -05:00
|
|
|
CommandHelp* plugins_get_help(const char *const cmd);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2016-04-30 18:00:07 -04:00
|
|
|
GList* plugins_get_disco_features(void);
|
|
|
|
|
2016-02-14 17:28:55 -05:00
|
|
|
#endif
|