Merge 0.9->trunk
[prosody.git] / plugins / mod_storage_sql2.lua
index 0b57d48b61039f2715604bda81a1dbb4dc46ff76..7560d1f1963e8d994e03ce38b2334cb30514caec 100644 (file)
@@ -1,7 +1,15 @@
 
 local json = require "util.json";
+local xml_parse = require "util.xml".parse;
+local uuid = require "util.uuid";
 local resolve_relative_path = require "core.configmanager".resolve_relative_path;
 
+local stanza_mt = require"util.stanza".stanza_mt;
+local getmetatable = getmetatable;
+local t_concat = table.concat;
+local function is_stanza(x) return getmetatable(x) == stanza_mt; end
+
+local noop = function() end
 local unpack = unpack
 local function iterator(result)
        return function(result)
@@ -18,7 +26,8 @@ local params = module:get_option("sql");
 local engine; -- TODO create engine
 
 local function create_table()
-       --[[local Table,Column,Index = mod_sql.Table,mod_sql.Column,mod_sql.Index;
+       local Table,Column,Index = mod_sql.Table,mod_sql.Column,mod_sql.Index;
+       --[[
        local ProsodyTable = Table {
                name="prosody";
                Column { name="host", type="TEXT", nullable=false };
@@ -73,6 +82,22 @@ local function create_table()
                        end
                end
        end
+       local ProsodyArchiveTable = Table {
+               name="prosodyarchive";
+               Column { name="sort_id", type="INTEGER PRIMARY KEY AUTOINCREMENT", nullable=false };
+               Column { name="host", type="TEXT", nullable=false };
+               Column { name="user", type="TEXT", nullable=false };
+               Column { name="store", type="TEXT", nullable=false };
+               Column { name="key", type="TEXT", nullable=false }; -- item id
+               Column { name="when", type="INTEGER", nullable=false }; -- timestamp
+               Column { name="with", type="TEXT", nullable=false }; -- related id
+               Column { name="type", type="TEXT", nullable=false };
+               Column { name="value", type=params.driver == "MySQL" and "MEDIUMTEXT" or "TEXT", nullable=false };
+               Index { name="prosodyarchive_index", "host", "user", "store", "key" };
+       };
+       engine:transaction(function()
+               ProsodyArchiveTable:create(engine);
+       end);
 end
 local function set_encoding()
        if params.driver ~= "SQLite3" then
@@ -134,6 +159,8 @@ local function serialize(value)
        local t = type(value);
        if t == "string" or t == "boolean" or t == "number" then
                return t, tostring(value);
+       elseif is_stanza(value) then
+               return "xml", tostring(value);
        elseif t == "table" then
                local value,err = json.encode(value);
                if value then return "json", value; end
@@ -149,6 +176,8 @@ local function deserialize(t, value)
        elseif t == "number" then return tonumber(value);
        elseif t == "json" then
                return json.decode(value);
+       elseif t == "xml" then
+               return xml_parse(value);
        end
 end
 
@@ -217,11 +246,102 @@ function keyval_store:users()
        return iterator(result);
 end
 
+local archive_store = {}
+archive_store.__index = archive_store
+function archive_store:append(username, when, with, value)
+       local user,store = username,self.store;
+       return engine:transaction(function()
+               local key = uuid.generate();
+               local t, value = serialize(value);
+               engine:insert("INSERT INTO `prosodyarchive` (`host`, `user`, `store`, `when`, `with`, `key`, `type`, `value`) VALUES (?,?,?,?,?,?,?,?)", host, user or "", store, when, with, key, t, value);
+               return key;
+       end);
+end
+function archive_store:find(username, query)
+       query = query or {};
+       local user,store = username,self.store;
+       local total;
+       local ok, result = engine:transaction(function()
+               local sql_query = "SELECT `key`, `type`, `value`, `when` FROM `prosodyarchive` WHERE %s ORDER BY `sort_id` %s%s;";
+               local args = { host, user or "", store, };
+               local where = { "`host` = ?", "`user` = ?", "`store` = ?", };
+
+               -- Time range, inclusive
+               if query.start then
+                       args[#args+1] = query.start
+                       where[#where+1] = "`when` >= ?"
+               end
+               if query["end"] then
+                       args[#args+1] = query["end"];
+                       if query.start then
+                               where[#where] = "`when` BETWEEN ? AND ?" -- is this inclusive?
+                       else
+                               where[#where+1] = "`when` >= ?"
+                       end
+               end
+
+               -- Related name
+               if query.with then
+                       where[#where+1] = "`with` = ?";
+                       args[#args+1] = query.with
+               end
+
+               -- Unique id
+               if query.key then
+                       where[#where+1] = "`key` = ?";
+                       args[#args+1] = query.key
+               end
+
+               -- Total matching
+               if query.total then
+                       local stats = engine:select(sql_query:gsub("^(SELECT).-(FROM)", "%1 COUNT(*) %2"):format(t_concat(where, " AND "), "DESC", ""), unpack(args));
+                       if stats then
+                               local _total = stats()
+                               total = _total and _total[1];
+                       end
+                       if query.limit == 0 then -- Skip the real query
+                               return noop, total;
+                       end
+               end
+
+               -- Before or after specific item, exclusive
+               if query.after then
+                       where[#where+1] = "`sort_id` > (SELECT `sort_id` FROM `prosodyarchive` WHERE `key` = ? LIMIT 1)"
+                       args[#args+1] = query.after
+               end
+               if query.before then
+                       where[#where+1] = "`sort_id` < (SELECT `sort_id` FROM `prosodyarchive` WHERE `key` = ? LIMIT 1)"
+                       args[#args+1] = query.before
+               end
+
+               if query.limit then
+                       args[#args+1] = query.limit;
+               end
+
+               sql_query = sql_query:format(t_concat(where, " AND "), query.reverse and "DESC" or "ASC", query.limit and " LIMIT ?" or "");
+               module:log("debug", sql_query);
+               return engine:select(sql_query, unpack(args));
+       end);
+       if not ok then return ok, result end
+       return function()
+               local row = result();
+               if row ~= nil then
+                       return row[1], deserialize(row[2], row[3]), row[4];
+               end
+       end, total;
+end
+
+local stores = {
+       keyval = keyval_store;
+       archive = archive_store;
+};
+
 local driver = {};
 
 function driver:open(store, typ)
-       if not typ then -- default key-value store
-               return setmetatable({ store = store }, keyval_store);
+       local store_mt = stores[typ or "keyval"];
+       if store_mt then
+               return setmetatable({ store = store }, store_mt);
        end
        return nil, "unsupported-store";
 end