Commit graph

94 commits

Author SHA1 Message Date
Matthew Wild
067a0ad4d8 usermanager, mod_saslauth: Default to internal_hashed if no auth module specified
The default config was updated in this way long ago, but if no option was
present in the config, Prosody would load internal_plain.

This change can result in changes (for the better) for people using very old
configuration files lacking an 'authentication' setting.
2022-02-10 19:54:14 +00:00
Kim Alvefur
a3c82c5d02 core.usermanager: Implement noop role writes on global authz provider
So that the methods are there and don't cause an error.
2021-12-06 22:38:27 +01:00
Matthew Wild
3315a2f616 usermanager: Fire user-roles-changed event when updating roles of a local user 2021-11-12 13:25:09 +00:00
Matthew Wild
58e6c71f12 usermanager, mod_authz_internal: Add methods to fetch users/JIDs of given role 2021-08-26 16:35:43 +01:00
Jonas Schäfer
0ca317cd0b usermanager: expose set_roles through API 2021-03-22 21:24:57 +01:00
Matthew Wild
8f5d92c15e usermanager: Fix traceback when checking admin status of host-only JIDs (fixes #1508) 2020-03-19 14:12:40 +00:00
Matthew Wild
8d04879adf usermanager, mod_authz_*: Merge mod_authz_config and mod_authz_internal into the latter 2020-02-23 12:38:43 +00:00
Matthew Wild
3fb671e0a3 usermanager: Add get_roles() function 2020-02-05 17:41:14 +00:00
Matthew Wild
34abcc8bd5 mod_authz_internal, usermanager: Rename to mod_authz_config 2020-01-27 22:28:52 +00:00
Matthew Wild
b177628d3c usermanager: Load authz providers on components also 2020-01-27 22:09:19 +00:00
Matthew Wild
1f437623ad usermanager, mod_authz_internal: Move admin-checking functionality into a module. Fixes #517 (ish).
Note: Removes the ability for mod_auth_* providers to determine user admin status. Such
modules will need to have their is_admin methods ported to be a mod_authz_* provider.
2020-01-27 21:54:59 +00:00
Kim Alvefur
77fbea8cdc core: Use prosody.hosts instead of _G.hosts for consistency 2018-03-29 16:58:06 +02:00
Kim Alvefur
43b814a83b vairious: Add annotation when an empty environment is set [luacheck] 2018-02-28 20:06:26 +01:00
Kim Alvefur
73b75571e6 core.usermanager, various modules: Disconnect other resources on password change (thanks waqas) (fixes #512) 2017-07-28 13:15:29 +02:00
Kim Alvefur
7d84f2f261 usermanager: Shortcircuit user existence check if they have existing sessions 2016-02-21 19:30:45 +01:00
Kim Alvefur
1ef7f18752 core.usermanager: Return as soon as possible once admin status is known 2015-12-06 23:47:47 +01:00
Kim Alvefur
27265c20e2 core.*: Remove use of module() function 2015-02-21 10:42:19 +01:00
Matthew Wild
7b3df2bae6 portmanager, s2smanager, sessionmanager, stanza_router, storagemanager, usermanager, util.xml: Add luacheck annotations 2015-05-06 19:20:07 +01:00
Kim Alvefur
9bb576b332 usermanager: Capitalize log message 2015-04-25 14:22:59 +02:00
Matthew Wild
de0f19e1af usermanager: Remove unused import of pairs() 2013-08-13 19:38:05 +01:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Kim Alvefur
1acfdf5914 core.*: Complete removal of all traces of the "core" section and section-related code. 2013-03-23 02:33:15 +01:00
Kim Alvefur
ab915e9dd4 usermanager: Add support for iterating over accounts 2012-09-21 17:26:25 +02:00
Kim Alvefur
136674425b storagemanager: Add purge() for purging user data from all backends in use 2012-09-16 02:18:07 +02:00
Kim Alvefur
9059e2a4fe core.usermanager: Don't close sessions ourselves when deleting users. Instead, fire an event that modules can hook. 2012-08-25 01:20:13 +02:00
Kim Alvefur
a5ad1b5b17 usermanager: Add method for deleting a user 2012-07-28 21:55:05 +02:00
Matthew Wild
82ad5962d9 usermanager: Pass session on to auth provider (missing half of commit 0545a574667b) (thanks Zash) 2012-07-07 02:32:39 +01:00
Matthew Wild
37365a3a78 usermanager: Add log error for use of COMPAT config option 'anonymous_login'. To be removed in next version. 2012-04-28 14:35:52 +01:00
Waqas Hussain
5f61bd217c usermanager: Prep admin JIDs (fixes issue#276). 2011-12-14 07:19:58 +05:00
Matthew Wild
ca74173a82 usermanager: Check host exists before trying to look up admins for it 2011-04-05 13:26:19 +01:00
Matthew Wild
c8f795214c usermanager: Add delete_user method 2011-01-04 17:11:51 +00:00
Matthew Wild
f31871eb2e usermanager: Have methods not implemented in the active provider fall back to the null provider (later we can add support for chains of providers) 2011-01-04 17:11:37 +00:00
Matthew Wild
73752efbfd usermanager: Change dummy provider method to return an error string also (method not implemented) 2011-01-04 17:10:56 +00:00
Waqas Hussain
318b00eeb1 usermanager: Assume authentication="anonymous" when anonymous_login=true. 2010-12-27 20:46:01 +05:00
Waqas Hussain
3ad9aafc34 usermanager: Fixed a possible traceback when is_admin() was used on a component. 2010-12-17 22:54:34 +05:00
Waqas Hussain
514ba129d7 usermanager: Removed redundant import of util.datamanager and util.hashes. 2010-12-10 00:07:28 +05:00
Waqas Hussain
20a0a7eb7c usermanager: Don't load auth modules for components. 2010-11-11 08:36:31 +05:00
Waqas Hussain
0bcc5e0ac7 modulemanager, usermanager: Removed hooks for the 'component-activated' event (components now fire 'host-activated'). 2010-11-10 22:27:09 +05:00
Waqas Hussain
b7e51a203d Monster whitespace commit (beware the whitespace monster). 2010-10-16 23:00:42 +05:00
Waqas Hussain
90ed40bac6 usermanager: Get rid unused Cyrus SASL related code. 2010-08-23 16:33:49 +05:00
Matthew Wild
42d53ec2cf usermanager: Fix two nil global accesses 2010-07-31 11:30:16 +01:00
Matthew Wild
a6e1eb7590 usermanager, mod_auth_internal_hashed, mod_legacyauth: New order of parameters for usermanager.test_password - username, host, password 2010-07-21 21:01:36 +01:00
Waqas Hussain
1e37132a58 usermanager: Return a non-nil SASL handler from the null auth provider (fixes a traceback). 2010-07-14 19:49:43 +05:00
Matthew Wild
43f0ee7e21 mod_auth_internal, usermanager: Rename to mod_auth_internal_plain, and update usermanager to still use it as the default 2010-07-08 21:08:46 +01:00
Matthew Wild
aa68dc887d usermanager: Expose host_handler() as initialize_host() 2010-06-29 19:11:18 +01:00
Matthew Wild
434a0e7b67 usermanager: is_admin: Resume the old role of determining precisely whether a user is an admin for a given host (or a global admin) - auth providers checked for JIDs not listed in the config if they support it 2010-06-22 19:00:01 +01:00
Matthew Wild
10abcc0f7b usermanager: Handle checking for global admins on behalf of providers 2010-06-09 21:24:20 +01:00
Waqas Hussain
5e11733f0c usermanager: Changed get_supported_methods to get_sasl_handler. 2010-06-07 02:32:13 +05:00
Matthew Wild
3846f08f09 Rename mod_defaultauth -> mod_auth_internal, mod_hashpassauth -> mod_auth_internal_hashed, and the providers to internal and internal_hashed respectively. Also no longer auto-load defaultauth, but instead auto-load the plugin selected for each host at startup based on the provider name. 2010-06-04 14:33:36 +01:00
Matthew Wild
f2d8d208cf usermanager: Rename the fallback provider from 'dummyauth' to 'null' 2010-06-04 13:54:15 +01:00