2019-09-20 12:10:10 +00:00
|
|
|
import asyncdispatch, strutils, sequtils, uri
|
|
|
|
|
|
|
|
import jester
|
|
|
|
|
|
|
|
import router_utils
|
2019-09-20 23:08:30 +00:00
|
|
|
import ".."/[api, types, formatters, agents]
|
2019-09-20 13:03:18 +00:00
|
|
|
import ../views/[general, status]
|
2019-09-20 12:10:10 +00:00
|
|
|
|
|
|
|
export uri, sequtils
|
|
|
|
export router_utils
|
2019-09-20 13:03:18 +00:00
|
|
|
export api, formatters, agents
|
|
|
|
export status
|
2019-09-20 12:10:10 +00:00
|
|
|
|
|
|
|
proc createStatusRouter*(cfg: Config) =
|
|
|
|
router status:
|
|
|
|
get "/@name/status/@id":
|
|
|
|
cond '.' notin @"name"
|
|
|
|
let prefs = cookiePrefs()
|
|
|
|
|
2019-09-24 13:39:04 +00:00
|
|
|
let conversation = await getTweet(@"name", @"id", @"after", getAgent())
|
2019-09-20 12:10:10 +00:00
|
|
|
if conversation == nil or conversation.tweet.id.len == 0:
|
2019-10-07 14:47:53 +00:00
|
|
|
var error = "Tweet not found"
|
2019-09-20 12:10:10 +00:00
|
|
|
if conversation != nil and conversation.tweet.tombstone.len > 0:
|
2019-10-07 14:47:53 +00:00
|
|
|
error = conversation.tweet.tombstone
|
|
|
|
halt Http404, showError(error, cfg.title)
|
2019-09-20 12:10:10 +00:00
|
|
|
|
2019-09-20 20:56:27 +00:00
|
|
|
let
|
|
|
|
title = pageTitle(conversation.tweet.profile)
|
|
|
|
desc = conversation.tweet.text
|
|
|
|
html = renderConversation(conversation, prefs, getPath())
|
2019-09-20 12:10:10 +00:00
|
|
|
|
|
|
|
if conversation.tweet.video.isSome():
|
|
|
|
let thumb = get(conversation.tweet.video).thumb
|
|
|
|
let vidUrl = getVideoEmbed(conversation.tweet.id)
|
2019-09-20 20:56:27 +00:00
|
|
|
resp renderMain(html, request, cfg.title, title, desc, images = @[thumb],
|
2019-09-20 12:10:10 +00:00
|
|
|
`type`="video", video=vidUrl)
|
|
|
|
elif conversation.tweet.gif.isSome():
|
|
|
|
let thumb = get(conversation.tweet.gif).thumb
|
|
|
|
let vidUrl = getVideoEmbed(conversation.tweet.id)
|
2019-09-20 20:56:27 +00:00
|
|
|
resp renderMain(html, request, cfg.title, title, desc, images = @[thumb],
|
2019-09-20 12:10:10 +00:00
|
|
|
`type`="video", video=vidUrl)
|
|
|
|
else:
|
2019-09-20 20:56:27 +00:00
|
|
|
resp renderMain(html, request, cfg.title, title, desc,
|
2019-09-20 12:10:10 +00:00
|
|
|
images=conversation.tweet.photos, `type`="photo")
|
|
|
|
|
2019-09-30 20:07:41 +00:00
|
|
|
get "/@name/status/@id/photo/@i":
|
|
|
|
redirect("/$1/status/$2" % [@"name", @"id"])
|
|
|
|
|
2019-10-01 01:28:55 +00:00
|
|
|
get "/@name/status/@id/video/@i":
|
|
|
|
redirect("/$1/status/$2" % [@"name", @"id"])
|
|
|
|
|
2019-09-30 20:07:41 +00:00
|
|
|
get "/@name/statuses/@id":
|
2019-09-20 12:10:10 +00:00
|
|
|
redirect("/$1/status/$2" % [@"name", @"id"])
|
|
|
|
|
|
|
|
get "/i/web/status/@id":
|
|
|
|
redirect("/i/status/" & @"id")
|