nitter/src/utils.nim

65 lines
1.6 KiB
Nim
Raw Normal View History

2021-12-27 01:37:38 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-06-09 13:04:38 +00:00
import strutils, strformat, sequtils, uri, tables, base64
import nimcrypto, regex
2019-06-20 14:16:20 +00:00
2020-06-09 13:04:38 +00:00
var
2020-06-22 01:50:16 +00:00
hmacKey {.threadvar.}: string
2020-06-09 13:04:38 +00:00
base64Media = false
const
https* = "https://"
twimg* = "pbs.twimg.com/"
badJpgExts = @["1500x500", "jpgn", "jpg:", "jpg_", "_jpg"]
badPngExts = @["pngn", "png:", "png_", "_png"]
twitterDomains = @[
"twitter.com",
2020-06-01 00:25:39 +00:00
"pic.twitter.com",
"twimg.com",
"abs.twimg.com",
"pbs.twimg.com",
"video.twimg.com"
]
proc setHmacKey*(key: string) =
hmacKey = key
2019-06-20 14:16:20 +00:00
2020-06-09 13:04:38 +00:00
proc setProxyEncoding*(state: bool) =
base64Media = state
2019-06-20 14:16:20 +00:00
proc getHmac*(data: string): string =
($hmac(sha256, hmacKey, data))[0 .. 12]
2019-06-20 14:16:20 +00:00
proc getVidUrl*(link: string): string =
2020-06-01 19:53:21 +00:00
if link.len == 0: return
2020-06-09 13:04:38 +00:00
let sig = getHmac(link)
if base64Media:
&"/video/enc/{sig}/{encode(link, safe=true)}"
else:
&"/video/{sig}/{encodeUrl(link)}"
proc getPicUrl*(link: string): string =
2020-06-09 13:04:38 +00:00
if base64Media:
&"/pic/enc/{encode(link, safe=true)}"
else:
&"/pic/{encodeUrl(link)}"
proc cleanFilename*(filename: string): string =
const reg = re"[^A-Za-z0-9._-]"
2019-10-21 05:22:24 +00:00
result = filename.replace(reg, "_")
2019-10-21 06:31:02 +00:00
if badJpgExts.anyIt(it in result):
2019-10-21 05:22:24 +00:00
result &= ".jpg"
2019-10-21 06:31:02 +00:00
elif badPngExts.anyIt(it in result):
result &= ".png"
proc filterParams*(params: Table): seq[(string, string)] =
const filter = ["name", "tab", "id", "list", "referer", "scroll"]
for p in params.pairs():
if p[1].len > 0 and p[0] notin filter:
result.add p
proc isTwitterUrl*(uri: Uri): bool =
uri.hostname in twitterDomains
proc isTwitterUrl*(url: string): bool =
parseUri(url).hostname in twitterDomains