Commit graph

19 commits

Author SHA1 Message Date
Matthew Wild
830f3e122c mod_external_services: Also use TURN REST credential algo for 'turns' (thanks moreroid) 2025-03-01 16:19:43 +00:00
Kim Alvefur
71ad48095d plugins: Use integer config API with interval specification where sensible
Many of these fall into a few categories:
- util.cache size, must be >= 1
- byte or item counts that logically can't be negative
- port numbers that should be in 1..0xffff
2023-07-17 01:38:54 +02:00
Kim Alvefur
1987a7411f plugins: Switch to :get_option_period() for time range options
Improves readability ("1 day" vs 86400) and centralizes validation.
2023-07-16 20:49:33 +02:00
Kim Alvefur
98922d54b1 plugins: Prefix module imports with prosody namespace 2023-03-24 13:15:28 +01:00
Kim Alvefur
2b397d1452 mod_external_services: Update tools.ietf.org URL
See bd9e006a7a74
2022-08-27 17:19:13 +02:00
Kim Alvefur
e950ca77eb mod_external_services: Move error message to correct place (fix #1725)
This message was misplaced in c4599a7c534c when the @type and @host
check was introduced.
2022-03-23 15:29:01 +01:00
Kim Alvefur
7683221a64 mod_external_services: Warn about missing recommended fields
These are RECOMMENDED in XEP-0215 so most likely a mistake if they are
left out.

Of the two REQUIRED fields, 'host' falls back to module.host and 'type'
rejects the whole item.
2021-11-24 13:43:13 +01:00
Kim Alvefur
1c81e40b20 mod_external_services: Factor out public function for converting to XML
Along with the previous commit, allows building the XML thing yourself,
should you wish to send it yourself or use it in a different context than
an iq reply.

API change: The 'reply' is removed from the event.
2021-08-30 20:19:15 +02:00
Kim Alvefur
8d25086ac1 mod_external_services: Factor out public function returning current services
This way you get the _prepared_ services and don't have to do that mapping
yourself.
2021-08-30 00:11:58 +02:00
Kim Alvefur
e8b53c328e mod_external_services: Filter services by requested credentials using a Set
Please don't be accidentally quadratic.
2021-08-30 20:19:09 +02:00
Kim Alvefur
d915f98800 mod_external_services: Validate required attributes on credentials requests 2021-08-29 23:26:19 +02:00
Kim Alvefur
eded7e2738 mod_external_services: Report overall status as a module status
Because during startup, if all items are provided by a different module
(e.g. mod_turn_external) then this would log a scary warning even if
everything is fine after that other module has been loaded.

This way, any persistent problematic state is reported in the console.
Errors with individual items should still be reported by prepare().

Now, if you load mod_external_services alone without configuring any
services, no error or warning is reported in the log, but maybe that's
not so bad with it reported in the console.
2021-06-21 22:43:26 +02:00
Kim Alvefur
44675f7dbf mod_external_services: Validate items as they are added 2021-06-21 22:41:59 +02:00
Kim Alvefur
f53ff863f0 mod_external_services: Also validate services added by other modules
This ensures that problems with entries added other modules, e.g.
mod_turn_external, are reported on startup. However, this depends on
load order and whether a `module:depends()` call comes before the
`module:add_item()` call. A followup commit will do something about
that.
2021-06-21 22:38:30 +02:00
Kim Alvefur
fb6c098ed6 mod_external_services: Validate services added via events
While writing developer documentation it became obvious that i was silly
to have one item format for config and items API, and another format for
the event API.

Then there's the stanza format, but that's a common pattern.

This change reduces the possible input formats to two and allows other
modules the benefit of the processing and validation performed on items
from the config.
2020-08-17 00:24:11 +02:00
Kim Alvefur
5bc6130e57 mod_external_services: Allow specifying a credential generation callback
This is especially targeted at services added via the items API. More
involved credential generation should use the event hook.
2020-07-25 12:22:03 +02:00
Kim Alvefur
0b65dea7c0 mod_external_services: Prepare to allow more credential algorithms
Not sure what algorithms might fit here. Separation makes some sense.

This is also a preparation for having a callback. (See next commit)
2020-07-25 12:09:19 +02:00
Kim Alvefur
6dfae9bbfa mod_external_services: Support adding services via items API 2020-07-25 10:22:37 +02:00
Kim Alvefur
b289d05cfb mod_external_services: XEP-0215: External Service Discovery 2020-07-18 15:36:25 +02:00