nitter/src/views/rss.nimf

163 lines
5.6 KiB
Plaintext
Raw Normal View History

2021-12-27 01:43:27 +00:00
#? stdtmpl(subsChar = '$', metaChar = '#')
## SPDX-License-Identifier: AGPL-3.0-only
#import strutils, xmltree, strformat, options, unicode
#import ../types, ../utils, ../formatters, ../prefs
2019-09-15 07:57:45 +00:00
#
#proc getTitle(tweet: Tweet; 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
#var text = stripHtml(tweet.text)
##if unicode.runeLen(text) > 32:
## text = unicode.runeSubStr(text, 0, 32) & "..."
##end if
#result &= xmltree.escape(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; 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)
#let text = replaceUrls(tweet.text, defaultPrefs, absolute=urlPrefix)
<p>${text.replace("\n", "<br>\n")}</p>
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><a href="${urlPrefix}${quoteLink}">${cfg.hostname}${quoteLink}</a></p>
2019-09-15 07:57:45 +00:00
#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;">
2022-02-11 07:50:32 +00:00
<source src="${url}" type="video/mp4"></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
#
2023-07-11 23:34:39 +00:00
#proc renderRssTweets(tweets: seq[Tweets]; cfg: Config; userId=""): string =
2021-01-08 01:25:43 +00:00
#let urlPrefix = getUrlPrefix(cfg)
#var links: seq[string]
2023-07-11 23:34:39 +00:00
#for thread in tweets:
# for tweet in thread:
# if userId.len > 0 and tweet.user.id != userId: continue
# end if
#
2023-07-11 23:34:39 +00:00
# let retweet = if tweet.retweet.isSome: tweet.user.username else: ""
# let tweet = if retweet.len > 0: tweet.retweet.get else: tweet
# let link = getLink(tweet)
# if link in links: continue
# end if
# links.add link
<item>
<title>${getTitle(tweet, retweet)}</title>
<dc:creator>@${tweet.user.username}</dc:creator>
<description><![CDATA[${renderRssTweet(tweet, cfg).strip(chars={'\n'})}]]></description>
<pubDate>${getRfc822Time(tweet)}</pubDate>
<guid>${urlPrefix & link}</guid>
<link>${urlPrefix & link}</link>
</item>
# end for
#end for
2019-09-15 07:57:45 +00:00
#end proc
#
#proc renderTimelineRss*(profile: Profile; cfg: Config; tab, param: string; multi=false): string =
2021-01-08 01:25:43 +00:00
#let urlPrefix = getUrlPrefix(cfg)
#var atomLink = &"{urlPrefix}/{profile.user.username}"
#var link = &"{urlPrefix}/{profile.user.username}"
#if tab != "":
# atomLink &= "/" & tab
# link &= "/" & tab
#end if
#atomLink &= "/rss"
#if param != "":
# let escParam = xmltree.escape(param)
# atomLink &= "?" & escParam
# link &= "?" & escParam
#end if
2019-09-15 07:57:45 +00:00
#result = ""
#let handle = (if multi: "" else: "@") & profile.user.username
#var title = profile.user.fullname
#if not multi: title &= " / " & handle
2019-12-04 04:58:18 +00:00
#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>
<atom:link href="${atomLink}" rel="self" type="application/rss+xml" />
2019-12-04 04:58:18 +00:00
<title>${title}</title>
<link>${link}</link>
<description>${getDescription(handle, 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>
<link>${urlPrefix}/${profile.user.username}</link>
<url>${urlPrefix}${getPicUrl(profile.user.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>
#if profile.tweets.content.len > 0:
${renderRssTweets(profile.tweets.content, cfg, userId=profile.user.id)}
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
#
2023-07-11 23:34:39 +00:00
#proc renderListRss*(tweets: seq[Tweets]; list: List; cfg: Config): string =
2021-10-02 08:13:56 +00:00
#let link = &"{getUrlPrefix(cfg)}/i/lists/{list.id}"
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>
2022-06-04 00:18:26 +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, cfg)}
</channel>
</rss>
#end proc
#
2023-07-11 23:34:39 +00:00
#proc renderSearchRss*(tweets: seq[Tweets]; name, param: string; cfg: Config): string =
#let urlPrefix = getUrlPrefix(cfg)
2020-06-10 15:17:17 +00:00
#let escName = xmltree.escape(name)
#let escParam = xmltree.escape(param)
#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="${urlPrefix}/search/rss?${escParam}" rel="self" type="application/rss+xml" />
2020-06-10 15:17:17 +00:00
<title>Search results for "${escName}"</title>
<link>${urlPrefix}/search?${escParam}</link>
2022-06-04 00:18:26 +00:00
<description>${getDescription(&"Search \"{escName}\"", cfg)}</description>
<language>en-us</language>
<ttl>40</ttl>
${renderRssTweets(tweets, cfg)}
2019-09-20 23:08:30 +00:00
</channel>
</rss>
#end proc