Commit graph

2540 commits

Author SHA1 Message Date
Kim Alvefur
517f20b523 util.set: Remove duplicate __freeze metamethod
Backs out 895a82c5d8d4 beacuse __freeze already added in a96a2fbcc6c0
2023-06-01 14:33:57 +02:00
Kim Alvefur
180daf56a1 Merge 0.12->trunk 2023-05-31 14:20:45 +02:00
Kim Alvefur
6c17ba5f28 util.startup: Record current version in a metric
Useful to have this info available when juggling metrics, e.g. to
see if things changed between versions.
2023-05-31 01:14:59 +02:00
Kim Alvefur
d098a73534 util.startup: Remove componentmanager backwards compatibility
Module was removed in 0.8.0 in c52b06de9b27
2023-05-31 01:07:27 +02:00
Kim Alvefur
09a2018e40 util.dependencies: Print tables itself to reduce number of imports
Rationale: See diffstat

When this module is imported, it ends up calling stty via term_width()
in util.human.io.table(). When this happens outside of a terminal, the
following message is sent to stdout:
	stty: 'standard input': Inappropriate ioctl for device

Not importing this module avoids that.

Furthermore three is value in this module having minimal dependencies as
they might not be available when it does the checks.

Ref a1fed82c44b9
2023-05-26 21:18:27 +02:00
Kim Alvefur
8f7b31f616 util.sasl.oauthbearer: Tighter parsing of SASL message
Previously the kvsep before and after the kvpairs would have been
included in kvpairs, which is incorrect but should be harmless.
2023-05-26 17:39:53 +02:00
Kim Alvefur
693ac009db util.jsonschema: Fix UTF-8ness of 'minLength' and 'maxLength' 2023-04-23 10:42:07 +02:00
Kim Alvefur
3621b8ce91 util.jsonschema: Implement 'minContains' and 'maxContains' 2023-04-23 10:26:43 +02:00
Kim Alvefur
9c7c94ab73 util.jsonschema: Implement 'luaPattern' - Lua variant of 'pattern'
Like 'pattern' but uses Lua patterns instead of Regular Expressions,
since only a subset of regex are also valid Lua patterns.
2023-04-22 12:48:51 +02:00
Kim Alvefur
1dad83d28e util.jsonschema: Implement 'luaPatternProperties' as Lua variant of 'patternProperties'
Previous version of this patch used 'patternProperties' but that would
only work with simpler ECMA-262 regular expressions are also valid Lua
patterns.
2023-04-22 12:14:29 +02:00
Kim Alvefur
6114ccee11 Merge 0.12->trunk 2023-04-19 11:42:36 +02:00
Kim Alvefur
06450fb65b util.human.io: Fix column width miscalculation
Fixes that the more fixed width columns there are, the narrower the
resulting table becomes. A right-aligned variable-width column at the
last position should always be flush to the right side of the terminal.
2023-04-09 22:31:12 +02:00
Kim Alvefur
7100d58828 util.human.io: Fix error with ellipsis to negative length
Can happen if you resize the terminal too narrow that the space left for
variable width columns end up negative.
2023-04-09 01:34:08 +02:00
Kim Alvefur
323408cfc9 util.sasl: Fix a singulars
Thanks timeless, your mere existence inspires us to improve our
spelling, tho this was more syntax.
2023-04-07 17:18:23 +02:00
Matthew Wild
69ce40a6d2 util.argparse: Translate '-' to '_' in long option names for convenience
A review of existing code suggests nothing will break. So, here we go...
2023-04-07 13:24:29 +01:00
Matthew Wild
7dc9f9ab2a util.human.io: Add parse_duration() method to parse a duration string
Similar logic occurs throughout various modules in the codebase. We might even
want a module:get_option_duration()??
2023-04-07 14:14:53 +01:00
Kim Alvefur
21eabc7e58 util.prosodyctl.shell: Fix sending terminal width with single argument
E.g. when you do 'prosodyctl shell "s2s:show()"', this is the case that
triggers, and it was missing the @width argument, causing confusion.
2023-04-07 13:58:39 +02:00
Kim Alvefur
d458a42c61 util.human.io: Coerce $COLUMNS to number
os.getenv() returns a string but term_width() should return a number
2023-04-07 13:54:16 +02:00
Kim Alvefur
4725a96218 util.prosodyctl.shell: Coerce terminal width to string (for util.stanza)
Fixes invalid attribute value: expected string, got number
2023-04-07 13:53:40 +02:00
Matthew Wild
7153f4e40a util.human.io: table: don't read $COLUMNS directly, just use term_width()
...which now reads $COLUMNS for us and does the right thing.
2023-04-07 12:51:26 +01:00
Matthew Wild
f842e05e95 util.human.io: table: Return determined width as a second result
This allows callers to adjust other things based on the width of the rows
(such as header lines).
2023-04-07 12:47:24 +01:00
Kim Alvefur
9760019a25 util.human.io: Prefer using the $COLUMNS environment variable if set (by readline)
Feels like it should be faster.
2023-04-07 13:42:20 +02:00
Kim Alvefur
d73eaf9e5e util.prosodyctl.shell: Use new term_width() for width
Kicks in if/when readline hasn't set $COLUMNS, e.g. when using the
`prosodyctl shell command like this` form.
2023-04-07 13:38:59 +02:00
Matthew Wild
b5ff6256b6 util.human.io: table: use term_width() to discover terminal width 2023-04-07 12:35:39 +01:00
Matthew Wild
403acbb836 util.human.io: Add term_width() method to discover the terminal width
This is not standard POSIX, but apparently very widely supported. For
reference: https://www.austingroupbugs.net/view.php?id=1053
2023-04-07 12:33:17 +01:00
Kim Alvefur
08c0557093 util.human.io: Pass the whole column definition to mapper function
I forget why I wanted this, but it may allow doing things like pull
settings from the column, especially when the mapper function is reused
among many columns.
2023-04-07 13:02:20 +02:00
Kim Alvefur
41be222478 util.human.io: Allow defining per column ellipsis function
As an alternative to doing it in the mapper function. Could be useful in
cases where one may want to put the ellipsis in the middle or beginning
instead of the start.
2023-04-07 13:00:58 +02:00
Kim Alvefur
8b33e79fdb util.human.io: Pass expected width to mapper function
In order to allow it to adjust its output to available space, apply its
own ellipsis method or other compacting method.
2023-04-07 13:00:00 +02:00
Kim Alvefur
d8789a671b util.set: Change tostring format to {a, b, c}
Makes it easier to make out where the set starts and ends in cases where
it may get embedded and tostring()-ed in a log message.

