-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC] [commands] custom default arguments #1849
Closed
+205
−6
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
5db770b
[commands] custom default arguments
khazhyk fec34e0
[commands] add default __repr__ for CustomDefault
thecaralice 1fe24c9
[commands] add `CustomDefault.converters` to allow implicit conversions
sgtlaggy 40c234c
[commands] handle CustomDefault in Greedy converter
sairam4123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,4 @@ | |
from .converter import * | ||
from .cooldowns import * | ||
from .cog import * | ||
from .default import CustomDefault |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015-2019 Rapptz | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. | ||
""" | ||
|
||
import discord | ||
|
||
from .errors import MissingRequiredArgument | ||
|
||
__all__ = ( | ||
'CustomDefault', | ||
'Author', | ||
'CurrentChannel', | ||
'CurrentGuild', | ||
'Call', | ||
) | ||
|
||
class CustomDefaultMeta(type): | ||
def __new__(cls, *args, **kwargs): | ||
name, bases, attrs = args | ||
attrs['display'] = kwargs.pop('display', name) | ||
return super().__new__(cls, name, bases, attrs, **kwargs) | ||
|
||
def __repr__(cls): | ||
return str(cls) | ||
|
||
def __str__(cls): | ||
return cls.display | ||
|
||
class CustomDefault(metaclass=CustomDefaultMeta): | ||
"""The base class of custom defaults that require the :class:`.Context`. | ||
|
||
Classes that derive from this should override the :attr:`~.CustomDefault.converters` attribute to specify | ||
converters to use and the :meth:`~.CustomDefault.default` method to do its conversion logic. | ||
This method must be a coroutine. | ||
""" | ||
converters = (str,) | ||
|
||
async def default(self, ctx, param): | ||
"""|coro| | ||
|
||
The method to override to do conversion logic. | ||
|
||
If an error is found while converting, it is recommended to | ||
raise a :exc:`.CommandError` derived exception as it will | ||
properly propagate to the error handlers. | ||
|
||
Parameters | ||
----------- | ||
ctx: :class:`.Context` | ||
The invocation context that the argument is being used in. | ||
""" | ||
raise NotImplementedError('Derived classes need to implement this.') | ||
|
||
|
||
class Author(CustomDefault): | ||
"""Default parameter which returns the author for this context.""" | ||
converters = (discord.Member, discord.User) | ||
|
||
async def default(self, ctx, param): | ||
return ctx.author | ||
|
||
class CurrentChannel(CustomDefault): | ||
"""Default parameter which returns the channel for this context.""" | ||
converters = (discord.TextChannel,) | ||
|
||
async def default(self, ctx, param): | ||
return ctx.channel | ||
|
||
class CurrentGuild(CustomDefault): | ||
"""Default parameter which returns the guild for this context.""" | ||
|
||
async def default(self, ctx, param): | ||
if ctx.guild: | ||
return ctx.guild | ||
raise MissingRequiredArgument(param) | ||
|
||
class Call(CustomDefault): | ||
"""Easy wrapper for lambdas/inline defaults.""" | ||
|
||
def __init__(self, callback): | ||
self._callback = callback | ||
|
||
async def default(self, ctx, param): | ||
return self._callback(ctx, param) | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like it would be good if this supported async functions as well, although it isn't a strong enough opinion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I disagree. In order to use this with a new async function you'd have to define it outside of the command signature anyway. At that point just make a Default class. If you want this to support async functions, I suggest you file a PEP for async lambdas :^)