Browse Source
- Storage backends take a config - Add command permissions - Add ability to listen to BOTH incoming and outgoing gateway packets - Heavily refactor cli, now prefer loading from config with options as overrides - Add debug function to gateway events, helps with figuring data out w/o spamming console - Change Channel.last_message_id from property that looks in the message tracking deque, to a attribute that gets updated by the state module - Add State.fill_messages for backfilling the messages store - Handle MessageDeleteBulk in State - Add some helper functions for hash/equality model functions - Fix MessageIterator - Add Channel.delete_message, Channel.delete_messages - Some more functional stuff - Snowflake timestamp conversion - Bump holsterpull/5/head
18 changed files with 318 additions and 114 deletions
@ -1,5 +1,6 @@ |
|||
from disco.bot.bot import Bot, BotConfig |
|||
from disco.bot.plugin import Plugin |
|||
from disco.bot.command import CommandLevels |
|||
from disco.util.config import Config |
|||
|
|||
__all__ = ['Bot', 'BotConfig', 'Plugin', 'Config'] |
|||
__all__ = ['Bot', 'BotConfig', 'Plugin', 'Config', 'CommandLevels'] |
|||
|
@ -0,0 +1,18 @@ |
|||
from datetime import datetime |
|||
|
|||
DISCORD_EPOCH = 1420070400000 |
|||
|
|||
|
|||
def to_datetime(snowflake): |
|||
""" |
|||
Converts a snowflake to a UTC datetime. |
|||
""" |
|||
return datetime.utcfromtimestamp(to_unix(snowflake)) |
|||
|
|||
|
|||
def to_unix(snowflake): |
|||
return to_unix_ms(snowflake) / 1000 |
|||
|
|||
|
|||
def to_unix_ms(snowflake): |
|||
return ((int(snowflake) >> 22) + DISCORD_EPOCH) |
Loading…
Reference in new issue