{ } taken over from util.array for consistency with some other systems
syntax for Sets, e.g. Python
2023-04-06 16:30:26 +02:00
Kim Alvefur
a8a7be217a util.array: Change tostring format to [a,b,c]
Arrays in Lua do use { } but since __tostring is often user-facing it
seems sensible to use [ ] instead for consistency with many other
systems; as well as to allow the {a,b,c} formatting to be used by
util.set without being confused with util.array.
2023-04-06 16:27:37 +02:00
Matthew Wild
7e50781f51 util.human.io: Fix pattern to support fractional proportions 2023-04-06 15:03:45 +01:00
Matthew Wild
bc7277bd01 util.human.io: Support for dynamic "proportional" columns
Instead of a percentage, this allows you to specify e.g. `width="[N]p"`, where
a width="2p" will be twice the width of a width="1p" column.

Compatibility with the old %-based widths is preserved, and percentages adding
up to more than 100 are handled more gracefully.
2023-04-06 14:51:52 +01:00
Matthew Wild
b06dd038cd util.fsm: New utility lib for finite state machines 2022-03-17 17:45:27 +00:00
Matthew Wild
5ce1fe2603 util.startup: Add prosody.started promise to easily execute code after startup
To avoid a race where server-started fires before the promise function body is
run (on next tick), I moved server-started to fire on the next tick, which
seems sensible anyway.

