mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 13:36:37 -04:00
111 lines
No EOL
4.2 KiB
JavaScript
111 lines
No EOL
4.2 KiB
JavaScript
// code lifted from: https://github.com/dylang/node-rss
|
|
//
|
|
// (The MIT License)
|
|
//
|
|
// Copyright (c) 2011 Dylan Greene <dylang@gmail.com>
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// 'Software'), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
RSS = (function() {
|
|
|
|
function RSS (options, items) {
|
|
options = options || {};
|
|
|
|
this.title = options.title || 'Untitled RSS Feed';
|
|
this.description = options.description || '';
|
|
this.feed_url = options.feed_url;
|
|
this.site_url = options.site_url;
|
|
this.image_url = options.image_url;
|
|
this.author = options.author;
|
|
this.items = items || [];
|
|
|
|
this.item = function (options) {
|
|
options = options || {};
|
|
var item = {
|
|
title: options.title || 'No title',
|
|
description: options.description || '',
|
|
url: options.url,
|
|
guid: options.guid,
|
|
categories: options.categories || [],
|
|
author: options.author,
|
|
date: options.date
|
|
};
|
|
|
|
this.items.push(item);
|
|
return this;
|
|
};
|
|
|
|
this.xml = function(indent) {
|
|
return '<?xml version="1.0" encoding="UTF-8"?>\n'
|
|
+ XML(generateXML(this), indent);
|
|
}
|
|
|
|
}
|
|
|
|
function ifTruePush(bool, array, data) {
|
|
if (bool) {
|
|
array.push(data);
|
|
}
|
|
}
|
|
|
|
function generateXML (data){
|
|
// todo: xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
|
|
|
|
var channel = [];
|
|
channel.push({ title: { _cdata: data.title } });
|
|
channel.push({ description: { _cdata: data.description || data.title } });
|
|
channel.push({ link: data.site_url || 'http://github.com/dylan/node-rss' });
|
|
// image_url set?
|
|
if (data.image_url) {
|
|
channel.push({ image: [ {url: data.image_url}, {title: data.title}, {link: data.site_url} ] });
|
|
}
|
|
channel.push({ generator: 'NodeJS RSS Module' });
|
|
channel.push({ lastBuildDate: new Date().toGMTString() });
|
|
|
|
ifTruePush(data.feed_url, channel, { 'atom:link': { _attr: { href: data.feed_url, rel: 'self', type: 'application/rss+xml' } } });
|
|
// { updated: new Date().toGMTString() }
|
|
|
|
|
|
data.items.forEach(function(item) {
|
|
var item_values = [
|
|
{ title: { _cdata: item.title } }
|
|
];
|
|
ifTruePush(item.description, item_values, { description: { _cdata: item.description } });
|
|
ifTruePush(item.url, item_values, { link: item.url });
|
|
ifTruePush(item.link || item.guid || item.title, item_values, { guid: [ { _attr: { isPermaLink: !item.guid && !!item.url } }, item.guid || item.url || item.title ] });
|
|
|
|
ifTruePush(item.author || data.author, item_values, { 'dc:creator': { _cdata: item.author || data.author } });
|
|
ifTruePush(item.date, item_values, { pubDate: new Date(item.date).toGMTString() });
|
|
channel.push({ item: item_values });
|
|
});
|
|
|
|
return { rss: [
|
|
{ _attr: {
|
|
'xmlns:dc': 'http://purl.org/dc/elements/1.1/',
|
|
'xmlns:content': 'http://purl.org/rss/1.0/modules/content/',
|
|
'xmlns:atom': 'http://www.w3.org/2005/Atom',
|
|
version: '2.0'
|
|
} },
|
|
{ channel: channel }
|
|
] };
|
|
}
|
|
|
|
return RSS;
|
|
}()); |