Commit graph

200 commits

Author SHA1 Message Date
Kim Alvefur
f73e31b9c2 modulemanager: Always load a platform-specific module, add stub modules for Windows and unknown platforms 2014-01-26 21:16:24 +01:00
Florian Zeitz
1d833bb807 Remove all trailing whitespace 2013-08-09 17:48:21 +02:00
Marco Cirillo
4453095de2 modulemanager: add missing ipairs import. 2013-04-01 23:41:57 +00:00
Marco Cirillo
a299b9096d modulemanager: add function to retrieve module items from a specific host entity. 2013-04-01 22:34:44 +00: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
Matthew Wild
565ea2bbe1 modulemanager: Set module.reloading when a module is reloading, and when loading make the saved state available in module.saved_state (if any) 2012-11-22 20:59:20 +00:00
Waqas Hussain
48a297e80c hostmanager, modulemanager: Ensure hosts[*].modules always exists. 2012-09-13 00:32:12 +05:00
Florian Zeitz
d49b9bc2ab Eliminate direct setfenv usage 2012-06-08 05:04:38 +02:00
Matthew Wild
28e56af503 modulemanager, moduleapi: Turn module.event_handlers into a multitable and track object->event->handler associations correctly (thanks Zash) 2012-05-19 15:39:16 +01:00
Matthew Wild
0fe909f995 moduleapi, modulemanager: Re-structure module.event_handlers so that the same handler can harmlessly handle multiple events (thanks Zash) 2012-05-18 23:53:02 +01:00
Matthew Wild
f73db37422 modulemanager: Components should inherit mod_s2s from global modules_enabled too 2012-05-16 20:30:53 +01:00
Matthew Wild
35b049d487 modulemanager: Set module.reloading = true when firing module-reloaded event 2012-05-11 18:54:17 +01:00
Matthew Wild
dacec4fc97 modulemanager: Pass the module's final host (e.g. '*') to the module-loaded event 2012-04-30 00:52:43 +01:00
Matthew Wild
a76d2c46fb modulemanager: Hide deprecation warning for modules loaded on '*' directly (e.g. prosodyctl mod_<command>) (thanks Zash) 2012-04-29 19:36:11 +01:00
Matthew Wild
e8d147c96a modulemanager: Fixes to handle circular dependencies in module:depends() 2012-04-28 15:47:43 +01:00
Matthew Wild
45fb895f19 modulemanager: Remove unused function imports 2012-04-28 02:22:42 +01:00
Matthew Wild
0ecb3e3e04 modulemanager: Remove unused NULL declaration 2012-04-28 02:18:17 +01:00
Matthew Wild
05af8c8bfa modulemanager: Clear modulemap when a host is deactivated (thanks xnyhps) 2012-04-27 22:36:35 +01:00
Matthew Wild
0181e189a3 modulemanager: Set module.environment before calling add_host, otherwise the module will get the parent's environment (thanks xnyhps and Maranda) 2012-04-27 21:37:45 +01:00
Matthew Wild
91d1035d7d modulemanager: Set module.loaded = false on unload 2012-04-23 15:38:36 +01:00
Matthew Wild
c40ee81742 modulemanager: Report errors that happen when loading a shared module onto its original host 2012-04-23 14:11:10 +01:00
Matthew Wild
6202ef36ec modulemanager: For children of shared modules, set module.environment to the empty environment for that module (useful to expose data or APIs at host.modules[module]) 2012-04-21 22:53:22 +01:00
Matthew Wild
1894252bd4 modulemanager: When a shared module becomes global, ensure it still gets loaded onto the original target host 2012-04-21 20:37:06 +01:00
Matthew Wild
f51d5c0bd0 modulemanager: Support for shared modules - function module.add_host(host_module) in a global module 2012-04-21 20:09:03 +01:00
Matthew Wild
3f13083483 modulemanager: Make module_has_method and module_call_method use rawget() 2012-04-21 20:04:07 +01:00
Matthew Wild
bf4925029f modulemanager: Use modulemap rather than hosts[host] (fix for when host == "*") 2012-04-21 20:02:45 +01:00
Matthew Wild
e0805574e1 modulemanager: Use api_instance rather than pluginenv.module (same thing) 2012-04-21 20:01:40 +01:00
Matthew Wild
9792c6566b modulemanager: Allow loading a module onto "*" (part-fixes #228) 2012-04-21 20:00:30 +01:00
Matthew Wild
ce27bd5fe5 modulemanager: Some refactoring. Deprecate module.host = "*", modules should call module:set_global() (which has been around since forever) 2012-03-14 21:37:00 +00:00
Matthew Wild
121a7f3acd modulemanager: Use appropriate events object for global modules when firing item-removed on unload 2012-03-14 17:03:48 +00:00
Florian Zeitz
4c9c8363bc modulemanager: include mod_c2s and mod_s2s into autoloaded modules. 2012-02-24 15:14:07 +00:00
Matthew Wild
11bf5edc1d modulemanager: load(): Return and use the correct module object 2012-01-22 19:27:06 +00:00
Matthew Wild
c240995e51 modulemanager: Cleanup some unused variables, imports, whitespace and add a comment. 2012-01-22 18:49:49 +00:00
Matthew Wild
15a0736720 modulemanager, moduleapi: Replace hooks multitable with an event_handlers map stored in individual modules. Also adds module:hook_object_event() to hook events on any util.events compatible object. 2012-01-22 18:49:11 +00:00
Matthew Wild
6924d7bfb5 modulemanager: Drop unnecessary prosody_events local 2012-01-22 18:47:33 +00:00
Matthew Wild
184f681d3f modulemanager: Some reorganisation. Only external change is (should be) that module-unloaded and module-loaded are no longer fired when reloading a module, the new event module-reloaded is fired instead. 2012-01-22 18:46:17 +00:00
Matthew Wild
36542853ef modulemanager: Move in-module API functions to core.moduleapi (half the file size, yay) 2012-01-22 18:41:55 +00:00
Matthew Wild
568f00002d modulemanager: Remove 'config' from module environments (no modules use it that I'm aware of) 2011-12-13 13:34:21 +00:00
Waqas Hussain
c372e5d38c modulemanager: Fix undefined global access in handling of module.save error handling. 2011-09-21 03:25:34 +05:00
Waqas Hussain
108aa8061b modulemanager: Fixed undefined global access in broadcast of item-remove events on module unload. 2011-09-17 20:28:46 +05:00
Matthew Wild
be9a85a08a modulemanager: Add module:handle_items() to allow a module to more easily handle a list of items on a host 2011-08-29 13:09:29 -04:00
Matthew Wild
5f57f8ff0b modulemanager: Add module:hook_global(name, handler, priority) to hook global (server-wide) events 2011-08-14 13:56:13 -04:00
Kim Alvefur
f0ec18a8b7 core.modulemanager, mod_disco: Add support for XEP-0128: Service Discovery Extensions 2011-08-08 18:23:53 +02:00
Waqas Hussain
fca75eb761 modulemanager: Added module.path to the plugin API to let plugins determine their load path. 2011-02-20 20:06:38 +05:00
Paul Aurich
78a80f36b5 modulemanager: Fix disabling a module on a single host 2011-02-01 17:56:16 -08:00
Waqas Hussain
1e5dc701c8 modulemanager: Removed an unused variable. 2011-01-05 06:16:27 +05:00
Waqas Hussain
c23fedb91f modulemanager: Auto-load mod_offline. 2010-12-27 06:10:34 +05:00
Matthew Wild
f0f0886c0d modulemanager, mod_console: Rename mod_console -> mod_admin_telnet - add compatibility code to modulemanager for existing configs 2010-12-17 12:44:24 +00:00
Waqas Hussain
ebca6cbbd0 modulemanager: Allow components to inherit mod_iq. This allows modules loaded on components to hook IQ stanza sub-events ("iq-set/bare/xmlns:tag", etc). 2010-12-02 16:32:42 +05:00
Matthew Wild
a3aa9ad46c Backed out changeset bfc47564aaef (No need for _M with module.environment) 2010-11-13 04:12:40 +00:00