* Easily use multiple prefixes... Now onto programmatic fetching and conquering the world!
* Updated a test and added some documentation.
Now someone just needs to find a way to transition into multiple prefixes...
* Allow bots to be run without access to the console.
This is going to allow for custom prefix-getters :D
* Fix flake8's innate hate of monkey patching.
* Documentation!
No idea how to make tests for this...
* Python 2 compatibility is basically impossible.
Implicit Relative Imports ruin the day here (`import logging`) and so why not ruin Python 2's day with type hinting?
* And it's done!
Python 2 **can** keep using disco, because `disco.util.runner`
shouldn't be automatically imported.
Changelog:
+ Added two keys to the config.
`commands_prefix_getter`
`commands_prefix`
+ Added documentation.
+ Added a new utility file, `disco.util.runner`
* nekoka.tt code review (github.com/nekocatt)
Some of the stuff edited (`disco.util.config.Config`) are not within the scope of this PR, but `disco.util.runner.create_bot` makes it easier to mess up.
(also, if lines 414 to 417 are premature optimization, that's all me)
* Undo the change to `disco.util.config.Config`.
There is probably a way to do this, but that's topic of a different PR.
* remove unused import
* Python 2 Compatibility
* Move `disco.util.runner.py` to another PR
* b1nzy code review
* fix tests
* stop being dumb
* Remove unintuitive behaviour.
Previously, if you had `{@mention} {prefix}{command}`, `require_mention` was set to `True`, and `prefixes` were set to anything, then the command framework would look for a command named `{prefix}{command}`. However, this specific grouping of settings would not be chosen unless the bot creator wanted the command framework to look for `{command}`.
tl;dr settings weren't being respected
Co-authored-by: Andrei Zbikowski <[email protected]>
* request_guild_members update, logging on emitter event exceptions and improved state caching.
* Update the GuildMembersChunk GatewayEvent
* Match presence update's presence handling in guild members chunk
* Remove unnecessary string conversion
* Remove member count tracking.
* Split function
* Remove optional report
* Local Fixes & Client UserUpdate Gateway Event
- Changed 'READ_MESSAGES' to 'VIEW_CHANNEL' to keep with Discord's API Docs
- Defaulted Guild.premium_subscription_count to 0 to stop error
- max_presences to 5,000 as Discord's API Suggest
- Added UserUpdate event for when the Client user is updated.
* Flake8 Spacing
* Update state.py
* Adding latency checking
*Note: Latency is in seconds NOT ms*
* Update client.py
In order to display long description properly at the pypi.org page we
need to specify mime type `text/markdown` for the long desccription if
readme is in markdown.
Current https://pypi.org/project/disco-py/, doesn't looks nice atm.
* guild_subscriptions
* Replace get_vanity_url function with vanity_url property on guild object.
* Add voice regions + conform guild.vanity_url to standard seen for other url properties on guild.
* style change.
* Add guild prune and prune count.
* Switch to requests session persistent headers
* add Stream permission
* guild.preferred_locale
* Fix logic on GuildCreate and GuildDelete shotcut properties.
* preferred_locale already added in another pr.
* Convert embed datetime timestamp to iso8610 format for api calls.
* Update disco/types/voice.py
Co-Authored-By: Andrei Zbikowski <[email protected]>
* remove botch isoformat on embed method
* Apply suggestions from code review
Co-Authored-By: Andrei Zbikowski <[email protected]>
* More suggestions from code review
* Local Fixes & Client UserUpdate Gateway Event
- Changed 'READ_MESSAGES' to 'VIEW_CHANNEL' to keep with Discord's API Docs
- Defaulted Guild.premium_subscription_count to 0 to stop error
- max_presences to 5,000 as Discord's API Suggest
- Added UserUpdate event for when the Client user is updated.
* Flake8 Spacing
* Update state.py
* Remove undocumented OPCode
This is not documented in the Discord API docs, and is claimed not to usable by (or useful to) bots.
* Add missing ChannelType
* Resolve dictionary changed size during iteration while converting levels mapping and remove non-converted entry to avoid duplicate entires (str and int index).
Add default for premium sub count.
* Update disco/bot/bot.py
Co-Authored-By: Andrei Zbikowski <[email protected]>
* Patch get_icon_url
Nice try, but don't copy+paste without testing whomever PR'd this 😉
* Patch status in update_presence payload
No more Enum, no more `.value`
This will not undergo a regualar deprecation cycle since the schedule
provided by discord (see discordapp/discord-api-docs#967) is less than
the amount of time it would take to fully deprecate this field. Instead
we will just consider this a v1 breaking change.
Clients on previous versions should continue to work regardless of
Discord's planned changes for this field, although the data provided
from the field may be invalid or empty.
* Added end points + fixed typo
* mixup fixed
* oauth user add
* typo
* removed "return User.create(self.client, r.json())" from guilds_members_add due to lack of json response when user already in guild and switched name to mandatory arg in guilds_create
* formatting + removed roles/channels in guilds_create
* formatting 2.0, with even less random spaces
* remove guild.create on guilds_delete as no content is returned by Discord's api + reinstate roles and channels in guild_create
* spaces v tabs... FIGHT
* disco/api/client.py:410:9: F841
* Update client.py
* naming and create guilds args
Previously any keyword arguments passed into the `Plugin.command`
decorator that didn't match a keyword argument inside of `Comman.update`
would be collected into the `metdata` for a command.
This can cause fairly severe bugs in your code if you make typos when
passing keyword arguments into the decorator since they will be blindly
accepted. For example consider a situation where a user (lets say me)
creates the following command:
```
@Plugin.command(..., permissions=CommandLevels.TRUSTED)
```
While this looks perfectly valid and the code will run without issue,
this command actually has a permissions level of '0' since the correct
keyword argument is `level`.
This commit changes the behavior to require all metadata passed in to be
within a `metadata` kwarg. Any unknown keyword arguments passed will
throw a traditional Python error.
* Adding RP Support
* Fixing Space Issues
* Needed an indent
* Fixing the last of the spacing errors.
* Readded list field to import
* Adding @cached_property to Timestamps
* Imports are a thing, sorry.
* Fixing line length issue.
* flake8 fixes