| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- #SPDX-License-Identifier: AGPL-3.0-only
- import std/[asyncdispatch, times, json, random, strutils, tables, packedsets, os]
- import types, consts
- import experimental/parser/session
- const hourInSeconds = 60 * 60
- var
- sessionPool: seq[Session]
- enableLogging = false
- # max requests at a time per session to avoid race conditions
- maxConcurrentReqs = 2
- proc setMaxConcurrentReqs*(reqs: int) =
- if reqs > 0:
- maxConcurrentReqs = reqs
- template log(str: varargs[string, `$`]) =
- echo "[sessions] ", str.join("")
- proc endpoint*(req: ApiReq; session: Session): string =
- case session.kind
- of oauth: req.oauth.endpoint
- of cookie: req.cookie.endpoint
- proc pretty*(session: Session): string =
- if session.isNil:
- return "<null>"
- if session.id > 0 and session.username.len > 0:
- result = $session.id & " (" & session.username & ")"
- elif session.username.len > 0:
- result = session.username
- elif session.id > 0:
- result = $session.id
- else:
- result = "<unknown>"
- result = $session.kind & " " & result
- proc snowflakeToEpoch(flake: int64): int64 =
- int64(((flake shr 22) + 1288834974657) div 1000)
- proc getSessionPoolHealth*(): JsonNode =
- let now = epochTime().int
- var
- totalReqs = 0
- limited: PackedSet[int64]
- reqsPerApi: Table[string, int]
- oldest = now.int64
- newest = 0'i64
- average = 0'i64
- oauthTotal, cookieTotal = 0
- oauthLimited, cookieLimited = 0
- for session in sessionPool:
- let created = snowflakeToEpoch(session.id)
- if created > newest:
- newest = created
- if created < oldest:
- oldest = created
- average += created
- case session.kind
- of oauth: inc oauthTotal
- of cookie: inc cookieTotal
- if session.limited:
- limited.incl session.id
- case session.kind
- of oauth: inc oauthLimited
- of cookie: inc cookieLimited
- for api in session.apis.keys:
- let
- apiStatus = session.apis[api]
- reqs = apiStatus.limit - apiStatus.remaining
- # no requests made with this session and endpoint since the limit reset
- if apiStatus.reset < now:
- continue
- reqsPerApi.mgetOrPut($api, 0).inc reqs
- totalReqs.inc reqs
- if sessionPool.len > 0:
- average = average div sessionPool.len
- else:
- oldest = 0
- average = 0
- return %*{
- "sessions": %*{
- "total": sessionPool.len,
- "limited": limited.card,
- "oauth": %*{"total": oauthTotal, "limited": oauthLimited},
- "cookie": %*{"total": cookieTotal, "limited": cookieLimited},
- "oldest": $fromUnix(oldest),
- "newest": $fromUnix(newest),
- "average": $fromUnix(average)
- },
- "requests": %*{
- "total": totalReqs,
- "apis": reqsPerApi
- }
- }
- proc getSessionPoolDebug*(): JsonNode =
- let now = epochTime().int
- var list = newJObject()
- for session in sessionPool:
- let sessionJson = %*{
- "kind": $session.kind,
- "apis": newJObject(),
- "pending": session.pending,
- }
- if session.limited:
- sessionJson["limited"] = %true
- for api in session.apis.keys:
- let
- apiStatus = session.apis[api]
- obj = %*{}
- if apiStatus.reset > now.int:
- obj["remaining"] = %apiStatus.remaining
- obj["reset"] = %apiStatus.reset
- if "remaining" notin obj:
- continue
- sessionJson{"apis", $api} = obj
- list[$session.id] = sessionJson
- return %list
- proc rateLimitError*(): ref RateLimitError =
- newException(RateLimitError, "rate limited")
- proc noSessionsError*(): ref NoSessionsError =
- newException(NoSessionsError, "no sessions available")
- proc isLimited(session: Session; req: ApiReq): bool =
- if session.isNil:
- return true
- let api = req.endpoint(session)
- if session.limited and api != graphUserTweetsV2:
- if (epochTime().int - session.limitedAt) > hourInSeconds:
- session.limited = false
- log "resetting limit: ", session.pretty
- return false
- else:
- return true
- if api in session.apis:
- let limit = session.apis[api]
- return limit.remaining <= 10 and limit.reset > epochTime().int
- else:
- return false
- proc isReady(session: Session; req: ApiReq): bool =
- not (session.isNil or session.pending > maxConcurrentReqs or session.isLimited(req))
- proc invalidate*(session: var Session) =
- if session.isNil: return
- log "invalidating: ", session.pretty
- # TODO: This isn't sufficient, but it works for now
- let idx = sessionPool.find(session)
- if idx > -1: sessionPool.delete(idx)
- session = nil
- proc release*(session: Session) =
- if session.isNil: return
- dec session.pending
- proc getSession*(req: ApiReq): Future[Session] {.async.} =
- for i in 0 ..< sessionPool.len:
- if result.isReady(req): break
- result = sessionPool.sample()
- if not result.isNil and result.isReady(req):
- inc result.pending
- else:
- if result.isNil:
- log "no sessions available for API: ", req.cookie.endpoint
- else:
- log "no sessions available for API: ", req.endpoint(result), ", last tried: ", result.pretty
- raise noSessionsError()
- proc setLimited*(session: Session; req: ApiReq) =
- let api = req.endpoint(session)
- session.limited = true
- session.limitedAt = epochTime().int
- log "rate limited by api: ", api, ", reqs left: ", session.apis[api].remaining, ", ", session.pretty
- proc setRateLimit*(session: Session; req: ApiReq; remaining, reset, limit: int) =
- # avoid undefined behavior in race conditions
- let api = req.endpoint(session)
- if api in session.apis:
- let rateLimit = session.apis[api]
- if rateLimit.reset >= reset and rateLimit.remaining < remaining:
- return
- if rateLimit.reset == reset and rateLimit.remaining >= remaining:
- session.apis[api].remaining = remaining
- return
- session.apis[api] = RateLimit(limit: limit, remaining: remaining, reset: reset)
- proc initSessionPool*(cfg: Config; path: string) =
- enableLogging = cfg.enableDebug
- if path.endsWith(".json"):
- log "ERROR: .json is not supported, the file must be a valid JSONL file ending in .jsonl"
- quit 1
- if not fileExists(path):
- log "ERROR: ", path, " not found. This file is required to authenticate API requests."
- quit 1
- log "parsing JSONL account sessions file: ", path
- for line in path.lines:
- sessionPool.add parseSession(line)
- log "successfully added ", sessionPool.len, " valid account sessions"
|