aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_task.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2018-06-19 18:50:45 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2018-06-19 18:50:45 +0100
commitafb5bf3cbf718f231e344947ce5fd3d660961139 (patch)
treef40a9a0f2a465cff8cfba6cd1e092d594b824fa5 /src/lua/lua_task.c
parent5bf6c2c3ab9d103705e41d0a47e96a47946d8aa0 (diff)
downloadrspamd-afb5bf3cbf718f231e344947ce5fd3d660961139.tar.gz
rspamd-afb5bf3cbf718f231e344947ce5fd3d660961139.zip
[Feature] Add method to get statistical tokens in Lua API
Diffstat (limited to 'src/lua/lua_task.c')
-rw-r--r--src/lua/lua_task.c129
1 files changed, 128 insertions, 1 deletions
diff --git a/src/lua/lua_task.c b/src/lua/lua_task.c
index 46f480c02..94d4c05dc 100644
--- a/src/lua/lua_task.c
+++ b/src/lua/lua_task.c
@@ -21,8 +21,9 @@
#include "unix-std.h"
#include "libmime/smtp_parsers.h"
#include "libserver/mempool_vars_internal.h"
+#include "libserver/task.h"
+#include "libstat/stat_api.h"
#include <math.h>
-#include <src/libserver/task.h>
/***
* @module rspamd_task
@@ -864,6 +865,25 @@ LUA_FUNCTION_DEF (task, disable_action);
*/
LUA_FUNCTION_DEF (task, get_newlines_type);
+/***
+ * @method task:get_stat_tokens()
+ * Returns list of tables the statistical tokens:
+ * - `data`: 64 bit number encoded as a string
+ * - `t1`: the first token (if any)
+ * - `t2`: the second token (if any)
+ * - `win`: window index
+ * - `flag`: table of strings:
+ * - `text`: text token
+ * - `meta`: meta token
+ * - `lua`: lua meta token
+ * - `exception`: exception
+ * - `subject`: subject token
+ * - `unigram`: unigram token
+ *
+ * @return {table of tables}
+ */
+LUA_FUNCTION_DEF (task, get_stat_tokens);
+
static const struct luaL_reg tasklib_f[] = {
LUA_INTERFACE_DEF (task, load_from_file),
{NULL, NULL}
@@ -959,6 +979,7 @@ static const struct luaL_reg tasklib_m[] = {
LUA_INTERFACE_DEF (task, headers_foreach),
LUA_INTERFACE_DEF (task, disable_action),
LUA_INTERFACE_DEF (task, get_newlines_type),
+ LUA_INTERFACE_DEF (task, get_stat_tokens),
{"__tostring", rspamd_lua_class_tostring},
{NULL, NULL}
};
@@ -4392,6 +4413,112 @@ lua_task_get_newlines_type (lua_State *L)
return 1;
}
+static void
+lua_push_stat_token (lua_State *L, rspamd_token_t *tok)
+{
+ gchar numbuf[64];
+
+ /* Table values
+ * - `data`: 64 bit number encoded as a string
+ * - `t1`: the first token (if any)
+ * - `t2`: the second token (if any)
+ * - `win`: window index
+ * - `flag`: table of strings:
+ * - `text`: text token
+ * - `meta`: meta token
+ * - `lua`: lua meta token
+ * - `exception`: exception
+ * - `subject`: subject token
+ * - `unigram`: unigram token
+ */
+ lua_createtable (L, 0, 5);
+
+ rspamd_snprintf (numbuf, sizeof (numbuf), "%uL", tok->data);
+ lua_pushstring (L, "data");
+ lua_pushstring (L, numbuf);
+ lua_settable (L, -3);
+
+ if (tok->t1) {
+ lua_pushstring (L, "t1");
+ lua_pushlstring (L, tok->t1->begin, tok->t1->len);
+ lua_settable (L, -3);
+ }
+
+ if (tok->t2) {
+ lua_pushstring (L, "t2");
+ lua_pushlstring (L, tok->t2->begin, tok->t2->len);
+ lua_settable (L, -3);
+ }
+
+ lua_pushstring (L, "win");
+ lua_pushnumber (L, tok->window_idx);
+ lua_settable (L, -3);
+
+ lua_pushstring (L, "flags");
+ lua_createtable (L, 0, 5);
+
+ /* Flags */
+ {
+ if (tok->flags & RSPAMD_STAT_TOKEN_FLAG_TEXT) {
+ lua_pushstring (L, "text");
+ lua_pushboolean (L, true);
+ lua_settable (L, -3);
+ }
+ if (tok->flags & RSPAMD_STAT_TOKEN_FLAG_META) {
+ lua_pushstring (L, "meta");
+ lua_pushboolean (L, true);
+ lua_settable (L, -3);
+ }
+ if (tok->flags & RSPAMD_STAT_TOKEN_FLAG_LUA_META) {
+ lua_pushstring (L, "lua");
+ lua_pushboolean (L, true);
+ lua_settable (L, -3);
+ }
+ if (tok->flags & RSPAMD_STAT_TOKEN_FLAG_EXCEPTION) {
+ lua_pushstring (L, "exception");
+ lua_pushboolean (L, true);
+ lua_settable (L, -3);
+ }
+ if (tok->flags & RSPAMD_STAT_TOKEN_FLAG_SUBJECT) {
+ lua_pushstring (L, "subject");
+ lua_pushboolean (L, true);
+ lua_settable (L, -3);
+ }
+ }
+ lua_settable (L, -3);
+}
+
+static gint
+lua_task_get_stat_tokens (lua_State *L)
+{
+ struct rspamd_task *task = lua_check_task (L, 1);
+ guint i;
+ rspamd_token_t *tok;
+
+ if (task) {
+ if (!task->tokens) {
+ rspamd_stat_process_tokenize (NULL, task);
+ }
+
+ if (!task->tokens) {
+ lua_pushnil (L);
+ }
+ else {
+ lua_createtable (L, task->tokens->len, 0);
+
+ PTR_ARRAY_FOREACH (task->tokens, i, tok) {
+ lua_push_stat_token (L, tok);
+ lua_rawseti (L, -2, i + 1);
+ }
+ }
+ }
+ else {
+ return luaL_error (L, "invalid arguments");
+ }
+
+ return 1;
+}
+
static gint
lua_task_set_metric_subject (lua_State *L)
{