diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-02-23 12:38:43 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-02-23 12:38:43 +0000 |
commit | 8d04879adfbe5d4039a14c5bd10e95ee4b051566 (patch) | |
tree | 6738a26befa81cb3edabe4f5ce745e9e240e2a4f /plugins/mod_authz_internal.lua | |
parent | 3947003b7e86a084cc725b5c68d7b4e8724e3312 (diff) | |
download | prosody-8d04879adfbe5d4039a14c5bd10e95ee4b051566.tar.gz prosody-8d04879adfbe5d4039a14c5bd10e95ee4b051566.zip |
usermanager, mod_authz_*: Merge mod_authz_config and mod_authz_internal into the latter
Diffstat (limited to 'plugins/mod_authz_internal.lua')
-rw-r--r-- | plugins/mod_authz_internal.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/mod_authz_internal.lua b/plugins/mod_authz_internal.lua new file mode 100644 index 00000000..0f6e4873 --- /dev/null +++ b/plugins/mod_authz_internal.lua @@ -0,0 +1,22 @@ +local normalize = require "util.jid".prep; +local admin_jids = module:get_option_inherited_set("admins", {}) / normalize; +local host = module.host; +local role_store = module:open_store("roles"); + +local admin_role = { ["prosody:admin"] = true }; + +function get_user_roles(user) + if admin_jids:contains(user.."@"..host) then + return admin_role; + end + return role_store:get(user); +end + +function get_jid_roles(jid) + if admin_jids:contains(jid) then + return admin_role; + end + return nil; +end + + |