Refactor showRSS, and make it use the RSS template
This commit is contained in:
parent
69c474b966
commit
e67712ba0f
1 changed files with 66 additions and 52 deletions
118
index.php
118
index.php
|
@ -683,7 +683,7 @@ public function render404($message='The page you are trying to reach does not ex
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------
|
||||||
// Output the last N links in RSS 2.0 format.
|
// Output the last N links in RSS 2.0 format.
|
||||||
function showRSS()
|
function showRSS($pageBuilder, $linkDB)
|
||||||
{
|
{
|
||||||
header('Content-Type: application/rss+xml; charset=utf-8');
|
header('Content-Type: application/rss+xml; charset=utf-8');
|
||||||
|
|
||||||
|
@ -693,11 +693,11 @@ function showRSS()
|
||||||
$usepermalinks = isset($_GET['permalinks']) || !$GLOBALS['config']['ENABLE_RSS_PERMALINKS'];
|
$usepermalinks = isset($_GET['permalinks']) || !$GLOBALS['config']['ENABLE_RSS_PERMALINKS'];
|
||||||
|
|
||||||
// Cache system
|
// Cache system
|
||||||
$query = $_SERVER["QUERY_STRING"];
|
$query = $_SERVER['QUERY_STRING'];
|
||||||
$cache = new CachedPage(
|
$cache = new CachedPage(
|
||||||
$GLOBALS['config']['PAGECACHE'],
|
$GLOBALS['config']['PAGECACHE'],
|
||||||
page_url($_SERVER),
|
page_url($_SERVER),
|
||||||
startsWith($query,'do=rss') && !isLoggedIn()
|
startsWith($query, 'do=rss') && !isLoggedIn()
|
||||||
);
|
);
|
||||||
$cached = $cache->cachedVersion();
|
$cached = $cache->cachedVersion();
|
||||||
if (! empty($cached)) {
|
if (! empty($cached)) {
|
||||||
|
@ -705,32 +705,23 @@ function showRSS()
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If cached was not found (or not usable), then read the database and build the response:
|
|
||||||
$LINKSDB = new LinkDB(
|
|
||||||
$GLOBALS['config']['DATASTORE'],
|
|
||||||
isLoggedIn(),
|
|
||||||
$GLOBALS['config']['HIDE_PUBLIC_LINKS'],
|
|
||||||
$GLOBALS['redirector']
|
|
||||||
);
|
|
||||||
// Read links from database (and filter private links if user it not logged in).
|
|
||||||
|
|
||||||
// Optionally filter the results:
|
// Optionally filter the results:
|
||||||
$searchtags = !empty($_GET['searchtags']) ? escape($_GET['searchtags']) : '';
|
$searchtags = !empty($_GET['searchtags']) ? escape($_GET['searchtags']) : '';
|
||||||
$searchterm = !empty($_GET['searchterm']) ? escape($_GET['searchterm']) : '';
|
$searchterm = !empty($_GET['searchterm']) ? escape($_GET['searchterm']) : '';
|
||||||
if (! empty($searchtags) && ! empty($searchterm)) {
|
if (! empty($searchtags) && ! empty($searchterm)) {
|
||||||
$linksToDisplay = $LINKSDB->filter(
|
$linksToDisplay = $linkDB->filter(
|
||||||
LinkFilter::$FILTER_TAG | LinkFilter::$FILTER_TEXT,
|
LinkFilter::$FILTER_TAG | LinkFilter::$FILTER_TEXT,
|
||||||
array($searchtags, $searchterm)
|
array($searchtags, $searchterm)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
elseif ($searchtags) {
|
elseif ($searchtags) {
|
||||||
$linksToDisplay = $LINKSDB->filter(LinkFilter::$FILTER_TAG, $searchtags);
|
$linksToDisplay = $linkDB->filter(LinkFilter::$FILTER_TAG, $searchtags);
|
||||||
}
|
}
|
||||||
elseif ($searchterm) {
|
elseif ($searchterm) {
|
||||||
$linksToDisplay = $LINKSDB->filter(LinkFilter::$FILTER_TEXT, $searchterm);
|
$linksToDisplay = $linkDB->filter(LinkFilter::$FILTER_TEXT, $searchterm);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$linksToDisplay = $LINKSDB;
|
$linksToDisplay = $linkDB;
|
||||||
}
|
}
|
||||||
|
|
||||||
$nblinksToDisplay = 50; // Number of links to display.
|
$nblinksToDisplay = 50; // Number of links to display.
|
||||||
|
@ -739,50 +730,63 @@ function showRSS()
|
||||||
$nblinksToDisplay = $_GET['nb'] == 'all' ? count($linksToDisplay) : max(intval($_GET['nb']), 1);
|
$nblinksToDisplay = $_GET['nb'] == 'all' ? count($linksToDisplay) : max(intval($_GET['nb']), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
$pageaddr = escape(index_url($_SERVER));
|
$keys = array();
|
||||||
echo '<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">';
|
foreach ($linksToDisplay as $key=>$value) {
|
||||||
echo '<channel><title>'.$GLOBALS['title'].'</title><link>'.$pageaddr.'</link>';
|
$keys[] = $key; // No, I can't use array_keys().
|
||||||
echo '<description>Shared links</description><language>en-en</language><copyright>'.$pageaddr.'</copyright>'."\n\n";
|
|
||||||
if (!empty($GLOBALS['config']['PUBSUBHUB_URL']))
|
|
||||||
{
|
|
||||||
echo '<!-- PubSubHubbub Discovery -->';
|
|
||||||
echo '<link rel="hub" href="'.escape($GLOBALS['config']['PUBSUBHUB_URL']).'" xmlns="http://www.w3.org/2005/Atom" />';
|
|
||||||
echo '<link rel="self" href="'.$pageaddr.'?do=rss" xmlns="http://www.w3.org/2005/Atom" />';
|
|
||||||
echo '<!-- End Of PubSubHubbub Discovery -->';
|
|
||||||
}
|
}
|
||||||
$i=0;
|
|
||||||
$keys=array(); foreach($linksToDisplay as $key=>$value) { $keys[]=$key; } // No, I can't use array_keys().
|
$pageaddr = escape(index_url($_SERVER));
|
||||||
while ($i<$nblinksToDisplay && $i<count($keys))
|
$latestDate = '';
|
||||||
|
$i = 0;
|
||||||
|
$linkDisp = array();
|
||||||
|
while ($i < $nblinksToDisplay && $i < count($keys))
|
||||||
{
|
{
|
||||||
$link = $linksToDisplay[$keys[$i]];
|
$link = $linksToDisplay[$keys[$i]];
|
||||||
$guid = $pageaddr.'?'.smallHash($link['linkdate']);
|
$link['guid'] = $pageaddr. '?' .smallHash($link['linkdate']);
|
||||||
$date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']);
|
// Check for both signs of a note: starting with ? and 7 chars long.
|
||||||
$absurl = $link['url'];
|
if ($link['url'][0] === '?' && strlen($link['url']) === 7) {
|
||||||
if (startsWith($absurl,'?')) $absurl=$pageaddr.$absurl; // make permalink URL absolute
|
$link['url'] = $pageaddr . $link['url'];
|
||||||
if ($usepermalinks===true)
|
|
||||||
echo '<item><title>'.$link['title'].'</title><guid isPermaLink="true">'.$guid.'</guid><link>'.$guid.'</link>';
|
|
||||||
else
|
|
||||||
echo '<item><title>'.$link['title'].'</title><guid isPermaLink="false">'.$guid.'</guid><link>'.$absurl.'</link>';
|
|
||||||
if (!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()) {
|
|
||||||
echo '<pubDate>'.escape($date->format(DateTime::RSS))."</pubDate>\n";
|
|
||||||
}
|
}
|
||||||
if ($link['tags']!='') // Adding tags to each RSS entry (as mentioned in RSS specification)
|
if ($usepermalinks) {
|
||||||
{
|
$permalink = '<a href="'. $link['url'] .'" title="Direct link">Direct link</a>';
|
||||||
foreach(explode(' ',$link['tags']) as $tag) { echo '<category domain="'.$pageaddr.'">'.$tag.'</category>'."\n"; }
|
} else {
|
||||||
|
$permalink = '<a href="'. $link['guid'] .'" title="Permalink">Permalink</a>';
|
||||||
}
|
}
|
||||||
|
$link['description'] = format_description($link['description']) . PHP_EOL .'<br>— '. $permalink;
|
||||||
|
|
||||||
// Add permalink in description
|
$date = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $link['linkdate']);
|
||||||
$descriptionlink = '(<a href="'.$guid.'">Permalink</a>)';
|
$link['iso_date'] = $date->format(DateTime::RSS);
|
||||||
// If user wants permalinks first, put the final link in description
|
$latestDate = max($latestDate, $link['iso_date']);
|
||||||
if ($usepermalinks===true) $descriptionlink = '(<a href="'.$absurl.'">Link</a>)';
|
$taglist = array_filter(explode(' ', $link['tags']), 'strlen');
|
||||||
if (strlen($link['description'])>0) $descriptionlink = '<br>'.$descriptionlink;
|
uasort($taglist, 'strcasecmp');
|
||||||
echo '<description><![CDATA['.
|
$link['taglist'] = $taglist;
|
||||||
format_description($link['description'], $GLOBALS['redirector']) .
|
|
||||||
$descriptionlink . ']]></description>' . "\n</item>\n";
|
$linkDisp[$keys[$i]] = $link;
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
echo '</channel></rss><!-- Cached version of '.escape(page_url($_SERVER)).' -->';
|
|
||||||
|
|
||||||
|
$data = array();
|
||||||
|
if (!empty($GLOBALS['config']['PUBSUBHUB_URL'])) {
|
||||||
|
$data['pubsubhub_url'] = escape($GLOBALS['config']['PUBSUBHUB_URL']);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use the locale do define the language, if available.
|
||||||
|
$locale = strtolower(setlocale(LC_COLLATE, 0));
|
||||||
|
if (! empty($locale) && preg_match('/^\w{2}[_\-]\w{2}/', $locale)) {
|
||||||
|
$data['language'] = str_replace('_', '-', substr($locale, 0, 5));
|
||||||
|
} else {
|
||||||
|
$data['language'] = 'en-en';
|
||||||
|
}
|
||||||
|
$data['last_update'] = escape($latestDate);
|
||||||
|
$data['show_dates'] = !$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn();
|
||||||
|
// Remove starting slash from REQUEST_URI.
|
||||||
|
$data['self_link'] = escape($pageaddr . substr($_SERVER['REQUEST_URI'], 1));
|
||||||
|
$data['index_url'] = escape($pageaddr);
|
||||||
|
$data['usepermalinks'] = $usepermalinks;
|
||||||
|
$data['links'] = $linkDisp;
|
||||||
|
|
||||||
|
$pageBuilder->assignAll($data);
|
||||||
|
$pageBuilder->renderPage('feed.rss', false);
|
||||||
$cache->cache(ob_get_contents());
|
$cache->cache(ob_get_contents());
|
||||||
ob_end_flush();
|
ob_end_flush();
|
||||||
exit;
|
exit;
|
||||||
|
@ -889,6 +893,12 @@ function showATOM($pageBuilder, $linkDB)
|
||||||
$data['usepermalinks'] = $usepermalinks;
|
$data['usepermalinks'] = $usepermalinks;
|
||||||
$data['links'] = $linkDisp;
|
$data['links'] = $linkDisp;
|
||||||
|
|
||||||
|
$pluginManager = PluginManager::getInstance();
|
||||||
|
$pluginManager->executeHooks('render_feed', $data, array(
|
||||||
|
'loggedin' => isLoggedIn(),
|
||||||
|
'target' => Router::$PAGE_ATOM,
|
||||||
|
));
|
||||||
|
|
||||||
$pageBuilder->assignAll($data);
|
$pageBuilder->assignAll($data);
|
||||||
$pageBuilder->renderPage('feed.atom', false);
|
$pageBuilder->renderPage('feed.atom', false);
|
||||||
$cache->cache(ob_get_contents());
|
$cache->cache(ob_get_contents());
|
||||||
|
@ -1277,6 +1287,11 @@ function renderPage()
|
||||||
showATOM($PAGE, $LINKSDB);
|
showATOM($PAGE, $LINKSDB);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RSS feed.
|
||||||
|
if ($targetPage == Router::$PAGE_RSS) {
|
||||||
|
showRSS($PAGE, $LINKSDB);
|
||||||
|
}
|
||||||
|
|
||||||
// Display openseach plugin (XML)
|
// Display openseach plugin (XML)
|
||||||
if ($targetPage == Router::$PAGE_OPENSEARCH) {
|
if ($targetPage == Router::$PAGE_OPENSEARCH) {
|
||||||
header('Content-Type: application/xml; charset=utf-8');
|
header('Content-Type: application/xml; charset=utf-8');
|
||||||
|
@ -2601,7 +2616,6 @@ function resizeImage($filepath)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($_SERVER["QUERY_STRING"]) && startswith($_SERVER["QUERY_STRING"],'do=genthumbnail')) { genThumbnail(); exit; } // Thumbnail generation/cache does not need the link database.
|
if (isset($_SERVER["QUERY_STRING"]) && startswith($_SERVER["QUERY_STRING"],'do=genthumbnail')) { genThumbnail(); exit; } // Thumbnail generation/cache does not need the link database.
|
||||||
if (isset($_SERVER["QUERY_STRING"]) && startswith($_SERVER["QUERY_STRING"],'do=rss')) { showRSS(); exit; }
|
|
||||||
if (isset($_SERVER["QUERY_STRING"]) && startswith($_SERVER["QUERY_STRING"],'do=dailyrss')) { showDailyRSS(); exit; }
|
if (isset($_SERVER["QUERY_STRING"]) && startswith($_SERVER["QUERY_STRING"],'do=dailyrss')) { showDailyRSS(); exit; }
|
||||||
if (!isset($_SESSION['LINKS_PER_PAGE'])) $_SESSION['LINKS_PER_PAGE']=$GLOBALS['config']['LINKS_PER_PAGE'];
|
if (!isset($_SESSION['LINKS_PER_PAGE'])) $_SESSION['LINKS_PER_PAGE']=$GLOBALS['config']['LINKS_PER_PAGE'];
|
||||||
renderPage();
|
renderPage();
|
||||||
|
|
Loading…
Reference in a new issue