nitter/src/routes/rss.nim

130 lines
3.8 KiB
Nim
Raw Normal View History

2020-06-05 16:27:48 +02:00
import asyncdispatch, strutils, tables, times, sequtils, hashes
import jester
import router_utils, timeline
2020-06-01 02:22:56 +02:00
import ".."/[redis_cache, query], ../views/general
include "../views/rss.nimf"
2020-06-05 16:27:48 +02:00
export times, hashes
2020-06-01 02:22:56 +02:00
2019-12-08 11:56:20 +01:00
proc showRss*(req: Request; hostname: string; query: Query): Future[(string, string)] {.async.} =
2019-12-04 05:58:18 +01:00
var profile: Profile
var timeline: Timeline
2019-12-08 11:56:20 +01:00
let
name = req.params.getOrDefault("name")
2020-06-01 02:22:56 +02:00
after = getCursor(req)
2019-12-08 11:56:20 +01:00
names = getNames(name)
2019-12-04 05:58:18 +01:00
if names.len == 1:
(profile, timeline) =
2020-06-01 02:22:56 +02:00
await fetchSingleTimeline(after, query)
2019-12-04 05:58:18 +01:00
else:
let multiQuery = query.getMultiQuery(names)
2020-06-01 02:22:56 +02:00
timeline = await getSearch[Tweet](multiQuery, after)
2019-12-04 05:58:18 +01:00
# this is kinda dumb
profile = Profile(
username: name,
fullname: names.join(" | "),
userpic: "https://abs.twimg.com/sticky/default_profile_images/default_profile.png"
)
2020-04-14 23:56:31 +02:00
if profile.suspended:
return (profile.username, "suspended")
2020-06-01 02:22:56 +02:00
if timeline.content.len > 0:
2019-12-08 11:56:20 +01:00
let rss = renderTimelineRss(timeline, profile, hostname, multi=(names.len > 1))
2020-06-01 02:22:56 +02:00
return (rss, timeline.bottom)
2019-12-08 11:56:20 +01:00
template respRss*(rss, minId) =
if rss.len == 0:
2019-10-21 07:59:22 +02:00
resp Http404, showError("User \"" & @"name" & "\" not found", cfg)
2020-04-14 23:56:31 +02:00
elif minId == "suspended":
resp Http404, showError(getSuspended(rss), cfg)
2020-06-01 02:22:56 +02:00
let headers = {"Content-Type": "application/rss+xml; charset=utf-8", "Min-Id": minId}
2019-12-08 11:56:20 +01:00
resp Http200, headers, rss
proc createRssRouter*(cfg: Config) =
router rss:
get "/search/rss":
if @"q".len > 200:
resp Http400, showError("Search input too long.", cfg)
let query = initQuery(params(request))
if query.kind != tweets:
resp Http400, showError("Only Tweet searches are allowed for RSS feeds.", cfg)
2020-06-01 02:22:56 +02:00
let
cursor = getCursor()
2020-06-05 16:27:48 +02:00
key = $hash(genQueryUrl(query)) & cursor
2020-06-01 02:22:56 +02:00
(cRss, cCursor) = await getCachedRss(key)
if cRss.len > 0:
respRss(cRss, cCursor)
let
tweets = await getSearch[Tweet](query, cursor)
rss = renderSearchRss(tweets.content, query.text, genQueryUrl(query), cfg.hostname)
await cacheRss(key, rss, tweets.bottom)
respRss(rss, tweets.bottom)
get "/@name/rss":
cond '.' notin @"name"
2020-06-01 02:22:56 +02:00
let
cursor = getCursor()
name = @"name"
(cRss, cCursor) = await getCachedRss(name & cursor)
if cRss.len > 0:
respRss(cRss, cCursor)
let (rss, rssCursor) = await showRss(request, cfg.hostname,
Query(fromUser: @[name]))
await cacheRss(name & cursor, rss, rssCursor)
respRss(rss, rssCursor)
2019-12-08 11:56:20 +01:00
get "/@name/@tab/rss":
cond '.' notin @"name"
2019-12-08 12:38:55 +01:00
cond @"tab" in ["with_replies", "media", "search"]
let name = @"name"
2019-12-08 11:56:20 +01:00
let query =
case @"tab"
of "with_replies": getReplyQuery(name)
of "media": getMediaQuery(name)
of "search": initQuery(params(request), name=name)
else: Query(fromUser: @[name])
2019-09-20 03:35:27 +02:00
2020-06-05 16:27:48 +02:00
var key = @"name" & "/" & @"tab"
if @"tab" == "search":
key &= hash(genQueryUrl(query))
key &= getCursor()
2020-06-01 02:22:56 +02:00
2020-06-05 16:27:48 +02:00
let (cRss, cCursor) = await getCachedRss(key)
2020-06-01 02:22:56 +02:00
if cRss.len > 0:
respRss(cRss, cCursor)
let (rss, rssCursor) = await showRss(request, cfg.hostname, query)
await cacheRss(key, rss, rssCursor)
respRss(rss, rssCursor)
2019-09-21 01:08:30 +02:00
get "/@name/lists/@list/rss":
cond '.' notin @"name"
2020-06-01 02:22:56 +02:00
let
cursor = getCursor()
key = @"name" & "/" & @"list" & cursor
(cRss, cCursor) = await getCachedRss(key)
if cRss.len > 0:
respRss(cRss, cCursor)
let
list = await getCachedList(@"name", @"list")
timeline = await getListTimeline(list.id, cursor)
rss = renderListRss(timeline.content, list, cfg.hostname)
await cacheRss(key, rss, timeline.bottom)
respRss(rss, timeline.bottom)