2019-09-05 20:40:36 +00:00
|
|
|
import strutils, strformat, sequtils, uri, tables
|
2019-06-23 00:46:46 +00:00
|
|
|
import nimcrypto, regex
|
2019-06-20 14:16:20 +00:00
|
|
|
|
2019-09-13 10:27:04 +00:00
|
|
|
const
|
|
|
|
key = "supersecretkey"
|
|
|
|
twitterDomains = @[
|
|
|
|
"twitter.com",
|
|
|
|
"twimg.com",
|
|
|
|
"abs.twimg.com",
|
|
|
|
"pbs.twimg.com",
|
|
|
|
"video.twimg.com"
|
|
|
|
]
|
2019-06-20 14:16:20 +00:00
|
|
|
|
|
|
|
proc getHmac*(data: string): string =
|
|
|
|
($hmac(sha256, key, data))[0 .. 12]
|
|
|
|
|
2019-09-13 10:27:04 +00:00
|
|
|
proc getVidUrl*(link: string): string =
|
2019-06-20 14:16:20 +00:00
|
|
|
let
|
|
|
|
sig = getHmac(link)
|
|
|
|
url = encodeUrl(link)
|
2019-09-13 10:27:04 +00:00
|
|
|
&"/video/{sig}/{url}"
|
|
|
|
|
|
|
|
proc getGifUrl*(link: string): string =
|
|
|
|
&"/gif/{encodeUrl(link)}"
|
|
|
|
|
|
|
|
proc getPicUrl*(link: string): string =
|
|
|
|
&"/pic/{encodeUrl(link)}"
|
2019-06-23 00:46:46 +00:00
|
|
|
|
|
|
|
proc cleanFilename*(filename: string): string =
|
|
|
|
const reg = re"[^A-Za-z0-9._-]"
|
|
|
|
filename.replace(reg, "_")
|
2019-09-05 20:40:36 +00:00
|
|
|
|
|
|
|
proc filterParams*(params: Table): seq[(string, string)] =
|
2019-10-08 11:13:53 +00:00
|
|
|
let filter = ["name", "id", "list", "referer"]
|
2019-09-19 23:52:08 +00:00
|
|
|
toSeq(params.pairs()).filterIt(it[0] notin filter and it[1].len > 0)
|
2019-09-13 10:27:04 +00:00
|
|
|
|
|
|
|
proc isTwitterUrl*(url: string): bool =
|
|
|
|
parseUri(url).hostname in twitterDomains
|