summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS.asciidoc1
-rw-r--r--CMakeLists.txt1
-rw-r--r--cmake/FindV8.cmake49
-rw-r--r--po/POTFILES.in6
-rw-r--r--po/srcfiles.cmake6
-rw-r--r--src/plugins/CMakeLists.txt7
-rw-r--r--src/plugins/javascript/CMakeLists.txt33
-rw-r--r--src/plugins/javascript/Makefile.am35
-rw-r--r--src/plugins/javascript/weechat-js-api.cpp4849
-rw-r--r--src/plugins/javascript/weechat-js-api.h30
-rw-r--r--src/plugins/javascript/weechat-js-v8.cpp143
-rw-r--r--src/plugins/javascript/weechat-js-v8.h54
-rw-r--r--src/plugins/javascript/weechat-js.cpp855
-rw-r--r--src/plugins/javascript/weechat-js.h64
-rw-r--r--src/plugins/script/script-command.c4
-rw-r--r--src/plugins/script/script.c4
-rw-r--r--src/plugins/script/script.h2
17 files changed, 6138 insertions, 5 deletions
diff --git a/AUTHORS.asciidoc b/AUTHORS.asciidoc
index 806ad3f29..91eb62215 100644
--- a/AUTHORS.asciidoc
+++ b/AUTHORS.asciidoc
@@ -46,6 +46,7 @@ Alphabetically:
* Jim Ramsay (lack)
* Jiri Golembiovsky (GolemJ)
* Julien Louis (ptitlouis)
+* Koka El Kiwi (KiwiDash)
* Krzysztof Koroscik (soltys)
* Kyle Fuller (kylef)
* Lázaro A.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index aff740ff2..93a3b8657 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -96,6 +96,7 @@ option(ENABLE_RUBY "Enable Ruby scripting language" ON)
option(ENABLE_LUA "Enable Lua scripting language" ON)
option(ENABLE_TCL "Enable Tcl scripting language" ON)
option(ENABLE_GUILE "Enable Scheme (guile) scripting language" ON)
+option(ENABLE_JAVASCRIPT "Enable JavaScript scripting language" ON)
option(ENABLE_TRIGGER "Enable Trigger plugin" ON)
option(ENABLE_XFER "Enable Xfer plugin" ON)
option(ENABLE_MAN "Enable build of man page" OFF)
diff --git a/cmake/FindV8.cmake b/cmake/FindV8.cmake
new file mode 100644
index 000000000..c9522bd7b
--- /dev/null
+++ b/cmake/FindV8.cmake
@@ -0,0 +1,49 @@
+#
+# Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+#
+# This file is part of WeeChat, the extensible chat client.
+#
+# WeeChat 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.
+#
+# WeeChat 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
+# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+#
+
+# - Find Aspell
+# This module finds if libaspell is installed and determines where
+# the include files and libraries are.
+#
+# This code sets the following variables:
+#
+# V8_INCLUDE_DIR = path to where v8.h can be found
+# V8_LIBRARY = path to where libv8.so* can be found
+
+if(V8_FOUND)
+ # Already in cache, be silent
+ SET(V8_FIND_QUIETLY TRUE)
+endif()
+
+set(V8_INC_PATHS
+ /usr/include
+ ${CMAKE_INCLUDE_PATH}
+)
+find_path(V8_INCLUDE_DIR v8.h PATHS ${V8_INC_PATHS})
+find_library(V8_LIBRARY
+ NAMES v8
+ PATHS /lib /usr/lib /usr/local/lib /usr/pkg/lib
+)
+
+find_package_handle_standard_args(V8 DEFAULT_MSG V8_LIBRARY V8_INCLUDE_DIR)
+
+mark_as_advanced(
+ V8_INCLUDE_DIR
+ V8_LIBRARY
+)
diff --git a/po/POTFILES.in b/po/POTFILES.in
index c9681d5f4..bc1ec8291 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -180,6 +180,12 @@
./src/plugins/irc/irc-sasl.h
./src/plugins/irc/irc-server.c
./src/plugins/irc/irc-server.h
+./src/plugins/javascript/weechat-js-api.cpp
+./src/plugins/javascript/weechat-js-api.h
+./src/plugins/javascript/weechat-js-v8.cpp
+./src/plugins/javascript/weechat-js-v8.h
+./src/plugins/javascript/weechat-js.cpp
+./src/plugins/javascript/weechat-js.h
./src/plugins/logger/logger-buffer.c
./src/plugins/logger/logger-buffer.h
./src/plugins/logger/logger.c
diff --git a/po/srcfiles.cmake b/po/srcfiles.cmake
index a7d10d667..06702a89c 100644
--- a/po/srcfiles.cmake
+++ b/po/srcfiles.cmake
@@ -181,6 +181,12 @@ SET(WEECHAT_SOURCES
./src/plugins/irc/irc-sasl.h
./src/plugins/irc/irc-server.c
./src/plugins/irc/irc-server.h
+./src/plugins/javascript/weechat-js-api.cpp
+./src/plugins/javascript/weechat-js-api.h
+./src/plugins/javascript/weechat-js-v8.cpp
+./src/plugins/javascript/weechat-js-v8.h
+./src/plugins/javascript/weechat-js.cpp
+./src/plugins/javascript/weechat-js.h
./src/plugins/logger/logger-buffer.c
./src/plugins/logger/logger-buffer.h
./src/plugins/logger/logger.c
diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
index f08b3a283..ce7546859 100644
--- a/src/plugins/CMakeLists.txt
+++ b/src/plugins/CMakeLists.txt
@@ -141,6 +141,13 @@ if(ENABLE_SCRIPTS AND ENABLE_GUILE)
endif()
endif()
+if(ENABLE_SCRIPTS AND ENABLE_JAVASCRIPT)
+ find_package(V8)
+ if(V8_FOUND)
+ add_subdirectory(javascript)
+ endif()
+endif()
+
if(ENABLE_TRIGGER)
add_subdirectory(trigger)
endif()
diff --git a/src/plugins/javascript/CMakeLists.txt b/src/plugins/javascript/CMakeLists.txt
new file mode 100644
index 000000000..91a56a340
--- /dev/null
+++ b/src/plugins/javascript/CMakeLists.txt
@@ -0,0 +1,33 @@
+#
+# Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+#
+# This file is part of WeeChat, the extensible chat client.
+#
+# WeeChat 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.
+#
+# WeeChat 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
+# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+#
+
+enable_language(CXX)
+
+add_library(javascript MODULE weechat-js.cpp weechat-js.h
+weechat-js-v8.cpp weechat-js-v8.h
+weechat-js-api.cpp weechat-js-api.h)
+
+set_target_properties(javascript PROPERTIES PREFIX "")
+
+if(V8_FOUND)
+ include_directories(${V8_INCLUDE_DIR})
+ target_link_libraries(javascript ${V8_LIBRARY} weechat_plugins_scripts)
+endif()
+
+install(TARGETS javascript LIBRARY DESTINATION ${LIBDIR}/plugins)
diff --git a/src/plugins/javascript/Makefile.am b/src/plugins/javascript/Makefile.am
new file mode 100644
index 000000000..c90fedbac
--- /dev/null
+++ b/src/plugins/javascript/Makefile.am
@@ -0,0 +1,35 @@
+#
+# Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+#
+# This file is part of WeeChat, the extensible chat client.
+#
+# WeeChat 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.
+#
+# WeeChat 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
+# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+#
+
+AM_CPPFLAGS = -DLOCALEDIR=\"$(datadir)/locale\" $(JAVASCRIPT_CFLAGS)
+
+libdir = ${weechat_libdir}/plugins
+
+lib_LTLIBRARIES = javascript.la
+
+javascript_la_SOURCES = weechat-js.c \
+ weechat-js.h \
+ weechat-js-v8.c \
+ weechat-js-v8.h \
+ weechat-js-api.c \
+ weechat-js-api.h
+javascript_la_LDFLAGS = -module -no-undefined
+javascript_la_LIBADD = ../lib_weechat_plugins_scripts.la $(JAVASCRIPT_LFLAGS)
+
+EXTRA_DIST = CMakeLists.txt
diff --git a/src/plugins/javascript/weechat-js-api.cpp b/src/plugins/javascript/weechat-js-api.cpp
new file mode 100644
index 000000000..ad6a4e9fa
--- /dev/null
+++ b/src/plugins/javascript/weechat-js-api.cpp
@@ -0,0 +1,4849 @@
+/*
+ * weechat-js-api.cpp - javascript API functions
+ *
+ * Copyright (C) 2013 Koka El Kiwi <admin@kokabsolu.com>
+ * Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+ *
+ * This file is part of WeeChat, the extensible chat client.
+ *
+ * WeeChat 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.
+ *
+ * WeeChat 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
+ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#undef _
+
+#include <cstdlib>
+#include <cstring>
+#include <string>
+
+extern "C"
+{
+#include "../weechat-plugin.h"
+#include "../plugin-script.h"
+#include "../plugin-script-api.h"
+#include "../plugin-script-callback.h"
+}
+
+#include "weechat-js.h"
+#include "weechat-js-v8.h"
+#include "weechat-js-api.h"
+
+using namespace v8;
+
+
+#define API_DEF_FUNC(__name) \
+ weechat_obj->Set(String::New(#__name), \
+ FunctionTemplate::New(weechat_js_api_##__name));
+#define API_DEF_CONST_INT(__name) \
+ weechat_obj->Set(String::New(#__name), \
+ Integer::New(__name));
+#define API_DEF_CONST_STR(__name) \
+ weechat_obj->Set(String::New(#__name), \
+ String::New(__name));
+#define API_FUNC(__name) \
+ static Handle<Value> \
+ weechat_js_api_##__name(const Arguments &args)
+#define API_INIT_FUNC(__init, __name, __args_fmt, __ret) \
+ std::string js_function_name(__name); \
+ std::string js_args(__args_fmt); \
+ int js_args_len = js_args.size(); \
+ int num; \
+ if (__init \
+ && (!js_current_script || !js_current_script->name)) \
+ { \
+ WEECHAT_SCRIPT_MSG_NOT_INIT(JS_CURRENT_SCRIPT_NAME, \
+ js_function_name.c_str()); \
+ __ret; \
+ } \
+ if (args.Length() < js_args_len) \
+ { \
+ WEECHAT_SCRIPT_MSG_WRONG_ARGS(JS_CURRENT_SCRIPT_NAME, \
+ js_function_name.c_str()); \
+ __ret; \
+ } \
+ for (num = 0; num < js_args_len; num++) \
+ { \
+ if (((js_args[num] == 's') && (!args[num]->IsString())) \
+ || ((js_args[num] == 'i') && (!args[num]->IsInt32())) \
+ || ((js_args[num] == 'h') && (!args[num]->IsObject()))) \
+ { \
+ WEECHAT_SCRIPT_MSG_WRONG_ARGS(JS_CURRENT_SCRIPT_NAME, \
+ js_function_name.c_str()); \
+ __ret; \
+ } \
+ }
+#define API_WRONG_ARGS(__ret) \
+ { \
+ WEECHAT_SCRIPT_MSG_WRONG_ARGS(JS_CURRENT_SCRIPT_NAME, \
+ js_function_name.c_str()); \
+ __ret; \
+ }
+
+#define API_PTR2STR(__pointer) \
+ plugin_script_ptr2str (__pointer)
+#define API_STR2PTR(__string) \
+ plugin_script_str2ptr (weechat_js_plugin, \
+ JS_CURRENT_SCRIPT_NAME, \
+ js_function_name.c_str(), __string)
+
+#define API_RETURN_OK return v8::True();
+#define API_RETURN_ERROR return v8::False();
+#define API_RETURN_EMPTY \
+ return String::New("");
+#define API_RETURN_STRING(__string) \
+ return String::New(__string)
+#define API_RETURN_STRING_FREE(__string) \
+ { \
+ Handle<Value> return_value = String::New(__string); \
+ free ((void *)__string); \
+ return return_value; \
+ }
+#define API_RETURN_INT(__int) \
+ return Integer::New(__int)
+#define API_RETURN_LONG(__int) \
+ return Integer::New(__int)
+
+
+/*
+ * Registers a javascript script.
+ */
+
+API_FUNC(register)
+{
+ API_INIT_FUNC(0, "register", "sssssss", API_RETURN_ERROR);
+
+ if (js_registered_script)
+ {
+ /* script already registered */
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: script \"%s\" already "
+ "registered (register ignored)"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME,
+ js_registered_script->name);
+ API_RETURN_ERROR;
+ }
+
+ js_current_script = NULL;
+ js_registered_script = NULL;
+
+ String::Utf8Value name(args[0]);
+ String::Utf8Value author(args[1]);
+ String::Utf8Value version(args[2]);
+ String::Utf8Value license(args[3]);
+ String::Utf8Value description(args[4]);
+ String::Utf8Value shutdown_func(args[5]);
+ String::Utf8Value charset(args[6]);
+
+ if (plugin_script_search (weechat_js_plugin, js_scripts, *name))
+ {
+ /* another script already exists with same name */
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: unable to register script "
+ "\"%s\" (another script already "
+ "exists with this name)"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, *name);
+ API_RETURN_ERROR;
+ }
+
+ /* register script */
+ js_current_script = plugin_script_add (weechat_js_plugin,
+ &js_scripts, &last_js_script,
+ (js_current_script_filename) ?
+ js_current_script_filename : "",
+ *name, *author, *version,
+ *license, *description,
+ *shutdown_func, *charset);
+
+ if (js_current_script)
+ {
+ js_registered_script = js_current_script;
+ if ((weechat_js_plugin->debug >= 2) || !js_quiet)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s: registered script \"%s\", "
+ "version %s (%s)"),
+ JS_PLUGIN_NAME, *name, *version, *description);
+ }
+ js_current_script->interpreter = js_current_interpreter;
+ }
+ else
+ {
+ API_RETURN_ERROR;
+ }
+
+ API_RETURN_OK;
+}
+
+/*
+ * Wrappers for functions in scripting API.
+ *
+ * For more info about these functions, look at their implementation in WeeChat
+ * core.
+ */
+
+API_FUNC(plugin_get_name)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "plugin_get_name", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value plugin(args[0]);
+
+ result = weechat_plugin_get_name (
+ (struct t_weechat_plugin *)API_STR2PTR(*plugin));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(charset_set)
+{
+ API_INIT_FUNC(1, "charset_set", "s", API_RETURN_ERROR);
+
+ String::Utf8Value charset(args[0]);
+
+ plugin_script_api_charset_set (js_current_script, *charset);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(iconv_to_internal)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "iconv_to_internal", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value charset(args[0]);
+ String::Utf8Value string(args[1]);
+
+ result = weechat_iconv_to_internal (*charset, *string);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(iconv_from_internal)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "iconv_from_internal", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value charset(args[0]);
+ String::Utf8Value string(args[1]);
+
+ result = weechat_iconv_from_internal (*charset, *string);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(gettext)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "gettext", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value string(args[0]);
+
+ result = weechat_gettext (*string);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(ngettext)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "ngettext", "ssi", API_RETURN_EMPTY);
+
+ String::Utf8Value single(args[0]);
+ String::Utf8Value plural(args[1]);
+ int count = args[2]->IntegerValue();
+
+ result = weechat_ngettext (*single, *plural, count);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(strlen_screen)
+{
+ int value;
+
+ API_INIT_FUNC(1, "strlen_screen", "s", API_RETURN_INT(0));
+
+ String::Utf8Value string(args[0]);
+
+ value = weechat_strlen_screen (*string);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(string_match)
+{
+ int value;
+
+ API_INIT_FUNC(1, "string_match", "ssi", API_RETURN_INT(0));
+
+ String::Utf8Value string(args[0]);
+ String::Utf8Value mask(args[1]);
+ int case_sensitive = args[2]->IntegerValue();
+
+ value = weechat_string_match (*string, *mask, case_sensitive);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(string_has_highlight)
+{
+ int value;
+
+ API_INIT_FUNC(1, "string_has_highlight", "ss", API_RETURN_INT(0));
+
+ String::Utf8Value string(args[0]);
+ String::Utf8Value highlight_words(args[1]);
+
+ value = weechat_string_has_highlight (*string, *highlight_words);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(string_has_highlight_regex)
+{
+ int value;
+
+ API_INIT_FUNC(1, "string_has_highlight_regex", "ss", API_RETURN_INT(0));
+
+ String::Utf8Value string(args[0]);
+ String::Utf8Value regex(args[1]);
+
+ value = weechat_string_has_highlight_regex (*string, *regex);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(string_mask_to_regex)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "string_mask_to_regex", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value mask(args[0]);
+
+ result = weechat_string_mask_to_regex (*mask);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(string_remove_color)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "string_remove_color", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value string(args[0]);
+ String::Utf8Value replacement(args[1]);
+
+ result = weechat_string_remove_color (*string, *replacement);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(string_is_command_char)
+{
+ int value;
+
+ API_INIT_FUNC(1, "string_is_command_char", "s", API_RETURN_INT(0));
+
+ String::Utf8Value string(args[0]);
+
+ value = weechat_string_is_command_char (*string);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(string_input_for_buffer)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "string_input_for_buffer", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value string(args[0]);
+
+ result = weechat_string_input_for_buffer (*string);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(string_eval_expression)
+{
+ struct t_hashtable *pointers, *extra_vars, *options;
+ char *result;
+
+ API_INIT_FUNC(1, "string_eval_expression", "shhh", API_RETURN_EMPTY);
+
+ String::Utf8Value expr(args[0]);
+ pointers = weechat_js_object_to_hashtable (
+ args[1]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_POINTER);
+ extra_vars = weechat_js_object_to_hashtable (
+ args[2]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+ options = weechat_js_object_to_hashtable (
+ args[3]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+
+ result = weechat_string_eval_expression (*expr, pointers, extra_vars,
+ options);
+
+ if (pointers)
+ weechat_hashtable_free (pointers);
+ if (extra_vars)
+ weechat_hashtable_free (extra_vars);
+ if (options)
+ weechat_hashtable_free (options);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(mkdir_home)
+{
+ int mode;
+
+ API_INIT_FUNC(1, "mkdir_home", "si", API_RETURN_ERROR);
+
+ String::Utf8Value directory(args[0]);
+ mode = args[1]->IntegerValue();
+
+ if (weechat_mkdir_home (*directory, mode))
+ API_RETURN_OK;
+
+ API_RETURN_ERROR;
+}
+
+API_FUNC(mkdir)
+{
+ int mode;
+
+ API_INIT_FUNC(1, "mkdir", "si", API_RETURN_ERROR);
+
+ String::Utf8Value directory(args[0]);
+ mode = args[1]->IntegerValue();
+
+ if (weechat_mkdir (*directory, mode))
+ API_RETURN_OK;
+
+ API_RETURN_ERROR;
+}
+
+API_FUNC(mkdir_parents)
+{
+ int mode;
+
+ API_INIT_FUNC(1, "mkdir_parents", "si", API_RETURN_ERROR);
+
+ String::Utf8Value directory(args[0]);
+ mode = args[1]->IntegerValue();
+
+ if (weechat_mkdir_parents (*directory, mode))
+ API_RETURN_OK;
+
+ API_RETURN_ERROR;
+}
+
+API_FUNC(list_new)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "list_new", "", API_RETURN_EMPTY);
+
+ result = API_PTR2STR(weechat_list_new ());
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_add)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "list_add", "ssss", API_RETURN_EMPTY);
+
+ String::Utf8Value weelist(args[0]);
+ String::Utf8Value data(args[1]);
+ String::Utf8Value where(args[2]);
+ String::Utf8Value user_data(args[3]);
+
+ result = API_PTR2STR(
+ weechat_list_add ((struct t_weelist *)API_STR2PTR(*weelist),
+ *data,
+ *where,
+ API_STR2PTR(*user_data)));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_search)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "list_search", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value weelist(args[0]);
+ String::Utf8Value data(args[1]);
+
+ result = API_PTR2STR(
+ weechat_list_search (
+ (struct t_weelist *)API_STR2PTR(*weelist), *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_search_pos)
+{
+ int pos;
+
+ API_INIT_FUNC(1, "list_search_pos", "ss", API_RETURN_INT(-1));
+
+ String::Utf8Value weelist(args[0]);
+ String::Utf8Value data(args[1]);
+
+ pos = weechat_list_search_pos (
+ (struct t_weelist *)API_STR2PTR(*weelist), *data);
+
+ API_RETURN_INT(pos);
+}
+
+API_FUNC(list_casesearch)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "list_casesearch", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value weelist(args[0]);
+ String::Utf8Value data(args[1]);
+
+ result = API_PTR2STR(
+ weechat_list_casesearch (
+ (struct t_weelist *)API_STR2PTR(*weelist), *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_casesearch_pos)
+{
+ int pos;
+
+ API_INIT_FUNC(1, "list_casesearch_pos", "ss", API_RETURN_INT(-1));
+
+ String::Utf8Value weelist(args[0]);
+ String::Utf8Value data(args[1]);
+
+ pos = weechat_list_casesearch_pos (
+ (struct t_weelist *)API_STR2PTR(*weelist), *data);
+
+ API_RETURN_INT(pos);
+}
+
+API_FUNC(list_get)
+{
+ int position;
+ char *result;
+
+ API_INIT_FUNC(1, "list_get", "si", API_RETURN_EMPTY);
+
+ String::Utf8Value weelist(args[0]);
+ position = args[1]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_list_get ((struct t_weelist *)API_STR2PTR(*weelist),
+ position));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_set)
+{
+ API_INIT_FUNC(1, "list_set", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value item(args[0]);
+ String::Utf8Value new_value(args[1]);
+
+ weechat_list_set ((struct t_weelist_item *)API_STR2PTR(*item), *new_value);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(list_next)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "list_next", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+
+ result = API_PTR2STR(
+ weechat_list_next ((struct t_weelist_item *)API_STR2PTR(*item)));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_prev)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "list_prev", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+
+ result = API_PTR2STR(
+ weechat_list_prev ((struct t_weelist_item *)API_STR2PTR(*item)));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(list_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "list_string", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+
+ result = weechat_list_string (
+ (struct t_weelist_item *)API_STR2PTR(*item));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(list_size)
+{
+ int size;
+
+ API_INIT_FUNC(1, "list_size", "s", API_RETURN_INT(0));
+
+ String::Utf8Value weelist(args[0]);
+
+ size = weechat_list_size ((struct t_weelist *)API_STR2PTR(*weelist));
+
+ API_RETURN_INT(size);
+}
+
+API_FUNC(list_remove)
+{
+ API_INIT_FUNC(1, "list_remove", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value weelist(args[0]);
+ String::Utf8Value item(args[1]);
+
+ weechat_list_remove ((struct t_weelist *)API_STR2PTR(*weelist),
+ (struct t_weelist_item *)API_STR2PTR(*item));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(list_remove_all)
+{
+ API_INIT_FUNC(1, "list_remove_all", "s", API_RETURN_ERROR);
+
+ String::Utf8Value weelist(args[0]);
+
+ weechat_list_remove_all ((struct t_weelist *)API_STR2PTR(*weelist));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(list_free)
+{
+ API_INIT_FUNC(1, "list_free", "s", API_RETURN_ERROR);
+ if (args.Length() < 1)
+ API_WRONG_ARGS(API_RETURN_ERROR);
+
+ String::Utf8Value weelist(args[0]);
+
+ weechat_list_free ((struct t_weelist *)API_STR2PTR(*weelist));
+
+ API_RETURN_OK;
+}
+
+int
+weechat_js_api_config_reload_cb (void *data, struct t_config_file *config_file)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(config_file);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_CONFIG_READ_FILE_NOT_FOUND;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_CONFIG_READ_FILE_NOT_FOUND;
+}
+
+API_FUNC(config_new)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "config_new", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_config_new (weechat_js_plugin,
+ js_current_script,
+ *name,
+ &weechat_js_api_config_reload_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_config_read_cb (void *data,
+ struct t_config_file *config_file,
+ struct t_config_section *section,
+ const char *option_name, const char *value)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[5];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(config_file);
+ func_argv[2] = API_PTR2STR(section);
+ func_argv[3] = (option_name) ? (char *)option_name : empty_arg;
+ func_argv[4] = (value) ? (char *)value : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sssss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_CONFIG_OPTION_SET_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[2])
+ free (func_argv[2]);
+
+ return ret;
+ }
+
+ return WEECHAT_CONFIG_OPTION_SET_ERROR;
+}
+
+int
+weechat_js_api_config_section_write_cb (void *data,
+ struct t_config_file *config_file,
+ const char *section_name)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(config_file);
+ func_argv[2] = (section_name) ? (char *)section_name : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_CONFIG_WRITE_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_CONFIG_WRITE_ERROR;
+}
+
+int
+weechat_js_api_config_section_write_default_cb (void *data,
+ struct t_config_file *config_file,
+ const char *section_name)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(config_file);
+ func_argv[2] = (section_name) ? (char *)section_name : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_CONFIG_WRITE_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_CONFIG_WRITE_ERROR;
+}
+
+int
+weechat_js_api_config_section_create_option_cb (void *data,
+ struct t_config_file *config_file,
+ struct t_config_section *section,
+ const char *option_name,
+ const char *value)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[5];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(config_file);
+ func_argv[2] = API_PTR2STR(section);
+ func_argv[3] = (option_name) ? (char *)option_name : empty_arg;
+ func_argv[4] = (value) ? (char *)value : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sssss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_CONFIG_OPTION_SET_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[2])
+ free (func_argv[2]);
+
+ return ret;
+ }
+
+ return WEECHAT_CONFIG_OPTION_SET_ERROR;
+}
+
+int
+weechat_js_api_config_section_delete_option_cb (void *data,
+ struct t_config_file *config_file,
+ struct t_config_section *section,
+ struct t_config_option *option)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[4];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(config_file);
+ func_argv[2] = API_PTR2STR(section);
+ func_argv[3] = API_PTR2STR(option);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_CONFIG_OPTION_UNSET_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[2])
+ free (func_argv[2]);
+ if (func_argv[3])
+ free (func_argv[3]);
+
+ return ret;
+ }
+
+ return WEECHAT_CONFIG_OPTION_UNSET_ERROR;
+}
+
+API_FUNC(config_new_section)
+{
+ int user_can_add_options, user_can_delete_options;
+ char *result;
+
+ API_INIT_FUNC(1, "config_new_section", "ssiissssssssss", API_RETURN_EMPTY);
+
+ String::Utf8Value config_file(args[0]);
+ String::Utf8Value name(args[1]);
+ user_can_add_options = args[2]->IntegerValue();
+ user_can_delete_options = args[3]->IntegerValue();
+ String::Utf8Value function_read(args[4]);
+ String::Utf8Value data_read(args[5]);
+ String::Utf8Value function_write(args[6]);
+ String::Utf8Value data_write(args[7]);
+ String::Utf8Value function_write_default(args[8]);
+ String::Utf8Value data_write_default(args[9]);
+ String::Utf8Value function_create_option(args[10]);
+ String::Utf8Value data_create_option(args[11]);
+ String::Utf8Value function_delete_option(args[12]);
+ String::Utf8Value data_delete_option(args[13]);
+
+ result = API_PTR2STR(
+ plugin_script_api_config_new_section (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_config_file *)API_STR2PTR(*config_file),
+ *name,
+ user_can_add_options,
+ user_can_delete_options,
+ &weechat_js_api_config_read_cb,
+ *function_read,
+ *data_read,
+ &weechat_js_api_config_section_write_cb,
+ *function_write,
+ *data_write,
+ &weechat_js_api_config_section_write_default_cb,
+ *function_write_default,
+ *data_write_default,
+ &weechat_js_api_config_section_create_option_cb,
+ *function_create_option,
+ *data_create_option,
+ &weechat_js_api_config_section_delete_option_cb,
+ *function_delete_option,
+ *data_delete_option));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(config_search_section)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "config_search_section", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value config_file(args[0]);
+ String::Utf8Value section_name(args[1]);
+
+ result = API_PTR2STR(
+ weechat_config_search_section (
+ (struct t_config_file *) API_STR2PTR(*config_file),
+ *section_name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_config_option_check_value_cb (void *data,
+ struct t_config_option *option,
+ const char *value)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(option);
+ func_argv[2] = (value) ? (char *)value : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = 0;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return 0;
+}
+
+void
+weechat_js_api_config_option_change_cb (void *data,
+ struct t_config_option *option)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char empty_arg[1] = { '\0' };
+ int *rc;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(option);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ss", func_argv);
+
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ if (rc)
+ free (rc);
+ }
+}
+
+void
+weechat_js_api_config_option_delete_cb (void *data,
+ struct t_config_option *option)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char empty_arg[1] = { '\0' };
+ int *rc;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(option);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ss", func_argv);
+
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ if (rc)
+ free (rc);
+ }
+}
+
+API_FUNC(config_new_option)
+{
+ int min, max, null_value_allowed;
+ char *result;
+
+ API_INIT_FUNC(1, "config_new_option", "ssssssiississssss", API_RETURN_EMPTY);
+
+ String::Utf8Value config_file(args[0]);
+ String::Utf8Value section(args[1]);
+ String::Utf8Value name(args[2]);
+ String::Utf8Value type(args[3]);
+ String::Utf8Value description(args[4]);
+ String::Utf8Value string_values(args[5]);
+ min = args[6]->IntegerValue();
+ max = args[7]->IntegerValue();
+ String::Utf8Value default_value(args[8]);
+ String::Utf8Value value(args[9]);
+ null_value_allowed = args[10]->IntegerValue();
+ String::Utf8Value function_check_value(args[11]);
+ String::Utf8Value data_check_value(args[12]);
+ String::Utf8Value function_change(args[13]);
+ String::Utf8Value data_change(args[14]);
+ String::Utf8Value function_delete(args[15]);
+ String::Utf8Value data_delete(args[16]);
+
+ result = API_PTR2STR(
+ plugin_script_api_config_new_option (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_config_file *)API_STR2PTR(*config_file),
+ (struct t_config_section *)API_STR2PTR(*section),
+ *name,
+ *type,
+ *description,
+ *string_values,
+ min,
+ max,
+ *default_value,
+ *value,
+ null_value_allowed,
+ &weechat_js_api_config_option_check_value_cb,
+ *function_check_value,
+ *data_check_value,
+ &weechat_js_api_config_option_change_cb,
+ *function_change,
+ *data_change,
+ &weechat_js_api_config_option_delete_cb,
+ *function_delete,
+ *data_delete));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(config_search_option)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "config_search_option", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value config_file(args[0]);
+ String::Utf8Value section(args[1]);
+ String::Utf8Value option_name(args[2]);
+
+ result = API_PTR2STR(
+ weechat_config_search_option (
+ (struct t_config_file *)API_STR2PTR(*config_file),
+ (struct t_config_section *)API_STR2PTR(*section),
+ *option_name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(config_string_to_boolean)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_string_to_boolean", "s", API_RETURN_INT(0));
+
+ String::Utf8Value text(args[0]);
+
+ value = weechat_config_string_to_boolean (*text);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_option_reset)
+{
+ int run_callback, rc;
+
+ API_INIT_FUNC(1, "config_option_reset", "si", API_RETURN_INT(0));
+
+ String::Utf8Value option(args[0]);
+ run_callback = args[1]->IntegerValue();
+
+ rc = weechat_config_option_reset (
+ (struct t_config_option *)API_STR2PTR(*option), run_callback);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_option_set)
+{
+ int run_callback, rc;
+
+ API_INIT_FUNC(1, "config_option_set", "ssi", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR));
+
+ String::Utf8Value option(args[0]);
+ String::Utf8Value value(args[1]);
+ run_callback = args[2]->IntegerValue();
+
+ rc = weechat_config_option_set (
+ (struct t_config_option *)API_STR2PTR(*option), *value, run_callback);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_option_set_null)
+{
+ int run_callback, rc;
+
+ API_INIT_FUNC(1, "config_option_set_null", "si", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR));
+
+ String::Utf8Value option(args[0]);
+ run_callback = args[1]->IntegerValue();
+
+ rc = weechat_config_option_set_null (
+ (struct t_config_option *)API_STR2PTR(*option), run_callback);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_option_unset)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_option_unset", "s", API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR));
+
+ String::Utf8Value option(args[0]);
+
+ rc = weechat_config_option_unset (
+ (struct t_config_option *) API_STR2PTR(*option));
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_option_rename)
+{
+ API_INIT_FUNC(1, "config_option_rename", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value option(args[0]);
+ String::Utf8Value new_name(args[1]);
+
+ weechat_config_option_rename (
+ (struct t_config_option *)API_STR2PTR(*option), *new_name);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_option_is_null)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_option_is_null", "s", API_RETURN_INT(1));
+
+ String::Utf8Value option(args[0]);
+
+ value = weechat_config_option_is_null (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_option_default_is_null)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_option_default_is_null", "s", API_RETURN_INT(1));
+
+ String::Utf8Value option(args[0]);
+
+ value = weechat_config_option_default_is_null (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_boolean)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_boolean", "s", API_RETURN_INT(0));
+
+ String::Utf8Value option(args[0]);
+
+ value = weechat_config_boolean (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_boolean_default)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_boolean_default", "s", API_RETURN_INT(0));
+
+ String::Utf8Value option(args[0]);
+
+ value = weechat_config_boolean_default (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_integer", "s", API_RETURN_INT(0));
+
+ String::Utf8Value option(args[0]);
+
+ value = weechat_config_integer (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_integer_default)
+{
+ int value;
+
+ API_INIT_FUNC(1, "config_integer_default", "s", API_RETURN_INT(0));
+
+ String::Utf8Value option(args[0]);
+
+ value = weechat_config_integer_default (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(config_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "config_string", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+
+ result = weechat_config_string (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(config_string_default)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "config_string_default", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+
+ result = weechat_config_string_default (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(config_color)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "config_color", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+
+ result = weechat_config_color (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(config_color_default)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "config_color_default", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+
+ result = weechat_config_color_default (
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(config_write_option)
+{
+ API_INIT_FUNC(1, "config_write_option", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value config_file(args[0]);
+ String::Utf8Value option(args[1]);
+
+ weechat_config_write_option (
+ (struct t_config_file *)API_STR2PTR(*config_file),
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_write_line)
+{
+ API_INIT_FUNC(1, "config_write_line", "sss", API_RETURN_ERROR);
+
+ String::Utf8Value config_file(args[0]);
+ String::Utf8Value option_name(args[1]);
+ String::Utf8Value value(args[2]);
+
+ weechat_config_write_line (
+ (struct t_config_file *)API_STR2PTR(*config_file),
+ *option_name,
+ "%s",
+ *value);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_write)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_write", "s", API_RETURN_INT(WEECHAT_CONFIG_WRITE_ERROR));
+
+ String::Utf8Value config_file(args[0]);
+
+ rc = weechat_config_write (
+ (struct t_config_file *)API_STR2PTR(*config_file));
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_read)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_read", "s", API_RETURN_INT(-1));
+
+ String::Utf8Value config_file(args[0]);
+
+ rc = weechat_config_read (
+ (struct t_config_file *)API_STR2PTR(*config_file));
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_reload)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_reload", "s", API_RETURN_INT(-1));
+
+ String::Utf8Value config_file(args[0]);
+
+ rc = weechat_config_reload (
+ (struct t_config_file *)API_STR2PTR(*config_file));
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_option_free)
+{
+ API_INIT_FUNC(1, "config_option_free", "s", API_RETURN_ERROR);
+
+ String::Utf8Value option(args[0]);
+
+ plugin_script_api_config_option_free (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_config_option *)API_STR2PTR(*option));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_section_free_options)
+{
+ API_INIT_FUNC(1, "config_section_free_options", "s", API_RETURN_ERROR);
+
+ String::Utf8Value section(args[0]);
+
+ plugin_script_api_config_section_free_options (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_config_section *)API_STR2PTR(*section));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_section_free)
+{
+ API_INIT_FUNC(1, "config_section_free", "s", API_RETURN_ERROR);
+
+ String::Utf8Value section(args[0]);
+
+ plugin_script_api_config_section_free (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_config_section *)API_STR2PTR(*section));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_free)
+{
+ API_INIT_FUNC(1, "config_free", "s", API_RETURN_ERROR);
+
+ String::Utf8Value config_file(args[0]);
+
+ plugin_script_api_config_free (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_config_file *)API_STR2PTR(*config_file));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_get)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "config_get", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+
+ result = API_PTR2STR(weechat_config_get (*option));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(config_get_plugin)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "config_get_plugin", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+
+ result = plugin_script_api_config_get_plugin (weechat_js_plugin,
+ js_current_script,
+ *option);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(config_is_set_plugin)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_is_set_plugin", "s", API_RETURN_INT(0));
+
+ String::Utf8Value option(args[0]);
+
+ rc = plugin_script_api_config_is_set_plugin (weechat_js_plugin,
+ js_current_script,
+ *option);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_set_plugin)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_set_plugin", "ss", API_RETURN_INT(WEECHAT_CONFIG_OPTION_SET_ERROR));
+
+ String::Utf8Value option(args[0]);
+ String::Utf8Value value(args[1]);
+
+ rc = plugin_script_api_config_set_plugin (weechat_js_plugin,
+ js_current_script,
+ *option,
+ *value);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(config_set_desc_plugin)
+{
+ API_INIT_FUNC(1, "config_set_desc_plugin", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value option(args[0]);
+ String::Utf8Value description(args[1]);
+
+ plugin_script_api_config_set_desc_plugin (weechat_js_plugin,
+ js_current_script,
+ *option,
+ *description);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(config_unset_plugin)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "config_unset_plugin", "s", API_RETURN_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR));
+
+ String::Utf8Value option(args[0]);
+
+ rc = plugin_script_api_config_unset_plugin (weechat_js_plugin,
+ js_current_script,
+ *option);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(key_bind)
+{
+ struct t_hashtable *hashtable;
+ Handle<Object> obj;
+ int num_keys;
+
+ API_INIT_FUNC(1, "key_bind", "sh", API_RETURN_INT(0));
+
+ String::Utf8Value context(args[0]);
+ hashtable = weechat_js_object_to_hashtable (
+ args[1]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+
+ num_keys = weechat_key_bind (*context, hashtable);
+
+ if (hashtable)
+ weechat_hashtable_free (hashtable);
+
+ API_RETURN_INT(num_keys);
+}
+
+API_FUNC(key_unbind)
+{
+ int num_keys;
+
+ API_INIT_FUNC(1, "key_unbind", "ss", API_RETURN_INT(0));
+
+ String::Utf8Value context(args[0]);
+ String::Utf8Value key(args[1]);
+
+ num_keys = weechat_key_unbind (*context, *key);
+
+ API_RETURN_INT(num_keys);
+}
+
+API_FUNC(prefix)
+{
+ const char *result;
+
+ API_INIT_FUNC(0, "prefix", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value prefix(args[0]);
+
+ result = weechat_prefix (*prefix);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(color)
+{
+ const char *result;
+
+ API_INIT_FUNC(0, "color", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value color(args[0]);
+
+ result = weechat_color (*color);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(print)
+{
+ API_INIT_FUNC(0, "print", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value message(args[1]);
+
+ plugin_script_api_printf (weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ "%s", *message);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(print_date_tags)
+{
+ int date;
+
+ API_INIT_FUNC(1, "print_date_tags", "siss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ date = args[1]->IntegerValue();
+ String::Utf8Value tags(args[2]);
+ String::Utf8Value message(args[3]);
+
+ plugin_script_api_printf_date_tags (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ date,
+ *tags,
+ "%s", *message);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(print_y)
+{
+ int y;
+
+ API_INIT_FUNC(1, "print_y", "sis", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ y = args[1]->IntegerValue();
+ String::Utf8Value message(args[2]);
+
+ plugin_script_api_printf_y (weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ y,
+ "%s", *message);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(log_print)
+{
+ API_INIT_FUNC(1, "log_print", "s", API_RETURN_ERROR);
+
+ String::Utf8Value message(args[0]);
+
+ plugin_script_api_log_printf (weechat_js_plugin,
+ js_current_script,
+ "%s", *message);
+
+ API_RETURN_OK;
+}
+
+int
+weechat_js_api_hook_command_cb (void *data, struct t_gui_buffer *buffer,
+ int argc, char **argv, char **argv_eol)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ /* make C++ compiler happy */
+ (void) argv;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(buffer);
+ func_argv[2] = (argc > 1) ? argv_eol[1] : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_command)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_command", "sssssss", API_RETURN_EMPTY);
+
+ String::Utf8Value command(args[0]);
+ String::Utf8Value description(args[1]);
+ String::Utf8Value arguments(args[2]);
+ String::Utf8Value args_description(args[3]);
+ String::Utf8Value completion(args[4]);
+ String::Utf8Value function(args[5]);
+ String::Utf8Value data(args[6]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_command (weechat_js_plugin,
+ js_current_script,
+ *command,
+ *description,
+ *arguments,
+ *args_description,
+ *completion,
+ &weechat_js_api_hook_command_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_command_run_cb (void *data, struct t_gui_buffer *buffer,
+ const char *command)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(buffer);
+ func_argv[2] = (command) ? (char *)command : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_command_run)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_command_run", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value command(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_command_run (
+ weechat_js_plugin,
+ js_current_script,
+ *command,
+ &weechat_js_api_hook_command_run_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_timer_cb (void *data, int remaining_calls)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char str_remaining_calls[32], empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ snprintf (str_remaining_calls, sizeof (str_remaining_calls),
+ "%d", remaining_calls);
+
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = str_remaining_calls;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_timer)
+{
+ int interval, align_second, max_calls;
+ char *result;
+
+ API_INIT_FUNC(1, "hook_timer", "iiiss", API_RETURN_EMPTY);
+
+ interval = args[0]->IntegerValue();
+ align_second = args[1]->IntegerValue();
+ max_calls = args[2]->IntegerValue();
+ String::Utf8Value function(args[3]);
+ String::Utf8Value data(args[4]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_timer (
+ weechat_js_plugin,
+ js_current_script,
+ interval,
+ align_second,
+ max_calls,
+ &weechat_js_api_hook_timer_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_fd_cb (void *data, int fd)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char str_fd[32], empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ snprintf (str_fd, sizeof (str_fd), "%d", fd);
+
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = str_fd;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_fd)
+{
+ int fd, read, write, exception;
+ char *result;
+
+ API_INIT_FUNC(1, "hook_fd", "iiiiss", API_RETURN_EMPTY);
+
+ fd = args[0]->IntegerValue();
+ read = args[1]->IntegerValue();
+ write = args[2]->IntegerValue();
+ exception = args[3]->IntegerValue();
+ String::Utf8Value function(args[4]);
+ String::Utf8Value data(args[5]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_fd (
+ weechat_js_plugin,
+ js_current_script,
+ fd,
+ read,
+ write,
+ exception,
+ &weechat_js_api_hook_fd_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_process_cb (void *data,
+ const char *command, int return_code,
+ const char *out, const char *err)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[5];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (command) ? (char *)command : empty_arg;
+ func_argv[2] = &return_code;
+ func_argv[3] = (out) ? (char *)out : empty_arg;
+ func_argv[4] = (err) ? (char *)err : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssiss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_process)
+{
+ int timeout;
+ char *result;
+
+ API_INIT_FUNC(1, "hook_process", "siss", API_RETURN_EMPTY);
+
+ String::Utf8Value command(args[0]);
+ timeout = args[1]->IntegerValue();
+ String::Utf8Value function(args[2]);
+ String::Utf8Value data(args[3]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_process (
+ weechat_js_plugin,
+ js_current_script,
+ *command,
+ timeout,
+ &weechat_js_api_hook_process_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hook_process_hashtable)
+{
+ struct t_hashtable *options;
+ int timeout;
+ char *result;
+
+ API_INIT_FUNC(1, "hook_process_hashtable", "shiss", API_RETURN_EMPTY);
+
+ String::Utf8Value command(args[0]);
+ options = weechat_js_object_to_hashtable (
+ args[1]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+ timeout = args[2]->IntegerValue();
+ String::Utf8Value function(args[3]);
+ String::Utf8Value data(args[4]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_process_hashtable (
+ weechat_js_plugin,
+ js_current_script,
+ *command,
+ options,
+ timeout,
+ &weechat_js_api_hook_process_cb,
+ *function,
+ *data));
+
+ if (options)
+ weechat_hashtable_free (options);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_connect_cb (void *data, int status, int gnutls_rc,
+ int sock, const char *error,
+ const char *ip_address)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[6];
+ char str_status[32], str_gnutls_rc[32], str_sock[32];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ snprintf (str_status, sizeof (str_status), "%d", status);
+ snprintf (str_gnutls_rc, sizeof (str_gnutls_rc), "%d", gnutls_rc);
+ snprintf (str_sock, sizeof (str_sock), "%d", sock);
+
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = str_status;
+ func_argv[2] = str_gnutls_rc;
+ func_argv[3] = str_sock;
+ func_argv[4] = (ip_address) ? (char *)ip_address : empty_arg;
+ func_argv[5] = (error) ? (char *)error : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssssss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_connect)
+{
+ int port, ipv6, retry;
+ char *result;
+
+ API_INIT_FUNC(1, "hook_connect", "ssiiisss", API_RETURN_EMPTY);
+
+ String::Utf8Value proxy(args[0]);
+ String::Utf8Value address(args[1]);
+ port = args[2]->IntegerValue();
+ ipv6 = args[3]->IntegerValue();
+ retry = args[4]->IntegerValue();
+ String::Utf8Value local_hostname(args[5]);
+ String::Utf8Value function(args[6]);
+ String::Utf8Value data(args[7]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_connect (
+ weechat_js_plugin,
+ js_current_script,
+ *proxy,
+ *address,
+ port,
+ ipv6,
+ retry,
+ NULL, /* gnutls session */
+ NULL, /* gnutls callback */
+ 0, /* gnutls DH key size */
+ NULL, /* gnutls priorities */
+ *local_hostname,
+ &weechat_js_api_hook_connect_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_print_cb (void *data, struct t_gui_buffer *buffer,
+ time_t date,
+ int tags_count, const char **tags,
+ int displayed, int highlight,
+ const char *prefix, const char *message)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[8];
+ char empty_arg[1] = { '\0' };
+ static char timebuffer[64];
+ int *rc, ret;
+
+ /* make C compiler happy */
+ (void) tags_count;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ snprintf (timebuffer, sizeof (timebuffer), "%ld", (long int)date);
+
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(buffer);
+ func_argv[2] = timebuffer;
+ func_argv[3] = weechat_string_build_with_split_string (tags, ",");
+ if (!func_argv[3])
+ func_argv[3] = strdup ("");
+ func_argv[4] = &displayed;
+ func_argv[5] = &highlight;
+ func_argv[6] = (prefix) ? (char *)prefix : empty_arg;
+ func_argv[7] = (message) ? (char *)message : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssssiiss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[3])
+ free (func_argv[3]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_print)
+{
+ int strip_colors;
+ char *result;
+
+ API_INIT_FUNC(1, "hook_print", "sssiss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value tags(args[1]);
+ String::Utf8Value message(args[2]);
+ strip_colors = args[3]->IntegerValue();
+ String::Utf8Value function(args[4]);
+ String::Utf8Value data(args[5]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_print (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *tags,
+ *message,
+ strip_colors,
+ &weechat_js_api_hook_print_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_signal_cb (void *data, const char *signal,
+ const char *type_data, void *signal_data)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ static char str_value[64];
+ int *rc, ret, free_needed;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (signal) ? (char *)signal : empty_arg;
+ free_needed = 0;
+ if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0)
+ {
+ func_argv[2] = (signal_data) ? (char *)signal_data : empty_arg;
+ }
+ else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_INT) == 0)
+ {
+ str_value[0] = '\0';
+ if (signal_data)
+ {
+ snprintf (str_value, sizeof (str_value),
+ "%d", *((int *)signal_data));
+ }
+ func_argv[2] = str_value;
+ }
+ else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_POINTER) == 0)
+ {
+ func_argv[2] = API_PTR2STR(signal_data);
+ free_needed = 1;
+ }
+ else
+ func_argv[2] = empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (free_needed && func_argv[2])
+ free (func_argv[2]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_signal)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_signal", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value signal(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_signal (
+ weechat_js_plugin,
+ js_current_script,
+ *signal,
+ &weechat_js_api_hook_signal_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hook_signal_send)
+{
+ char *error;
+ int number, rc;
+
+ API_INIT_FUNC(1, "hook_signal_send", "sss", API_RETURN_INT(WEECHAT_RC_ERROR));
+
+ String::Utf8Value signal(args[0]);
+ String::Utf8Value type_data(args[1]);
+ String::Utf8Value signal_data(args[2]);
+
+ if (strcmp (*type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0)
+ {
+ rc = weechat_hook_signal_send (*signal, *type_data, *signal_data);
+ API_RETURN_INT(rc);
+ }
+ else if (strcmp (*type_data, WEECHAT_HOOK_SIGNAL_INT) == 0)
+ {
+ error = NULL;
+ number = (int)strtol (*signal_data, &error, 10);
+ if (error && !error[0])
+ rc = weechat_hook_signal_send (*signal, *type_data, &number);
+ else
+ rc = WEECHAT_RC_ERROR;
+ API_RETURN_INT(rc);
+ }
+ else if (strcmp (*type_data, WEECHAT_HOOK_SIGNAL_POINTER) == 0)
+ {
+ rc = weechat_hook_signal_send (*signal, *type_data,
+ API_STR2PTR(*signal_data));
+ API_RETURN_INT(rc);
+ }
+
+ API_RETURN_INT(WEECHAT_RC_ERROR);
+}
+
+int
+weechat_js_api_hook_hsignal_cb (void *data, const char *signal,
+ struct t_hashtable *hashtable)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (signal) ? (char *)signal : empty_arg;
+ func_argv[2] = hashtable;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssh", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_hsignal)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_hsignal", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value signal(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_hsignal (
+ weechat_js_plugin,
+ js_current_script,
+ *signal,
+ &weechat_js_api_hook_hsignal_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hook_hsignal_send)
+{
+ struct t_hashtable *hashtable;
+ int rc;
+
+ API_INIT_FUNC(1, "hook_hsignal_send", "sh", API_RETURN_INT(WEECHAT_RC_ERROR));
+
+ String::Utf8Value signal(args[0]);
+ hashtable = weechat_js_object_to_hashtable (
+ args[1]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+
+ rc = weechat_hook_hsignal_send (*signal, hashtable);
+
+ if (hashtable)
+ weechat_hashtable_free (hashtable);
+
+ API_RETURN_INT(rc);
+}
+
+int
+weechat_js_api_hook_config_cb (void *data, const char *option,
+ const char *value)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (option) ? (char *)option : empty_arg;
+ func_argv[2] = (value) ? (char *)value : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_config)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_config", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value option(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_config (
+ weechat_js_plugin,
+ js_current_script,
+ *option,
+ &weechat_js_api_hook_config_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+int
+weechat_js_api_hook_completion_cb (void *data, const char *completion_item,
+ struct t_gui_buffer *buffer,
+ struct t_gui_completion *completion)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[4];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (completion_item) ? (char *)completion_item : empty_arg;
+ func_argv[2] = API_PTR2STR(buffer);
+ func_argv[3] = API_PTR2STR(completion);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[2])
+ free (func_argv[2]);
+ if (func_argv[3])
+ free (func_argv[3]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(hook_completion)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_completion", "ssss", API_RETURN_EMPTY);
+
+ String::Utf8Value completion(args[0]);
+ String::Utf8Value description(args[1]);
+ String::Utf8Value function(args[2]);
+ String::Utf8Value data(args[3]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_completion (
+ weechat_js_plugin,
+ js_current_script,
+ *completion,
+ *description,
+ &weechat_js_api_hook_completion_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hook_completion_list_add)
+{
+ int nick_completion;
+
+ API_INIT_FUNC(1, "hook_completion_list_add", "ssis", API_RETURN_ERROR);
+
+ String::Utf8Value completion(args[0]);
+ String::Utf8Value word(args[1]);
+ nick_completion = args[2]->IntegerValue();
+ String::Utf8Value where(args[3]);
+
+ weechat_hook_completion_list_add (
+ (struct t_gui_completion *)API_STR2PTR(*completion),
+ *word,
+ nick_completion,
+ *where);
+
+ API_RETURN_OK;
+}
+
+char *
+weechat_js_api_hook_modifier_cb (void *data, const char *modifier,
+ const char *modifier_data, const char *string)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[4];
+ char empty_arg[1] = { '\0' };
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (modifier) ? (char *)modifier : empty_arg;
+ func_argv[2] = (modifier_data) ? (char *)modifier_data : empty_arg;
+ func_argv[3] = (string) ? (char *)string : empty_arg;
+
+ return (char *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_STRING,
+ script_callback->function,
+ "ssss", func_argv);
+ }
+
+ return NULL;
+}
+
+API_FUNC(hook_modifier)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_modifier", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value modifier(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_modifier (
+ weechat_js_plugin,
+ js_current_script,
+ *modifier,
+ &weechat_js_api_hook_modifier_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hook_modifier_exec)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_modifier_exec", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value modifier(args[0]);
+ String::Utf8Value modifier_data(args[1]);
+ String::Utf8Value string(args[2]);
+
+ result = weechat_hook_modifier_exec (*modifier, *modifier_data, *string);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+const char *
+weechat_js_api_hook_info_cb (void *data, const char *info_name,
+ const char *arguments)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (info_name) ? (char *)info_name : empty_arg;
+ func_argv[2] = (arguments) ? (char *)arguments : empty_arg;
+
+ return (const char *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_STRING,
+ script_callback->function,
+ "sss", func_argv);
+ }
+
+ return NULL;
+}
+
+API_FUNC(hook_info)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_info", "sssss", API_RETURN_EMPTY);
+
+ String::Utf8Value info_name(args[0]);
+ String::Utf8Value description(args[1]);
+ String::Utf8Value args_description(args[2]);
+ String::Utf8Value function(args[3]);
+ String::Utf8Value data(args[4]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_info (
+ weechat_js_plugin,
+ js_current_script,
+ *info_name,
+ *description,
+ *args_description,
+ &weechat_js_api_hook_info_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+struct t_hashtable *
+weechat_js_api_hook_info_hashtable_cb (void *data, const char *info_name,
+ struct t_hashtable *hashtable)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ struct t_hashtable *ret_hashtable;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (info_name) ? (char *)info_name : empty_arg;
+ func_argv[2] = hashtable;
+
+ ret_hashtable = (struct t_hashtable *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_HASHTABLE,
+ script_callback->function,
+ "ssh", func_argv);
+
+ return ret_hashtable;
+ }
+
+ return NULL;
+}
+
+API_FUNC(hook_info_hashtable)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_info_hashtable", "ssssss", API_RETURN_EMPTY);
+
+ String::Utf8Value info_name(args[0]);
+ String::Utf8Value description(args[1]);
+ String::Utf8Value args_description(args[2]);
+ String::Utf8Value output_description(args[3]);
+ String::Utf8Value function(args[4]);
+ String::Utf8Value data(args[5]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_info_hashtable (
+ weechat_js_plugin,
+ js_current_script,
+ *info_name,
+ *description,
+ *args_description,
+ *output_description,
+ &weechat_js_api_hook_info_hashtable_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+struct t_infolist *
+weechat_js_api_hook_infolist_cb (void *data, const char *infolist_name,
+ void *pointer, const char *arguments)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[4];
+ char empty_arg[1] = { '\0' };
+ struct t_infolist *result;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = (infolist_name) ? (char *)infolist_name : empty_arg;
+ func_argv[2] = API_PTR2STR(pointer);
+ func_argv[3] = (arguments) ? (char *)arguments : empty_arg;
+
+ result = (struct t_infolist *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_STRING,
+ script_callback->function,
+ "ssss", func_argv);
+
+ if (func_argv[2])
+ free (func_argv[2]);
+
+ return result;
+ }
+
+ return NULL;
+}
+
+API_FUNC(hook_infolist)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_infolist", "ssssss", API_RETURN_EMPTY);
+
+ String::Utf8Value infolist_name(args[0]);
+ String::Utf8Value description(args[1]);
+ String::Utf8Value pointer_description(args[2]);
+ String::Utf8Value args_description(args[3]);
+ String::Utf8Value function(args[4]);
+ String::Utf8Value data(args[5]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_infolist (
+ weechat_js_plugin,
+ js_current_script,
+ *infolist_name,
+ *description,
+ *pointer_description,
+ *args_description,
+ &weechat_js_api_hook_infolist_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+struct t_hashtable *
+weechat_js_api_hook_focus_cb (void *data,
+ struct t_hashtable *info)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char empty_arg[1] = { '\0' };
+ struct t_hashtable *ret_hashtable;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = info;
+
+ ret_hashtable = (struct t_hashtable *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_HASHTABLE,
+ script_callback->function,
+ "sh", func_argv);
+
+ return ret_hashtable;
+ }
+
+ return NULL;
+}
+
+API_FUNC(hook_focus)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hook_focus", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value area(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_hook_focus (
+ weechat_js_plugin,
+ js_current_script,
+ *area,
+ &weechat_js_api_hook_focus_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hook_set)
+{
+ API_INIT_FUNC(1, "hook_set", "sss", API_RETURN_ERROR);
+
+ String::Utf8Value hook(args[0]);
+ String::Utf8Value property(args[1]);
+ String::Utf8Value value(args[2]);
+
+ weechat_hook_set ((struct t_hook *)API_STR2PTR(*hook), *property, *value);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(unhook)
+{
+ API_INIT_FUNC(1, "unhook", "s", API_RETURN_ERROR);
+
+ String::Utf8Value hook(args[0]);
+
+ plugin_script_api_unhook (weechat_js_plugin,
+ js_current_script,
+ (struct t_hook *)API_STR2PTR(*hook));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(unhook_all)
+{
+ API_INIT_FUNC(1, "unhook_all", "", API_RETURN_ERROR);
+
+ String::Utf8Value hook(args[0]);
+
+ plugin_script_api_unhook_all (weechat_js_plugin, js_current_script);
+
+ API_RETURN_OK;
+}
+
+int
+weechat_js_api_buffer_input_data_cb (void *data, struct t_gui_buffer *buffer,
+ const char *input_data)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[3];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(buffer);
+ func_argv[2] = (input_data) ? (char *)input_data : empty_arg;
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+int
+weechat_js_api_buffer_close_cb (void *data, struct t_gui_buffer *buffer)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[2];
+ char empty_arg[1] = { '\0' };
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(buffer);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+
+ if (func_argv[1])
+ free (func_argv[1]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(buffer_new)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "buffer_new", "sssss", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+ String::Utf8Value function_input(args[1]);
+ String::Utf8Value data_input(args[2]);
+ String::Utf8Value function_close(args[3]);
+ String::Utf8Value data_close(args[4]);
+
+ result = API_PTR2STR(
+ plugin_script_api_buffer_new (
+ weechat_js_plugin,
+ js_current_script,
+ *name,
+ &weechat_js_api_buffer_input_data_cb,
+ *function_input,
+ *data_input,
+ &weechat_js_api_buffer_close_cb,
+ *function_close,
+ *data_close));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(buffer_search)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "buffer_search", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value plugin(args[0]);
+ String::Utf8Value name(args[1]);
+
+ result = API_PTR2STR(weechat_buffer_search (*plugin, *name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(buffer_search_main)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "buffer_search_main", "", API_RETURN_EMPTY);
+
+ result = API_PTR2STR(weechat_buffer_search_main ());
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(current_buffer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "current_buffer", "", API_RETURN_EMPTY);
+
+ result = API_PTR2STR(weechat_current_buffer ());
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(buffer_clear)
+{
+ API_INIT_FUNC(1, "buffer_clear", "s", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+
+ weechat_buffer_clear ((struct t_gui_buffer *)API_STR2PTR(*buffer));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(buffer_close)
+{
+ API_INIT_FUNC(1, "buffer_close", "s", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+
+ plugin_script_api_buffer_close (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_buffer *)API_STR2PTR(*buffer));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(buffer_merge)
+{
+ API_INIT_FUNC(1, "buffer_merge", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value target_buffer(args[1]);
+
+ weechat_buffer_merge ((struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_buffer *)API_STR2PTR(*target_buffer));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(buffer_unmerge)
+{
+ int number;
+
+ API_INIT_FUNC(1, "buffer_merge", "si", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ number = args[1]->IntegerValue();
+
+ weechat_buffer_unmerge ((struct t_gui_buffer *)API_STR2PTR(*buffer),
+ number);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(buffer_get_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "buffer_get_integer", "ss", API_RETURN_INT(-1));
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value property(args[1]);
+
+ value = weechat_buffer_get_integer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *property);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(buffer_get_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "buffer_get_string", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value property(args[1]);
+
+ result = weechat_buffer_get_string (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *property);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(buffer_get_pointer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "buffer_get_pointer", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value property(args[1]);
+
+ result = API_PTR2STR(
+ weechat_buffer_get_pointer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *property));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(buffer_set)
+{
+ API_INIT_FUNC(1, "buffer_set", "sss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value property(args[1]);
+ String::Utf8Value value(args[2]);
+
+ weechat_buffer_set (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *property,
+ *value);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(buffer_string_replace_local_var)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "buffer_string_replace_local_var", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value string(args[1]);
+
+ result = weechat_buffer_string_replace_local_var (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *string);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(buffer_match_list)
+{
+ int value;
+
+ API_INIT_FUNC(1, "buffer_match_list", "ss", API_RETURN_INT(0));
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value string(args[1]);
+
+ value = weechat_buffer_match_list (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *string);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(current_window)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "current_window", "", API_RETURN_EMPTY);
+
+ result = API_PTR2STR(weechat_current_window ());
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(window_search_with_buffer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "window_search_with_buffer", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+
+ result = API_PTR2STR(
+ weechat_window_search_with_buffer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer)));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(window_get_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "window_get_integer", "ss", API_RETURN_INT(-1));
+
+ String::Utf8Value window(args[0]);
+ String::Utf8Value property(args[1]);
+
+ value = weechat_window_get_integer (
+ (struct t_gui_window *)API_STR2PTR(*window),
+ *property);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(window_get_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "window_get_string", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value window(args[0]);
+ String::Utf8Value property(args[1]);
+
+ result = weechat_window_get_string (
+ (struct t_gui_window *)API_STR2PTR(*window),
+ *property);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(window_get_pointer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "window_get_pointer", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value window(args[0]);
+ String::Utf8Value property(args[1]);
+
+ result = API_PTR2STR(
+ weechat_window_get_pointer (
+ (struct t_gui_window *)API_STR2PTR(*window),
+ *property));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(window_set_title)
+{
+ API_INIT_FUNC(1, "window_set_title", "s", API_RETURN_ERROR);
+
+ String::Utf8Value title(args[0]);
+
+ weechat_window_set_title (*title);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(nicklist_add_group)
+{
+ int visible;
+ char *result;
+
+ API_INIT_FUNC(1, "nicklist_add_group", "ssssi", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value parent_group(args[1]);
+ String::Utf8Value name(args[2]);
+ String::Utf8Value color(args[3]);
+ visible = args[4]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_nicklist_add_group (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*parent_group),
+ *name,
+ *color,
+ visible));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(nicklist_search_group)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "nicklist_search_group", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value from_group(args[1]);
+ String::Utf8Value name(args[2]);
+
+ result = API_PTR2STR(
+ weechat_nicklist_search_group (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*from_group),
+ *name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(nicklist_add_nick)
+{
+ int visible;
+ char *result;
+
+ API_INIT_FUNC(1, "nicklist_add_nick", "ssssssi", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value group(args[1]);
+ String::Utf8Value name(args[2]);
+ String::Utf8Value color(args[3]);
+ String::Utf8Value prefix(args[4]);
+ String::Utf8Value prefix_color(args[5]);
+ visible = args[6]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_nicklist_add_nick (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*group),
+ *name,
+ *color,
+ *prefix,
+ *prefix_color,
+ visible));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(nicklist_search_nick)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "nicklist_search_nick", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value from_group(args[1]);
+ String::Utf8Value name(args[2]);
+
+ result = API_PTR2STR(
+ weechat_nicklist_search_nick (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*from_group),
+ *name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(nicklist_remove_group)
+{
+ API_INIT_FUNC(1, "nicklist_remove_group", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value group(args[1]);
+
+ weechat_nicklist_remove_group (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*group));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(nicklist_remove_nick)
+{
+ API_INIT_FUNC(1, "nicklist_remove_nick", "ss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value nick(args[1]);
+
+ weechat_nicklist_remove_nick (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick *)API_STR2PTR(*nick));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(nicklist_remove_all)
+{
+ API_INIT_FUNC(1, "nicklist_remove_all", "s", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+
+ weechat_nicklist_remove_all ((struct t_gui_buffer *)API_STR2PTR(*buffer));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(nicklist_group_get_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "nicklist_group_get_integer", "sss", API_RETURN_INT(-1));
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value group(args[1]);
+ String::Utf8Value property(args[2]);
+
+ value = weechat_nicklist_group_get_integer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*group),
+ *property);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(nicklist_group_get_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "nicklist_group_get_string", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value group(args[1]);
+ String::Utf8Value property(args[2]);
+
+ result = weechat_nicklist_group_get_string (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*group),
+ *property);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(nicklist_group_get_pointer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "nicklist_group_get_pointer", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value group(args[1]);
+ String::Utf8Value property(args[2]);
+
+ result = API_PTR2STR(
+ weechat_nicklist_group_get_pointer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*group),
+ *property));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(nicklist_group_set)
+{
+ API_INIT_FUNC(1, "nicklist_group_set", "ssss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value group(args[1]);
+ String::Utf8Value property(args[2]);
+ String::Utf8Value value(args[3]);
+
+ weechat_nicklist_group_set (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick_group *)API_STR2PTR(*group),
+ *property,
+ *value);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(nicklist_nick_get_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "nicklist_nick_get_integer", "sss", API_RETURN_INT(-1));
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value nick(args[1]);
+ String::Utf8Value property(args[2]);
+
+ value = weechat_nicklist_nick_get_integer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick *)API_STR2PTR(*nick),
+ *property);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(nicklist_nick_get_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "nicklist_nick_get_string", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value nick(args[1]);
+ String::Utf8Value property(args[2]);
+
+ result = weechat_nicklist_nick_get_string (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick *)API_STR2PTR(*nick),
+ *property);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(nicklist_nick_get_pointer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "nicklist_nick_get_pointer", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value nick(args[1]);
+ String::Utf8Value property(args[2]);
+
+ result = API_PTR2STR(
+ weechat_nicklist_nick_get_pointer (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick *)API_STR2PTR(*nick),
+ *property));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(nicklist_nick_set)
+{
+ API_INIT_FUNC(1, "nicklist_nick_set", "ssss", API_RETURN_ERROR);
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value nick(args[1]);
+ String::Utf8Value property(args[2]);
+ String::Utf8Value value(args[3]);
+
+ weechat_nicklist_nick_set (
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ (struct t_gui_nick *)API_STR2PTR(*nick),
+ *property,
+ *value);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(bar_item_search)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "bar_item_search", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+
+ result = API_PTR2STR(weechat_bar_item_search (*name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+char *
+weechat_js_api_bar_item_build_cb (void *data, struct t_gui_bar_item *item,
+ struct t_gui_window *window,
+ struct t_gui_buffer *buffer,
+ struct t_hashtable *extra_info)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[5];
+ char empty_arg[1] = { '\0' }, *ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ if (strncmp (script_callback->function, "(extra)", 7) == 0)
+ {
+ /* new callback: data, item, window, buffer, extra_info */
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(item);
+ func_argv[2] = API_PTR2STR(window);
+ func_argv[3] = API_PTR2STR(buffer);
+ func_argv[4] = extra_info;
+
+ ret = (char *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_STRING,
+ script_callback->function + 7,
+ "ssssh", func_argv);
+
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[2])
+ free (func_argv[2]);
+ if (func_argv[3])
+ free (func_argv[3]);
+ }
+ else
+ {
+ /* old callback: data, item, window */
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(item);
+ func_argv[2] = API_PTR2STR(window);
+
+ ret = (char *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_STRING,
+ script_callback->function,
+ "sss", func_argv);
+
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[2])
+ free (func_argv[2]);
+ }
+
+ return ret;
+ }
+
+ return NULL;
+}
+
+API_FUNC(bar_item_new)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "bar_item_new", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ result = API_PTR2STR(
+ plugin_script_api_bar_item_new (
+ weechat_js_plugin,
+ js_current_script,
+ *name,
+ &weechat_js_api_bar_item_build_cb,
+ *function,
+ *data));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(bar_item_update)
+{
+ API_INIT_FUNC(1, "bar_item_update", "s", API_RETURN_ERROR);
+
+ String::Utf8Value name(args[0]);
+
+ weechat_bar_item_update (*name);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(bar_item_remove)
+{
+ API_INIT_FUNC(1, "bar_item_remove", "s", API_RETURN_ERROR);
+
+ String::Utf8Value item(args[0]);
+
+ plugin_script_api_bar_item_remove (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_bar_item *)API_STR2PTR(*item));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(bar_search)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "bar_search", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+
+ result = API_PTR2STR(weechat_bar_search (*name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(bar_new)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "bar_new", "sssssssssssssss", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+ String::Utf8Value hidden(args[1]);
+ String::Utf8Value priority(args[2]);
+ String::Utf8Value type(args[3]);
+ String::Utf8Value conditions(args[4]);
+ String::Utf8Value position(args[5]);
+ String::Utf8Value filling_top_bottom(args[6]);
+ String::Utf8Value filling_left_right(args[7]);
+ String::Utf8Value size(args[8]);
+ String::Utf8Value size_max(args[9]);
+ String::Utf8Value color_fg(args[10]);
+ String::Utf8Value color_delim(args[11]);
+ String::Utf8Value color_bg(args[12]);
+ String::Utf8Value separator(args[13]);
+ String::Utf8Value items(args[14]);
+
+ result = API_PTR2STR(weechat_bar_new (*name,
+ *hidden,
+ *priority,
+ *type,
+ *conditions,
+ *position,
+ *filling_top_bottom,
+ *filling_left_right,
+ *size,
+ *size_max,
+ *color_fg,
+ *color_delim,
+ *color_bg,
+ *separator,
+ *items));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(bar_set)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "bar_set", "sss", API_RETURN_INT(0));
+
+ String::Utf8Value bar(args[0]);
+ String::Utf8Value property(args[1]);
+ String::Utf8Value value(args[2]);
+
+ rc = weechat_bar_set (
+ (struct t_gui_bar *)API_STR2PTR(*bar),
+ *property,
+ *value);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(bar_update)
+{
+ API_INIT_FUNC(1, "bar_update", "s", API_RETURN_ERROR);
+
+ String::Utf8Value name(args[0]);
+
+ weechat_bar_update (*name);
+
+ API_RETURN_OK;
+}
+
+API_FUNC(bar_remove)
+{
+ API_INIT_FUNC(1, "bar_remove", "s", API_RETURN_ERROR);
+
+ String::Utf8Value bar(args[0]);
+
+ weechat_bar_remove ((struct t_gui_bar *)API_STR2PTR(*bar));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(command)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "command", "ss", API_RETURN_INT(WEECHAT_RC_ERROR));
+
+ String::Utf8Value buffer(args[0]);
+ String::Utf8Value command(args[1]);
+
+ rc = plugin_script_api_command (weechat_js_plugin,
+ js_current_script,
+ (struct t_gui_buffer *)API_STR2PTR(*buffer),
+ *command);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(info_get)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "info_get", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value info_name(args[0]);
+ String::Utf8Value arguments(args[1]);
+
+ result = weechat_info_get (*info_name, *arguments);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(info_get_hashtable)
+{
+ struct t_hashtable *hashtable, *result_hashtable;
+
+ API_INIT_FUNC(1, "info_get_hashtable", "sh", API_RETURN_EMPTY);
+
+ String::Utf8Value info_name(args[0]);
+ hashtable = weechat_js_object_to_hashtable (
+ args[1]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+
+ result_hashtable = weechat_info_get_hashtable (*info_name, hashtable);
+ Handle<Object> result_obj = weechat_js_hashtable_to_object (
+ result_hashtable);
+
+ if (hashtable)
+ weechat_hashtable_free (hashtable);
+ if (result_hashtable)
+ weechat_hashtable_free (result_hashtable);
+
+ return result_obj;
+}
+
+API_FUNC(infolist_new)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_new", "", API_RETURN_EMPTY);
+
+ result = API_PTR2STR(weechat_infolist_new ());
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_new_item)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_new_item", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value infolist(args[0]);
+
+ result = API_PTR2STR(
+ weechat_infolist_new_item (
+ (struct t_infolist *)API_STR2PTR(*infolist)));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_new_var_integer)
+{
+ int value;
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_new_var_integer", "ssi", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+ String::Utf8Value name(args[1]);
+ value = args[2]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_infolist_new_var_integer (
+ (struct t_infolist_item *)API_STR2PTR(*item),
+ *name,
+ value));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_new_var_string)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_new_var_string", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+ String::Utf8Value name(args[1]);
+ String::Utf8Value value(args[2]);
+
+ result = API_PTR2STR(
+ weechat_infolist_new_var_string (
+ (struct t_infolist_item *)API_STR2PTR(*item),
+ *name,
+ *value));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_new_var_pointer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_new_var_pointer", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+ String::Utf8Value name(args[1]);
+ String::Utf8Value value(args[2]);
+
+ result = API_PTR2STR(
+ weechat_infolist_new_var_pointer (
+ (struct t_infolist_item *)API_STR2PTR(*item),
+ *name,
+ API_STR2PTR(*value)));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_new_var_time)
+{
+ int value;
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_new_var_time", "ssi", API_RETURN_EMPTY);
+
+ String::Utf8Value item(args[0]);
+ String::Utf8Value name(args[1]);
+ value = args[2]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_infolist_new_var_time (
+ (struct t_infolist_item *)API_STR2PTR(*item),
+ *name,
+ value));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_get)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "infolist_get", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value arguments(args[2]);
+
+ result = API_PTR2STR(
+ weechat_infolist_get (
+ *name,
+ API_STR2PTR(*pointer),
+ *arguments));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_next)
+{
+ int value;
+
+ API_INIT_FUNC(1, "infolist_next", "s", API_RETURN_INT(0));
+
+ String::Utf8Value infolist(args[0]);
+
+ value = weechat_infolist_next (
+ (struct t_infolist *)API_STR2PTR(*infolist));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(infolist_prev)
+{
+ int value;
+
+ API_INIT_FUNC(1, "infolist_prev", "s", API_RETURN_INT(0));
+
+ String::Utf8Value infolist(args[0]);
+
+ value = weechat_infolist_prev (
+ (struct t_infolist *)API_STR2PTR(*infolist));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(infolist_reset_item_cursor)
+{
+ API_INIT_FUNC(1, "infolist_reset_item_cursor", "s", API_RETURN_ERROR);
+
+ String::Utf8Value infolist(args[0]);
+
+ weechat_infolist_reset_item_cursor (
+ (struct t_infolist *)API_STR2PTR(*infolist));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(infolist_fields)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "infolist_fields", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value infolist(args[0]);
+
+ result = weechat_infolist_fields (
+ (struct t_infolist *)API_STR2PTR(*infolist));
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(infolist_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "infolist_integer", "ss", API_RETURN_INT(0));
+
+ String::Utf8Value infolist(args[0]);
+ String::Utf8Value variable(args[1]);
+
+ value = weechat_infolist_integer (
+ (struct t_infolist *)API_STR2PTR(*infolist),
+ *variable);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(infolist_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "infolist_string", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value infolist(args[0]);
+ String::Utf8Value variable(args[1]);
+
+ result = weechat_infolist_string (
+ (struct t_infolist *)API_STR2PTR(*infolist),
+ *variable);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(infolist_pointer)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "infolist_pointer", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value infolist(args[0]);
+ String::Utf8Value variable(args[1]);
+
+ result = API_PTR2STR(
+ weechat_infolist_pointer (
+ (struct t_infolist *)API_STR2PTR(*infolist),
+ *variable));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_time)
+{
+ char timebuffer[64], *result;
+ time_t time;
+ struct tm *date_tmp;
+
+ API_INIT_FUNC(1, "infolist_time", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value infolist(args[0]);
+ String::Utf8Value variable(args[1]);
+
+ time = weechat_infolist_time (
+ (struct t_infolist *)API_STR2PTR(*infolist),
+ *variable);
+ date_tmp = localtime (&time);
+ if (date_tmp)
+ strftime (timebuffer, sizeof (timebuffer), "%F %T", date_tmp);
+ result = strdup (timebuffer);
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(infolist_free)
+{
+ API_INIT_FUNC(1, "infolist_free", "s", API_RETURN_ERROR);
+
+ String::Utf8Value infolist(args[0]);
+
+ weechat_infolist_free ((struct t_infolist *)API_STR2PTR(*infolist));
+
+ API_RETURN_OK;
+}
+
+API_FUNC(hdata_get)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hdata_get", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value name(args[0]);
+
+ result = API_PTR2STR(weechat_hdata_get (*name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hdata_get_var_offset)
+{
+ int value;
+
+ API_INIT_FUNC(1, "hdata_get_var_offset", "ss", API_RETURN_INT(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value name(args[1]);
+
+ value = weechat_hdata_get_var_offset (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ *name);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(hdata_get_var_type_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "hdata_get_var_type_string", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value name(args[1]);
+
+ result = weechat_hdata_get_var_type_string (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ *name);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(hdata_get_var_array_size)
+{
+ int value;
+
+ API_INIT_FUNC(1, "hdata_get_var_array_size", "sss", API_RETURN_INT(-1));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ value = weechat_hdata_get_var_array_size (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(hdata_get_var_array_size_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "hdata_get_var_array_size_string", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ result = weechat_hdata_get_var_array_size_string (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(hdata_get_var_hdata)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "hdata_get_var_hdata", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value name(args[1]);
+
+ result = weechat_hdata_get_var_hdata (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ *name);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(hdata_get_list)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hdata_get_list", "s", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value name(args[1]);
+
+ result = API_PTR2STR(
+ weechat_hdata_get_list (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ *name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hdata_check_pointer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "hdata_check_pointer", "sss", API_RETURN_INT(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value list(args[1]);
+ String::Utf8Value pointer(args[2]);
+
+ value = weechat_hdata_check_pointer (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*list),
+ API_STR2PTR(*pointer));
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(hdata_move)
+{
+ int count;
+ char *result;
+
+ API_INIT_FUNC(1, "hdata_move", "ssi", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ count = args[2]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_hdata_move (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ count));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hdata_search)
+{
+ int move;
+ char *result;
+
+ API_INIT_FUNC(1, "hdata_search", "sssi", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value search(args[2]);
+ move = args[3]->IntegerValue();
+
+ result = API_PTR2STR(
+ weechat_hdata_search (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *search,
+ move));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hdata_char)
+{
+ int value;
+
+ API_INIT_FUNC(1, "hdata_char", "sss", API_RETURN_INT(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ value = (int)weechat_hdata_char (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(hdata_integer)
+{
+ int value;
+
+ API_INIT_FUNC(1, "hdata_integer", "sss", API_RETURN_INT(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ value = weechat_hdata_integer (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(hdata_long)
+{
+ long value;
+
+ API_INIT_FUNC(1, "hdata_long", "sss", API_RETURN_LONG(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ value = weechat_hdata_long (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_LONG(value);
+}
+
+API_FUNC(hdata_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "hdata_string", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ result = weechat_hdata_string (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(hdata_pointer)
+{
+ char *result;
+
+ API_INIT_FUNC(1, "hdata_pointer", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ result = API_PTR2STR(
+ weechat_hdata_pointer (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(hdata_time)
+{
+ time_t time;
+
+ API_INIT_FUNC(1, "hdata_time", "sss", API_RETURN_LONG(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ time = weechat_hdata_time (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name);
+
+ API_RETURN_LONG(time);
+}
+
+API_FUNC(hdata_hashtable)
+{
+ API_INIT_FUNC(1, "hdata_hashtable", "sss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ String::Utf8Value name(args[2]);
+
+ Handle<Object> result_obj = weechat_js_hashtable_to_object (
+ weechat_hdata_hashtable (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ *name));
+
+ return result_obj;
+}
+
+API_FUNC(hdata_update)
+{
+ struct t_hashtable *hashtable;
+ int value;
+
+ API_INIT_FUNC(1, "hdata_update", "ssh", API_RETURN_INT(0));
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value pointer(args[1]);
+ hashtable = weechat_js_object_to_hashtable (
+ args[2]->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+
+ value = weechat_hdata_update (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ API_STR2PTR(*pointer),
+ hashtable);
+
+ if (hashtable)
+ weechat_hashtable_free (hashtable);
+
+ API_RETURN_INT(value);
+}
+
+API_FUNC(hdata_get_string)
+{
+ const char *result;
+
+ API_INIT_FUNC(1, "hdata_get_string", "ss", API_RETURN_EMPTY);
+
+ String::Utf8Value hdata(args[0]);
+ String::Utf8Value property(args[1]);
+
+ result = weechat_hdata_get_string (
+ (struct t_hdata *)API_STR2PTR(*hdata),
+ *property);
+
+ API_RETURN_STRING(result);
+}
+
+API_FUNC(upgrade_new)
+{
+ int write;
+ char *result;
+
+ API_INIT_FUNC(1, "upgrade_new", "si", API_RETURN_EMPTY);
+
+ String::Utf8Value filename(args[0]);
+ write = args[1]->IntegerValue();
+
+ result = API_PTR2STR(weechat_upgrade_new (*filename, write));
+
+ API_RETURN_STRING_FREE(result);
+}
+
+API_FUNC(upgrade_write_object)
+{
+ int object_id, rc;
+
+ API_INIT_FUNC(1, "upgrade_write_object", "sis", API_RETURN_INT(0));
+
+ String::Utf8Value upgrade_file(args[0]);
+ object_id = args[1]->IntegerValue();
+ String::Utf8Value infolist(args[2]);
+
+ rc = weechat_upgrade_write_object (
+ (struct t_upgrade_file *)API_STR2PTR(*upgrade_file),
+ object_id,
+ (struct t_infolist *)API_STR2PTR(*infolist));
+
+ API_RETURN_INT(rc);
+}
+
+int
+weechat_js_api_upgrade_read_cb (void *data,
+ struct t_upgrade_file *upgrade_file,
+ int object_id,
+ struct t_infolist *infolist)
+{
+ struct t_plugin_script_cb *script_callback;
+ void *func_argv[4];
+ char empty_arg[1] = { '\0' }, str_object_id[32];
+ int *rc, ret;
+
+ script_callback = (struct t_plugin_script_cb *)data;
+
+ if (script_callback && script_callback->function && script_callback->function[0])
+ {
+ snprintf (str_object_id, sizeof (str_object_id), "%d", object_id);
+
+ func_argv[0] = (script_callback->data) ? script_callback->data : empty_arg;
+ func_argv[1] = API_PTR2STR(upgrade_file);
+ func_argv[2] = str_object_id;
+ func_argv[3] = API_PTR2STR(infolist);
+
+ rc = (int *)weechat_js_exec (
+ (struct t_plugin_script *)script_callback->script,
+ WEECHAT_SCRIPT_EXEC_INT,
+ script_callback->function,
+ "ssss", func_argv);
+
+ if (!rc)
+ ret = WEECHAT_RC_ERROR;
+ else
+ {
+ ret = *rc;
+ free (rc);
+ }
+ if (func_argv[1])
+ free (func_argv[1]);
+ if (func_argv[3])
+ free (func_argv[3]);
+
+ return ret;
+ }
+
+ return WEECHAT_RC_ERROR;
+}
+
+API_FUNC(upgrade_read)
+{
+ int rc;
+
+ API_INIT_FUNC(1, "upgrade_read", "sss", API_RETURN_INT(0));
+
+ String::Utf8Value upgrade_file(args[0]);
+ String::Utf8Value function(args[1]);
+ String::Utf8Value data(args[2]);
+
+ rc = plugin_script_api_upgrade_read (
+ weechat_js_plugin,
+ js_current_script,
+ (struct t_upgrade_file *)API_STR2PTR(*upgrade_file),
+ &weechat_js_api_upgrade_read_cb,
+ *function,
+ *data);
+
+ API_RETURN_INT(rc);
+}
+
+API_FUNC(upgrade_close)
+{
+ API_INIT_FUNC(1, "upgrade_close", "sss", API_RETURN_ERROR);
+
+ String::Utf8Value upgrade_file(args[0]);
+
+ weechat_upgrade_close (
+ (struct t_upgrade_file *)API_STR2PTR(*upgrade_file));
+
+ API_RETURN_OK;
+}
+
+void
+WeechatJsV8::loadLibs()
+{
+ Local<ObjectTemplate> weechat_obj = ObjectTemplate::New();
+
+ /* constants */
+ API_DEF_CONST_INT(WEECHAT_RC_OK);
+ API_DEF_CONST_INT(WEECHAT_RC_OK_EAT);
+ API_DEF_CONST_INT(WEECHAT_RC_ERROR);
+
+ API_DEF_CONST_INT(WEECHAT_CONFIG_READ_OK);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_READ_MEMORY_ERROR);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_READ_FILE_NOT_FOUND);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_WRITE_OK);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_WRITE_ERROR);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_WRITE_MEMORY_ERROR);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_SET_OK_CHANGED);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_SET_OK_SAME_VALUE);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_SET_ERROR);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_SET_OPTION_NOT_FOUND);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_UNSET_OK_NO_RESET);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_UNSET_OK_RESET);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_UNSET_OK_REMOVED);
+ API_DEF_CONST_INT(WEECHAT_CONFIG_OPTION_UNSET_ERROR);
+
+ API_DEF_CONST_STR(WEECHAT_LIST_POS_SORT);
+ API_DEF_CONST_STR(WEECHAT_LIST_POS_BEGINNING);
+ API_DEF_CONST_STR(WEECHAT_LIST_POS_END);
+
+ API_DEF_CONST_STR(WEECHAT_HOTLIST_LOW);
+ API_DEF_CONST_STR(WEECHAT_HOTLIST_MESSAGE);
+ API_DEF_CONST_STR(WEECHAT_HOTLIST_PRIVATE);
+ API_DEF_CONST_STR(WEECHAT_HOTLIST_HIGHLIGHT);
+
+ API_DEF_CONST_INT(WEECHAT_HOOK_PROCESS_RUNNING);
+ API_DEF_CONST_INT(WEECHAT_HOOK_PROCESS_ERROR);
+
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_OK);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_ADDRESS_NOT_FOUND);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_IP_ADDRESS_NOT_FOUND);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_CONNECTION_REFUSED);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_PROXY_ERROR);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_LOCAL_HOSTNAME_ERROR);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_GNUTLS_INIT_ERROR);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_GNUTLS_HANDSHAKE_ERROR);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_MEMORY_ERROR);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_TIMEOUT);
+ API_DEF_CONST_INT(WEECHAT_HOOK_CONNECT_SOCKET_ERROR);
+
+ API_DEF_CONST_STR(WEECHAT_HOOK_SIGNAL_STRING);
+ API_DEF_CONST_STR(WEECHAT_HOOK_SIGNAL_INT);
+ API_DEF_CONST_STR(WEECHAT_HOOK_SIGNAL_POINTER);
+
+ /* functions */
+ API_DEF_FUNC(register);
+ API_DEF_FUNC(plugin_get_name);
+ API_DEF_FUNC(charset_set);
+ API_DEF_FUNC(iconv_to_internal);
+ API_DEF_FUNC(iconv_from_internal);
+ API_DEF_FUNC(gettext);
+ API_DEF_FUNC(ngettext);
+ API_DEF_FUNC(strlen_screen);
+ API_DEF_FUNC(string_match);
+ API_DEF_FUNC(string_has_highlight);
+ API_DEF_FUNC(string_has_highlight_regex);
+ API_DEF_FUNC(string_mask_to_regex);
+ API_DEF_FUNC(string_remove_color);
+ API_DEF_FUNC(string_is_command_char);
+ API_DEF_FUNC(string_input_for_buffer);
+ API_DEF_FUNC(string_eval_expression);
+ API_DEF_FUNC(mkdir_home);
+ API_DEF_FUNC(mkdir);
+ API_DEF_FUNC(mkdir_parents);
+ API_DEF_FUNC(list_new);
+ API_DEF_FUNC(list_add);
+ API_DEF_FUNC(list_search);
+ API_DEF_FUNC(list_search_pos);
+ API_DEF_FUNC(list_casesearch);
+ API_DEF_FUNC(list_casesearch_pos);
+ API_DEF_FUNC(list_get);
+ API_DEF_FUNC(list_set)
+ API_DEF_FUNC(list_next);
+ API_DEF_FUNC(list_prev);
+ API_DEF_FUNC(list_string);
+ API_DEF_FUNC(list_size);
+ API_DEF_FUNC(list_remove);
+ API_DEF_FUNC(list_remove_all);
+ API_DEF_FUNC(list_free);
+ API_DEF_FUNC(config_new);
+ API_DEF_FUNC(config_new_section);
+ API_DEF_FUNC(config_search_section);
+ API_DEF_FUNC(config_new_option);
+ API_DEF_FUNC(config_search_option);
+ API_DEF_FUNC(config_string_to_boolean);
+ API_DEF_FUNC(config_option_reset);
+ API_DEF_FUNC(config_option_set);
+ API_DEF_FUNC(config_option_set_null);
+ API_DEF_FUNC(config_option_unset);
+ API_DEF_FUNC(config_option_rename);
+ API_DEF_FUNC(config_option_is_null);
+ API_DEF_FUNC(config_option_default_is_null);
+ API_DEF_FUNC(config_boolean);
+ API_DEF_FUNC(config_boolean_default);
+ API_DEF_FUNC(config_integer);
+ API_DEF_FUNC(config_integer_default);
+ API_DEF_FUNC(config_string);
+ API_DEF_FUNC(config_string_default);
+ API_DEF_FUNC(config_color);
+ API_DEF_FUNC(config_color_default);
+ API_DEF_FUNC(config_write_option);
+ API_DEF_FUNC(config_write_line);
+ API_DEF_FUNC(config_write);
+ API_DEF_FUNC(config_read);
+ API_DEF_FUNC(config_reload);
+ API_DEF_FUNC(config_option_free);
+ API_DEF_FUNC(config_section_free_options);
+ API_DEF_FUNC(config_section_free);
+ API_DEF_FUNC(config_free);
+ API_DEF_FUNC(config_get);
+ API_DEF_FUNC(config_get_plugin);
+ API_DEF_FUNC(config_is_set_plugin);
+ API_DEF_FUNC(config_set_plugin);
+ API_DEF_FUNC(config_set_desc_plugin);
+ API_DEF_FUNC(config_unset_plugin);
+ API_DEF_FUNC(key_bind);
+ API_DEF_FUNC(key_unbind);
+ API_DEF_FUNC(prefix);
+ API_DEF_FUNC(color);
+ API_DEF_FUNC(print);
+ API_DEF_FUNC(print_date_tags);
+ API_DEF_FUNC(print_y);
+ API_DEF_FUNC(log_print);
+ API_DEF_FUNC(hook_command);
+ API_DEF_FUNC(hook_command_run);
+ API_DEF_FUNC(hook_timer);
+ API_DEF_FUNC(hook_fd);
+ API_DEF_FUNC(hook_process);
+ API_DEF_FUNC(hook_process_hashtable);
+ API_DEF_FUNC(hook_connect);
+ API_DEF_FUNC(hook_print);
+ API_DEF_FUNC(hook_signal);
+ API_DEF_FUNC(hook_signal_send);
+ API_DEF_FUNC(hook_hsignal);
+ API_DEF_FUNC(hook_hsignal_send);
+ API_DEF_FUNC(hook_config);
+ API_DEF_FUNC(hook_completion);
+ API_DEF_FUNC(hook_completion_list_add);
+ API_DEF_FUNC(hook_modifier);
+ API_DEF_FUNC(hook_modifier_exec);
+ API_DEF_FUNC(hook_info);
+ API_DEF_FUNC(hook_info_hashtable);
+ API_DEF_FUNC(hook_infolist);
+ API_DEF_FUNC(hook_focus);
+ API_DEF_FUNC(hook_set);
+ API_DEF_FUNC(unhook);
+ API_DEF_FUNC(unhook_all);
+ API_DEF_FUNC(buffer_new);
+ API_DEF_FUNC(buffer_search);
+ API_DEF_FUNC(buffer_search_main);
+ API_DEF_FUNC(current_buffer);
+ API_DEF_FUNC(buffer_clear);
+ API_DEF_FUNC(buffer_close);
+ API_DEF_FUNC(buffer_merge);
+ API_DEF_FUNC(buffer_unmerge);
+ API_DEF_FUNC(buffer_get_integer);
+ API_DEF_FUNC(buffer_get_string);
+ API_DEF_FUNC(buffer_get_pointer);
+ API_DEF_FUNC(buffer_set);
+ API_DEF_FUNC(buffer_string_replace_local_var);
+ API_DEF_FUNC(buffer_match_list);
+ API_DEF_FUNC(current_window);
+ API_DEF_FUNC(window_search_with_buffer);
+ API_DEF_FUNC(window_get_integer);
+ API_DEF_FUNC(window_get_string);
+ API_DEF_FUNC(window_get_pointer);
+ API_DEF_FUNC(window_set_title);
+ API_DEF_FUNC(nicklist_add_group);
+ API_DEF_FUNC(nicklist_search_group);
+ API_DEF_FUNC(nicklist_add_nick);
+ API_DEF_FUNC(nicklist_search_nick);
+ API_DEF_FUNC(nicklist_remove_group);
+ API_DEF_FUNC(nicklist_remove_nick);
+ API_DEF_FUNC(nicklist_remove_all);
+ API_DEF_FUNC(nicklist_group_get_integer);
+ API_DEF_FUNC(nicklist_group_get_string);
+ API_DEF_FUNC(nicklist_group_get_pointer);
+ API_DEF_FUNC(nicklist_group_set);
+ API_DEF_FUNC(nicklist_nick_get_integer);
+ API_DEF_FUNC(nicklist_nick_get_string);
+ API_DEF_FUNC(nicklist_nick_get_pointer);
+ API_DEF_FUNC(nicklist_nick_set);
+ API_DEF_FUNC(bar_item_search);
+ API_DEF_FUNC(bar_item_new);
+ API_DEF_FUNC(bar_item_update);
+ API_DEF_FUNC(bar_item_remove);
+ API_DEF_FUNC(bar_search);
+ API_DEF_FUNC(bar_new);
+ API_DEF_FUNC(bar_set);
+ API_DEF_FUNC(bar_update);
+ API_DEF_FUNC(bar_remove);
+ API_DEF_FUNC(command);
+ API_DEF_FUNC(info_get);
+ API_DEF_FUNC(info_get_hashtable);
+ API_DEF_FUNC(infolist_new);
+ API_DEF_FUNC(infolist_new_item);
+ API_DEF_FUNC(infolist_new_var_integer);
+ API_DEF_FUNC(infolist_new_var_string);
+ API_DEF_FUNC(infolist_new_var_pointer);
+ API_DEF_FUNC(infolist_new_var_time);
+ API_DEF_FUNC(infolist_get);
+ API_DEF_FUNC(infolist_next);
+ API_DEF_FUNC(infolist_prev);
+ API_DEF_FUNC(infolist_reset_item_cursor);
+ API_DEF_FUNC(infolist_fields);
+ API_DEF_FUNC(infolist_integer);
+ API_DEF_FUNC(infolist_string);
+ API_DEF_FUNC(infolist_pointer);
+ API_DEF_FUNC(infolist_time);
+ API_DEF_FUNC(infolist_free);
+ API_DEF_FUNC(hdata_get);
+ API_DEF_FUNC(hdata_get_var_offset);
+ API_DEF_FUNC(hdata_get_var_type_string);
+ API_DEF_FUNC(hdata_get_var_array_size);
+ API_DEF_FUNC(hdata_get_var_array_size_string);
+ API_DEF_FUNC(hdata_get_var_hdata);
+ API_DEF_FUNC(hdata_get_list);
+ API_DEF_FUNC(hdata_check_pointer);
+ API_DEF_FUNC(hdata_move);
+ API_DEF_FUNC(hdata_search);
+ API_DEF_FUNC(hdata_char);
+ API_DEF_FUNC(hdata_integer);
+ API_DEF_FUNC(hdata_long);
+ API_DEF_FUNC(hdata_string);
+ API_DEF_FUNC(hdata_pointer);
+ API_DEF_FUNC(hdata_time);
+ API_DEF_FUNC(hdata_hashtable);
+ API_DEF_FUNC(hdata_update);
+ API_DEF_FUNC(hdata_get_string);
+ API_DEF_FUNC(upgrade_new);
+ API_DEF_FUNC(upgrade_write_object);
+ API_DEF_FUNC(upgrade_read);
+ API_DEF_FUNC(upgrade_close);
+
+ this->addGlobal ("weechat", weechat_obj);
+}
diff --git a/src/plugins/javascript/weechat-js-api.h b/src/plugins/javascript/weechat-js-api.h
new file mode 100644
index 000000000..170554d68
--- /dev/null
+++ b/src/plugins/javascript/weechat-js-api.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2013 Koka El Kiwi <admin@kokabsolu.com>
+ * Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+ *
+ * This file is part of WeeChat, the extensible chat client.
+ *
+ * WeeChat 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.
+ *
+ * WeeChat 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
+ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef WEECHAT_JS_API_H
+#define WEECHAT_JS_API_H 1
+
+extern int weechat_js_api_buffer_input_data_cb (void *data,
+ struct t_gui_buffer *buffer,
+ const char *input_data);
+extern int weechat_js_api_buffer_close_cb (void *data,
+ struct t_gui_buffer *buffer);
+
+#endif /* WEECHAT_JS_API_H */
diff --git a/src/plugins/javascript/weechat-js-v8.cpp b/src/plugins/javascript/weechat-js-v8.cpp
new file mode 100644
index 000000000..caeaafee8
--- /dev/null
+++ b/src/plugins/javascript/weechat-js-v8.cpp
@@ -0,0 +1,143 @@
+/*
+ * weechat-js-v8.c - v8 javascript functions
+ *
+ * Copyright (C) 2013 Koka El Kiwi <admin@kokabsolu.com>
+ * Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+ *
+ * This file is part of WeeChat, the extensible chat client.
+ *
+ * WeeChat 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.
+ *
+ * WeeChat 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
+ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#undef _
+#include <cstdio>
+
+extern "C"
+{
+#include "../weechat-plugin.h"
+#include "../plugin-script.h"
+}
+
+#include "weechat-js.h"
+#include "weechat-js-v8.h"
+
+using namespace v8;
+
+
+/*
+ * Constructor.
+ */
+
+WeechatJsV8::WeechatJsV8()
+{
+ this->global = ObjectTemplate::New();
+}
+
+/*
+ * Destructor.
+ */
+
+WeechatJsV8::~WeechatJsV8()
+{
+ this->context.Dispose();
+}
+
+/*
+ * Loads a javascript script.
+ */
+
+bool
+WeechatJsV8::load(Handle<String> source)
+{
+ this->source = source;
+
+ return true;
+}
+
+/*
+ * Loads a javascript script.
+ */
+
+bool
+WeechatJsV8::load(const char *source)
+{
+ Handle<String> src = String::New(source);
+
+ return this->load(src);
+}
+
+/*
+ * Executes a javascript script.
+ */
+
+bool
+WeechatJsV8::execScript()
+{
+ this->context = Context::New(NULL, this->global);
+ Context::Scope context_scope(this->context);
+ Handle<Script> script = Script::Compile(this->source);
+
+ script->Run();
+
+ return true;
+}
+
+/*
+ * Checks if a function with given name exists in script.
+ */
+
+bool
+WeechatJsV8::functionExists(const char *function)
+{
+ Context::Scope context_scope(this->context);
+
+ Handle<Object> global = this->context->Global();
+ Handle<Value> value = global->Get(String::New(function));
+ return value->IsFunction();
+}
+
+/*
+ * Executes a function in a javascript script.
+ */
+
+Handle<Value>
+WeechatJsV8::execFunction(const char *function, int argc, Handle<Value> *argv)
+{
+ Context::Scope context_scope(this->context);
+
+ Handle<Object> global = this->context->Global();
+ Handle<Value> value = global->Get(String::New(function));
+ Handle<Function> func = Handle<Function>::Cast(value);
+ return func->Call(global, argc, argv);
+}
+
+/*
+ * Sets something in the global.
+ */
+
+void
+WeechatJsV8::addGlobal(Handle<String> key, Handle<Template> val)
+{
+ this->global->Set(key, val);
+}
+
+/*
+ * Sets something in the global.
+ */
+
+void
+WeechatJsV8::addGlobal(const char *key, Handle<Template> val)
+{
+ this->addGlobal(String::New(key), val);
+}
diff --git a/src/plugins/javascript/weechat-js-v8.h b/src/plugins/javascript/weechat-js-v8.h
new file mode 100644
index 000000000..d0c94d523
--- /dev/null
+++ b/src/plugins/javascript/weechat-js-v8.h
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2013 Koka El Kiwi <admin@kokabsolu.com>
+ * Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+ *
+ * This file is part of WeeChat, the extensible chat client.
+ *
+ * WeeChat 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.
+ *
+ * WeeChat 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
+ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef WEECHAT_JS_V8_H
+#define WEECHAT_JS_V8_H 1
+
+#include <cstdio>
+#include <v8.h>
+
+class WeechatJsV8
+{
+public:
+ WeechatJsV8(void);
+ ~WeechatJsV8(void);
+
+ bool load(v8::Handle<v8::String>);
+ bool load(const char *);
+
+ bool execScript(void);
+ bool functionExists(const char *);
+ v8::Handle<v8::Value> execFunction(const char *,
+ int argc, v8::Handle<v8::Value> *);
+
+ void addGlobal(v8::Handle<v8::String>, v8::Handle<v8::Template>);
+ void addGlobal(const char *, v8::Handle<v8::Template>);
+
+ void loadLibs(void);
+
+private:
+ v8::HandleScope handle_scope;
+ v8::Handle<v8::ObjectTemplate> global;
+ v8::Persistent<Context> context;
+
+ v8::Handle<v8::String> source;
+};
+
+#endif /* WEECHAT_JS_V8_H */
diff --git a/src/plugins/javascript/weechat-js.cpp b/src/plugins/javascript/weechat-js.cpp
new file mode 100644
index 000000000..30521b58e
--- /dev/null
+++ b/src/plugins/javascript/weechat-js.cpp
@@ -0,0 +1,855 @@
+/*
+ * weechat-js.cpp - javascript plugin for WeeChat
+ *
+ * Copyright (C) 2013 Koka El Kiwi <admin@kokabsolu.com>
+ * Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+ *
+ * This file is part of WeeChat, the extensible chat client.
+ *
+ * WeeChat 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.
+ *
+ * WeeChat 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
+ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <cstdlib>
+#include <cstdio>
+#include <cstring>
+
+extern "C"
+{
+#include "../weechat-plugin.h"
+#include "../plugin-script.h"
+}
+
+#include "weechat-js.h"
+#include "weechat-js-api.h"
+#include "weechat-js-v8.h"
+
+WEECHAT_PLUGIN_NAME(JS_PLUGIN_NAME);
+WEECHAT_PLUGIN_DESCRIPTION("Support of javascript scripts");
+WEECHAT_PLUGIN_AUTHOR("Koka El Kiwi <admin@kokabsolu.com>");
+WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
+WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE);
+WEECHAT_PLUGIN_PRIORITY(3000);
+
+struct t_weechat_plugin *weechat_js_plugin;
+
+int js_quiet = 0;
+struct t_plugin_script *js_scripts = NULL;
+struct t_plugin_script *last_js_script = NULL;
+struct t_plugin_script *js_current_script = NULL;
+struct t_plugin_script *js_registered_script = NULL;
+const char *js_current_script_filename = NULL;
+WeechatJsV8 *js_current_interpreter = NULL;
+
+/*
+ * string used to execute action "install":
+ * when signal "js_script_install" is received, name of string
+ * is added to this string, to be installed later by a timer (when nothing is
+ * running in script)
+ */
+char *js_action_install_list = NULL;
+
+/*
+ * string used to execute action "remove":
+ * when signal "js_script_remove" is received, name of string
+ * is added to this string, to be removed later by a timer (when nothing is
+ * running in script)
+ */
+char *js_action_remove_list = NULL;
+
+/*
+ * string used to execute action "autoload":
+ * when signal "js_script_autoload" is received, name of string
+ * is added to this string, to autoload or disable autoload later by a timer
+ * (when nothing is running in script)
+ */
+char *js_action_autoload_list = NULL;
+
+
+/*
+ * Callback called for each key/value in a hashtable.
+ */
+
+void
+weechat_js_hashtable_map_cb (void *data,
+ struct t_hashtable *hashtable,
+ const char *key,
+ const char *value)
+{
+ /* make C++ compiler happy */
+ (void) hashtable;
+
+ Handle<Object> *obj = (Handle<Object> *)data;
+
+ (*obj)->Set(String::New(key), String::New(value));
+}
+
+/*
+ * Converts a WeeChat hashtable to a javascript hashtable.
+ */
+
+Handle<Object>
+weechat_js_hashtable_to_object (struct t_hashtable *hashtable)
+{
+ Handle<Object> obj = Object::New();
+
+ weechat_hashtable_map_string (hashtable,
+ &weechat_js_hashtable_map_cb,
+ &obj);
+ return obj;
+}
+
+/*
+ * Converts a javascript hashtable to a WeeChat hashtable.
+ *
+ * Note: hashtable must be freed after use.
+ */
+
+struct t_hashtable *
+weechat_js_object_to_hashtable (Handle<Object> obj,
+ int size,
+ const char *type_keys,
+ const char *type_values)
+{
+ struct t_hashtable *hashtable;
+ unsigned int i;
+ Handle<Array> keys;
+ Handle<Value> key, value;
+
+ hashtable = weechat_hashtable_new (size, type_keys, type_values,
+ NULL, NULL);
+
+ if (!hashtable)
+ return NULL;
+
+ keys = obj->GetOwnPropertyNames();
+ for (i = 0; i < keys->Length(); i++)
+ {
+ key = keys->Get(i);
+ value = obj->Get(key);
+ String::Utf8Value str_key(key);
+ String::Utf8Value str_value(value);
+ if (strcmp (type_values, WEECHAT_HASHTABLE_STRING) == 0)
+ {
+ weechat_hashtable_set (hashtable, *str_key, *str_value);
+ }
+ else if (strcmp (type_values, WEECHAT_HASHTABLE_POINTER) == 0)
+ {
+ weechat_hashtable_set (hashtable, *str_key,
+ plugin_script_str2ptr (weechat_js_plugin,
+ NULL, NULL,
+ *str_value));
+ }
+ }
+
+ return hashtable;
+}
+
+/*
+ * Executes a javascript function.
+ */
+
+void *
+weechat_js_exec (struct t_plugin_script *script,
+ int ret_type, const char *function,
+ const char *format, void **argv)
+{
+ struct t_plugin_script *old_js_current_script;
+ WeechatJsV8 *js_v8;
+ void *ret_value;
+ Handle<Value> argv2[16], ret_js;
+ int i, argc, *ret_int;
+
+ ret_value = NULL;
+
+ old_js_current_script = js_current_script;
+ js_current_script = script;
+ js_v8 = (WeechatJsV8 *)(script->interpreter);
+
+ if (!js_v8->functionExists(function))
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: unable to run function \"%s\""),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, function);
+ goto end;
+ }
+
+ argc = 0;
+ if (format && format[0])
+ {
+ argc = strlen (format);
+ for (i = 0; i < argc; i++)
+ {
+ switch (format[i])
+ {
+ case 's': /* string */
+ argv2[i] = v8::String::New((const char *)argv[i]);
+ break;
+ case 'i': /* integer */
+ argv2[i] = v8::Integer::New(*((int *)argv[i]));
+ break;
+ case 'h': /* hash */
+ argv2[i] = weechat_js_hashtable_to_object (
+ (struct t_hashtable *)argv[i]);
+ break;
+ }
+ }
+ }
+
+ ret_js = js_v8->execFunction(function,
+ argc,
+ (argc > 0) ? argv2 : NULL);
+
+ if ((ret_type == WEECHAT_SCRIPT_EXEC_STRING) && (ret_js->IsString()))
+ {
+ String::Utf8Value temp_str(ret_js);
+ ret_value = *temp_str;
+ }
+ else if ((ret_type == WEECHAT_SCRIPT_EXEC_INT) && (ret_js->IsInt32()))
+ {
+ ret_int = (int *)malloc (sizeof (*ret_int));
+ if (ret_int)
+ *ret_int = (int)(ret_js->IntegerValue());
+ ret_value = ret_int;
+ }
+ else if ((ret_type == WEECHAT_SCRIPT_EXEC_HASHTABLE)
+ && (ret_js->IsObject()))
+ {
+ ret_value = (struct t_hashtable *)weechat_js_object_to_hashtable (
+ ret_js->ToObject(),
+ WEECHAT_SCRIPT_HASHTABLE_DEFAULT_SIZE,
+ WEECHAT_HASHTABLE_STRING,
+ WEECHAT_HASHTABLE_STRING);
+ }
+ else
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: function \"%s\" must return "
+ "a valid value"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, function);
+ }
+
+ if (!ret_value)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: error in function \"%s\""),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, function);
+ }
+
+end:
+ js_current_script = old_js_current_script;
+
+ return ret_value;
+}
+
+/*
+ * Loads a javascript script.
+ *
+ * Returns:
+ * 1: OK
+ * 0: error
+ */
+
+int
+weechat_js_load (const char *filename)
+{
+ char *source;
+
+ source = weechat_file_get_content (filename);
+ if (!source)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: script \"%s\" not found"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, filename);
+ return 0;
+ }
+
+ if ((weechat_js_plugin->debug >= 2) || !js_quiet)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s: loading script \"%s\""),
+ JS_PLUGIN_NAME, filename);
+ }
+
+ js_current_script = NULL;
+ js_registered_script = NULL;
+
+ js_current_interpreter = new WeechatJsV8();
+
+ if (!js_current_interpreter)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: unable to create new"
+ "sub-interpreter"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME);
+ free (source);
+ return 0;
+ }
+
+ /* load libs */
+ js_current_interpreter->loadLibs();
+
+ js_current_script_filename = filename;
+
+ if (!js_current_interpreter->load(source))
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: unable to load file \"%s\""),
+ weechat_prefix ("error"), JS_PLUGIN_NAME);
+ delete js_current_interpreter;
+ free (source);
+
+ /* if script was registered, remove it from list */
+ if (js_current_script)
+ {
+ plugin_script_remove (weechat_js_plugin,
+ &js_scripts, &last_js_script,
+ js_current_script);
+ }
+
+ return 0;
+ }
+
+ free (source);
+
+ if (!js_current_interpreter->execScript())
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: unable to execute file "
+ "\"%s\""),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, filename);
+ delete js_current_interpreter;
+ return 0;
+ }
+
+ if (!js_registered_script)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: function \"register\" not "
+ "found (or failed) in file \"%s\""),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, filename);
+ delete js_current_interpreter;
+ return 0;
+ }
+
+ js_current_script = js_registered_script;
+
+ /*
+ * set input/close callbacks for buffers created by this script
+ * (to restore callbacks after upgrade)
+ */
+ plugin_script_set_buffer_callbacks (weechat_js_plugin,
+ js_scripts,
+ js_current_script,
+ &weechat_js_api_buffer_input_data_cb,
+ &weechat_js_api_buffer_close_cb);
+
+ weechat_hook_signal_send ("javascript_script_loaded",
+ WEECHAT_HOOK_SIGNAL_STRING,
+ js_current_script->filename);
+
+ return 1;
+}
+
+/*
+ * Callback for script_auto_load() function.
+ */
+
+void
+weechat_js_load_cb (void *data, const char *filename)
+{
+ /* make C++ compiler happy */
+ (void) data;
+
+ weechat_js_load (filename);
+}
+
+/*
+ * Unloads a javascript script.
+ */
+
+void
+weechat_js_unload (struct t_plugin_script *script)
+{
+ int *rc;
+ char *filename;
+ void *interpreter;
+
+ if ((weechat_js_plugin->debug >= 2) || !js_quiet)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s: unloading script \"%s\""),
+ JS_PLUGIN_NAME, script->name);
+ }
+
+ if (script->shutdown_func && script->shutdown_func[0])
+ {
+ rc = (int *)weechat_js_exec (script, WEECHAT_SCRIPT_EXEC_INT,
+ script->shutdown_func, NULL, NULL);
+ if (rc)
+ free (rc);
+ }
+
+ filename = strdup (script->filename);
+ interpreter = script->interpreter;
+
+ if (js_current_script == script)
+ {
+ js_current_script = (js_current_script->prev_script) ?
+ js_current_script->prev_script : js_current_script->next_script;
+ }
+
+ plugin_script_remove (weechat_js_plugin,
+ &js_scripts, &last_js_script, script);
+
+ if (interpreter)
+ delete((WeechatJsV8 *)interpreter);
+
+ (void) weechat_hook_signal_send ("javascript_script_unloaded",
+ WEECHAT_HOOK_SIGNAL_STRING, filename);
+ if (filename)
+ free (filename);
+}
+
+/*
+ * Unloads a javascript script by name.
+ */
+
+void
+weechat_js_unload_name (const char *name)
+{
+ struct t_plugin_script *ptr_script;
+
+ ptr_script = plugin_script_search (weechat_js_plugin, js_scripts, name);
+ if (ptr_script)
+ {
+ weechat_js_unload (ptr_script);
+ if (!js_quiet)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s: script \"%s\" unloaded"),
+ JS_PLUGIN_NAME, name);
+ }
+ }
+ else
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: script \"%s\" not loaded"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, name);
+ }
+}
+
+/*
+ * Unloads all javascript scripts.
+ */
+
+void
+weechat_js_unload_all ()
+{
+ while (js_scripts)
+ {
+ weechat_js_unload (js_scripts);
+ }
+}
+
+/*
+ * Reloads a javascript script by name.
+ */
+
+void
+weechat_js_reload_name (const char *name)
+{
+ struct t_plugin_script *ptr_script;
+ char *filename;
+
+ ptr_script = plugin_script_search (weechat_js_plugin, js_scripts, name);
+ if (ptr_script)
+ {
+ filename = strdup (ptr_script->filename);
+ if (filename)
+ {
+ weechat_js_unload (ptr_script);
+ if (!js_quiet)
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s: script \"%s\" unloaded"),
+ JS_PLUGIN_NAME, name);
+ }
+ weechat_js_load (filename);
+ free (filename);
+ }
+ }
+ else
+ {
+ weechat_printf (NULL,
+ weechat_gettext ("%s%s: script \"%s\" not loaded"),
+ weechat_prefix ("error"), JS_PLUGIN_NAME, name);
+ }
+}
+
+/*
+ * Callback for command "/javascript".
+ */
+
+int
+weechat_js_command_cb (void *data, struct t_gui_buffer *buffer,
+ int argc, char **argv, char **argv_eol)
+{
+ char *ptr_name, *path_script;
+
+ /* make C++ compiler happy */
+ (void) data;
+ (void) buffer;
+
+ if (argc == 1)
+ {
+ plugin_script_display_list (weechat_js_plugin, js_scripts,
+ NULL, 0);
+ }
+ else if (argc == 2)
+ {
+ if (weechat_strcasecmp (argv[1], "list") == 0)
+ {
+ plugin_script_display_list (weechat_js_plugin, js_scripts,
+ NULL, 0);
+ }
+ else if (weechat_strcasecmp (argv[1], "listfull") == 0)
+ {
+ plugin_script_display_list (weechat_js_plugin, js_scripts,
+ NULL, 1);
+ }
+ else if (weechat_strcasecmp (argv[1], "autoload") == 0)
+ {
+ plugin_script_auto_load (weechat_js_plugin, &weechat_js_load_cb);
+ }
+ else if (weechat_strcasecmp (argv[1], "reload") == 0)
+ {
+ weechat_js_unload_all ();
+ plugin_script_auto_load (weechat_js_plugin, &weechat_js_load_cb);
+ }
+ else if (weechat_strcasecmp(argv[1], "unload"))
+ {
+ weechat_js_unload_all ();
+ }
+ }
+ else
+ {
+ if (weechat_strcasecmp (argv[1], "list") == 0)
+ {
+ plugin_script_display_list (weechat_js_plugin, js_scripts,
+ argv_eol[2], 0);
+ }
+ else if (weechat_strcasecmp (argv[1], "listfull") == 0)
+ {
+ plugin_script_display_list (weechat_js_plugin, js_scripts,
+ argv_eol[2], 1);
+ }
+ else if ((weechat_strcasecmp (argv[1], "load") == 0)
+ || (weechat_strcasecmp (argv[1], "reload") == 0)
+ || (weechat_strcasecmp (argv[1], "unload") == 0))
+ {
+ ptr_name = argv_eol[2];
+ if (strncmp (ptr_name, "-q ", 3) == 0)
+ {
+ js_quiet = 1;
+ ptr_name += 3;
+ while (ptr_name[0] == ' ')
+ {
+ ptr_name++;
+ }
+ }
+ if (weechat_strcasecmp (argv[1], "load") == 0)
+ {
+ /* load javascript script */
+ path_script = plugin_script_search_path (weechat_js_plugin,
+ ptr_name);
+ weechat_js_load ((path_script) ? path_script : ptr_name);
+ if (path_script)
+ free (path_script);
+ }
+ else if (weechat_strcasecmp (argv[1], "reload") == 0)
+ {
+ /* reload one javascript script */
+ weechat_js_reload_name (ptr_name);
+ }
+ else if (weechat_strcasecmp (argv[1], "unload") == 0)
+ {
+ /* unload javascript script */
+ weechat_js_unload_name (ptr_name);
+ }
+ js_quiet = 0;
+ }
+ else
+ WEECHAT_COMMAND_ERROR;
+ }
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Adds javascript scripts to completion list.
+ */
+
+int
+weechat_js_completion_cb (void *data, const char *completion_item,
+ struct t_gui_buffer *buffer,
+ struct t_gui_completion *completion)
+{
+ /* make C++ compiler happy */
+ (void) data;
+ (void) completion_item;
+ (void) buffer;
+
+ plugin_script_completion (weechat_js_plugin, completion, js_scripts);
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Returns hdata for javascript scripts.
+ */
+
+struct t_hdata *
+weechat_js_hdata_cb (void *data, const char *hdata_name)
+{
+ /* make C++ compiler happy */
+ (void) data;
+
+ return plugin_script_hdata_script (weechat_plugin,
+ &js_scripts, &last_js_script,
+ hdata_name);
+}
+
+/*
+ * Returns infolist with javascript scripts.
+ */
+
+struct t_infolist *
+weechat_js_infolist_cb (void *data, const char *infolist_name,
+ void *pointer, const char *arguments)
+{
+ /* make C++ compiler happy */
+ (void) data;
+
+ if (!infolist_name || !infolist_name[0])
+ return NULL;
+
+ if (weechat_strcasecmp (infolist_name, "javascript_script") == 0)
+ {
+ return plugin_script_infolist_list_scripts (weechat_js_plugin,
+ js_scripts, pointer,
+ arguments);
+ }
+
+ return NULL;
+}
+
+/*
+ * Dumps javascript plugin data in Weechat log file.
+ */
+
+int
+weechat_js_signal_debug_dump_cb (void *data, const char *signal,
+ const char *type_data, void *signal_data)
+{
+ /* make C++ compiler happy */
+ (void) data;
+ (void) signal;
+ (void) type_data;
+
+ if (!signal_data
+ || (weechat_strcasecmp ((char *)signal_data, JS_PLUGIN_NAME) == 0))
+ {
+ plugin_script_print_log (weechat_js_plugin, js_scripts);
+ }
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Display infos about external libraries used.
+ */
+
+int
+weechat_js_signal_debug_libs_cb (void *data, const char *signal,
+ const char *type_data, void *signal_data)
+{
+ /* make C++ compiler happy */
+ (void) data;
+ (void) signal;
+ (void) type_data;
+ (void) signal_data;
+
+ /* TODO: display v8 version */
+ weechat_printf (NULL, " %s: %s", JS_PLUGIN_NAME, "version");
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Callback called when a buffer is closed.
+ */
+
+int
+weechat_js_signal_buffer_closed_cb (void *data, const char *signal,
+ const char *type_data, void *signal_data)
+{
+ /* make C++ compiler happy */
+ (void) data;
+ (void) signal;
+ (void) type_data;
+
+ if (signal_data)
+ {
+ plugin_script_remove_buffer_callbacks (js_scripts,
+ (struct t_gui_buffer *)signal_data);
+ }
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Timer for executing actions.
+ */
+
+int
+weechat_js_timer_action_cb (void *data, int remaining_calls)
+{
+ /* make C++ compiler happy */
+ (void) remaining_calls;
+
+ if (data)
+ {
+ if (data == &js_action_install_list)
+ {
+ plugin_script_action_install (weechat_js_plugin,
+ js_scripts,
+ &weechat_js_unload,
+ &weechat_js_load,
+ &js_quiet,
+ &js_action_install_list);
+ }
+ else if (data == &js_action_remove_list)
+ {
+ plugin_script_action_remove (weechat_js_plugin,
+ js_scripts,
+ &weechat_js_unload,
+ &js_quiet,
+ &js_action_remove_list);
+ }
+ else if (data == &js_action_autoload_list)
+ {
+ plugin_script_action_autoload (weechat_js_plugin,
+ &js_quiet,
+ &js_action_autoload_list);
+ }
+ }
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Callback called when a script action is asked (install/remove/autoload a
+ * script).
+ */
+
+int
+weechat_js_signal_script_action_cb (void *data, const char *signal,
+ const char *type_data,
+ void *signal_data)
+{
+ /* make C++ compiler happy */
+ (void) data;
+
+ if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_STRING) == 0)
+ {
+ if (strcmp (signal, "javascript_script_install") == 0)
+ {
+ plugin_script_action_add (&js_action_install_list,
+ (const char *)signal_data);
+ weechat_hook_timer (1, 0, 1,
+ &weechat_js_timer_action_cb,
+ &js_action_install_list);
+ }
+ else if (strcmp (signal, "javascript_script_remove") == 0)
+ {
+ plugin_script_action_add (&js_action_remove_list,
+ (const char *)signal_data);
+ weechat_hook_timer (1, 0, 1,
+ &weechat_js_timer_action_cb,
+ &js_action_remove_list);
+ }
+ else if (strcmp (signal, "javascript_script_autoload") == 0)
+ {
+ plugin_script_action_add (&js_action_autoload_list,
+ (const char *)signal_data);
+ weechat_hook_timer (1, 0, 1,
+ &weechat_js_timer_action_cb,
+ &js_action_autoload_list);
+ }
+ }
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Initializes javascript plugin.
+ */
+
+EXPORT int
+weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
+{
+ struct t_plugin_script_init init;
+
+ weechat_js_plugin = plugin;
+
+ init.callback_command = &weechat_js_command_cb;
+ init.callback_completion = &weechat_js_completion_cb;
+ init.callback_hdata = &weechat_js_hdata_cb;
+ init.callback_infolist = &weechat_js_infolist_cb;
+ init.callback_signal_debug_dump = &weechat_js_signal_debug_dump_cb;
+ init.callback_signal_debug_libs = &weechat_js_signal_debug_libs_cb;
+ init.callback_signal_buffer_closed = &weechat_js_signal_buffer_closed_cb;
+ init.callback_signal_script_action = &weechat_js_signal_script_action_cb;
+ init.callback_load_file = &weechat_js_load_cb;
+
+ js_quiet = 1;
+ plugin_script_init (plugin, argc, argv, &init);
+ js_quiet = 0;
+
+ plugin_script_display_short_list (weechat_js_plugin, js_scripts);
+
+ return WEECHAT_RC_OK;
+}
+
+/*
+ * Ends javascript plugin.
+ */
+
+EXPORT int
+weechat_plugin_end (struct t_weechat_plugin *plugin)
+{
+ js_quiet = 1;
+ plugin_script_end (plugin, &js_scripts, &weechat_js_unload_all);
+ js_quiet = 0;
+
+ /* free some data */
+ if (js_action_install_list)
+ free (js_action_install_list);
+ if (js_action_remove_list)
+ free (js_action_remove_list);
+ if (js_action_autoload_list)
+ free (js_action_autoload_list);
+
+ return WEECHAT_RC_OK;
+}
diff --git a/src/plugins/javascript/weechat-js.h b/src/plugins/javascript/weechat-js.h
new file mode 100644
index 000000000..35529f5da
--- /dev/null
+++ b/src/plugins/javascript/weechat-js.h
@@ -0,0 +1,64 @@
+/*
+ * Copyright (C) 2013 Koka El Kiwi <admin@kokabsolu.com>
+ * Copyright (C) 2015 Sébastien Helleu <flashcode@flashtux.org>
+ *
+ * This file is part of WeeChat, the extensible chat client.
+ *
+ * WeeChat 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.
+ *
+ * WeeChat 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
+ * along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef WEECHAT_JS_H
+#define WEECHAT_JS_H 1
+
+#include <v8.h>
+
+#ifdef __cplusplus
+#ifdef _WIN32
+#define EXPORT extern "C" __declspec (dllexport)
+#else
+#define EXPORT extern "C"
+#endif
+#else
+#define EXPORT
+#endif
+
+#define weechat_plugin weechat_js_plugin
+#define JS_PLUGIN_NAME "javascript"
+
+#define JS_CURRENT_SCRIPT_NAME ((js_current_script) ? js_current_script->name : "-")
+
+using namespace v8;
+
+class WeechatJsV8;
+
+extern struct t_weechat_plugin *weechat_js_plugin;
+
+extern int js_quiet;
+extern struct t_plugin_script *js_scripts;
+extern struct t_plugin_script *last_js_script;
+extern struct t_plugin_script *js_current_script;
+extern struct t_plugin_script *js_registered_script;
+extern const char *js_current_script_filename;
+extern WeechatJsV8 *js_current_interpreter;
+
+extern Handle<Object> weechat_js_hashtable_to_object (struct t_hashtable *hashtable);
+extern struct t_hashtable *weechat_js_object_to_hashtable (Handle<Object> obj,
+ int size,
+ const char *type_keys,
+ const char *type_values);
+extern void *weechat_js_exec (struct t_plugin_script *script,
+ int ret_type, const char *function,
+ const char *format, void **argv);
+
+#endif /* WEECHAT_JS_H */
diff --git a/src/plugins/script/script-command.c b/src/plugins/script/script-command.c
index 13c226337..d7e0cb576 100644
--- a/src/plugins/script/script-command.c
+++ b/src/plugins/script/script-command.c
@@ -370,9 +370,9 @@ script_command_init ()
" || show %(script_scripts)"
" || load %(script_files)|%*"
" || unload %(python_script)|%(perl_script)|%(ruby_script)|"
- "%(tcl_script)|%(lua_script)|%(guile_script)|%*"
+ "%(tcl_script)|%(lua_script)|%(guile_script)|%(javascript_script)|%*"
" || reload %(python_script)|%(perl_script)|%(ruby_script)|"
- "%(tcl_script)|%(lua_script)|%(guile_script)|%*"
+ "%(tcl_script)|%(lua_script)|%(guile_script)|%(javascript_script)|%*"
" || autoload %(script_scripts_installed)|%*"
" || noautoload %(script_scripts_installed)|%*"
" || toggleautoload %(script_scripts_installed)|%*"
diff --git a/src/plugins/script/script.c b/src/plugins/script/script.c
index 8e0c690f8..fd1ec0dc5 100644
--- a/src/plugins/script/script.c
+++ b/src/plugins/script/script.c
@@ -45,9 +45,9 @@ WEECHAT_PLUGIN_PRIORITY(2000);
struct t_weechat_plugin *weechat_script_plugin = NULL;
char *script_language[SCRIPT_NUM_LANGUAGES] =
-{ "guile", "lua", "perl", "python", "ruby", "tcl" };
+{ "guile", "lua", "perl", "python", "ruby", "tcl", "javascript" };
char *script_extension[SCRIPT_NUM_LANGUAGES] =
-{ "scm", "lua", "pl", "py", "rb", "tcl" };
+{ "scm", "lua", "pl", "py", "rb", "tcl", "js" };
int script_plugin_loaded[SCRIPT_NUM_LANGUAGES];
struct t_hashtable *script_loaded = NULL;
diff --git a/src/plugins/script/script.h b/src/plugins/script/script.h
index 727fa7602..f92162f5b 100644
--- a/src/plugins/script/script.h
+++ b/src/plugins/script/script.h
@@ -23,7 +23,7 @@
#define weechat_plugin weechat_script_plugin
#define SCRIPT_PLUGIN_NAME "script"
-#define SCRIPT_NUM_LANGUAGES 6
+#define SCRIPT_NUM_LANGUAGES 7
extern struct t_weechat_plugin *weechat_script_plugin;