aboutsummaryrefslogtreecommitdiffstats
path: root/tests/base.py (unfollow)
Commit message (Collapse)AuthorLines
2019-12-22Use more specific error message for infraction DM user fetchGravatar MarkKoz-1/+1
2019-12-22Remove unreachable break in post_infraction loopGravatar MarkKoz-3/+1
* Show the user in the post_infraction error log message
2019-12-22Catch HTTPException in fetching, only fetch if isn't User or MemberGravatar Manuel Ignacio Pérez Alcolea-8/+12
There's now a check to see if the `user` argument (possibly a `discord.Object`) needs to be made a `User`, instead of doing so directly, to avoid unnecessary requests to the Discord API. Besides that, a possible HTTPException is catched if it the fetch fails, cancelling the message to be send to the user (which would make the following calls fail later on for not being of the proper type.)
2019-12-22Make `watchchannels` use `FetchedUser` instead of `proxy_user`Gravatar Manuel Ignacio Pérez Alcolea-31/+24
This changes also removes the original `proxy_user` used by `watchchannels` the attributes in its `discord.Object` object to the one returned by FetchedUser.
2019-12-22Fix bug to log if `user` is either `Member` or `User`Gravatar Manuel Ignacio Pérez Alcolea-1/+1
2019-12-22Move type declarations for annotations and convertersGravatar Manuel Ignacio Pérez Alcolea-4/+7
It turns out how it was originally was the best idea. Now the `infractions` module imports `FetchedUser` and makes a `typing.Union` between it and `utils.UserTypes`. The usage of `FetchedUser` isn't needed in `utils` at all, and it shouldn't be used for/as type hinting there.
2019-12-22Minor refactor moving `return ...`Gravatar Manuel Ignacio Pérez Alcolea-3/+1
2019-12-22Add descriptive message to exception if user from API doesn't existGravatar Manuel Ignacio Pérez Alcolea-1/+1
2019-12-22Add space in conditionGravatar manusaurio-1/+1
Co-Authored-By: Mark <[email protected]>
2019-12-22Correct log messages levels, add log messages and ctx.send messageGravatar Manuel Ignacio Pérez Alcolea-7/+12
2019-12-20"Correct indentation style"Gravatar Manuel Ignacio Pérez Alcolea-2/+4
2019-12-20Move `utils.proxy_user` to Converters and do minor refactoringGravatar Manuel Ignacio Pérez Alcolea-55/+29
The `proxy_user` function now belongs to the `Converters` module, since its use is directly related to it. `FetchedUser` uses this function if there's an error trying to fetch and it doesn't indicate a non existing user. Technically finished and working.
2019-12-20Make post_user take default values for payload from `getattr`Gravatar Manuel Ignacio Pérez Alcolea-20/+12
2019-12-20Make `FetchedUser` return a `discord.Object` if user *may* existGravatar Manuel Ignacio Pérez Alcolea-7/+35
The FetchedUser Converter now counts with a `proxy_user` helper function (which SHOULD NOT be there) to return a user as a last resource, in case there was an issue fetching from the Discord API, as long as the error isn't that there's no user with the given ID.
2019-12-20Give `post_user` default values for `payload` if absent in `user`Gravatar Manuel Ignacio Pérez Alcolea-19/+26
Now `post_user(...)` expects either a `discord.User` or a `discord.Object` object as `user`. Either way, it will try to take the relevant attributes from `user` to fill the DB columns. If it can't be done, `.avatar_hash`, `.discriminator`, and `name` will take default values.
2019-12-20Refactor minor details in `post_infraction`Gravatar Manuel Ignacio Pérez Alcolea-5/+4
2019-12-17Use on_user_update to properly sync users with dbGravatar Sebastiaan Zeeff-29/+26
It's important to us that we keep the information we have about users in the database in sync with the actual user information the bot can observe in our guild. To do this, we relied on the `on_member_update` event listener to synchronize a user's information when an update of the information was detected. However, unfortunately, this does not work for user account information (i.e., the username, avatar, and discriminator of the user). The solution is to use the `on_user_update` event listener to watch for updates in the user settings and to use the `on_member_update` event listener to watch for updates in guild-related information for that user. (We currently only sync the roles the user has.) See: - https://discordpy.readthedocs.io/en/stable/api.html#discord.on_member_update - https://discordpy.readthedocs.io/en/stable/api.html#discord.on_user_update Note: The docs for `discord.py` make it *seem* like the `on_member_update` event does not fire for updates of theusername, discriminator, and avatar attributes. However, experimentation shows that this event *does* fire; it's just that the member objects provided as `before` and `after` to the listener will already have been updated in cache by the `on_user_update` event that fires *before* it. This means that if the only changes made were to the username, avatar, and discriminator, the `on_member_update` event does fire, but with two *equal* Member objects. This makes it appear as if you may be able to use `on_member_update`, since it fires, but it does not actually contain anything useful.
2019-12-16Make post_infraction try to `post_user` if user doesn't existGravatar Manuel Ignacio Pérez Alcolea-20/+17
Try twice to apply the infraction. If the user is not in the database, try to add it, then try to apply the infraction again. This allows any moderation function that uses `FetchedUser` as a converter to apply the infraction even when the user is absent in the local database.
2019-12-16Add `post_user` function to POST a new user to the DBGravatar Manuel Ignacio Pérez Alcolea-0/+33
As it is now, this function is planned to be used a big-helper in `post_infraction`. Its interface is partially similar: it will return a "JSON" dictionary if everything went well, or `None` if it failed. If it fails, it will send a message to the channel and register the issue in the `log`.
2019-12-16Remove pointless comma after last argumentGravatar Manuel Ignacio Pérez Alcolea-1/+1
2019-12-16Add FetchedUser to convert ids of absent users to `discord.User`Gravatar Manuel Ignacio Pérez Alcolea-0/+22
This `discord.ext.commands.Converter` fetches a user from the Discord API and returns a `discord.User` object. This should replace the `proxy_user` function from the moderation `utils`.
2019-12-12Verification: check channel before checking for bot messagesGravatar MarkKoz-3/+3
2019-12-13Fixed a typo ( due to poor copy pasta and eyeballing skills )Gravatar Shirayuki Nekomata-1/+1
2019-12-13Added tests for `until_expiration`Gravatar Shirayuki Nekomata-0/+45
Similar to `format_infraction_with_duration` ( if not outright copying it ), added 3 tests for `until_expiration`: - None `expiry`. - Custom `max_units`. - Normal use cases.
2019-12-13Adding an optional argument for `until_expiration`, update typehints for ↵Gravatar Shirayuki Nekomata-3/+8
`format_infraction_with_duration` - `until_expiration` was being a pain to unittests without a `now` ( default to `datetime.utcnow()` ). Adding an optional argument for this will not only make writing tests easier, but also allow more control over the helper function should we need to calculate the remaining time between two dates in the past. - Changed typehint for `date_from` in `format_infraction_with_duration` to `Optional[datetime.datetime]` to better reflect what it is.
2019-12-13Revert "Revert "Use OAuth to be Reddit API compliant""Gravatar Joseph-11/+88
2019-12-13Revert "Use OAuth to be Reddit API compliant"Gravatar Joseph-88/+11
2019-12-11Clean: reformat argumentsGravatar MarkKoz-8/+33
2019-12-11Clean: allow amount argument to be skipped Gravatar Mark-4/+4
This make the channel specifiable without the amount. Co-Authored-By: scragly <[email protected]>
2019-12-11Converters: rename string to allowed_stringsGravatar MarkKoz-5/+5
2019-12-11ModManagement: add more aliases for "special" params of infraction editGravatar MarkKoz-8/+8
2019-12-11Moderation: show emoji for DM failure instead of mentioning actor (#534)Gravatar MarkKoz-3/+6
2019-12-11ModManagement: display ID of edited infraction in confirmation messageGravatar MarkKoz-1/+2
2019-12-11ModManagement: allow "recent" as ID to edit infraction (#624)Gravatar MarkKoz-2/+21
It will attempt to find the most recent infraction authored by the invoker of the edit command.
2019-12-11Add a generic converter for only allowing certain string valuesGravatar MarkKoz-13/+23
2019-12-11Verification: delete bots' messages (#689)Gravatar MarkKoz-1/+6
Messages are deleted after a delay of 10 seconds. This helps keep the channel clean. The periodic ping is an exception; it will remain.
2019-12-11Verification: allow mods+ to use commands in checkpoint (#688)Gravatar MarkKoz-2/+3
2019-12-11Clean: support specifying a channel different than the context'sGravatar MarkKoz-13/+18
2019-12-11Clean: un-hide from help and add purge aliasGravatar MarkKoz-1/+1
2019-12-11Reddit: raise ClientError when the token can't be retrievedGravatar MarkKoz-4/+3
Raising an exception allows the error handler to display a message to the user if the failure happened from a command invocation.
2019-12-11Reddit: log retries when getting the access tokenGravatar MarkKoz-1/+9
2019-12-11Reddit: create a dict constant for the User-Agent headerGravatar MarkKoz-27/+12
2019-12-11Reddit: revise docstringsGravatar MarkKoz-9/+17
2019-12-11Reddit: define AccessToken type at the module levelGravatar MarkKoz-1/+2
2019-12-11Reddit: use expires_in from the response to calculate token expirationGravatar MarkKoz-2/+3
2019-12-11Reddit: use qualified_name attribute when removing the cogGravatar MarkKoz-1/+1
2019-12-11Reddit: move BasicAuth instantiation to __init__Gravatar MarkKoz-4/+3
The object is basically just a namedtuple so there's no need to re-create it every time a token is obtained. * Remove log message which shows credentials. * Initialise headers attribute to None in __init__.
2019-12-11Reddit: move token renewal inside fetch_postsGravatar MarkKoz-17/+4
This removes the duplicate code for renewing the token. Since fetch_posts is the only place where the token gets used, it can just be refreshed there directly.
2019-12-11ErrorHandler: fix #650 tag fallback not respecting checksGravatar MarkKoz-0/+10
2019-12-09Infractions: kick user from voice after muting (#644)Gravatar MarkKoz-2/+7