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)
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`
* 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