2019-09-15 07:57:45 +00:00
|
|
|
#? stdtmpl(subsChar = '$', metaChad = '#')
|
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
|
|
|
|
#
|
2020-06-10 15:52:21 +00:00
|
|
|
#proc getTitle(tweet: Tweet; prefs: Prefs; retweet: string): string =
|
2019-09-28 01:22:46 +00:00
|
|
|
#if tweet.pinned: result = "Pinned: "
|
2020-06-10 15:52:21 +00:00
|
|
|
#elif retweet.len > 0: result = &"RT by @{retweet}: "
|
|
|
|
#elif tweet.reply.len > 0: result = &"R to @{tweet.reply[0]}: "
|
2019-09-28 01:22:46 +00:00
|
|
|
#end if
|
2019-10-21 03:31:12 +00:00
|
|
|
#result &= xmltree.escape(stripHtml(tweet.text))
|
2019-09-28 01:22:46 +00:00
|
|
|
#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)
|
|
|
|
#let text = replaceUrl(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)}"
|
2020-03-09 01:02:16 +00:00
|
|
|
<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>
|
|
|
|
#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)
|
2019-09-28 01:22:46 +00:00
|
|
|
#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>
|
2019-09-28 01:22:46 +00:00
|
|
|
#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 =
|
2021-07-18 00:15:22 +00:00
|
|
|
#let prefs = Prefs(replaceTwitter: cfg.hostname, replaceYouTube: "piped.kavin.rocks")
|
2021-01-08 01:25:43 +00:00
|
|
|
#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
|
2020-11-07 22:53:49 +00:00
|
|
|
#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, prefs, cfg)}
|
|
|
|
#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 =
|
2021-07-18 00:15:22 +00:00
|
|
|
#let prefs = Prefs(replaceTwitter: cfg.hostname, replaceYouTube: "piped.kavin.rocks")
|
2021-01-08 01:25:43 +00:00
|
|
|
#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>
|
2019-09-28 01:22:46 +00:00
|
|
|
<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>
|
2019-09-28 01:22:46 +00:00
|
|
|
<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>
|
2021-01-08 01:25:43 +00:00
|
|
|
${renderRssTweets(tweets, prefs, cfg)}
|
2019-09-28 01:22:46 +00:00
|
|
|
</channel>
|
|
|
|
</rss>
|
|
|
|
#end proc
|
|
|
|
#
|
2021-01-08 01:25:43 +00:00
|
|
|
#proc renderSearchRss*(tweets: seq[Tweet]; name, param: string; cfg: Config): string =
|
2021-07-18 00:15:22 +00:00
|
|
|
#let prefs = Prefs(replaceTwitter: cfg.hostname, replaceYouTube: "piped.kavin.rocks")
|
2021-01-08 01:25:43 +00:00
|
|
|
#let link = &"{getUrlPrefix(cfg)}/search"
|
2020-06-10 15:17:17 +00:00
|
|
|
#let escName = xmltree.escape(name)
|
2019-09-28 01:22:46 +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>Search results for "${escName}"</title>
|
2019-09-28 01:22:46 +00:00
|
|
|
<link>${link}</link>
|
2021-01-08 01:25:43 +00:00
|
|
|
<description>${getDescription("Search \"" & escName & "\"", cfg)}</description>
|
2019-09-28 01:22:46 +00:00
|
|
|
<language>en-us</language>
|
|
|
|
<ttl>40</ttl>
|
2021-01-08 01:25:43 +00:00
|
|
|
${renderRssTweets(tweets, prefs, cfg)}
|
2019-09-20 23:08:30 +00:00
|
|
|
</channel>
|
|
|
|
</rss>
|
|
|
|
#end proc
|