2019-08-11 19:26:37 +00:00
|
|
|
import strutils, strformat, sequtils
|
2019-07-03 09:46:03 +00:00
|
|
|
|
|
|
|
import types
|
|
|
|
|
|
|
|
const
|
|
|
|
separators = @["AND", "OR"]
|
|
|
|
validFilters = @[
|
2019-07-04 09:55:19 +00:00
|
|
|
"media", "images", "twimg",
|
|
|
|
"native_video", "consumer_video", "pro_video",
|
|
|
|
"links", "news", "quote", "mentions",
|
|
|
|
"replies", "retweets", "nativeretweets",
|
|
|
|
"verified", "safe"
|
2019-07-03 09:46:03 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# Experimental, this might break in the future
|
|
|
|
# Till then, it results in shorter urls
|
|
|
|
const
|
|
|
|
posPrefix = "thGAVUV0VFVBa"
|
|
|
|
posSuffix = "EjUAFQAlAFUAFQAA"
|
|
|
|
|
2019-07-04 09:55:19 +00:00
|
|
|
proc initQuery*(filters, includes, excludes, separator: string; name=""): Query =
|
2019-07-03 09:46:03 +00:00
|
|
|
var sep = separator.strip().toUpper()
|
|
|
|
Query(
|
2019-07-11 17:22:23 +00:00
|
|
|
kind: custom,
|
2019-07-04 09:55:19 +00:00
|
|
|
filters: filters.split(",").filterIt(it in validFilters),
|
|
|
|
includes: includes.split(",").filterIt(it in validFilters),
|
|
|
|
excludes: excludes.split(",").filterIt(it in validFilters),
|
2019-08-06 15:41:06 +00:00
|
|
|
fromUser: @[name],
|
2019-07-04 09:55:19 +00:00
|
|
|
sep: if sep in separators: sep else: ""
|
2019-07-03 09:46:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
proc getMediaQuery*(name: string): Query =
|
|
|
|
Query(
|
2019-07-11 17:22:23 +00:00
|
|
|
kind: media,
|
2019-07-04 09:55:19 +00:00
|
|
|
filters: @["twimg", "native_video"],
|
2019-08-06 15:41:06 +00:00
|
|
|
fromUser: @[name],
|
2019-07-04 09:55:19 +00:00
|
|
|
sep: "OR"
|
2019-07-03 09:46:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
proc getReplyQuery*(name: string): Query =
|
2019-07-04 09:55:19 +00:00
|
|
|
Query(
|
2019-07-11 17:22:23 +00:00
|
|
|
kind: replies,
|
2019-07-04 09:55:19 +00:00
|
|
|
includes: @["nativeretweets"],
|
2019-08-06 15:41:06 +00:00
|
|
|
fromUser: @[name]
|
2019-07-04 09:55:19 +00:00
|
|
|
)
|
2019-07-03 09:46:03 +00:00
|
|
|
|
|
|
|
proc genQueryParam*(query: Query): string =
|
|
|
|
var filters: seq[string]
|
|
|
|
var param: string
|
|
|
|
|
2019-08-06 15:41:06 +00:00
|
|
|
for i, user in query.fromUser:
|
|
|
|
param &= &"from:{user} "
|
|
|
|
if i < query.fromUser.high:
|
|
|
|
param &= "OR "
|
2019-07-03 09:46:03 +00:00
|
|
|
|
2019-07-04 09:55:19 +00:00
|
|
|
for f in query.filters:
|
2019-07-03 09:46:03 +00:00
|
|
|
filters.add "filter:" & f
|
2019-07-04 09:55:19 +00:00
|
|
|
for i in query.includes:
|
|
|
|
filters.add "include:" & i
|
|
|
|
for e in query.excludes:
|
2019-07-03 09:46:03 +00:00
|
|
|
filters.add "-filter:" & e
|
|
|
|
|
|
|
|
return strip(param & filters.join(&" {query.sep} "))
|
|
|
|
|
|
|
|
proc genQueryUrl*(query: Query): string =
|
2019-08-08 17:19:27 +00:00
|
|
|
if query.kind == multi: return "?"
|
|
|
|
|
2019-07-11 17:22:23 +00:00
|
|
|
result = &"/{query.kind}?"
|
|
|
|
if query.kind != custom: return
|
2019-07-03 09:46:03 +00:00
|
|
|
|
|
|
|
var params: seq[string]
|
2019-07-04 09:55:19 +00:00
|
|
|
if query.filters.len > 0:
|
|
|
|
params &= "filter=" & query.filters.join(",")
|
|
|
|
if query.includes.len > 0:
|
|
|
|
params &= "include=" & query.includes.join(",")
|
|
|
|
if query.excludes.len > 0:
|
|
|
|
params &= "not=" & query.excludes.join(",")
|
2019-07-03 09:46:03 +00:00
|
|
|
if query.sep.len > 0:
|
|
|
|
params &= "sep=" & query.sep
|
|
|
|
if params.len > 0:
|
|
|
|
result &= params.join("&") & "&"
|
|
|
|
|
|
|
|
proc cleanPos*(pos: string): string =
|
|
|
|
pos.multiReplace((posPrefix, ""), (posSuffix, ""))
|
|
|
|
|
|
|
|
proc genPos*(pos: string): string =
|
|
|
|
posPrefix & pos & posSuffix
|