diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-01-07 04:42:01 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-01-07 04:42:01 +0000 |
commit | 0318c8644d6c70deeb661c87c4cd8ed918497cdd (patch) | |
tree | 19166e73e0df8ab5bf5e87d860ee7602b9a9297f /plugins/mod_storage_internal.lua | |
parent | c32601b14fb35115a64d977fcf8087bff572635e (diff) | |
parent | 74408ff9f5ed48bfd4125729e2bdada3f19356be (diff) | |
download | prosody-0318c8644d6c70deeb661c87c4cd8ed918497cdd.tar.gz prosody-0318c8644d6c70deeb661c87c4cd8ed918497cdd.zip |
Merge 0.8->trunk
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r-- | plugins/mod_storage_internal.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua new file mode 100644 index 00000000..821d1e1a --- /dev/null +++ b/plugins/mod_storage_internal.lua @@ -0,0 +1,19 @@ +local datamanager = require "core.storagemanager".olddm; + +local host = module.host; + +local driver = { name = "internal" }; +local driver_mt = { __index = driver }; + +function driver:open(store) + return setmetatable({ store = store }, driver_mt); +end +function driver:get(user) + return datamanager.load(user, host, self.store); +end + +function driver:set(user, data) + return datamanager.store(user, host, self.store, data); +end + +module:add_item("data-driver", driver); |