1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/plugins/python_api.c

1035 lines
29 KiB
C
Raw Normal View History

2016-02-24 00:31:55 +00:00
/*
* python_api.c
*
* Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
*
* 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-24 00:14:49 +00:00
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
2016-02-24 00:31:55 +00: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-13 23:00:46 +00:00
#include "config.h"
2016-02-24 00:31:55 +00:00
#include <Python.h>
2016-06-22 00:09:39 +00:00
#include <frameobject.h>
2016-02-24 00:31:55 +00:00
2016-07-24 01:16:57 +00:00
#include <stdlib.h>
2016-02-24 00:31:55 +00:00
#include <glib.h>
2016-07-24 14:43:51 +00:00
#include "log.h"
2016-02-24 00:31:55 +00:00
#include "plugins/api.h"
#include "plugins/python_api.h"
#include "plugins/python_plugins.h"
#include "plugins/callbacks.h"
#include "plugins/autocompleters.h"
2016-06-22 00:09:39 +00:00
static char* _python_plugin_name(void);
2016-02-24 00:31:55 +00:00
static PyObject*
python_api_cons_alert(PyObject *self, PyObject *args)
{
allow_python_threads();
2016-02-24 00:31:55 +00:00
api_cons_alert();
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject*
python_api_cons_show(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject* message = NULL;
if (!PyArg_ParseTuple(args, "O", &message)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_cons_show(message_str);
2016-07-24 00:53:13 +00:00
free(message_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject*
python_api_cons_show_themed(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
PyObject *def = NULL;
PyObject *message = NULL;
if (!PyArg_ParseTuple(args, "OOOO", &group, &key, &def, &message)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
char *def_str = python_str_or_unicode_to_string(def);
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_cons_show_themed(group_str, key_str, def_str, message_str);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
free(def_str);
free(message_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-02-24 00:48:34 +00:00
static PyObject*
python_api_cons_bad_cmd_usage(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *cmd = NULL;
if (!PyArg_ParseTuple(args, "O", &cmd)) {
2016-02-24 00:48:34 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *cmd_str = python_str_or_unicode_to_string(cmd);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_cons_bad_cmd_usage(cmd_str);
2016-07-24 00:53:13 +00:00
free(cmd_str);
disable_python_threads();
2016-02-24 00:48:34 +00:00
return Py_BuildValue("");
}
2016-02-24 00:31:55 +00:00
static PyObject*
python_api_register_command(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *command_name = NULL;
2016-02-24 00:31:55 +00:00
int min_args = 0;
int max_args = 0;
PyObject *synopsis = NULL;
2016-07-24 00:09:18 +00:00
PyObject *description = NULL;
2016-02-24 00:31:55 +00:00
PyObject *arguments = NULL;
PyObject *examples = NULL;
PyObject *p_callback = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OiiOOOOO", &command_name, &min_args, &max_args,
2016-02-24 00:31:55 +00:00
&synopsis, &description, &arguments, &examples, &p_callback)) {
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *command_name_str = python_str_or_unicode_to_string(command_name);
char *description_str = python_str_or_unicode_to_string(description);
2016-06-22 23:36:26 +00:00
char *plugin_name = _python_plugin_name();
2016-07-24 00:09:18 +00:00
log_debug("Register command %s for %s", command_name_str, plugin_name);
2016-06-22 23:36:26 +00:00
2016-02-24 00:31:55 +00:00
if (p_callback && PyCallable_Check(p_callback)) {
Py_ssize_t len = PyList_Size(synopsis);
const char *c_synopsis[len == 0 ? 0 : len+1];
Py_ssize_t i = 0;
for (i = 0; i < len; i++) {
PyObject *item = PyList_GetItem(synopsis, i);
2016-07-24 00:09:18 +00:00
char *c_item = python_str_or_unicode_to_string(item);
2016-02-24 00:31:55 +00:00
c_synopsis[i] = c_item;
}
c_synopsis[len] = NULL;
Py_ssize_t args_len = PyList_Size(arguments);
const char *c_arguments[args_len == 0 ? 0 : args_len+1][2];
i = 0;
for (i = 0; i < args_len; i++) {
PyObject *item = PyList_GetItem(arguments, i);
Py_ssize_t len2 = PyList_Size(item);
if (len2 != 2) {
return Py_BuildValue("");
}
PyObject *arg = PyList_GetItem(item, 0);
2016-07-24 00:09:18 +00:00
char *c_arg = python_str_or_unicode_to_string(arg);
2016-02-24 00:31:55 +00:00
c_arguments[i][0] = c_arg;
2016-07-19 00:02:33 +00:00
PyObject *desc = PyList_GetItem(item, 1);
2016-07-24 00:09:18 +00:00
char *c_desc = python_str_or_unicode_to_string(desc);
2016-02-24 00:31:55 +00:00
c_arguments[i][1] = c_desc;
}
c_arguments[args_len][0] = NULL;
c_arguments[args_len][1] = NULL;
len = PyList_Size(examples);
const char *c_examples[len == 0 ? 0 : len+1];
i = 0;
for (i = 0; i < len; i++) {
PyObject *item = PyList_GetItem(examples, i);
2016-07-24 00:09:18 +00:00
char *c_item = python_str_or_unicode_to_string(item);
2016-02-24 00:31:55 +00:00
c_examples[i] = c_item;
}
c_examples[len] = NULL;
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_register_command(plugin_name, command_name_str, min_args, max_args, c_synopsis,
description_str, c_arguments, c_examples, p_callback, python_command_callback, NULL);
2016-07-24 00:53:13 +00:00
free(command_name_str);
free(description_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
}
2016-07-03 23:41:29 +00:00
free(plugin_name);
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_register_timed(PyObject *self, PyObject *args)
{
PyObject *p_callback = NULL;
int interval_seconds = 0;
if (!PyArg_ParseTuple(args, "Oi", &p_callback, &interval_seconds)) {
return Py_BuildValue("");
}
2016-07-03 23:41:29 +00:00
char *plugin_name = _python_plugin_name();
log_debug("Register timed for %s", plugin_name);
2016-02-24 00:31:55 +00:00
if (p_callback && PyCallable_Check(p_callback)) {
allow_python_threads();
2016-07-03 23:41:29 +00:00
api_register_timed(plugin_name, p_callback, interval_seconds, python_timed_callback, NULL);
disable_python_threads();
2016-02-24 00:31:55 +00:00
}
2016-07-03 23:41:29 +00:00
free(plugin_name);
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_completer_add(PyObject *self, PyObject *args)
2016-02-24 00:31:55 +00:00
{
2016-07-24 00:09:18 +00:00
PyObject *key = NULL;
2016-02-24 00:31:55 +00:00
PyObject *items = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OO", &key, &items)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *key_str = python_str_or_unicode_to_string(key);
2016-06-22 23:44:52 +00:00
char *plugin_name = _python_plugin_name();
2016-07-24 00:09:18 +00:00
log_debug("Autocomplete add %s for %s", key_str, plugin_name);
2016-06-22 23:44:52 +00:00
2016-02-24 00:31:55 +00:00
Py_ssize_t len = PyList_Size(items);
char *c_items[len];
Py_ssize_t i = 0;
for (i = 0; i < len; i++) {
PyObject *item = PyList_GetItem(items, i);
2016-07-24 00:09:18 +00:00
char *c_item = python_str_or_unicode_to_string(item);
2016-02-24 00:31:55 +00:00
c_items[i] = c_item;
}
c_items[len] = NULL;
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_completer_add(plugin_name, key_str, c_items);
2016-07-24 00:53:13 +00:00
free(key_str);
disable_python_threads();
2016-07-03 23:41:29 +00:00
free(plugin_name);
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-04-07 20:25:12 +00:00
static PyObject *
python_api_completer_remove(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *key = NULL;
2016-04-07 20:25:12 +00:00
PyObject *items = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OO", &key, &items)) {
2016-04-07 20:25:12 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *key_str = python_str_or_unicode_to_string(key);
char *plugin_name = _python_plugin_name();
2016-07-24 00:09:18 +00:00
log_debug("Autocomplete remove %s for %s", key_str, plugin_name);
2016-04-07 20:25:12 +00:00
Py_ssize_t len = PyList_Size(items);
char *c_items[len];
Py_ssize_t i = 0;
for (i = 0; i < len; i++) {
PyObject *item = PyList_GetItem(items, i);
2016-07-24 00:09:18 +00:00
char *c_item = python_str_or_unicode_to_string(item);
2016-04-07 20:25:12 +00:00
c_items[i] = c_item;
}
c_items[len] = NULL;
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_completer_remove(plugin_name, key_str, c_items);
2016-07-24 00:53:13 +00:00
free(key_str);
2016-04-07 20:25:12 +00:00
disable_python_threads();
free(plugin_name);
2016-04-07 20:25:12 +00:00
return Py_BuildValue("");
}
2016-04-07 22:25:47 +00:00
static PyObject *
python_api_completer_clear(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *key = NULL;
2016-04-07 22:25:47 +00:00
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "O", &key)) {
2016-04-07 22:25:47 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *key_str = python_str_or_unicode_to_string(key);
char *plugin_name = _python_plugin_name();
2016-07-24 00:09:18 +00:00
log_debug("Autocomplete clear %s for %s", key_str, plugin_name);
2016-04-07 22:25:47 +00:00
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_completer_clear(plugin_name, key_str);
2016-07-24 00:53:13 +00:00
free(key_str);
2016-04-07 22:25:47 +00:00
disable_python_threads();
free(plugin_name);
2016-04-07 22:25:47 +00:00
return Py_BuildValue("");
}
2016-02-24 00:31:55 +00:00
static PyObject*
python_api_notify(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *message = NULL;
PyObject *category = NULL;
2016-02-24 00:31:55 +00:00
int timeout_ms = 5000;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OiO", &message, &timeout_ms, &category)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *message_str = python_str_or_unicode_to_string(message);
char *category_str = python_str_or_unicode_to_string(category);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_notify(message_str, category_str, timeout_ms);
2016-07-24 00:53:13 +00:00
free(message_str);
free(category_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject*
python_api_send_line(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *line = NULL;
if (!PyArg_ParseTuple(args, "O", &line)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *line_str = python_str_or_unicode_to_string(line);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_send_line(line_str);
2016-07-24 00:53:13 +00:00
free(line_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_get_current_recipient(PyObject *self, PyObject *args)
{
allow_python_threads();
2016-02-24 00:31:55 +00:00
char *recipient = api_get_current_recipient();
disable_python_threads();
2016-02-24 00:31:55 +00:00
if (recipient) {
return Py_BuildValue("s", recipient);
} else {
return Py_BuildValue("");
}
}
static PyObject *
python_api_get_current_muc(PyObject *self, PyObject *args)
{
allow_python_threads();
2016-02-24 00:31:55 +00:00
char *room = api_get_current_muc();
disable_python_threads();
2016-02-24 00:31:55 +00:00
if (room) {
return Py_BuildValue("s", room);
} else {
return Py_BuildValue("");
}
}
2016-04-15 21:24:50 +00:00
static PyObject *
python_api_get_current_nick(PyObject *self, PyObject *args)
{
allow_python_threads();
char *nick = api_get_current_nick();
disable_python_threads();
if (nick) {
return Py_BuildValue("s", nick);
} else {
return Py_BuildValue("");
}
}
static PyObject*
python_api_get_current_occupants(PyObject *self, PyObject *args)
{
allow_python_threads();
char **occupants = api_get_current_occupants();
disable_python_threads();
PyObject *result = PyList_New(0);
if (occupants) {
int len = g_strv_length(occupants);
int i = 0;
for (i = 0; i < len; i++) {
PyList_Append(result, Py_BuildValue("s", occupants[i]));
}
return result;
} else {
return result;
}
}
static PyObject*
python_api_current_win_is_console(PyObject *self, PyObject *args)
{
allow_python_threads();
int res = api_current_win_is_console();
disable_python_threads();
if (res) {
return Py_BuildValue("O", Py_True);
} else {
return Py_BuildValue("O", Py_False);
}
}
2016-02-24 00:31:55 +00:00
static PyObject *
python_api_log_debug(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *message = NULL;
if (!PyArg_ParseTuple(args, "O", &message)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_log_debug(message_str);
2016-07-24 00:53:13 +00:00
free(message_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_log_info(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *message = NULL;
if (!PyArg_ParseTuple(args, "O", &message)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_log_info(message_str);
2016-07-24 00:53:13 +00:00
free(message_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_log_warning(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *message = NULL;
if (!PyArg_ParseTuple(args, "O", &message)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_log_warning(message_str);
2016-07-24 00:53:13 +00:00
free(message_str);
disable_python_threads();
2016-07-24 00:09:18 +00:00
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_log_error(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *message = NULL;
if (!PyArg_ParseTuple(args, "O", &message)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_log_error(message_str);
2016-07-24 00:53:13 +00:00
free(message_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_win_exists(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *tag = NULL;
if (!PyArg_ParseTuple(args, "O", &tag)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *tag_str = python_str_or_unicode_to_string(tag);
allow_python_threads();
2016-07-24 00:09:18 +00:00
gboolean exists = api_win_exists(tag_str);
2016-07-24 00:53:13 +00:00
free(tag_str);
disable_python_threads();
if (exists) {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("O", Py_True);
2016-02-24 00:31:55 +00:00
} else {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("O", Py_False);
2016-02-24 00:31:55 +00:00
}
}
static PyObject *
python_api_win_create(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *tag = NULL;
2016-02-24 00:31:55 +00:00
PyObject *p_callback = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OO", &tag, &p_callback)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *tag_str = python_str_or_unicode_to_string(tag);
2016-07-03 23:41:29 +00:00
char *plugin_name = _python_plugin_name();
2016-02-24 00:31:55 +00:00
if (p_callback && PyCallable_Check(p_callback)) {
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_win_create(plugin_name, tag_str, p_callback, python_window_callback, NULL);
2016-07-24 00:53:13 +00:00
free(tag_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
}
2016-07-03 23:41:29 +00:00
free(plugin_name);
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_win_focus(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *tag = NULL;
2016-02-24 00:31:55 +00:00
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "O", &tag)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *tag_str = python_str_or_unicode_to_string(tag);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_win_focus(tag_str);
2016-07-24 00:53:13 +00:00
free(tag_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_win_show(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *tag = NULL;
PyObject *line = NULL;
2016-02-24 00:31:55 +00:00
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OO", &tag, &line)) {
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *tag_str = python_str_or_unicode_to_string(tag);
char *line_str = python_str_or_unicode_to_string(line);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_win_show(tag_str, line_str);
2016-07-24 00:53:13 +00:00
free(tag_str);
free(line_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
static PyObject *
python_api_win_show_themed(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *tag = NULL;
PyObject *group = NULL;
PyObject *key = NULL;
PyObject *def = NULL;
PyObject *line = NULL;
2016-02-24 00:31:55 +00:00
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOOOO", &tag, &group, &key, &def, &line)) {
python_check_error();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *tag_str = python_str_or_unicode_to_string(tag);
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
char *def_str = python_str_or_unicode_to_string(def);
char *line_str = python_str_or_unicode_to_string(line);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_win_show_themed(tag_str, group_str, key_str, def_str, line_str);
2016-07-24 00:53:13 +00:00
free(tag_str);
free(group_str);
free(key_str);
free(def_str);
free(line_str);
disable_python_threads();
2016-02-24 00:31:55 +00:00
return Py_BuildValue("");
}
2016-03-23 22:57:03 +00:00
static PyObject*
python_api_send_stanza(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *stanza = NULL;
if (!PyArg_ParseTuple(args, "O", &stanza)) {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("O", Py_False);
2016-03-23 22:57:03 +00:00
}
2016-07-24 00:09:18 +00:00
char *stanza_str = python_str_or_unicode_to_string(stanza);
2016-03-23 22:57:03 +00:00
allow_python_threads();
2016-07-24 00:09:18 +00:00
int res = api_send_stanza(stanza_str);
2016-07-24 00:53:13 +00:00
free(stanza_str);
2016-03-23 22:57:03 +00:00
disable_python_threads();
if (res) {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("O", Py_True);
2016-03-23 22:57:03 +00:00
} else {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("O", Py_False);
}
}
static PyObject*
python_api_settings_get_boolean(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
2016-03-25 22:06:24 +00:00
PyObject *defobj = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOO!", &group, &key, &PyBool_Type, &defobj)) {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("");
2016-03-23 22:57:03 +00:00
}
2016-03-25 22:06:24 +00:00
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
2016-03-25 22:06:24 +00:00
int def = PyObject_IsTrue(defobj);
allow_python_threads();
2016-07-24 00:09:18 +00:00
int res = api_settings_get_boolean(group_str, key_str, def);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
2016-03-25 22:06:24 +00:00
disable_python_threads();
if (res) {
return Py_BuildValue("O", Py_True);
} else {
return Py_BuildValue("O", Py_False);
}
}
static PyObject*
python_api_settings_set_boolean(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
2016-03-25 22:06:24 +00:00
PyObject *valobj = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOO!", &group, &key, &PyBool_Type, &valobj)) {
2016-03-25 22:06:24 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
2016-03-25 22:06:24 +00:00
int val = PyObject_IsTrue(valobj);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_settings_set_boolean(group_str, key_str, val);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
2016-03-25 22:06:24 +00:00
disable_python_threads();
return Py_BuildValue("");
2016-03-23 22:57:03 +00:00
}
2016-03-26 01:48:42 +00:00
static PyObject*
python_api_settings_get_string(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
PyObject *def = NULL;
2016-03-26 01:48:42 +00:00
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOO", &group, &key, &def)) {
2016-03-26 01:48:42 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
char *def_str = python_str_or_unicode_to_string(def);
2016-03-26 01:48:42 +00:00
allow_python_threads();
2016-07-24 00:09:18 +00:00
char *res = api_settings_get_string(group_str, key_str, def_str);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
free(def_str);
2016-03-26 01:48:42 +00:00
disable_python_threads();
if (res) {
return Py_BuildValue("s", res);
} else {
return Py_BuildValue("");
}
}
static PyObject*
python_api_settings_set_string(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
PyObject *val = NULL;
2016-03-26 01:48:42 +00:00
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOO", &group, &key, &val)) {
2016-03-26 01:48:42 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
char *val_str = python_str_or_unicode_to_string(val);
2016-03-26 01:48:42 +00:00
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_settings_set_string(group_str, key_str, val_str);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
free(val_str);
2016-03-26 01:48:42 +00:00
disable_python_threads();
return Py_BuildValue("");
}
2016-03-26 02:19:30 +00:00
static PyObject*
python_api_settings_get_int(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
2016-03-26 02:19:30 +00:00
int def = 0;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOi", &group, &key, &def)) {
2016-03-26 02:19:30 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
2016-03-26 02:19:30 +00:00
allow_python_threads();
2016-07-24 00:09:18 +00:00
int res = api_settings_get_int(group_str, key_str, def);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
2016-03-26 02:19:30 +00:00
disable_python_threads();
return Py_BuildValue("i", res);
}
static PyObject*
python_api_settings_set_int(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *group = NULL;
PyObject *key = NULL;
2016-03-26 02:19:30 +00:00
int val = 0;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOi", &group, &key, &val)) {
2016-03-26 02:19:30 +00:00
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *group_str = python_str_or_unicode_to_string(group);
char *key_str = python_str_or_unicode_to_string(key);
2016-03-26 02:19:30 +00:00
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_settings_set_int(group_str, key_str, val);
2016-07-24 00:53:13 +00:00
free(group_str);
free(key_str);
2016-03-26 02:19:30 +00:00
disable_python_threads();
return Py_BuildValue("");
}
static PyObject*
python_api_incoming_message(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *barejid = NULL;
PyObject *resource = NULL;
PyObject *message = NULL;
2016-07-24 00:09:18 +00:00
if (!PyArg_ParseTuple(args, "OOO", &barejid, &resource, &message)) {
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *barejid_str = python_str_or_unicode_to_string(barejid);
char *resource_str = python_str_or_unicode_to_string(resource);
char *message_str = python_str_or_unicode_to_string(message);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_incoming_message(barejid_str, resource_str, message_str);
2016-07-24 00:53:13 +00:00
free(barejid_str);
free(resource_str);
free(message_str);
disable_python_threads();
return Py_BuildValue("");
}
static PyObject*
python_api_disco_add_feature(PyObject *self, PyObject *args)
{
2016-07-24 00:09:18 +00:00
PyObject *feature = NULL;
if (!PyArg_ParseTuple(args, "O", &feature)) {
return Py_BuildValue("");
}
2016-07-24 00:09:18 +00:00
char *feature_str = python_str_or_unicode_to_string(feature);
allow_python_threads();
2016-07-24 00:09:18 +00:00
api_disco_add_feature(feature_str);
2016-07-24 00:53:13 +00:00
free(feature_str);
disable_python_threads();
return Py_BuildValue("");
}
2016-02-24 00:31:55 +00:00
void
python_command_callback(PluginCommand *command, gchar **args)
{
disable_python_threads();
PyObject *p_args = NULL;
int num_args = g_strv_length(args);
if (num_args == 0) {
if (command->max_args == 1) {
p_args = Py_BuildValue("(O)", Py_BuildValue(""));
PyObject_CallObject(command->callback, p_args);
Py_XDECREF(p_args);
} else {
PyObject_CallObject(command->callback, p_args);
}
} else if (num_args == 1) {
p_args = Py_BuildValue("(s)", args[0]);
PyObject_CallObject(command->callback, p_args);
Py_XDECREF(p_args);
} else if (num_args == 2) {
p_args = Py_BuildValue("ss", args[0], args[1]);
PyObject_CallObject(command->callback, p_args);
Py_XDECREF(p_args);
} else if (num_args == 3) {
p_args = Py_BuildValue("sss", args[0], args[1], args[2]);
PyObject_CallObject(command->callback, p_args);
Py_XDECREF(p_args);
} else if (num_args == 4) {
p_args = Py_BuildValue("ssss", args[0], args[1], args[2], args[3]);
PyObject_CallObject(command->callback, p_args);
Py_XDECREF(p_args);
} else if (num_args == 5) {
p_args = Py_BuildValue("sssss", args[0], args[1], args[2], args[3], args[4]);
PyObject_CallObject(command->callback, p_args);
Py_XDECREF(p_args);
}
if (PyErr_Occurred()) {
PyErr_Print();
PyErr_Clear();
}
allow_python_threads();
}
void
python_timed_callback(PluginTimedFunction *timed_function)
{
disable_python_threads();
PyObject_CallObject(timed_function->callback, NULL);
allow_python_threads();
}
void
python_window_callback(PluginWindowCallback *window_callback, char *tag, char *line)
{
disable_python_threads();
PyObject *p_args = NULL;
p_args = Py_BuildValue("ss", tag, line);
PyObject_CallObject(window_callback->callback, p_args);
Py_XDECREF(p_args);
if (PyErr_Occurred()) {
PyErr_Print();
PyErr_Clear();
}
allow_python_threads();
}
static PyMethodDef apiMethods[] = {
{ "cons_alert", python_api_cons_alert, METH_NOARGS, "Highlight the console window in the status bar." },
2016-07-18 00:27:23 +00:00
{ "cons_show", python_api_cons_show, METH_VARARGS, "Print a line to the console." },
2016-02-24 00:31:55 +00:00
{ "cons_show_themed", python_api_cons_show_themed, METH_VARARGS, "Print a themed line to the console" },
2016-02-24 00:48:34 +00:00
{ "cons_bad_cmd_usage", python_api_cons_bad_cmd_usage, METH_VARARGS, "Show invalid command message in console" },
2016-02-24 00:31:55 +00:00
{ "register_command", python_api_register_command, METH_VARARGS, "Register a command." },
{ "register_timed", python_api_register_timed, METH_VARARGS, "Register a timed function." },
{ "completer_add", python_api_completer_add, METH_VARARGS, "Add items to an autocompleter." },
2016-04-07 20:25:12 +00:00
{ "completer_remove", python_api_completer_remove, METH_VARARGS, "Remove items from an autocompleter." },
2016-04-07 22:25:47 +00:00
{ "completer_clear", python_api_completer_clear, METH_VARARGS, "Remove all items from an autocompleter." },
2016-02-24 00:31:55 +00:00
{ "send_line", python_api_send_line, METH_VARARGS, "Send a line of input." },
{ "notify", python_api_notify, METH_VARARGS, "Send desktop notification." },
{ "get_current_recipient", python_api_get_current_recipient, METH_VARARGS, "Return the jid of the recipient of the current window." },
{ "get_current_muc", python_api_get_current_muc, METH_VARARGS, "Return the jid of the room of the current window." },
2016-04-15 21:24:50 +00:00
{ "get_current_nick", python_api_get_current_nick, METH_VARARGS, "Return nickname in current room." },
{ "get_current_occupants", python_api_get_current_occupants, METH_VARARGS, "Return list of occupants in current room." },
{ "current_win_is_console", python_api_current_win_is_console, METH_VARARGS, "Returns whether the current window is the console." },
2016-02-24 00:31:55 +00:00
{ "log_debug", python_api_log_debug, METH_VARARGS, "Log a debug message" },
{ "log_info", python_api_log_info, METH_VARARGS, "Log an info message" },
{ "log_warning", python_api_log_warning, METH_VARARGS, "Log a warning message" },
{ "log_error", python_api_log_error, METH_VARARGS, "Log an error message" },
{ "win_exists", python_api_win_exists, METH_VARARGS, "Determine whether a window exists." },
{ "win_create", python_api_win_create, METH_VARARGS, "Create a new window." },
{ "win_focus", python_api_win_focus, METH_VARARGS, "Focus a window." },
{ "win_show", python_api_win_show, METH_VARARGS, "Show text in the window." },
{ "win_show_themed", python_api_win_show_themed, METH_VARARGS, "Show themed text in the window." },
2016-03-23 22:57:03 +00:00
{ "send_stanza", python_api_send_stanza, METH_VARARGS, "Send an XMPP stanza." },
{ "settings_get_boolean", python_api_settings_get_boolean, METH_VARARGS, "Get a boolean setting." },
{ "settings_set_boolean", python_api_settings_set_boolean, METH_VARARGS, "Set a boolean setting." },
{ "settings_get_string", python_api_settings_get_string, METH_VARARGS, "Get a string setting." },
{ "settings_set_string", python_api_settings_set_string, METH_VARARGS, "Set a string setting." },
{ "settings_get_int", python_api_settings_get_int, METH_VARARGS, "Get a integer setting." },
{ "settings_set_int", python_api_settings_set_int, METH_VARARGS, "Set a integer setting." },
{ "incoming_message", python_api_incoming_message, METH_VARARGS, "Show an incoming message." },
{ "disco_add_feature", python_api_disco_add_feature, METH_VARARGS, "Add a feature to disco info response." },
2016-02-24 00:31:55 +00:00
{ NULL, NULL, 0, NULL }
};
2016-07-18 00:27:23 +00:00
#if PY_MAJOR_VERSION >= 3
2016-07-13 23:00:46 +00:00
static struct PyModuleDef profModule =
{
PyModuleDef_HEAD_INIT,
2016-07-18 00:27:23 +00:00
"prof",
"",
-1,
2016-07-13 23:00:46 +00:00
apiMethods
};
#endif
2016-07-18 00:27:23 +00:00
PyMODINIT_FUNC
2016-02-24 00:31:55 +00:00
python_api_init(void)
{
2016-07-18 00:27:23 +00:00
#if PY_MAJOR_VERSION >= 3
PyObject *result = PyModule_Create(&profModule);
if (!result) {
log_debug("Failed to initialise prof module");
} else {
log_debug("Initialised prof module");
}
return result;
2016-07-13 23:00:46 +00:00
#else
2016-02-24 00:31:55 +00:00
Py_InitModule("prof", apiMethods);
2016-07-13 23:00:46 +00:00
#endif
2016-02-24 00:31:55 +00:00
}
2016-06-22 00:09:39 +00:00
2016-07-18 22:24:26 +00:00
void
python_init_prof(void)
{
#if PY_MAJOR_VERSION >= 3
PyImport_AppendInittab("prof", python_api_init);
Py_Initialize();
PyEval_InitThreads();
#else
Py_Initialize();
PyEval_InitThreads();
python_api_init();
#endif
}
2016-06-22 00:09:39 +00:00
static char*
_python_plugin_name(void)
{
PyThreadState *ts = PyThreadState_Get();
PyFrameObject *frame = ts->frame;
2016-07-24 00:09:18 +00:00
char const* filename = python_str_or_unicode_to_string(frame->f_code->co_filename);
2016-06-22 00:09:39 +00:00
gchar **split = g_strsplit(filename, "/", 0);
char *plugin_name = strdup(split[g_strv_length(split)-1]);
g_strfreev(split);
return plugin_name;
}
2016-07-19 00:02:33 +00:00
char*
2016-07-24 00:09:18 +00:00
python_str_or_unicode_to_string(void *obj)
2016-07-19 00:02:33 +00:00
{
2016-07-24 00:09:18 +00:00
if (!obj) {
return NULL;
}
PyObject *pyobj = (PyObject*)obj;
if (pyobj == Py_None) {
return NULL;
}
2016-07-19 00:02:33 +00:00
#if PY_MAJOR_VERSION >= 3
2016-07-24 00:09:18 +00:00
if (PyUnicode_Check(pyobj)) {
2016-07-24 00:53:13 +00:00
PyObject *utf8_str = PyUnicode_AsUTF8String(pyobj);
char *result = strdup(PyBytes_AS_STRING(utf8_str));
Py_XDECREF(utf8_str);
return result;
2016-07-24 00:09:18 +00:00
} else {
return strdup(PyBytes_AS_STRING(pyobj));
}
2016-07-19 00:02:33 +00:00
#else
2016-07-24 00:09:18 +00:00
if (PyUnicode_Check(pyobj)) {
2016-07-24 00:53:13 +00:00
PyObject *utf8_str = PyUnicode_AsUTF8String(pyobj);
char *result = strdup(PyString_AsString(utf8_str));
Py_XDECREF(utf8_str);
return result;
2016-07-24 00:09:18 +00:00
} else {
return strdup(PyString_AsString(pyobj));
}
2016-07-19 00:02:33 +00:00
#endif
}