Errors are logged, I'm not sure if we ought to be doing something more here.
I'm sure we'll find out.
2023-04-01 11:56:38 +01:00
Matthew Wild
75bf9e6eff util.session: Add 'since' property with timestamp of session creation 2023-03-29 13:01:28 +01:00
Kim Alvefur
8c9ffa25eb util.jsonschema: Implement 'dependentSchemas'
If this object key exists then this schema must validate against the
current object.  Seems useful.
2023-03-26 15:20:07 +02:00
Kim Alvefur
4bc62438db util.jsonschema: Implement 'dependentRequired'
If this field exists, then these fields must also exist.
2023-03-26 15:19:14 +02:00
Kim Alvefur
5427c2472d util.roles: Implement a serialization preparation metamethod
Should be able to roundtrip trough serialization. Also nice for debug
and logging purposes where you might want more details than what the
__tostring method provides.
2023-03-26 13:13:31 +02:00
Kim Alvefur
196117c3f2 util.set: Add a serialization preparation metamethod
Enables util.serialization to turn Sets into a representation that can be
deserialized with an environment trick, i.e. `set{"a","b"}`. Also useful
for debug purposes.
2023-03-26 13:07:20 +02:00
Kim Alvefur
9bbfb849b1 util.format: Restore "freeze" serialization behavior in logging
This was implied with the "debug" preset and does nice things like turn
util.set objects into "set{a,b,c}" instead of the quite verbose thing
you get otherwise.
2023-03-26 00:33:20 +01:00
Kim Alvefur
328447c2b1 util.format: Tweak serialization of %q formatted entries
Improves serialization of function references especially, the built-in
default handling of that in util.serialization is not the most
informative.  Now, along with the function metatable from util.startup,
the actual function can be found by filename and line number.
2023-03-26 00:18:05 +01:00
Kim Alvefur
026b2d6e88 util.startup: Tweak function string representation
Mostly in order to avoid triggering the XML syntax highlighting in the
console logger.
2023-03-26 00:11:42 +01:00
Kim Alvefur
43531740f9 util: Prefix module imports with prosody namespace 2023-03-17 16:23:16 +01:00
Matthew Wild
2c87a0108b util.sasl.oauthbearer: Fix gs2-header parsing 2023-03-21 14:01:03 +00:00
Kim Alvefur
c11d121c06 util.sasl.{scram,plain}: Pass authzid to SASL profile callback
For potential future use.

Used for logging into a different account than the one used for
authentication.
2023-03-16 13:57:30 +01:00
Kim Alvefur
b156f013c4 util.sasl.scram: Fix off-by-one indentation 2023-03-16 13:52:22 +01:00
Kim Alvefur
2331fc8b65 util.sasl.oauthbearer: Adjust parsing of GS2 to allow lack of authzid
Partly copied from util.sasl.scram and then reduced a bit.
2023-03-16 13:45:49 +01:00
Kim Alvefur
566a991f84 util.sasl.oauthbearer: Return username from callback instead using authzid (BC)
RFC 6120 states that
>  If the initiating entity does not wish to act on behalf of another
>  entity, it MUST NOT provide an authorization identity.

Thus it seems weird to require it here.  We can instead expect an
username from the token data passed back from the profile.

This follows the practice of util.sasl.external where the profile
callback returns the selected username, making the authentication module
responsible for extracting the username from the token.
2023-03-16 12:18:23 +01:00
Matthew Wild
944c25f352 util.sasl.oauthbearer: Fix syntax error in b796e08e6376 2023-03-15 12:02:23 +00:00
Matthew Wild
9dedc78f3c util.sasl.oauthbearer: Attach token_info to sasl handler
This allows token-aware things to access extra information about the
authentication, such as when the token is due to expire and the attached
custom 'data'.
2023-03-15 09:41:38 +00:00