Refactor "withheld" parsing

This commit is contained in:
Zed 2021-12-26 06:48:55 +01:00
parent 2a40dd8059
commit 5e49e94bf1
1 changed files with 12 additions and 12 deletions

View File

@ -269,19 +269,19 @@ proc parseTweet(js: JsonNode): Tweet =
result.gif = some(parseGif(m))
else: discard
let withheldInCountries: seq[string] =
if js{"withheld_in_countries"}.kind == JArray:
js{"withheld_in_countries"}.to(seq[string])
else:
newSeq[string]()
with jsWithheld, js{"withheld_in_countries"}:
var withheldInCountries: seq[string]
if js{"withheld_copyright"}.getBool or
# XX - Content is withheld in all countries
"XX" in withheldInCountries or
# XY - Content is withheld due to a DMCA request.
"XY" in withheldInCountries or
(withheldInCountries.len > 0 and "withheld" in result.text):
result.available = false
if jsWithheld.kind == JArray:
withheldInCountries = jsWithheld.to(seq[string])
# XX - Content is withheld in all countries
# XY - Content is withheld due to a DMCA request.
if js{"withheld_copyright"}.getBool or
withheldInCountries.len > 0 and ("XX" in withheldInCountries or
"XY" in withheldInCountries or
"withheld" in result.text):
result.available = false
proc finalizeTweet(global: GlobalObjects; id: string): Tweet =
let intId = if id.len > 0: parseBiggestInt(id) else: 0