2 Stylesheet to convert Pump.io activity streams to RSS.
4 Copyright (C) 2013-2018 Antonio Ospite <ao2@ao2.it>
6 This file is part of tweeper.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 <!-- To Evan, please reconsider publishing RSS ouput for _public_ contents -->
22 <xsl:stylesheet version="1.0"
23 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
24 xmlns:php="http://php.net/xsl"
25 exclude-result-prefixes="php">
27 <xsl:param name="generate-enclosure"/>
28 <xsl:param name="show-usernames"/>
30 <xsl:output method="xml" indent="yes"/>
32 <xsl:variable name="domain-name" select="substring-after(//div[@id='profile-block']/@data-profile-id, '@')"/>
33 <xsl:variable name="BaseURL" select="concat('https://', $domain-name)"/>
35 <xsl:variable name="user-name" select="substring-after(//div[@id='profile-block']/@data-profile-id, ':')"/>
37 <xsl:template match="//div[@id='user-content-activities']//ul[@id='major-stream']/li">
38 <xsl:variable name="item-content" select=".//div[@class='activity-content']"/>
39 <xsl:variable name="item-permalink" select=".//p[@class='muted']/small/a/@href"/>
42 <xsl:if test="$show-usernames = 1">
43 <xsl:value-of select="concat($user-name, ': ')"/>
45 <xsl:value-of select="normalize-space($item-content)"/>
48 <xsl:value-of select="$item-permalink"/>
51 <xsl:value-of select="$item-permalink"/>
54 <xsl:value-of select="php:functionString('Tweeper\Tweeper::strToRssDate', .//abbr[@class='easydate']/@title)"/>
57 <xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
58 <xsl:if test="$show-usernames = 1">
59 <xsl:value-of select="concat($user-name, ': ')"/>
61 <xsl:copy-of select="$item-content/node()"/>
62 <xsl:text disable-output-escaping="yes">]]></xsl:text>
64 <xsl:if test="$generate-enclosure = 1">
65 <xsl:variable name="image-thumb-link" select=".//img[contains(@class, 'object-image')]/@src"/>
66 <xsl:if test="$image-thumb-link">
67 <xsl:variable name="image-link" select="php:functionString('str_replace', '_thumb', '', $image-thumb-link)"/>
68 <xsl:copy-of select="php:functionString('Tweeper\Tweeper::generateEnclosure', $image-link)"/>
74 <xsl:template match="/">
75 <xsl:variable name="channel-title" select="concat(substring-after($user-name, '@'), ' / ', substring-before($user-name, '@'))"/>
76 <xsl:variable name="channel-link" select="concat('https://', substring-after($user-name, '@'), '/', substring-before($user-name, '@'))"/>
79 <xsl:attribute name="xml:base"><xsl:value-of select="$BaseURL" /></xsl:attribute>
81 <generator>Tweeper</generator>
83 <xsl:value-of select="$channel-title"/>
86 <xsl:value-of select="$channel-link"/>
89 <xsl:value-of select="normalize-space(//h1[@class='media-header'])"/>
93 <xsl:value-of select="$channel-title"/>
96 <xsl:value-of select="$channel-link"/>
99 <xsl:value-of select="//div[@id='profile-block']/span/img[contains(@class, 'img-rounded media-object')]/@src"/>
102 <xsl:apply-templates select="//div[@id='user-content-activities']//ul[@id='major-stream']/li"/>