mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
php: new php plugin
This plugin requires PHP >= 7.0.
This commit is contained in:
committed by
Sébastien Helleu
parent
8c046d9be9
commit
d032ee2159
@@ -0,0 +1,30 @@
|
||||
#
|
||||
# Copyright (C) 2006-2017 Adam Saponara <as@php.net>
|
||||
#
|
||||
# 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/>.
|
||||
#
|
||||
|
||||
add_library(php MODULE weechat-php.c weechat-php.h weechat-php-api.c
|
||||
weechat-php-api.h)
|
||||
|
||||
set_target_properties(php PROPERTIES PREFIX "")
|
||||
|
||||
if(PHP_FOUND)
|
||||
include_directories(${PHP_INCLUDE_DIRS})
|
||||
target_link_libraries(php ${PHP_LDFLAGS} weechat_plugins_scripts)
|
||||
endif()
|
||||
|
||||
install(TARGETS php LIBRARY DESTINATION ${LIBDIR}/plugins)
|
||||
@@ -0,0 +1,33 @@
|
||||
#
|
||||
# Copyright (C) 2006-2017 Adam Saponara <as@php.net>
|
||||
#
|
||||
# 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\" $(PHP_CFLAGS)
|
||||
|
||||
libdir = ${weechat_libdir}/plugins
|
||||
|
||||
lib_LTLIBRARIES = php.la
|
||||
|
||||
php_la_SOURCES = weechat-php.c \
|
||||
weechat-php.h \
|
||||
weechat-php-api.c \
|
||||
weechat-php-api.h
|
||||
php_la_LDFLAGS = -module -no-undefined
|
||||
php_la_LIBADD = ../lib_weechat_plugins_scripts.la $(PHP_LFLAGS)
|
||||
|
||||
EXTRA_DIST = CMakeLists.txt
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (C) 2006-2017 Adam Saponara <as@php.net>
|
||||
*
|
||||
* 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_PHP_API_H
|
||||
#define WEECHAT_PHP_API_H 1
|
||||
|
||||
extern struct zval* weechat_php_api_funcs[];
|
||||
extern struct t_php_const weechat_php_api_consts[];
|
||||
|
||||
extern int weechat_php_buffer_new_input_callback(const void *pointer, void *data, struct t_gui_buffer *buffer, const char *input_data);
|
||||
extern int weechat_php_buffer_new_close_callback(const void *pointer, void *data, struct t_gui_buffer *buffer);
|
||||
|
||||
PHP_FUNCTION(weechat_bar_item_new);
|
||||
PHP_FUNCTION(weechat_bar_item_remove);
|
||||
PHP_FUNCTION(weechat_bar_item_search);
|
||||
PHP_FUNCTION(weechat_bar_item_update);
|
||||
PHP_FUNCTION(weechat_bar_new);
|
||||
PHP_FUNCTION(weechat_bar_remove);
|
||||
PHP_FUNCTION(weechat_bar_search);
|
||||
PHP_FUNCTION(weechat_bar_set);
|
||||
PHP_FUNCTION(weechat_bar_update);
|
||||
PHP_FUNCTION(weechat_buffer_clear);
|
||||
PHP_FUNCTION(weechat_buffer_close);
|
||||
PHP_FUNCTION(weechat_buffer_get_integer);
|
||||
PHP_FUNCTION(weechat_buffer_get_pointer);
|
||||
PHP_FUNCTION(weechat_buffer_get_string);
|
||||
PHP_FUNCTION(weechat_buffer_match_list);
|
||||
PHP_FUNCTION(weechat_buffer_merge);
|
||||
PHP_FUNCTION(weechat_buffer_new);
|
||||
PHP_FUNCTION(weechat_buffer_search);
|
||||
PHP_FUNCTION(weechat_buffer_search_main);
|
||||
PHP_FUNCTION(weechat_buffer_set);
|
||||
PHP_FUNCTION(weechat_buffer_string_replace_local_var);
|
||||
PHP_FUNCTION(weechat_buffer_unmerge);
|
||||
PHP_FUNCTION(weechat_charset_set);
|
||||
PHP_FUNCTION(weechat_color);
|
||||
PHP_FUNCTION(weechat_command);
|
||||
PHP_FUNCTION(weechat_config_boolean);
|
||||
PHP_FUNCTION(weechat_config_boolean_default);
|
||||
PHP_FUNCTION(weechat_config_color);
|
||||
PHP_FUNCTION(weechat_config_color_default);
|
||||
PHP_FUNCTION(weechat_config_free);
|
||||
PHP_FUNCTION(weechat_config_get);
|
||||
PHP_FUNCTION(weechat_config_get_plugin);
|
||||
PHP_FUNCTION(weechat_config_integer);
|
||||
PHP_FUNCTION(weechat_config_integer_default);
|
||||
PHP_FUNCTION(weechat_config_is_set_plugin);
|
||||
PHP_FUNCTION(weechat_config_new);
|
||||
PHP_FUNCTION(weechat_config_new_option);
|
||||
PHP_FUNCTION(weechat_config_new_section);
|
||||
PHP_FUNCTION(weechat_config_option_default_is_null);
|
||||
PHP_FUNCTION(weechat_config_option_free);
|
||||
PHP_FUNCTION(weechat_config_option_is_null);
|
||||
PHP_FUNCTION(weechat_config_option_rename);
|
||||
PHP_FUNCTION(weechat_config_option_reset);
|
||||
PHP_FUNCTION(weechat_config_option_set);
|
||||
PHP_FUNCTION(weechat_config_option_set_null);
|
||||
PHP_FUNCTION(weechat_config_option_unset);
|
||||
PHP_FUNCTION(weechat_config_read);
|
||||
PHP_FUNCTION(weechat_config_reload);
|
||||
PHP_FUNCTION(weechat_config_search_option);
|
||||
PHP_FUNCTION(weechat_config_search_section);
|
||||
PHP_FUNCTION(weechat_config_section_free);
|
||||
PHP_FUNCTION(weechat_config_section_free_options);
|
||||
PHP_FUNCTION(weechat_config_set_desc_plugin);
|
||||
PHP_FUNCTION(weechat_config_set_plugin);
|
||||
PHP_FUNCTION(weechat_config_string);
|
||||
PHP_FUNCTION(weechat_config_string_default);
|
||||
PHP_FUNCTION(weechat_config_string_to_boolean);
|
||||
PHP_FUNCTION(weechat_config_unset_plugin);
|
||||
PHP_FUNCTION(weechat_config_write);
|
||||
PHP_FUNCTION(weechat_config_write_line);
|
||||
PHP_FUNCTION(weechat_config_write_option);
|
||||
PHP_FUNCTION(weechat_gettext);
|
||||
PHP_FUNCTION(weechat_hdata_char);
|
||||
PHP_FUNCTION(weechat_hdata_check_pointer);
|
||||
PHP_FUNCTION(weechat_hdata_get);
|
||||
PHP_FUNCTION(weechat_hdata_get_list);
|
||||
PHP_FUNCTION(weechat_hdata_get_string);
|
||||
PHP_FUNCTION(weechat_hdata_get_var);
|
||||
PHP_FUNCTION(weechat_hdata_get_var_array_size);
|
||||
PHP_FUNCTION(weechat_hdata_get_var_array_size_string);
|
||||
PHP_FUNCTION(weechat_hdata_get_var_hdata);
|
||||
PHP_FUNCTION(weechat_hdata_get_var_offset);
|
||||
PHP_FUNCTION(weechat_hdata_get_var_type);
|
||||
PHP_FUNCTION(weechat_hdata_get_var_type_string);
|
||||
PHP_FUNCTION(weechat_hdata_hashtable);
|
||||
PHP_FUNCTION(weechat_hdata_integer);
|
||||
PHP_FUNCTION(weechat_hdata_long);
|
||||
PHP_FUNCTION(weechat_hdata_move);
|
||||
PHP_FUNCTION(weechat_hdata_pointer);
|
||||
PHP_FUNCTION(weechat_hdata_search);
|
||||
PHP_FUNCTION(weechat_hdata_string);
|
||||
PHP_FUNCTION(weechat_hdata_time);
|
||||
PHP_FUNCTION(weechat_hdata_update);
|
||||
PHP_FUNCTION(weechat_hook_command);
|
||||
PHP_FUNCTION(weechat_hook_command_run);
|
||||
PHP_FUNCTION(weechat_hook_completion);
|
||||
PHP_FUNCTION(weechat_hook_completion_get_string);
|
||||
PHP_FUNCTION(weechat_hook_completion_list_add);
|
||||
PHP_FUNCTION(weechat_hook_config);
|
||||
PHP_FUNCTION(weechat_hook_connect);
|
||||
PHP_FUNCTION(weechat_hook_fd);
|
||||
PHP_FUNCTION(weechat_hook_focus);
|
||||
PHP_FUNCTION(weechat_hook_hsignal);
|
||||
PHP_FUNCTION(weechat_hook_hsignal_send);
|
||||
PHP_FUNCTION(weechat_hook_info);
|
||||
PHP_FUNCTION(weechat_hook_info_hashtable);
|
||||
PHP_FUNCTION(weechat_hook_infolist);
|
||||
PHP_FUNCTION(weechat_hook_modifier);
|
||||
PHP_FUNCTION(weechat_hook_modifier_exec);
|
||||
PHP_FUNCTION(weechat_hook_print);
|
||||
PHP_FUNCTION(weechat_hook_process);
|
||||
PHP_FUNCTION(weechat_hook_process_hashtable);
|
||||
PHP_FUNCTION(weechat_hook_set);
|
||||
PHP_FUNCTION(weechat_hook_signal);
|
||||
PHP_FUNCTION(weechat_hook_signal_send);
|
||||
PHP_FUNCTION(weechat_hook_timer);
|
||||
PHP_FUNCTION(weechat_iconv_from_internal);
|
||||
PHP_FUNCTION(weechat_iconv_to_internal);
|
||||
PHP_FUNCTION(weechat_info_get);
|
||||
PHP_FUNCTION(weechat_info_get_hashtable);
|
||||
PHP_FUNCTION(weechat_infolist_fields);
|
||||
PHP_FUNCTION(weechat_infolist_free);
|
||||
PHP_FUNCTION(weechat_infolist_get);
|
||||
PHP_FUNCTION(weechat_infolist_integer);
|
||||
PHP_FUNCTION(weechat_infolist_new);
|
||||
PHP_FUNCTION(weechat_infolist_new_item);
|
||||
PHP_FUNCTION(weechat_infolist_new_var_integer);
|
||||
PHP_FUNCTION(weechat_infolist_new_var_pointer);
|
||||
PHP_FUNCTION(weechat_infolist_new_var_string);
|
||||
PHP_FUNCTION(weechat_infolist_new_var_time);
|
||||
PHP_FUNCTION(weechat_infolist_next);
|
||||
PHP_FUNCTION(weechat_infolist_pointer);
|
||||
PHP_FUNCTION(weechat_infolist_prev);
|
||||
PHP_FUNCTION(weechat_infolist_reset_item_cursor);
|
||||
PHP_FUNCTION(weechat_infolist_search_var);
|
||||
PHP_FUNCTION(weechat_infolist_string);
|
||||
PHP_FUNCTION(weechat_infolist_time);
|
||||
PHP_FUNCTION(weechat_key_bind);
|
||||
PHP_FUNCTION(weechat_key_unbind);
|
||||
PHP_FUNCTION(weechat_list_add);
|
||||
PHP_FUNCTION(weechat_list_casesearch);
|
||||
PHP_FUNCTION(weechat_list_casesearch_pos);
|
||||
PHP_FUNCTION(weechat_list_free);
|
||||
PHP_FUNCTION(weechat_list_get);
|
||||
PHP_FUNCTION(weechat_list_new);
|
||||
PHP_FUNCTION(weechat_list_next);
|
||||
PHP_FUNCTION(weechat_list_prev);
|
||||
PHP_FUNCTION(weechat_list_remove);
|
||||
PHP_FUNCTION(weechat_list_remove_all);
|
||||
PHP_FUNCTION(weechat_list_search);
|
||||
PHP_FUNCTION(weechat_list_search_pos);
|
||||
PHP_FUNCTION(weechat_list_set);
|
||||
PHP_FUNCTION(weechat_list_size);
|
||||
PHP_FUNCTION(weechat_list_string);
|
||||
PHP_FUNCTION(weechat_log_printf);
|
||||
PHP_FUNCTION(weechat_mkdir);
|
||||
PHP_FUNCTION(weechat_mkdir_home);
|
||||
PHP_FUNCTION(weechat_mkdir_parents);
|
||||
PHP_FUNCTION(weechat_ngettext);
|
||||
PHP_FUNCTION(weechat_nicklist_add_group);
|
||||
PHP_FUNCTION(weechat_nicklist_add_nick);
|
||||
PHP_FUNCTION(weechat_nicklist_group_get_integer);
|
||||
PHP_FUNCTION(weechat_nicklist_group_get_pointer);
|
||||
PHP_FUNCTION(weechat_nicklist_group_get_string);
|
||||
PHP_FUNCTION(weechat_nicklist_group_set);
|
||||
PHP_FUNCTION(weechat_nicklist_nick_get_integer);
|
||||
PHP_FUNCTION(weechat_nicklist_nick_get_pointer);
|
||||
PHP_FUNCTION(weechat_nicklist_nick_get_string);
|
||||
PHP_FUNCTION(weechat_nicklist_nick_set);
|
||||
PHP_FUNCTION(weechat_nicklist_remove_all);
|
||||
PHP_FUNCTION(weechat_nicklist_remove_group);
|
||||
PHP_FUNCTION(weechat_nicklist_remove_nick);
|
||||
PHP_FUNCTION(weechat_nicklist_search_group);
|
||||
PHP_FUNCTION(weechat_nicklist_search_nick);
|
||||
PHP_FUNCTION(weechat_plugin_get_name);
|
||||
PHP_FUNCTION(weechat_prefix);
|
||||
PHP_FUNCTION(weechat_printf);
|
||||
PHP_FUNCTION(weechat_printf_date_tags);
|
||||
PHP_FUNCTION(weechat_printf_y);
|
||||
PHP_FUNCTION(weechat_register);
|
||||
PHP_FUNCTION(weechat_string_eval_expression);
|
||||
PHP_FUNCTION(weechat_string_eval_path_home);
|
||||
PHP_FUNCTION(weechat_string_has_highlight);
|
||||
PHP_FUNCTION(weechat_string_has_highlight_regex);
|
||||
PHP_FUNCTION(weechat_string_input_for_buffer);
|
||||
PHP_FUNCTION(weechat_string_is_command_char);
|
||||
PHP_FUNCTION(weechat_string_mask_to_regex);
|
||||
PHP_FUNCTION(weechat_string_match);
|
||||
PHP_FUNCTION(weechat_string_remove_color);
|
||||
PHP_FUNCTION(weechat_string_replace);
|
||||
PHP_FUNCTION(weechat_strlen_screen);
|
||||
PHP_FUNCTION(weechat_unhook);
|
||||
PHP_FUNCTION(weechat_unhook_all);
|
||||
PHP_FUNCTION(weechat_upgrade_close);
|
||||
PHP_FUNCTION(weechat_upgrade_new);
|
||||
PHP_FUNCTION(weechat_upgrade_read);
|
||||
PHP_FUNCTION(weechat_upgrade_write_object);
|
||||
PHP_FUNCTION(weechat_window_get_integer);
|
||||
PHP_FUNCTION(weechat_window_get_pointer);
|
||||
PHP_FUNCTION(weechat_window_get_string);
|
||||
PHP_FUNCTION(weechat_window_search_with_buffer);
|
||||
PHP_FUNCTION(weechat_window_set_title);
|
||||
PHP_FUNCTION(forget_class);
|
||||
PHP_FUNCTION(forget_function);
|
||||
|
||||
#endif /* WEECHAT_PHP_API_H */
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright (C) 2006-2017 Adam Saponara <as@php.net>
|
||||
*
|
||||
* 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_PHP_H
|
||||
#define WEECHAT_PHP_H 1
|
||||
|
||||
#define weechat_plugin weechat_php_plugin
|
||||
#define PHP_PLUGIN_NAME "php"
|
||||
#define PHP_WEECHAT_VERSION "0.1"
|
||||
|
||||
#define PHP_CURRENT_SCRIPT_NAME ((php_current_script) ? php_current_script->name : "-")
|
||||
|
||||
struct t_php_const
|
||||
{
|
||||
char *name;
|
||||
int int_value;
|
||||
char *str_value;
|
||||
};
|
||||
|
||||
extern int php_quiet;
|
||||
extern struct t_weechat_plugin *weechat_php_plugin;
|
||||
|
||||
extern struct t_hashtable *weechat_php_function_map;
|
||||
|
||||
extern struct t_plugin_script *php_scripts;
|
||||
extern struct t_plugin_script *last_php_script;
|
||||
extern struct t_plugin_script *php_current_script;
|
||||
extern struct t_plugin_script *php_registered_script;
|
||||
extern const char *php_current_script_filename;
|
||||
|
||||
extern void weechat_php_hashtable_to_array (struct t_hashtable *hashtable, zval *arr);
|
||||
extern struct t_hashtable *weechat_php_array_to_hashtable (zval* arr,
|
||||
int size,
|
||||
const char *type_keys,
|
||||
const char *type_values);
|
||||
extern void *weechat_php_exec (struct t_plugin_script *script,
|
||||
int ret_type,
|
||||
const char *function,
|
||||
const char *format, void **argv);
|
||||
|
||||
extern zval *weechat_php_func_map_get (const char *func_name);
|
||||
extern char *weechat_php_func_map_add (zval *ofunc);
|
||||
|
||||
#endif /* WEECHAT_PHP_H */
|
||||
Reference in New Issue
Block a user