Interface CommandContext
- All Superinterfaces:
AccessContext,AccessValidator,ChannelAccessContext
- All Known Subinterfaces:
InstrumentedContext,InteractionCommandContext,LazyContext,MessageCommandContext,SlashCommandContext
- All Known Implementing Classes:
MessageContextImpl
- Since:
- 1.0
- Version:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionDetermines whether the given user belongs to the given group in the context of this invocation (guild and channel).Determines whether the given user belongs to the given group in the context of this invocation (guild and channel).getArgument(Parameter<? extends T> parameter) Retrieves one of the arguments to the command.getArgument(Parameter<? extends T> parameter, Class<T> argumentType) Retrieves one of the arguments to the command.getArgument(String name, Class<T> argumentType) Retrieves one of the arguments to the command.Retrieves the user that called the command.Retrieves the user that called the command as a guild member as provided by the triggering event, if present.getCallerMember(Snowflake guildId) Retrieves the user that called the command as a guild member of the given guild.Retrieves the channel.default GatewayDiscordClientRetrieves the backing client.Retrieves the canonical invocation of the triggered command, that is, the value ofCommand.invocation().<T> @Nullable TgetContext(String key, Class<? extends T> type) Retrieves a context object set bysetContext(String, Object, boolean).getEvent()Retrieves the event that triggered the command.Retrieves the invocation that triggered the command.Retrieves the user as a guild member.Retrieves the user as a guild member of the given guild.default UsergetUser()Retrieves the user.replies()Retrieves the reply manager for this instance.reply(CommandReplySpec spec) reply(EmbedCreateSpec... embeds) reply(MessageCreateSpec spec) requireArgument(Parameter<? extends T> parameter) Retrieves one of the arguments to the command expecting that it is non-null, i.e.requireArgument(Parameter<? extends T> parameter, Class<T> argumentType) Retrieves one of the arguments to the command expecting that it is non-null, i.e.requireArgument(String name, Class<T> argumentType) Retrieves one of the arguments to the command expecting that it is non-null, i.e.default <T> TrequireContext(String key, Class<? extends T> type) Retrieves a non-null context object set bysetContext(String, Object, boolean).default voidsetContext(String key, @Nullable Object obj) Unconditionally places a context object for subsequent handlers.booleansetContext(String key, @Nullable Object obj, boolean replace) Places a context object for subsequent handlers, optionally replacing any existing values under the same key.Methods inherited from interface dev.sympho.modular_commands.api.command.context.AccessContext
asGuild, getGuild, getGuildId, isPrivateMethods inherited from interface dev.sympho.modular_commands.api.permission.AccessValidator
hasAccess, validateMethods inherited from interface dev.sympho.modular_commands.api.command.context.ChannelAccessContext
asUser, getChannelId
-
Method Details
-
getEvent
Retrieves the event that triggered the command.- Returns:
- The trigger event.
-
getClient
Description copied from interface:AccessContextRetrieves the backing client.- Specified by:
getClientin interfaceAccessContext- Returns:
- The client.
-
getInvocation
Retrieves the invocation that triggered the command.Unlike
getCommandInvocation(), the returned value may be different from the command's declaredCommand.invocation()if it was invoked using an alias (when supported).If the command has no aliases, or was invoked through a method that does not support aliases, the return of this method is the same as the return of
getCommandInvocation().- Returns:
- The trigger invocation.
-
getCommandInvocation
Retrieves the canonical invocation of the triggered command, that is, the value ofCommand.invocation(). This is equivalent to thetriggering invocationafter resolving any aliases.If the command has no aliases, or was invoked through a method that does not support aliases, the return of this method is the same as the return of
getInvocation().- Returns:
- The normalized trigger invocation.
-
getCaller
Retrieves the user that called the command.- Returns:
- The calling user.
-
getCallerMember
Retrieves the user that called the command as a guild member as provided by the triggering event, if present.- Returns:
- The calling user as a guild member, or
nullif the command was invoked in a private channel.
-
getCallerMember
Retrieves the user that called the command as a guild member of the given guild.- Parameters:
guildId- The ID of the target guild.- Returns:
- The calling user as a guild member of the given guild.
- Implementation Note:
- The default implementation will re-use the member instance
provided by the eventif appropriate (that is, if the given guild is the same that the command was invoked from) to avoid making an API request.
-
getUser
Description copied from interface:AccessContextRetrieves the user.- Specified by:
getUserin interfaceAccessContext- Returns:
- The user.
- See Also:
-
getMember
Description copied from interface:AccessContextRetrieves the user as a guild member.- Specified by:
getMemberin interfaceAccessContext- Returns:
- The calling user as a guild member. May be empty if the context is a private channel.
- See Also:
-
getMember
Description copied from interface:AccessContextRetrieves the user as a guild member of the given guild.- Specified by:
getMemberin interfaceAccessContext- Parameters:
guildId- The ID of the target guild.- Returns:
- The user as a guild member of the given guild.
- See Also:
-
getChannel
Mono<MessageChannel> getChannel()Description copied from interface:ChannelAccessContextRetrieves the channel.- Specified by:
getChannelin interfaceChannelAccessContext- Returns:
- The channel.
-
getArgument
@Pure <T extends @NonNull Object> @Nullable T getArgument(String name, Class<T> argumentType) throws IllegalArgumentException, ClassCastException Retrieves one of the arguments to the command.- Type Parameters:
T- The type of the argument.- Parameters:
name- The name of the corresponding parameter.argumentType- The type of the argument.- Returns:
- The argument value, or
nullif the received argument is empty (omitted by the caller or an empty parsing result) and does not have a default value. - Throws:
IllegalArgumentException- if there is no parameter with the given name.ClassCastException- if the given argument type does not match the type of the argument with the given name.- See Also:
- API Note:
- This method will never return
nullif the parameter provides a default value. If it is marked as required, it will returnnullif and only if the parser result was empty (which implies that it will never returnnullif the parser is guaranteed to never give an empty result).
-
getArgument
@Pure default <T extends @NonNull Object> @Nullable T getArgument(Parameter<? extends T> parameter, Class<T> argumentType) throws IllegalArgumentException, ClassCastException Retrieves one of the arguments to the command.- Type Parameters:
T- The type of the argument.- Parameters:
parameter- The corresponding parameter.argumentType- The type of the argument.- Returns:
- The argument value, or
nullif the received argument is empty (omitted by the caller or an empty parsing result) and does not have a default value. - Throws:
IllegalArgumentException- if there is no parameter with a matching name.ClassCastException- if the given argument type does not match the type of the argument with the given name.- See Also:
- API Note:
- This is functionally equivalent to
getArgument(String, Class), but allows access directly from the parameter instance and provides compile-time type checking.
-
getArgument
@Pure <T extends @NonNull Object> @Nullable T getArgument(Parameter<? extends T> parameter) throws IllegalArgumentException Retrieves one of the arguments to the command.- Type Parameters:
T- The type of the argument.- Parameters:
parameter- The corresponding parameter.- Returns:
- The argument value, or
nullif the received argument is empty (omitted by the caller or an empty parsing result) and does not have a default value. - Throws:
IllegalArgumentException- if the given parameter is not present in the invoked command.- API Note:
- This is functionally equivalent to
getArgument(Parameter, Class). However, it has a stronger requirement on theparameterargument in that it must be the same instance (i.e., according to==) that was used to define the parameter in the original command, instead of just needing to match the name. This is necessary as the lack of the class parameter means there is no other way to ensure type safety. On the other hand, this variant makes it possible to use arguments that have their own type parameters in a type-safe manner.
-
requireArgument
@Pure default <T extends @NonNull Object> T requireArgument(String name, Class<T> argumentType) throws IllegalArgumentException, ClassCastException, NullPointerException Retrieves one of the arguments to the command expecting that it is non-null, i.e. that it either has a default value or is never empty (is required and the parser never has an empty result).- Type Parameters:
T- The type of the argument.- Parameters:
name- The name of the corresponding parameter.argumentType- The type of the argument.- Returns:
- The argument value.
- Throws:
IllegalArgumentException- if there is no parameter with the given name.ClassCastException- if the given argument type does not match the type of the argument with the given name.NullPointerException- if the argument was empty (not received or empty parsing result) and does not have a default value.- See Also:
- API Note:
- An NPE thrown by this method indicates either a mismatched configuration (code expects the parameter to be required or default but it was not configured as such) or that the parser function unexpectedly returned an empty result.
-
requireArgument
@Pure default <T extends @NonNull Object> T requireArgument(Parameter<? extends T> parameter, Class<T> argumentType) throws IllegalArgumentException, ClassCastException, NullPointerException Retrieves one of the arguments to the command expecting that it is non-null, i.e. that it either has a default value or is never empty (is required and the parser never has an empty result).- Type Parameters:
T- The type of the argument.- Parameters:
parameter- The name of the corresponding parameter.argumentType- The type of the argument.- Returns:
- The argument value.
- Throws:
IllegalArgumentException- if there is no parameter with the given name.ClassCastException- if the given argument type does not match the type of the argument with the given name.NullPointerException- if the argument was empty (not received or empty parsing result) and does not have a default value.- See Also:
- API Note:
- This is functionally equivalent to
requireArgument(String, Class), but allows access directly from the parameter instance and provides compile-time type checking.
-
requireArgument
@Pure default <T extends @NonNull Object> T requireArgument(Parameter<? extends T> parameter) throws IllegalArgumentException, NullPointerException Retrieves one of the arguments to the command expecting that it is non-null, i.e. that it either has a default value or is never empty (is required and the parser never has an empty result).- Type Parameters:
T- The type of the argument.- Parameters:
parameter- The name of the corresponding parameter.- Returns:
- The argument value.
- Throws:
IllegalArgumentException- if the given parameter is not present in the invoked command.NullPointerException- if the argument was not received and does not have a default value.- API Note:
- This is functionally equivalent to
requireArgument(Parameter, Class). However, it has a stronger requirement on theparameterargument in that it must be the same instance (i.e., according to==) that was used to define the parameter in the original command, instead of just needing to match the name. This is necessary as the lack of the class parameter means there is no other way to ensure type safety. On the other hand, this variant makes it possible to use arguments that have their own type parameters in a type-safe manner.
-
setContext
Places a context object for subsequent handlers, optionally replacing any existing values under the same key.- Parameters:
key- The object key.obj- The object to store.replace- Iftrue, the object will be placed unconditionally, replacing any existing value in that key. Otherwise, it will only be placed if there are no values with the given key.- Returns:
trueif the given object was placed in the context. Ifreplaceisfalseand there is already an object at the given key, returnsfalse.- API Note:
- This method is not thread-safe.
-
setContext
Unconditionally places a context object for subsequent handlers.- Parameters:
key- The object key.obj- The object to store.- See Also:
- API Note:
- This method is equivalent to
setContext(key, obj, true).
-
getContext
@Pure <T> @Nullable T getContext(String key, Class<? extends T> type) throws IllegalArgumentException, ClassCastException Retrieves a context object set bysetContext(String, Object, boolean).- Type Parameters:
T- The type of the object.- Parameters:
key- The object key.type- The object class.- Returns:
- The context object.
- Throws:
IllegalArgumentException- if there is no context object with the given key.ClassCastException- if the context object with the given key is not compatible with the given type (not the same or a subtype).
-
requireContext
@Pure default <T> T requireContext(String key, Class<? extends T> type) throws IllegalArgumentException, ClassCastException, NullPointerException Retrieves a non-null context object set bysetContext(String, Object, boolean).- Type Parameters:
T- The type of the object.- Parameters:
key- The object key.type- The object class.- Returns:
- The context object.
- Throws:
IllegalArgumentException- If there is no context object with the given key.ClassCastException- if the context object with the given key is not compatible with the given type (not the same or a subtype).NullPointerException- if the context object wasnull.
-
replies
Retrieves the reply manager for this instance.Note that calling
ReplyManager.longTerm()on the returned manager will cause this method to also return the long-term manager from that point on.- Returns:
- The reply manager.
-
reply
Sends a reply, as if by callingreplies().add().Sending more than one causes the replies to be chained (each replying to the previous one).
- Parameters:
content- The message content.- Returns:
- The sent reply.
- See Also:
-
reply
Sends a reply, as if by callingreplies().add().Sending more than one causes the replies to be chained (each replying to the previous one).
- Parameters:
embeds- The message embeds.- Returns:
- The message.
- See Also:
-
reply
Sends a reply, as if by callingreplies().add().Sending more than one causes the replies to be chained (each replying to the previous one).
- Parameters:
spec- The message specification.- Returns:
- The message.
- See Also:
-
reply
Sends a reply, as if by callingreplies().add().Sending more than one causes the replies to be chained (each replying to the previous one).
- Parameters:
spec- The message specification.- Returns:
- The message.
- See Also:
-
reply
Sends a reply, as if by callingreplies().add().Sending more than one causes the replies to be chained (each replying to the previous one).
- Parameters:
spec- The message specification.- Returns:
- The message.
- See Also:
-
reply
Sends a reply, as if by callingreplies().add().Sending more than one causes the replies to be chained (each replying to the previous one).
- Parameters:
spec- The message specification.- Returns:
- The message.
- See Also:
-
belongs
Determines whether the given user belongs to the given group in the context of this invocation (guild and channel).- Parameters:
user- The user to check for.group- The group to check for.- Returns:
- A Mono that emits
trueif the given user belongs to the given group under this invocation context, orfalseotherwise.
-
belongs
Determines whether the given user belongs to the given group in the context of this invocation (guild and channel).- Parameters:
user- The ID of the user to check for.group- The group to check for.- Returns:
- A Mono that emits
trueif the given user belongs to the given group under this invocation context, orfalseotherwise.
-