]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Add methods to enable and disable symbols from Lua API
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 24 Oct 2016 07:09:58 +0000 (08:09 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 24 Oct 2016 07:09:58 +0000 (08:09 +0100)
src/lua/lua_config.c

index dc13710136fb009408e4e553cc9a3a2aea2b0c9d..10b64a8d0154ef68601b32b58a8c93a48fabde4e 100644 (file)
@@ -355,6 +355,20 @@ end)
  */
 LUA_FUNCTION_DEF (config, add_condition);
 
+/***
+ * @method rspamd_config:enable_symbol(symbol)
+ * Enables execution for the specified symbol
+ * @param {string} symbol symbol's name
+ */
+LUA_FUNCTION_DEF (config, enable_symbol);
+
+/***
+ * @method rspamd_config:disable_symbol(symbol)
+ * Disables execution for the specified symbol
+ * @param {string} symbol symbol's name
+ */
+LUA_FUNCTION_DEF (config, disable_symbol);
+
 /***
  * @method rspamd_config:__newindex(name, callback)
  * This metamethod is called if new indicies are added to the `rspamd_config` object.
@@ -560,6 +574,8 @@ static const struct luaL_reg configlib_m[] = {
        LUA_INTERFACE_DEF (config, get_api_version),
        LUA_INTERFACE_DEF (config, get_key),
        LUA_INTERFACE_DEF (config, add_condition),
+       LUA_INTERFACE_DEF (config, enable_symbol),
+       LUA_INTERFACE_DEF (config, disable_symbol),
        LUA_INTERFACE_DEF (config, register_regexp),
        LUA_INTERFACE_DEF (config, replace_regexp),
        LUA_INTERFACE_DEF (config, register_worker_script),
@@ -1818,6 +1834,38 @@ lua_config_add_condition (lua_State *L)
        return 1;
 }
 
+static gint
+lua_config_enable_symbol (lua_State *L)
+{
+       struct rspamd_config *cfg = lua_check_config (L, 1);
+       const gchar *sym = luaL_checkstring (L, 2);
+
+       if (cfg && sym) {
+               rspamd_symbols_cache_enable_symbol (cfg->cache, sym);
+       }
+       else {
+               return luaL_error (L, "invalid arguments");
+       }
+
+       return 0;
+}
+
+static gint
+lua_config_disable_symbol (lua_State *L)
+{
+       struct rspamd_config *cfg = lua_check_config (L, 1);
+       const gchar *sym = luaL_checkstring (L, 2);
+
+       if (cfg && sym) {
+               rspamd_symbols_cache_disable_symbol (cfg->cache, sym);
+       }
+       else {
+               return luaL_error (L, "invalid arguments");
+       }
+
+       return 0;
+}
+
 static gint
 lua_config_register_regexp (lua_State *L)
 {