Software /
code /
prosody
File
plugins/mod_storage_internal.lua @ 5135:52eafe0e9772
mod_admin_adhoc: Add commands for activating and deactivating hosts
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 19 Sep 2012 15:12:18 +0200 |
parent | 5133:1443d1c37c6c |
child | 5153:688aeac0012a |
line wrap: on
line source
local datamanager = require "core.storagemanager".olddm; local host = module.host; local driver = {}; 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 function driver:stores(username) return datamanager.stores(username, host); end function driver:purge(user) return datamanager.purge(user, host); end module:provides("storage", driver);