2019-06-20 14:16:20 +00:00
|
|
|
import strutils, strformat, htmlgen, xmltree
|
|
|
|
import regex
|
|
|
|
|
|
|
|
import ./types, ./utils
|
|
|
|
|
|
|
|
const
|
|
|
|
urlRegex = re"((https?|ftp)://(-\.)?([^\s/?\.#]+\.?)+(/[^\s]*)?)"
|
|
|
|
emailRegex = re"([a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+)"
|
|
|
|
usernameRegex = re"(^|[^\S\n]|\.)@([A-z0-9_]+)"
|
|
|
|
picRegex = re"pic.twitter.com/[^ ]+"
|
|
|
|
cardRegex = re"(https?://)?cards.twitter.com/[^ ]+"
|
|
|
|
ellipsisRegex = re" ?…"
|
|
|
|
|
|
|
|
proc shortLink*(text: string; length=28): string =
|
|
|
|
result = text.replace(re"https?://(www.)?", "")
|
|
|
|
if result.len > length:
|
|
|
|
result = result[0 ..< length] & "…"
|
|
|
|
|
|
|
|
proc toLink*(url, text: string; class="timeline-link"): string =
|
|
|
|
htmlgen.a(text, class=class, href=url)
|
|
|
|
|
|
|
|
proc reUrlToLink*(m: RegexMatch; s: string): string =
|
|
|
|
let url = s[m.group(0)[0]]
|
2019-06-24 06:07:36 +00:00
|
|
|
toLink(url, shortLink(url))
|
2019-06-20 14:16:20 +00:00
|
|
|
|
|
|
|
proc reEmailToLink*(m: RegexMatch; s: string): string =
|
|
|
|
let url = s[m.group(0)[0]]
|
|
|
|
toLink("mailto://" & url, url)
|
|
|
|
|
|
|
|
proc reUsernameToLink*(m: RegexMatch; s: string): string =
|
|
|
|
var
|
|
|
|
username = ""
|
|
|
|
pretext = ""
|
|
|
|
|
|
|
|
let
|
|
|
|
pre = m.group(0)
|
|
|
|
match = m.group(1)
|
|
|
|
|
|
|
|
username = s[match[0]]
|
|
|
|
|
|
|
|
if pre.len > 0:
|
|
|
|
pretext = s[pre[0]]
|
|
|
|
|
|
|
|
pretext & toLink("/" & username, "@" & username)
|
|
|
|
|
|
|
|
proc linkifyText*(text: string): string =
|
2019-06-24 06:07:36 +00:00
|
|
|
result = text.strip()
|
|
|
|
result = result.replace("\n", "<br>")
|
2019-06-20 14:16:20 +00:00
|
|
|
result = result.replace(ellipsisRegex, "")
|
|
|
|
result = result.replace(usernameRegex, reUsernameToLink)
|
|
|
|
result = result.replace(emailRegex, reEmailToLink)
|
|
|
|
result = result.replace(urlRegex, reUrlToLink)
|
2019-06-24 06:07:36 +00:00
|
|
|
result = result.replace(re"([A-z0-9])<a>", "$1 <a>")
|
2019-06-21 02:36:12 +00:00
|
|
|
result = result.replace(re"</a> ([.,\)])", "</a>$1")
|
2019-06-20 14:16:20 +00:00
|
|
|
|
|
|
|
proc stripTwitterUrls*(text: string): string =
|
|
|
|
result = text
|
|
|
|
result = result.replace(picRegex, "")
|
|
|
|
result = result.replace(cardRegex, "")
|
|
|
|
result = result.replace(ellipsisRegex, "")
|
|
|
|
|
|
|
|
proc getUserpic*(userpic: string; style=""): string =
|
|
|
|
let pic = userpic.replace(re"_(normal|bigger|mini|200x200)(\.[A-z]+)$", "$2")
|
|
|
|
pic.replace(re"(\.[A-z]+)$", style & "$1")
|
|
|
|
|
|
|
|
proc getUserpic*(profile: Profile; style=""): string =
|
|
|
|
getUserPic(profile.userpic, style)
|
|
|
|
|
2019-06-20 15:57:31 +00:00
|
|
|
proc formatName*(profile: Profile): string =
|
|
|
|
result = xmltree.escape(profile.fullname)
|
2019-06-20 14:16:20 +00:00
|
|
|
if profile.verified:
|
2019-06-20 15:57:31 +00:00
|
|
|
result &= htmlgen.span("✔", class="verified-icon")
|
2019-06-20 14:16:20 +00:00
|
|
|
elif profile.protected:
|
|
|
|
result &= " 🔒"
|
|
|
|
|
|
|
|
proc linkUser*(profile: Profile; h: string; username=true; class=""): string =
|
|
|
|
let text =
|
|
|
|
if username: "@" & profile.username
|
|
|
|
else: formatName(profile)
|
|
|
|
|
2019-06-21 00:16:10 +00:00
|
|
|
if h.len == 0:
|
2019-06-20 14:16:20 +00:00
|
|
|
return htmlgen.a(text, href = &"/{profile.username}", class=class)
|
|
|
|
|
|
|
|
let element = &"<{h} class=\"{class}\">{text}</{h}>"
|
|
|
|
htmlgen.a(element, href = &"/{profile.username}")
|