mirror of https://gitlab.com/litecord/litecord.git
56 lines
1.2 KiB
Python
56 lines
1.2 KiB
Python
import time
|
|
|
|
from quart import Blueprint, jsonify, current_app as app
|
|
|
|
from ..auth import token_check
|
|
|
|
bp = Blueprint('gateway', __name__)
|
|
|
|
|
|
def get_gw():
|
|
"""Get the gateway's web"""
|
|
proto = 'wss://' if app.config['IS_SSL'] else 'ws://'
|
|
return f'{proto}{app.config["WEBSOCKET_URL"]}/ws'
|
|
|
|
|
|
@bp.route('/gateway')
|
|
def api_gateway():
|
|
"""Get the raw URL."""
|
|
return jsonify({
|
|
'url': get_gw()
|
|
})
|
|
|
|
|
|
@bp.route('/gateway/bot')
|
|
async def api_gateway_bot():
|
|
user_id = await token_check()
|
|
|
|
guild_count = await app.db.fetchval("""
|
|
SELECT COUNT(*)
|
|
FROM members
|
|
WHERE user_id = $1
|
|
""", user_id)
|
|
|
|
shards = max(int(guild_count / 1000), 1)
|
|
|
|
# get _ws.session ratelimit
|
|
ratelimit = app.ratelimiter.get_ratelimit('_ws.session')
|
|
bucket = ratelimit.get_bucket(user_id)
|
|
|
|
# timestamp of bucket reset
|
|
reset_ts = bucket._window + bucket.second
|
|
|
|
# how many seconds until bucket reset
|
|
reset_after_ts = reset_ts - time.time()
|
|
|
|
return jsonify({
|
|
'url': get_gw(),
|
|
'shards': shards,
|
|
|
|
'session_start_limit': {
|
|
'total': bucket.requests,
|
|
'remaining': bucket._tokens,
|
|
'reset_after': int(reset_after_ts * 1000),
|
|
}
|
|
})
|