2021-12-27 01:37:38 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2021-01-13 13:32:26 +00:00
|
|
|
import asyncdispatch, httpclient, times, sequtils, json, math, random
|
2021-01-07 21:31:29 +00:00
|
|
|
import strutils, strformat
|
2021-12-26 05:49:27 +00:00
|
|
|
import zippy
|
2020-11-07 20:31:03 +00:00
|
|
|
import types, agents, consts, http_pool
|
2020-06-01 00:16:24 +00:00
|
|
|
|
2021-01-18 06:47:51 +00:00
|
|
|
const
|
|
|
|
expirationTime = 3.hours
|
|
|
|
maxLastUse = 1.hours
|
|
|
|
resetPeriod = 15.minutes
|
|
|
|
failDelay = initDuration(minutes=30)
|
|
|
|
|
2020-07-09 07:18:14 +00:00
|
|
|
var
|
2022-01-02 10:21:03 +00:00
|
|
|
clientPool: HttpPool
|
|
|
|
tokenPool: seq[Token]
|
2020-07-09 07:18:14 +00:00
|
|
|
lastFailed: Time
|
2021-01-13 13:32:26 +00:00
|
|
|
|
|
|
|
proc getPoolInfo*: string =
|
|
|
|
if tokenPool.len == 0: return "token pool empty"
|
|
|
|
|
|
|
|
let avg = tokenPool.mapIt(it.remaining).sum() div tokenPool.len
|
|
|
|
return &"{tokenPool.len} tokens, average remaining: {avg}"
|
|
|
|
|
|
|
|
proc rateLimitError*(): ref RateLimitError =
|
|
|
|
newException(RateLimitError, "rate limited with " & getPoolInfo())
|
2020-06-01 00:16:24 +00:00
|
|
|
|
|
|
|
proc fetchToken(): Future[Token] {.async.} =
|
2021-01-18 06:47:51 +00:00
|
|
|
if getTime() - lastFailed < failDelay:
|
2021-01-13 13:32:26 +00:00
|
|
|
raise rateLimitError()
|
2020-07-09 07:18:14 +00:00
|
|
|
|
2020-11-07 20:31:03 +00:00
|
|
|
let headers = newHttpHeaders({
|
|
|
|
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
|
2021-12-26 05:49:27 +00:00
|
|
|
"accept-encoding": "gzip",
|
2020-11-07 20:31:03 +00:00
|
|
|
"accept-language": "en-US,en;q=0.5",
|
|
|
|
"connection": "keep-alive",
|
|
|
|
"user-agent": getAgent(),
|
|
|
|
"authorization": auth
|
|
|
|
})
|
2020-06-01 00:16:24 +00:00
|
|
|
|
2020-06-24 13:02:34 +00:00
|
|
|
var
|
|
|
|
resp: string
|
2021-07-01 12:33:40 +00:00
|
|
|
tokNode: JsonNode
|
2020-06-24 13:02:34 +00:00
|
|
|
tok: string
|
2020-06-02 18:37:55 +00:00
|
|
|
|
|
|
|
try:
|
2020-11-07 20:31:03 +00:00
|
|
|
resp = clientPool.use(headers): await c.postContent(activate)
|
2021-12-26 05:49:27 +00:00
|
|
|
tokNode = parseJson(uncompress(resp))["guest_token"]
|
2021-07-01 12:33:40 +00:00
|
|
|
tok = tokNode.getStr($(tokNode.getInt))
|
2020-06-01 00:16:24 +00:00
|
|
|
|
2020-06-24 13:02:34 +00:00
|
|
|
let time = getTime()
|
2021-01-18 06:47:51 +00:00
|
|
|
result = Token(tok: tok, remaining: 187, reset: time + resetPeriod,
|
2020-06-24 13:02:34 +00:00
|
|
|
init: time, lastUse: time)
|
|
|
|
except Exception as e:
|
2020-07-09 07:18:14 +00:00
|
|
|
lastFailed = getTime()
|
2021-01-07 21:31:29 +00:00
|
|
|
echo "fetching token failed: ", e.msg
|
2020-06-01 00:16:24 +00:00
|
|
|
|
2021-01-18 06:47:51 +00:00
|
|
|
template expired(token: Token): untyped =
|
2020-06-19 07:45:24 +00:00
|
|
|
let time = getTime()
|
2021-01-18 06:47:51 +00:00
|
|
|
token.init < time - expirationTime or
|
|
|
|
token.lastUse < time - maxLastUse
|
2020-06-01 00:16:24 +00:00
|
|
|
|
2021-01-18 06:47:51 +00:00
|
|
|
template isLimited(token: Token): untyped =
|
2021-12-20 03:19:11 +00:00
|
|
|
token == nil or (token.remaining <= 5 and token.reset > getTime()) or
|
2020-06-01 00:16:24 +00:00
|
|
|
token.expired
|
|
|
|
|
2021-01-18 06:47:51 +00:00
|
|
|
proc release*(token: Token; invalid=false) =
|
|
|
|
if token != nil and (invalid or token.expired):
|
|
|
|
let idx = tokenPool.find(token)
|
|
|
|
if idx > -1: tokenPool.delete(idx)
|
2020-06-01 00:16:24 +00:00
|
|
|
|
|
|
|
proc getToken*(): Future[Token] {.async.} =
|
|
|
|
for i in 0 ..< tokenPool.len:
|
|
|
|
if not result.isLimited: break
|
2021-01-18 06:47:51 +00:00
|
|
|
release(result)
|
2021-01-13 13:32:26 +00:00
|
|
|
result = tokenPool.sample()
|
2020-06-01 00:16:24 +00:00
|
|
|
|
|
|
|
if result.isLimited:
|
2021-01-18 06:47:51 +00:00
|
|
|
release(result)
|
2020-06-01 00:16:24 +00:00
|
|
|
result = await fetchToken()
|
2021-01-13 13:32:26 +00:00
|
|
|
tokenPool.add result
|
|
|
|
|
|
|
|
if result == nil:
|
|
|
|
raise rateLimitError()
|
|
|
|
|
2020-06-01 00:16:24 +00:00
|
|
|
proc poolTokens*(amount: int) {.async.} =
|
|
|
|
var futs: seq[Future[Token]]
|
|
|
|
for i in 0 ..< amount:
|
|
|
|
futs.add fetchToken()
|
|
|
|
|
|
|
|
for token in futs:
|
2021-01-13 13:32:26 +00:00
|
|
|
var newToken: Token
|
|
|
|
|
|
|
|
try: newToken = await token
|
|
|
|
except: discard
|
|
|
|
|
|
|
|
if newToken != nil:
|
|
|
|
tokenPool.add newToken
|
2020-06-01 00:16:24 +00:00
|
|
|
|
|
|
|
proc initTokenPool*(cfg: Config) {.async.} =
|
2020-11-07 20:31:03 +00:00
|
|
|
clientPool = HttpPool()
|
|
|
|
|
2020-06-01 00:16:24 +00:00
|
|
|
while true:
|
2020-06-01 11:40:26 +00:00
|
|
|
if tokenPool.countIt(not it.isLimited) < cfg.minTokens:
|
2020-06-01 11:54:45 +00:00
|
|
|
await poolTokens(min(4, cfg.minTokens - tokenPool.len))
|
|
|
|
await sleepAsync(2000)
|