nitter/src/views/rss.nimf

149 lines
5.3 KiB
Plaintext
Raw Normal View History

2021-12-27 01:43:27 +00:00
#? stdtmpl(subsChar = '$', metaChar = '#')
## SPDX-License-Identifier: AGPL-3.0-only
2019-10-26 13:34:30 +00:00
#import strutils, xmltree, strformat, options
2019-09-15 07:57:45 +00:00
#import ../types, ../utils, ../formatters
#
#proc getPrefs(cfg: Config): Prefs =
#result.replaceTwitter = cfg.replaceTwitter
#result.replaceYouTube = cfg.replaceYouTube
#result.replaceReddit = cfg.replaceReddit
#result.replaceInstagram = cfg.replaceInstagram
#end proc
#
#proc getTitle(tweet: Tweet; prefs: Prefs; retweet: string): string =
#if tweet.pinned: result = "Pinned: "
#elif retweet.len > 0: result = &"RT by @{retweet}: "
#elif tweet.reply.len > 0: result = &"R to @{tweet.reply[0]}: "
#end if
2019-10-21 03:31:12 +00:00
#result &= xmltree.escape(stripHtml(tweet.text))
#if result.len > 0: return
#end if
#if tweet.photos.len > 0:
# result &= "Image"
#elif tweet.video.isSome:
# result &= "Video"
#elif tweet.gif.isSome:
# result &= "Gif"
#end if
#end proc
#
2021-01-08 01:25:43 +00:00
#proc getDescription(desc: string; cfg: Config): string =
Twitter feed for: ${desc}. Generated by ${cfg.hostname}
#end proc
#
#proc renderRssTweet(tweet: Tweet; prefs: Prefs; cfg: Config): string =
2020-06-01 03:50:59 +00:00
#let tweet = tweet.retweet.get(tweet)
2021-01-08 01:25:43 +00:00
#let urlPrefix = getUrlPrefix(cfg)
2021-12-27 01:27:49 +00:00
#let text = replaceUrls(tweet.text, prefs, absolute=urlPrefix)
2019-09-15 07:57:45 +00:00
#if tweet.quote.isSome and get(tweet.quote).available:
2021-01-08 01:25:43 +00:00
# let quoteLink = getLink(get(tweet.quote))
<p>${text}<br><a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></p>
2019-09-15 07:57:45 +00:00
#else:
<p>${text}</p>
#end if
#if tweet.photos.len > 0:
2021-01-08 01:25:43 +00:00
# for photo in tweet.photos:
<img src="${urlPrefix}${getPicUrl(photo)}" style="max-width:250px;" />
# end for
2019-09-15 07:57:45 +00:00
#elif tweet.video.isSome:
2021-01-08 01:25:43 +00:00
<img src="${urlPrefix}${getPicUrl(get(tweet.video).thumb)}" style="max-width:250px;" />
2019-09-15 07:57:45 +00:00
#elif tweet.gif.isSome:
2021-01-08 01:25:43 +00:00
# let thumb = &"{urlPrefix}{getPicUrl(get(tweet.gif).thumb)}"
# let url = &"{urlPrefix}{getPicUrl(get(tweet.gif).url)}"
<video poster="${thumb}" autoplay muted loop style="max-width:250px;">
2019-09-15 07:57:45 +00:00
<source src="${url}" type="video/mp4"</source></video>
#elif tweet.card.isSome:
# let card = tweet.card.get()
# if card.image.len > 0:
<img src="${urlPrefix}${getPicUrl(card.image)}" style="max-width:250px;" />
# end if
2019-09-15 07:57:45 +00:00
#end if
#end proc
#
2021-01-08 01:25:43 +00:00
#proc renderRssTweets(tweets: seq[Tweet]; prefs: Prefs; cfg: Config): string =
#let urlPrefix = getUrlPrefix(cfg)
#var links: seq[string]
2020-06-01 03:50:59 +00:00
#for t in tweets:
2021-01-08 01:25:43 +00:00
# let retweet = if t.retweet.isSome: t.profile.username else: ""
# let tweet = if retweet.len > 0: t.retweet.get else: t
# let link = getLink(tweet)
# if link in links: continue
# end if
# links.add link
<item>
<title>${getTitle(tweet, prefs, retweet)}</title>
<dc:creator>@${tweet.profile.username}</dc:creator>
<description><![CDATA[${renderRssTweet(tweet, prefs, cfg).strip(chars={'\n'})}]]></description>
<pubDate>${getRfc822Time(tweet)}</pubDate>
<guid>${urlPrefix & link}</guid>
<link>${urlPrefix & link}</link>
</item>
#end for
2019-09-15 07:57:45 +00:00
#end proc
#
2021-01-08 01:25:43 +00:00
#proc renderTimelineRss*(timeline: Timeline; profile: Profile; cfg: Config; multi=false): string =
#let urlPrefix = getUrlPrefix(cfg)
2019-09-15 07:57:45 +00:00
#result = ""
2019-12-04 04:58:18 +00:00
#let user = (if multi: "" else: "@") & profile.username
#var title = profile.fullname
#if not multi: title &= " / " & user
#end if
#title = xmltree.escape(title).sanitizeXml
2019-09-15 07:57:45 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2019-09-15 09:14:03 +00:00
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
2019-09-15 07:57:45 +00:00
<channel>
2021-01-08 01:25:43 +00:00
<atom:link href="${urlPrefix}/${profile.username}/rss" rel="self" type="application/rss+xml" />
2019-12-04 04:58:18 +00:00
<title>${title}</title>
2021-01-08 01:25:43 +00:00
<link>${urlPrefix}/${profile.username}</link>
<description>${getDescription(user, cfg)}</description>
2019-09-15 07:57:45 +00:00
<language>en-us</language>
<ttl>40</ttl>
<image>
2019-12-04 04:58:18 +00:00
<title>${title}</title>
2021-01-08 01:25:43 +00:00
<link>${urlPrefix}/${profile.username}</link>
<url>${urlPrefix}${getPicUrl(profile.getUserPic(style="_400x400"))}</url>
2019-09-15 09:14:03 +00:00
<width>128</width>
<height>128</height>
2019-09-15 07:57:45 +00:00
</image>
2021-01-08 01:25:43 +00:00
#if timeline.content.len > 0:
${renderRssTweets(timeline.content, getPrefs(cfg), cfg)}
2021-01-08 01:25:43 +00:00
#end if
2019-09-15 07:57:45 +00:00
</channel>
</rss>
#end proc
2019-09-20 23:08:30 +00:00
#
2021-01-08 01:25:43 +00:00
#proc renderListRss*(tweets: seq[Tweet]; list: List; cfg: Config): string =
#let link = &"{getUrlPrefix(cfg)}/{list.username}/lists/{list.name}"
2019-09-20 23:08:30 +00:00
#result = ""
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<atom:link href="${link}" rel="self" type="application/rss+xml" />
2020-06-10 15:17:17 +00:00
<title>${xmltree.escape(list.name)} / @${list.username}</title>
<link>${link}</link>
2021-01-08 01:25:43 +00:00
<description>${getDescription(list.name & " by @" & list.username, cfg)}</description>
2019-09-20 23:08:30 +00:00
<language>en-us</language>
<ttl>40</ttl>
${renderRssTweets(tweets, getPrefs(cfg), cfg)}
</channel>
</rss>
#end proc
#
2021-01-08 01:25:43 +00:00
#proc renderSearchRss*(tweets: seq[Tweet]; name, param: string; cfg: Config): string =
#let link = &"{getUrlPrefix(cfg)}/search"
2020-06-10 15:17:17 +00:00
#let escName = xmltree.escape(name)
#result = ""
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<atom:link href="${link}" rel="self" type="application/rss+xml" />
2020-06-10 15:17:17 +00:00
<title>Search results for "${escName}"</title>
<link>${link}</link>
2021-01-08 01:25:43 +00:00
<description>${getDescription("Search \"" & escName & "\"", cfg)}</description>
<language>en-us</language>
<ttl>40</ttl>
${renderRssTweets(tweets, getPrefs(cfg), cfg)}
2019-09-20 23:08:30 +00:00
</channel>
</rss>
#end proc