Commit graph

176 commits

Author SHA1 Message Date
Matthew Wild
57d168dd5e prosodyctl shell: More reliable detection of REPL/interactive mode (fixes #1895) 2025-03-13 11:37:11 +00:00
Matthew Wild
384e3dbea2 mod_admin_shell: Remove outdated help text (fixes #1898)
The ! commands have been broken for some time, and we're not going to
implement them right now. If we want fancier editing, we can now do that on
the client side (with readline and stuff).

Also removes mention of telnet!
2025-03-13 11:35:39 +00:00
Matthew Wild
6855f5c8c3 mod_admin_shell: Improve help listing in non-REPL mode 2025-02-17 19:10:48 +00:00
Matthew Wild
75b8824b00 mod_admin_shell: Fix simple command execution (e.g. help) 2025-02-17 19:10:26 +00:00
Matthew Wild
efc31d66ef mod_admin_shell: Set flag on session when in REPL mode 2025-02-17 19:09:11 +00:00
Matthew Wild
c8cf32b614 mod_admin_shell: Improved error handling for shell-invoked commands 2025-02-17 18:25:52 +00:00
Matthew Wild
79381510cf mod_admin_shell, util.prosodyctl.shell: Process command-line args on server-side, with argparse support
This allow a shell-command to provide a 'flags' field, which will automatically
cause the parameters to be fed through argparse.

The rationale is to make it easier for more complex commands to be invoked
from the command line (`prosodyctl shell foo bar ...`). Until now they were
limited to accepting a list of strings, and any complex argument processing
was non-standard and awkward to implement.
2025-02-17 17:02:35 +00:00
Matthew Wild
df63482b96 mod_admin_shell: Remove duplicated line 2025-02-13 17:05:36 +00:00
Matthew Wild
56dc05885e mod_admin_shell: Rename user:setrole to user:set_roles
This is more readable and accessible, and it will only be harder to change
after release.
2025-02-13 16:20:42 +00:00
Matthew Wild
f8a9943d17 mod_admin_shell: Hide secondary role commands, focus on primary roles
Secondary roles are an advanced feature without any strong use cases
currently. Having multiple ways to manage roles is confusing.

Now the 'user:role' command will just show the primary role if that is all
there is, but will list secondary roles too if there are any (which in 99.9%
of cases there won't be).
2025-02-13 16:18:59 +00:00
Matthew Wild
009996c9e8 mod_admin_shell: Support for hiding certain commands from default help listing
Useful for e.g. deprecated commands.
2025-02-13 16:16:19 +00:00
Matthew Wild
b07c1436e7 mod_admin_shell: Fix result handling of user addrole/delrole commands 2025-02-13 15:54:39 +00:00
Kim Alvefur
56c7957a56 mod_admin_shell: Fix column alignment in 'help roles' 2025-02-02 14:12:52 +01:00
Kim Alvefur
084774ae50 mod_admin_shell: Fix help forgetting arguments
The array:pluck() method mutates the args, replacing the table items
with the resulting strings. On later runs I assume it tries to index the
string, which returns nil, emptying the array.
2025-02-02 13:33:17 +01:00
Matthew Wild
76f00fc2e3 mod_admin_shell: Remove log statement intended for development only 2025-01-16 11:35:19 +00:00
Kim Alvefur
7ed9729e52 mod_admin_shell: Remove redundant 'mod_' prefix from debug message 2025-01-08 08:41:15 +01:00
Kim Alvefur
63690dd4a0 mod_admin_shell: Fix reporting origin module for commands
The field `_provided_by` comes from module:provides(), but these items
comes from moduel:add_item(), which include the originating module as a
'source' field of the event. However, this is absent when items are
retrieved at a later time than the initial event.
2025-01-08 08:11:02 +01:00
Matthew Wild
6ff135c812 mod_admin_shell: user:password(): Support prompting for password if none given 2025-01-07 19:25:12 +00:00
Matthew Wild
54de66e7b0 mod_admin_shell: user:create(): Reject promise with error message on failure 2025-01-07 19:24:05 +00:00
Matthew Wild
f40e997879 mod_admin_shell: Mark event as handled when requested input is submitted 2025-01-07 19:23:23 +00:00
Matthew Wild
54718fffe0 mod_admin_shell: user:create(): request password via prompt if none given 2025-01-07 18:17:57 +00:00
Matthew Wild
7a9bc06049 mod_admin_shell: Add session method to request (password) input from shell client 2025-01-07 18:17:30 +00:00
Matthew Wild
957c69461f mod_admin_shell: Don't pause async thread while waiting for promise result
This allows us to continue sending/receiving on the session, for example if
the promise will be resolved by other data that the client is going to send.

Specifically, this allows the repl-request-input to work without a deadlock.

It does open the door to interleaved commands/results, which may not be a good
thing overall, but can be restricted separately if necessary (e.g. a flag on
the session).
2025-01-07 18:15:50 +00:00
Matthew Wild
f45d88d614 mod_admin_shell: stats:show(): Friendlier error message when statistics disabled 2024-12-28 18:35:24 +00:00
Kim Alvefur
7b8f6e3c3e mod_admin_shell: Report when a module is already loaded
Hopefully less confusing than "Module loaded onto 0 hosts"
2024-11-15 15:52:37 +01:00
Kim Alvefur
53edd95324 mod_admin_shell: Refactor end of module:load
Meant to improve clarity and make improving easier
2024-11-15 15:48:07 +01:00
Kim Alvefur
ad83ddfb78 mod_admin_shell: Reject attempt to add or remove roles for unrelated hosts
The three-argument version seems to be a left-over from 0.12
2024-11-01 13:10:45 +01:00
Kim Alvefur
577e6d8370 mod_admin_shell: Allow assigning roles to arbitrary JIDs when supported
mod_authz_internal does not support this
2024-11-01 13:07:25 +01:00
Kim Alvefur
ad41d2b5d8 mod_admin_shell: Prevent traceback due to type error
Here too
2024-08-26 22:26:59 +02:00
aidan
5550be6381 mod_admin_shell: Add connection created time
This adds an output format option to show the time that the connection was created.

Ref #1852
2024-04-03 21:56:03 -07:00
Matthew Wild
fb240ee25c mod_admin_shell: Fix linter issues 2023-11-29 17:49:20 +00:00
Matthew Wild
44aea8f4f5 mod_admin_shell: Remove verbose logging 2023-11-29 17:33:56 +00:00
Matthew Wild
a31ee8c429 mod_admin_shell: Remove timer:info() (it's been debug:timers() for some time) 2023-11-29 17:22:18 +00:00
Matthew Wild
0391039177 mod_admin_shell: Support for 'shell-command' items (global and per-host)
This should simplify adding shell commands from other modules, which will
reduce the growth of mod_admin_shell and make it easier for community modules
to expose commands too.
2023-11-29 17:19:53 +00:00
Matthew Wild
34cdcb5532 mod_admin_shell: Refactor help to data structures for extensibility
This makes it easier for commands added by other modules to add to the help
output, for example.
2023-11-29 17:18:17 +00:00
Kim Alvefur
b94a30ddcc mod_admin_shell: Fix lint [luacheck] 2023-11-21 22:18:42 +01:00
Matthew Wild
f66f6ba60b mod_admin_shell: Add debug:async() command to show blocked async runners 2023-11-21 18:48:58 +00:00
Kim Alvefur
32ce8884ba mod_admin_shell: Make 'Role' column dynamically sized
Some of the new roles don't quite fit nicely into 4 characters
(excluding ellipsis). Given the ability to dynamically add additional
roles from the config and possibly from modules, it seems better to just
make it a relative size since we can't know how long they will be.
2023-10-26 13:29:28 +02:00
Matthew Wild
f7323ed6e4 core, plugins: Split prosody:user role into prosody:{guest,registered,member}
This gives us more granular control over different types of user account.
Accounts registered by IBR get assigned prosody:registered by default, while
accounts provisioned by an admin (e.g. via prosodyctl shell) will receive
prosody:member by default.
2023-06-29 15:36:13 +01:00
Kim Alvefur
46781dc892 mod_admin_shell: Use new serialize preset to simplify default config
Two pairs replaced by one.  Blame lua-format for the line diff delta.
2023-06-09 17:38:46 +02:00
Kim Alvefur
9777b5158f mod_admin_shell: Warn when (un-)loading module would be undone by restart
Reminder to update the configuration if the change is to be permanent.
2023-06-06 22:00:54 +02:00
Kim Alvefur
9480954e92 mod_admin_shell: Show internal URL where different from external 2023-05-28 22:33:45 +02:00
Kim Alvefur
ba878e7230 mod_admin_shell: Show internal URL in addition to external in http:list
To help with configuring reverse proxies.
2023-05-24 14:49:29 +02:00
Kim Alvefur
c71ab7f1ef mod_admin_shell: Allow logging HTTP events with debug:logevents("http")
Mirroring debug:events("http"), and to replace the "Firing event: GET /"
log lines in net.http.server
2023-05-14 19:02:26 +02:00
Kim Alvefur
f3ec84d5ef mod_admin_shell: Allow logging global events with debug:logevents("*")
Missing feature. It should behave like debug:events()
2023-05-14 19:01:01 +02:00
Kim Alvefur
8a854d169b mod_admin_shell: Refactor 'cert' column
Removes some dead code and hopefully simplifies a bit.

There's a tree of possibilities with the two tri-state status
properties, something like

chain:
* nil -- cert validation disabled?
* invalid -- something wrong with the chain (including ee cert)
* valid -- chain ok
	cert:
	* nil -- incomplete validation??
	* invalid -- mismatched names or such
	* valid -- all good!
2023-04-30 23:45:55 +02:00
Kim Alvefur
6114ccee11 Merge 0.12->trunk 2023-04-19 11:42:36 +02:00
Kim Alvefur
2fc0c66f01 mod_admin_shell: Use same wildcard matching in other s2s command
Consistency is nice.
2023-04-10 14:24:39 +02:00
Kim Alvefur
f9f118178a mod_admin_shell: Factor apart wildcard matching into function for reuse
Applying this for s2s:close[all]() would also be nice.
2023-04-10 14:12:48 +02:00
Kim Alvefur
dbb0c688cb mod_admin_shell: Add config:set([host,] key, value) because why not
We had config:get() but not this.

> <MattJ> Yeah, why did we never implement that?

Handy if you want to quickly try out settings without reloading the
whole config.
2023-04-08 11:28:55 +02:00