Commit graph

10887 commits

Author SHA1 Message Date
Kim Alvefur
994f59501b util.human.units: A library for formatting numbers with SI units 2019-01-04 08:46:26 +01:00
Kim Alvefur
1f80e42aa5 core.moduleapi: Allow passing a config table trough :measure 2019-01-04 07:00:45 +01:00
Kim Alvefur
401c48015c core.statsmanager: Allow passing a config table trough measure 2019-01-04 07:00:44 +01:00
Kim Alvefur
f10b1ff165 util.statistics: Unify API of methods to include a config table
The primary goal here is to allow specifying an unit that each
statistic is measured in.
2019-01-04 06:56:45 +01:00
Kim Alvefur
1deae0e925 GNUmakefile: Install the new util/prosodyctl/* too (thanks pascal.pascher) 2020-06-03 19:10:42 +02:00
Kim Alvefur
5fc5fe64ee GNUmakefile: Install util.human.* 2020-06-03 19:01:46 +02:00
Kim Alvefur
0a200a4ce3 makefile: Remove installation of mod_s2s dir
Already removed from the GNUmakeflie.
2020-06-03 19:00:02 +02:00
Kim Alvefur
6b98a3f551 mod_s2s: Move out of empty directory
mod_s2s.lua had been all alone in there since the removal of
s2sout.lib.lua in 756b8821007a
2020-06-02 19:43:50 +02:00
Kim Alvefur
753836c876 mod_admin_shell: Fix error due to float passed to os.date in Lua 5.3
Thanks Martin
2020-06-02 16:40:23 +02:00
Kim Alvefur
6264bd48c1 util.prosodyctl.shell: Save readline history 2020-06-02 09:35:07 +02:00
Matthew Wild
9aebf2d7db util.adminstream: Import net.server [luacheck] 2020-06-02 08:41:05 +01:00
Matthew Wild
78a8bfc31d util.prosodyctl.shell, util.adminstream: Move connection logic into adminstream for easier reuse 2020-06-02 08:28:39 +01:00
Kim Alvefur
425c9cb979 util.prosodyctl.shell: Really fix --socket option
Forgot it stops parsing --foo options at the first argument, so
subsequent commands need to parse their own options like this.
2020-06-02 09:19:07 +02:00
Kim Alvefur
0fea1b599e util.prosodyctl.shell: Correct check for --socket 2020-06-02 09:07:29 +02:00
Matthew Wild
01f780eef1 util.human.io: Fix variable name [luacheck] 2020-06-02 08:02:03 +01:00
Matthew Wild
46022b0988 prosodyctl+util.prosodyctl.*: Start breaking up the ever-growing prosodyctl 2020-06-02 08:01:21 +01:00
Matthew Wild
e2b8325088 util.human.io: New central place for UI helpers 2020-06-02 08:00:37 +01:00
Kim Alvefur
f4436b0ad8 util.prosodyctl.shell: Allow passing path to socket on command line
E.g. `prosodyctl shell --socket /path/to/prosody.scok`
2020-06-01 23:57:50 +02:00
Kim Alvefur
05f5f794bf util.prosodyctl.shell: Use same config option as module for socket path
So now if you set it to a custom value, both the client and the server
should use it.
2020-06-01 23:53:03 +02:00
Kim Alvefur
aa24574b89 util.prosodyctl.shell: Join socket path with current data directory
Don't hardcode socket path as it happens to be in a source checkout.

Hold on, it should use the same config option as the module!
2020-06-01 23:26:30 +02:00
Kim Alvefur
aa8c162f11 mod_admin_socket: Use module API meant for file paths
Makes it so that a relative path in the config becomes relative to the
data directory.
2020-06-01 23:17:20 +02:00
Kim Alvefur
a78297bb6c mod_vcard_legacy: Fix publishing vcard without avatar 2020-06-01 17:55:01 +02:00
Kim Alvefur
cd40d2a630 mod_vcard_legacy: Remove semi-broken support for multiple avatars
Nobody does this. If someone wants to they should go use the PEP method
directly instead.

Additionally, this got in the way of doing multiple avatars The PEP Way,
since it treated each 'data' as a distinct avatar with an optional
corresponding 'metadata', which is not how it works.
2020-06-01 17:37:54 +02:00
Matthew Wild
81457f2fff mod_admin_shell: Remove old variable declaration [luacheck] 2020-06-01 16:38:16 +01:00
Kim Alvefur
5cdbe0edde mod_admin_socket: Use wrapserver if available
Why have a custom accept function when this is net.server's entire
thing?
2020-06-01 17:27:50 +02:00
Kim Alvefur
9708aab9b3 net.server_epoll: Add way to start accepting clients on an arbitrary server socket
This adds an escape hatch where things like UNIX sockets can be added.
2020-06-01 17:19:08 +02:00
Matthew Wild
f554caa3ac mod_admin_shell: Remove extra newline at end of help text 2020-06-01 16:14:44 +01:00
Matthew Wild
e703759258 mod_admin_shell, mod_admin_telnet, util.prosodyctl.shell: Separate output from final result
Fixes the client pausing for input after output from commands.
2020-06-01 16:14:06 +01:00
Matthew Wild
a355440c01 prosodyctl, util.prosodyctl.shell: prosodyctl shell - a client to access the prosodyctl admin shell 2020-06-01 15:44:44 +01:00
Matthew Wild
b0463f0290 mod_admin_telnet: Become a front for mod_admin_shell 2020-06-01 15:43:47 +01:00
Matthew Wild
9daa5c028c mod_admin_shell: New module that implements the console interface over an admin socket 2020-06-01 15:43:00 +01:00
Matthew Wild
4c6992a00e mod_admin_socket, util.adminstream: New module to manage a local unix domain socket for admin functionality 2020-06-01 15:42:19 +01:00
Matthew Wild
6ccd66e347 net.server_epoll: Handle missing ports from getsock/peername (as in the case of unix sockets) 2020-06-01 14:26:11 +01:00
Matthew Wild
610be29e2a net.server: Switch to epoll backend by default
(if util.poll is found)
2020-06-01 13:43:35 +01:00
Matthew Wild
ce129b96c7 net.server_select: Pass conn/handler to readbuffer/sendbuffer
The internal implementations don't use it, but this causes onreadable
and onwritable of watchfd to receive the conn as they do in other
backends.
2020-06-01 13:41:41 +01:00
Matthew Wild
30d3969c22 net.server_select: Ensure onconnect is always called before onincoming
This changes the code to call onconnect when the first data is sucessfully
read or written, instead of simply when the socket first becomes writable.

A writable socket can mean a connection error, and if the client already
sent some data it may get passed to onincoming before processing writable
sockets. This fixes the issue.
2020-06-01 13:38:47 +01:00
Kim Alvefur
5abc2e6a5c mod_c2s,mod_s2s: Make stanza size limits configurable 2020-05-31 22:39:34 +02:00
Kim Alvefur
d22e85debc mod_c2s,mod_s2s: Use a distinct stream error for hitting stanza size limit
Since this is not a real parse error, it should not be reported as such.
2020-05-31 22:25:48 +02:00
Kim Alvefur
836be9b60d scansion: Add test for mod_server_contact_info / XEP-0157 2020-05-27 19:44:12 +02:00
Kim Alvefur
9783208ba5 net.server_epoll: Fix typo in internal method name 2020-05-22 15:36:03 +02:00
Kim Alvefur
a166ab719c net.server_epoll: Log some noise before TLS handshake step
This would help pinpoint if a crash happens during the handshake, which
has occurred a few times, e.g. like https://github.com/brunoos/luasec/issues/75
2020-05-22 15:20:19 +02:00
Kim Alvefur
29f51d7e6d mod_admin_telnet: Update existing sessions on reload
This removes the need to disconnect and reconnect to the telnet console
for changes to take effect.
2020-05-16 20:46:12 +02:00
Kim Alvefur
e32f71d3d4 Merge 0.11->trunk 2020-05-15 21:26:54 +02:00
Kim Alvefur
faa381e3ed mod_storage_internal: Fix error in time limited queries on items without 'when' field, fixes #1557 2020-05-15 21:22:35 +02:00
Kim Alvefur
d916ce38f6 mod_storage_internal: Fix keeping old timestamp in archive map API
This led to a missing 'when' field on changed items, which would cause a
traceack.
2020-05-15 20:55:22 +02:00
Kim Alvefur
d689f6c9a1 mod_http: Tell luacheck to ignore the long comment lines 2020-05-14 16:55:01 +02:00
Jonas Schäfer
d6de70d19f mod_http: Add documentation to the non-obvious logic of get_ip_from_request
Because docs are good.
2020-05-14 14:59:59 +02:00
Kim Alvefur
84f9f4973c mod_storage_memory: Add map store methods to archive store 2020-05-11 23:22:25 +02:00
Kim Alvefur
7d6580d307 doc/storage: Add archive store map-like API 2020-05-11 22:32:28 +02:00
Kim Alvefur
82714e54a8 mod_storage_internal: Implement key-value API 2020-05-11 21:56:19 +02:00