diff --git a/use/capabilities.rst b/use/capabilities.rst index 1cb48b9..3b40de9 100644 --- a/use/capabilities.rst +++ b/use/capabilities.rst @@ -185,6 +185,7 @@ or:: Finally, user capabilities can be viewed with ``user capabilities`` command. +.. _capabilities-managing-defaults: Managing Default Capabilities ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/use/custom_commands.rst b/use/custom_commands.rst index 89b9fda..3fcf89a 100644 --- a/use/custom_commands.rst +++ b/use/custom_commands.rst @@ -150,14 +150,46 @@ command. It additionally uses the :ref:`plugin-Math` plugin's Replacing an existing command with your own ------------------------------------------- -TODO +Using the :ref:`defaultplugin ` command, it is possible to "replace" +an existing command in the bot by defining an alias with the same name and running:: -Limitations, and when to write a plugin instead ------------------------------------------------ + @defaultplugin Aka -TODO +As an example, you can replace the default :ref:`ping ` +reply from the Misc plugin with a silly response:: + + @aka add ping "reply I don't respond to ping requests." + The operation succeeded. + @defaultplugin ping Aka + The operation succeeded. + @ping + jlu5: I don't respond to ping requests. + +The old command will still be accessible via its full name:: + + @misc ping + pong + +If you want to remove access for a command entirely, you should configure +:ref:`default capabilities ` instead. + +Limitations, and when to write a plugin +--------------------------------------- + +Aliases and nested commands are *not* designed to replace plugins in all cases. +If you need any of the following, it's probably easier to +:ref:`write a custom plugin ` instead: + +* Persistent state (databases, etc.) +* For, while loops +* Access to web APIs or external Python libraries +* Fine-grained permission checks +* Threads / processes for slow or long-running tasks Final notes ----------- -TODO: interaction with capabilities +* :ref:`capabilities` apply to aliases as well as the commands they call. + To run an alias successfully, a caller needs to have access to all commands + called by the alias as well - keep this in mind if you declare a strict set of + :ref:`default capabilities `.