mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 20:16:19 +00:00
Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
83f2045b23 | ||
|
|
01aa654b03 | ||
|
|
c676a924b0 | ||
|
|
7aceeeaa36 | ||
|
|
9cccd65768 | ||
|
|
812a429d9b | ||
|
|
15c9715cee | ||
|
|
816b6b5690 | ||
|
|
ef90f974bd | ||
|
|
8aa086865d | ||
|
|
6d3cd71f47 | ||
|
|
ec44f8e5d3 | ||
|
|
7770e925fd | ||
|
|
9864d6408a | ||
|
|
3d5258a6c7 | ||
|
|
a8e4ba436c | ||
|
|
acd60d5922 | ||
| cfea55ea4c | |||
|
|
93815ec708 | ||
|
|
c5a7ff6e1c | ||
|
|
2d3f75902f | ||
|
|
d896040f63 | ||
|
|
8645a88b01 | ||
|
|
c65b6ccc12 | ||
|
|
4b0f033aa9 | ||
|
|
86678c6448 |
5
.codeclimate.yml
Normal file
5
.codeclimate.yml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
plugins:
|
||||||
|
eslint:
|
||||||
|
enabled: true
|
||||||
|
config:
|
||||||
|
config: .eslintrc.json
|
||||||
@@ -23,6 +23,12 @@
|
|||||||
"semi": [
|
"semi": [
|
||||||
"error",
|
"error",
|
||||||
"always"
|
"always"
|
||||||
]
|
],
|
||||||
|
"no-var": "error",
|
||||||
|
"no-multi-spaces": "error",
|
||||||
|
"space-in-parens": "error",
|
||||||
|
"no-multiple-empty-lines": "error",
|
||||||
|
"prefer-const": "error",
|
||||||
|
"no-use-before-define": "error"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
|||||||
node_modules
|
node_modules
|
||||||
package-lock.json
|
package-lock.json
|
||||||
*.log
|
*.log
|
||||||
|
coverage/
|
||||||
15
.travis.yml
15
.travis.yml
@@ -1,13 +1,16 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
sudo: false
|
sudo: false
|
||||||
|
addons:
|
||||||
|
code_climate:
|
||||||
|
repo_token:
|
||||||
|
secure: "Lz3KeRxbJ877gDe0kWNdAg3erDe4TVruP98Xes18N13H8XGyIdWs2GnJiRHHS831tCd3yYu5F643xNXJuQ3omWikvRVr0lu57yBdJVg0dhJwjEnP85DRIU3YmGAe4Ua5qNoMlhZMyZwL6TTHWt30SZ2NK/HmYOr+fI0/H8OTWtrxcMlwYYZkbmhllGAYWnXnZCOCHuIcio7L21pEX/PXtrQMTVNFuebT2Q8GihjoW00KeH8z4t7E+a7MFb427dX7MRYGHHGuu2dAUoDI/P5tz7FIQg83Uz4Jmnzh34Wc9uYLd5lTcRc6Mb7mOVHXO9ZLoVtxE7gB+apN+NkzhPhZjQToyvypwyzUZiHV9xtYj9abUuU5vXEdGTA4+KEy7iM25r7U1cqsVVWsXBckpEpprlvJ2FQbbajP9PZpvnSwFmbPDGFJf2uPs07xtav1F6fpAU9zSg8J+iagS9grmCccNcs4TrExWRCFLRupN2AC9SeLWCb2ux+3IMuqwNkJiiWYNzLMOHru2kxFGgc7+wd3bzREbgZJbYUHCmVchHVcUT2/dn240mSVnLoemP1z91VdxbUN3EwR0Hcp5LnTMqCSQ880QUmFjDFnd0huKXKrKrr61na/wVoUDrcQGg/DKgvGcDm6CqzeHfSM9EHqwbbYx4cZn36ZA1nDiNTMLSxHhn0="
|
||||||
|
script: npm run coverage
|
||||||
before_script:
|
before_script:
|
||||||
- export TZ=Europe/Moscow
|
- export TZ=Europe/Moscow
|
||||||
- date
|
- date
|
||||||
|
- npm install codeclimate-test-reporter istanbul -g
|
||||||
|
after_script:
|
||||||
|
- codeclimate-test-reporter < ./coverage/lcov.info
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- node_js: '8.11.2'
|
- node_js: 'lts/*'
|
||||||
before_install: npm -g i npm@2
|
|
||||||
- node_js: '6.11.2'
|
|
||||||
before_install: npm -g i npm@2
|
|
||||||
- node_js: '10.2.1'
|
|
||||||
before_install: npm -g i npm@2
|
|
||||||
|
|||||||
342
lib/index.js
342
lib/index.js
@@ -1,143 +1,225 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const xml = require('xml');
|
const baseXml = require('xml');
|
||||||
|
|
||||||
/**
|
class TR {
|
||||||
* Check first argument. If true - push last argument to second argument
|
constructor(options, items) {
|
||||||
* @param condition
|
options = options || {};
|
||||||
* @param array
|
|
||||||
* @param data
|
this.title = options.title || '';
|
||||||
*/
|
this.link = options.link || '';
|
||||||
function ifTruePush(condition, array, data) {
|
this.description = options.description || '';
|
||||||
if (condition) {
|
this.language = options.language || 'ru';
|
||||||
array.push(data);
|
this.items = [];
|
||||||
|
|
||||||
|
if (Array.isArray(items) && items.length > 0) {
|
||||||
|
const self = this;
|
||||||
|
items.forEach(function (item) {
|
||||||
|
self.item(item);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
xml() {
|
||||||
* @param related
|
return baseXml(this.generateXML(this));
|
||||||
* @param itemValues
|
}
|
||||||
*/
|
|
||||||
function addRelated(related, itemValues) {
|
|
||||||
ifTruePush(related, itemValues, {
|
|
||||||
'yandex:related': related.map(
|
|
||||||
function (rel) {
|
|
||||||
return {
|
|
||||||
link: [{
|
|
||||||
_attr: {
|
|
||||||
'url': rel.link,
|
|
||||||
'img': rel.image_url
|
|
||||||
}
|
|
||||||
}, rel.text]
|
|
||||||
};
|
|
||||||
}
|
|
||||||
)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
item(data) {
|
||||||
* Items processing
|
|
||||||
* @param items
|
|
||||||
* @param channel
|
|
||||||
*/
|
|
||||||
function items(items, channel) {
|
|
||||||
items.forEach(function (item) {
|
|
||||||
let item_values = [];
|
|
||||||
item_values.push({_attr: {'turbo': 'true'}});
|
|
||||||
item_values.push({link: item.url});
|
|
||||||
item_values.push({'turbo:source': item.url});
|
|
||||||
|
|
||||||
ifTruePush(item.date, item_values, {pubDate: new Date(item.date).toUTCString()});
|
|
||||||
ifTruePush(item.author, item_values, {author: item.author});
|
|
||||||
|
|
||||||
let img = '';
|
|
||||||
let menu = '';
|
|
||||||
|
|
||||||
if (item.image_url) {
|
|
||||||
img = '<figure><img src="' + item.image_url + '" /></figure>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (item.menu) {
|
|
||||||
menu = '<menu>' + item.menu + '</menu>';
|
|
||||||
}
|
|
||||||
|
|
||||||
let fullContent = '<header>' + img + ' <h1>' + item.title + '</h1>' + menu + '</header>' + item.content;
|
|
||||||
|
|
||||||
item_values.push({'turbo:content': {_cdata: fullContent}});
|
|
||||||
|
|
||||||
if (typeof item.related !== 'undefined') {
|
|
||||||
addRelated(item.related, item_values);
|
|
||||||
}
|
|
||||||
|
|
||||||
channel.push({item: item_values});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param data
|
|
||||||
* @returns {{rss: *[]}}
|
|
||||||
*/
|
|
||||||
function generateXML(data) {
|
|
||||||
|
|
||||||
let channel = [];
|
|
||||||
|
|
||||||
channel.push({title: {_cdata: data.title}});
|
|
||||||
channel.push({link: data.link || 'http://github.com/LightAir/turbo-rss'});
|
|
||||||
channel.push({description: {_cdata: data.description || data.title}});
|
|
||||||
channel.push({language: 'ru'});
|
|
||||||
|
|
||||||
items(data.items, channel);
|
|
||||||
|
|
||||||
let _attr = {
|
|
||||||
'xmlns:yandex': 'http://news.yandex.ru',
|
|
||||||
'xmlns:media': 'http://search.yahoo.com/mrss/',
|
|
||||||
'xmlns:turbo': 'http://turbo.yandex.ru',
|
|
||||||
version: '2.0'
|
|
||||||
};
|
|
||||||
|
|
||||||
return {
|
|
||||||
rss: [
|
|
||||||
{_attr: _attr},
|
|
||||||
{channel: channel}
|
|
||||||
]
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Base function
|
|
||||||
* @param options
|
|
||||||
* @param items
|
|
||||||
* @constructor
|
|
||||||
*/
|
|
||||||
function YTurbo(options, items) {
|
|
||||||
options = options || {};
|
|
||||||
|
|
||||||
this.title = options.title || 'Untitled';
|
|
||||||
this.description = options.description || '';
|
|
||||||
this.link = options.link;
|
|
||||||
this.items = items || [];
|
|
||||||
|
|
||||||
this.item = function (data) {
|
|
||||||
data = data || {};
|
data = data || {};
|
||||||
let item = {
|
this.items.push(
|
||||||
title: data.title || 'No title',
|
this.itemData(data)
|
||||||
description: data.description || '',
|
);
|
||||||
image_url: data.image_url,
|
|
||||||
url: data.url,
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check first argument. If true - push last argument to second argument
|
||||||
|
*
|
||||||
|
* @param condition
|
||||||
|
* @param array
|
||||||
|
* @param data
|
||||||
|
*/
|
||||||
|
pushIfConditionTrue(condition, array, data) {
|
||||||
|
if (condition) {
|
||||||
|
array.push(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param related
|
||||||
|
* @param itemValues
|
||||||
|
* @param relatedInfinity
|
||||||
|
*/
|
||||||
|
addRelated(related, itemValues, relatedInfinity) {
|
||||||
|
const relatedResult = related.map(function (rel) {
|
||||||
|
return {
|
||||||
|
link: [{
|
||||||
|
_attr: {
|
||||||
|
'url': rel.link,
|
||||||
|
'img': rel.image_url
|
||||||
|
}
|
||||||
|
}, rel.text]
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
if (relatedInfinity) {
|
||||||
|
relatedResult.push({
|
||||||
|
_attr: {'type': 'infinity'}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
this.pushIfConditionTrue(related, itemValues, {'yandex:related': relatedResult});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param item
|
||||||
|
* @param itemValues
|
||||||
|
*/
|
||||||
|
pushGoals(item, itemValues) {
|
||||||
|
if (item.goals.length > 0) {
|
||||||
|
item.goals.forEach(goal => itemValues.push({
|
||||||
|
'turbo:goal': {
|
||||||
|
_attr: {
|
||||||
|
type: goal.type || 'yandex',
|
||||||
|
'turbo-goal-id': goal.id,
|
||||||
|
name: goal.name,
|
||||||
|
id: goal.counter_id,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getImageContent(item) {
|
||||||
|
if (item.image_url.length > 0) {
|
||||||
|
let imageCaption = '';
|
||||||
|
|
||||||
|
if (item.image_caption.length > 0) {
|
||||||
|
imageCaption = `<figcaption>${item.image_caption}</figcaption>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return `<figure><img src="${item.image_url}" />${imageCaption}</figure>`;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
getSubheading(item) {
|
||||||
|
if (item.subheading.length > 0) {
|
||||||
|
return `<h2>${item.subheading}</h2>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
getLinksString(links) {
|
||||||
|
return links.map(function (item) {
|
||||||
|
return `<a href="${item.link}">${item.text}</a>`;
|
||||||
|
}).join('');
|
||||||
|
}
|
||||||
|
|
||||||
|
getMenu(item) {
|
||||||
|
if (Array.isArray(item.menu) && item.menu.length > 0) {
|
||||||
|
return `<menu>${this.getLinksString(item.menu)}</menu>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
getBreadcrumbs(item) {
|
||||||
|
if (Array.isArray(item.breadcrumbs) && item.breadcrumbs.length > 0) {
|
||||||
|
return `<div data-block="breadcrumblist">${this.getLinksString(item.breadcrumbs)}</div>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Items processing
|
||||||
|
* @param items
|
||||||
|
* @param channel
|
||||||
|
*/
|
||||||
|
itemsProcessing(items, channel) {
|
||||||
|
const self = this;
|
||||||
|
items.forEach(function (item) {
|
||||||
|
const itemValues = [];
|
||||||
|
itemValues.push({_attr: {'turbo': item.turboEnabled ? 'true' : 'false'}});
|
||||||
|
itemValues.push({link: item.url});
|
||||||
|
|
||||||
|
self.pushIfConditionTrue(item.turboSource, itemValues, {'turbo:source': item.turboSource});
|
||||||
|
self.pushIfConditionTrue(item.turboTopic, itemValues, {'turbo:topic': item.turboTopic});
|
||||||
|
self.pushIfConditionTrue(item.date, itemValues, {pubDate: new Date(item.date).toUTCString()});
|
||||||
|
self.pushIfConditionTrue(item.author, itemValues, {author: item.author});
|
||||||
|
|
||||||
|
const fullContent = `<header>${self.getImageContent(item)}<h1>${item.title}</h1>${self.getSubheading(item)}${self.getMenu(item)}${self.getBreadcrumbs(item)}</header>${item.content}`;
|
||||||
|
|
||||||
|
self.pushGoals(item, itemValues);
|
||||||
|
|
||||||
|
itemValues.push({'turbo:content': {_cdata: fullContent}});
|
||||||
|
|
||||||
|
if (typeof item.related !== 'undefined') {
|
||||||
|
self.addRelated(item.related, itemValues, item.relatedInfinity);
|
||||||
|
}
|
||||||
|
|
||||||
|
channel.push({item: itemValues});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param options
|
||||||
|
*
|
||||||
|
* @returns {{rss: *[]}}
|
||||||
|
*/
|
||||||
|
generateXML(options) {
|
||||||
|
|
||||||
|
const channel = [];
|
||||||
|
|
||||||
|
channel.push({title: {_cdata: options.title}});
|
||||||
|
channel.push({link: options.link});
|
||||||
|
channel.push({description: {_cdata: options.description}});
|
||||||
|
channel.push({language: options.language});
|
||||||
|
|
||||||
|
this.itemsProcessing(options.items, channel);
|
||||||
|
|
||||||
|
const _attr = {
|
||||||
|
'xmlns:yandex': 'http://news.yandex.ru',
|
||||||
|
'xmlns:media': 'http://search.yahoo.com/mrss/',
|
||||||
|
'xmlns:turbo': 'http://turbo.yandex.ru',
|
||||||
|
version: '2.0'
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
rss: [
|
||||||
|
{_attr: _attr},
|
||||||
|
{channel: channel}
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param data
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
itemData(data) {
|
||||||
|
return {
|
||||||
|
title: data.title || '', // h1
|
||||||
|
subheading: data.subheading || '', // h2
|
||||||
|
image_url: data.image_url || '',
|
||||||
|
image_caption: data.image_caption || '',
|
||||||
|
url: data.url || data.link,
|
||||||
author: data.author,
|
author: data.author,
|
||||||
date: data.date || data.pubDate,
|
date: data.date || data.pubDate,
|
||||||
content: data.content,
|
content: data.content,
|
||||||
menu: data.menu,
|
menu: data.menu || [],
|
||||||
related: data.related
|
breadcrumbs: data.breadcrumbs || [],
|
||||||
|
related: data.related,
|
||||||
|
relatedInfinity: data.relatedInfinity || false,
|
||||||
|
turboSource: data.turboSource || '',
|
||||||
|
turboTopic: data.turboTopic || '',
|
||||||
|
goals: data.goals || [],
|
||||||
|
turboEnabled: data.turboEnabled !== undefined ? data.turboEnabled : true,
|
||||||
};
|
};
|
||||||
|
}
|
||||||
this.items.push(item);
|
|
||||||
return this;
|
|
||||||
};
|
|
||||||
|
|
||||||
this.xml = function () {
|
|
||||||
return xml(generateXML(this));
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = YTurbo;
|
module.exports = TR;
|
||||||
|
|||||||
33
package.json
33
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "turbo-rss",
|
"name": "turbo-rss",
|
||||||
"version": "1.0.6",
|
"version": "2.0.0",
|
||||||
"description": "RSS based, feed generator for Yandex turbo",
|
"description": "RSS based, feed generator for Yandex turbo",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"yandex",
|
"yandex",
|
||||||
@@ -10,9 +10,8 @@
|
|||||||
],
|
],
|
||||||
"main": "lib/index",
|
"main": "lib/index",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "tape test --tap | tap-difflet",
|
"test": "tape test --tap | tap-min",
|
||||||
"lint": "grunt lint",
|
"coverage": "istanbul cover tape test -- -R spec"
|
||||||
"test:browser": "prova -b"
|
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/LightAir/turbo-rss",
|
"homepage": "https://github.com/LightAir/turbo-rss",
|
||||||
"author": {
|
"author": {
|
||||||
@@ -21,6 +20,7 @@
|
|||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
"LightAir <public@softroot.ru>",
|
"LightAir <public@softroot.ru>",
|
||||||
|
"Ivan Pilyugin (aka Archer)",
|
||||||
"Dylan Greene <dylang@gmail.com>",
|
"Dylan Greene <dylang@gmail.com>",
|
||||||
"Xavier Damman <xdamman@gmail.com>",
|
"Xavier Damman <xdamman@gmail.com>",
|
||||||
"Michael R. Lange",
|
"Michael R. Lange",
|
||||||
@@ -56,27 +56,12 @@
|
|||||||
"xml": "1.0.1"
|
"xml": "1.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^4.19.1",
|
"eslint": "^7.28.0",
|
||||||
"folderify": "^1.1.0",
|
|
||||||
"grunt": "^0.4.5",
|
|
||||||
"grunt-cli": "^0.1.13",
|
|
||||||
"grunt-contrib-jshint": "^0.11.3",
|
|
||||||
"grunt-release": "^0.13.0",
|
|
||||||
"grunt-templates-dylang": "^1.0.10",
|
|
||||||
"include-folder": "^1.0.0",
|
"include-folder": "^1.0.0",
|
||||||
"load-grunt-tasks": "^3.3.0",
|
"mockdate": "^3.0.5",
|
||||||
"mockdate": "^1.0.3",
|
"q": "^1.5.1",
|
||||||
"prova": "^2.1.2",
|
"tap-min": "~2.0.0",
|
||||||
"q": "^1.4.1",
|
"tape": "^5.2.2"
|
||||||
"tap-difflet": "^0.4.0",
|
|
||||||
"tape": "^4.2.1",
|
|
||||||
"time-grunt": "^1.2.1",
|
|
||||||
"xml2js": "^0.4.12"
|
|
||||||
},
|
|
||||||
"browserify": {
|
|
||||||
"transform": [
|
|
||||||
"folderify"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
|
|||||||
81
readme.md
81
readme.md
@@ -1,16 +1,12 @@
|
|||||||
## WIP
|
|
||||||
|
|
||||||
## turbo-rss
|
## turbo-rss
|
||||||
|
|
||||||
[](https://codeclimate.com/github/LightAir/turbo-rss/maintainability)
|
[](https://codeclimate.com/github/LightAir/turbo-rss/maintainability)
|
||||||
|
[](https://codeclimate.com/github/LightAir/turbo-rss/test_coverage)
|
||||||
[](https://travis-ci.org/LightAir/turbo-rss)
|
[](https://travis-ci.org/LightAir/turbo-rss)
|
||||||
[](https://www.npmjs.com/package/turbo-rss)
|
[](https://www.npmjs.com/package/turbo-rss)
|
||||||

|

|
||||||
|
|
||||||
|
>Генератор RSS разметки для сервиса Турбо-страницы https://yandex.ru/support/webmaster/turbo/connection.html
|
||||||
>Генератор RSS разметки для сервиса Турбо-страницы
|
|
||||||
|
|
||||||
>ПРЕДУПРЕЖДЕНИЕ! Работа в процессе
|
|
||||||
|
|
||||||
### Использование
|
### Использование
|
||||||
|
|
||||||
@@ -25,12 +21,11 @@ var feed = new TR(feedOptions);
|
|||||||
##### `Опции канала`
|
##### `Опции канала`
|
||||||
|
|
||||||
* `title` **string** Название RSS-канала.
|
* `title` **string** Название RSS-канала.
|
||||||
* `description` _optional_ **string** Описание канала одним предложением. Не используйте HTML-разметку..
|
* `link` **url string** Домен сайта, данные которого транслируются.
|
||||||
* `author` _optional_ **string** If included it is the name of the item's creator. **(Будет удалено)**
|
* `description` _optional_ **string** Описание канала одним предложением. Не используйте HTML-разметку.
|
||||||
* `link` **url string** Домен сайта, данные которого транслируются..
|
* `language` _optional_ **string** Язык статьи по стандарту ISO 639-1. По умолчанию ru.
|
||||||
* `pubDate` _optional_ **Date object or date string** The publication date for content in the feed **(Будет удалено)**
|
|
||||||
|
|
||||||
*Будет добавлено в новых версиях turbo:analytics, turbo:adNetwork*
|
*Будет добавлено в новых версиях turbo:analytics, turbo:adNetwork, на текущий момент можно добавить в интерфейсе Яндекс Вебмастер*
|
||||||
|
|
||||||
#### Добавление страницы в канал
|
#### Добавление страницы в канал
|
||||||
```js
|
```js
|
||||||
@@ -40,14 +35,40 @@ feed.item(itemOptions);
|
|||||||
##### itemOptions
|
##### itemOptions
|
||||||
|
|
||||||
* `title` **string** Заголовок страницы.
|
* `title` **string** Заголовок страницы.
|
||||||
* `image_url` **url string** Адрес изображения, которое используется в качестве обложки. Изображение может быть в любом формате.
|
* `subheading` _optional_ **string** Подзаголовок страницы.
|
||||||
* `url` **url string** URL страницы сайта, для которой нужно сформировать Турбо-страницу.
|
* `image_url` _optional_ **url string** Адрес изображения, которое используется в качестве обложки. Изображение может быть в любом формате.
|
||||||
|
* `image_caption` _optional_ **string** Подпись к изображению обложки.
|
||||||
|
* `link` **url string** URL страницы сайта, для которой нужно сформировать Турбо-страницу.
|
||||||
* `author` _optional_ **string** Автор статьи, размещенной на странице.
|
* `author` _optional_ **string** Автор статьи, размещенной на странице.
|
||||||
* `date` **string** Время публикации контента на сайте источника.
|
* `date` или `pubDate` **string** Время публикации контента на сайте источника. Передается в формате RFC-822.
|
||||||
* `content` **string** Содержимое страницы
|
* `content` **string** Содержимое страницы
|
||||||
* `related` _optional_ **object** Аффилированные ссылки `yandex:related` в конце статьи.
|
* `menu` _optional_ **array** Внимание! Меню будет отображаться только в том случае, если в настройках на странице Яндекс Вебмастер -> Турбо-страницы -> Настройки, содержимое 'Меню Турбо-страниц' пустое!
|
||||||
|
* `breadcrumbs` _optional_ **array** Навигационная ссылка https://yandex.ru/dev/turbo/doc/rss/elements/header.html#breadcrumbs
|
||||||
|
* `related` _optional_ **array** Аффилированные ссылки `yandex:related` в конце статьи. Вы можете разместить ссылки на другие ресурсы или настроить отображение непрерывной ленты статей, реализованной, например с помощью AJAX.
|
||||||
|
* `relatednfinity` _optional_ **bool** Непрерывная лента статей (Параметр был переименован из relatedfinity)
|
||||||
|
* `turboSource` _optional_ **string** URL страницы-источника, который можно передать в Яндекс.Метрику.
|
||||||
|
* `turboTopic` _optional_ **string** Заголовок страницы, который можно передать в Яндекс.Метрику.
|
||||||
|
* `goals` _optional_ **array** массив типа: { _id_ - внутренний идентификатор цели (turbo-goal-id), _name_ - имя цели, _counter_id_ - id счётчика яндекс-метрики }
|
||||||
|
* `turboEnabled`_optional_ **bool** Принудительная установка атрибута "turbo". По умолчанию true. Установка в false позволит скрыть отображение турбо-страницы
|
||||||
|
|
||||||
|
###### menu array
|
||||||
|
menu должен содержать массив объектов со следующими опциями:
|
||||||
|
|
||||||
*Будет добавлено в новых версиях turbo:source, turbo:topic, menu, pubDate как алиас date*
|
* `link` **url string** ссылка
|
||||||
|
* `text` **string** текст ссылки. не должен содержать html
|
||||||
|
|
||||||
|
###### breadcrumbs array
|
||||||
|
Один элемент хлебных крошек должен содержать массив объектов со следующими опциями:
|
||||||
|
|
||||||
|
* `link` **url string** ссылка
|
||||||
|
* `text` **string** текст ссылки (не должен содержать html)
|
||||||
|
|
||||||
|
###### related array
|
||||||
|
related должен содержать массив объектов со следующими опциями:
|
||||||
|
|
||||||
|
* `link` **url string** ссылка на статью
|
||||||
|
* `image_url` **url string** ссылка на изображение к статье
|
||||||
|
* `text` **string** текст ссылки. Не должен содержать html
|
||||||
|
|
||||||
##### Получение XML
|
##### Получение XML
|
||||||
|
|
||||||
@@ -61,14 +82,12 @@ var xml = feed.xml();
|
|||||||
```js
|
```js
|
||||||
var TR = require('turbo-rss');
|
var TR = require('turbo-rss');
|
||||||
|
|
||||||
/* lets create feed */
|
|
||||||
var feed = new TR({
|
var feed = new TR({
|
||||||
title: 'title',
|
title: 'title',
|
||||||
description: 'description',
|
description: 'description',
|
||||||
link: 'http://example.com',
|
link: 'http://example.com',
|
||||||
});
|
});
|
||||||
|
|
||||||
/* loop over data and add to feed */
|
|
||||||
feed.item({
|
feed.item({
|
||||||
title: 'item title',
|
title: 'item title',
|
||||||
image_url: 'http://example.com/example.png',
|
image_url: 'http://example.com/example.png',
|
||||||
@@ -76,6 +95,19 @@ feed.item({
|
|||||||
author: 'LightAir',
|
author: 'LightAir',
|
||||||
date: 'May 27, 2012',
|
date: 'May 27, 2012',
|
||||||
content: '<p>hello</p>',
|
content: '<p>hello</p>',
|
||||||
|
goals: [{
|
||||||
|
type: "yandex",
|
||||||
|
id: "turbo-goal-id",
|
||||||
|
counter_id: "12345",
|
||||||
|
name: "order",
|
||||||
|
}],
|
||||||
|
menu: [{
|
||||||
|
link: 'http://example.com/',
|
||||||
|
text: 'Главная'
|
||||||
|
}, {
|
||||||
|
link: 'http://example.com/about',
|
||||||
|
text: 'О сайте'
|
||||||
|
}],
|
||||||
related: [{
|
related: [{
|
||||||
link: 'http://example.com/related/post1',
|
link: 'http://example.com/related/post1',
|
||||||
image_url: 'http://example.com/i/img1.jpg',
|
image_url: 'http://example.com/i/img1.jpg',
|
||||||
@@ -87,14 +119,21 @@ feed.item({
|
|||||||
}]
|
}]
|
||||||
});
|
});
|
||||||
|
|
||||||
// cache the xml to send to clients
|
|
||||||
var xml = feed.xml();
|
var xml = feed.xml();
|
||||||
```
|
```
|
||||||
|
|
||||||
## Тестирование
|
## Тестирование
|
||||||
|
|
||||||
Для запуска тестов выполните `npm test`. На текущий момен покрытие тестами не 100%
|
Для запуска тестов выполните `npm test`.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ npm test
|
$ npm test
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Спасибо
|
||||||
|
|
||||||
|
@jahglow
|
||||||
|
|
||||||
|
@vvmspace
|
||||||
|
|
||||||
|
@crackosok
|
||||||
|
|||||||
1
test/expectedOutput/breadcrumbs.xml
Normal file
1
test/expectedOutput/breadcrumbs.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>https://example.com/soups/with-potatoes/</link><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>LightAir</author><turbo:content><![CDATA[<header><figure><img src="https://example.com/example.png" /></figure><h1>Суп с картофелем</h1><div data-block="breadcrumblist"><a href="https://example.com/">Главная</a><a href="https://example.com/soups/">Супы</a><a href="https://example.com/soups/with-potatoes/">Суп с картофелем</a></div></header><p>Для приготовления супа с картофелем, возьмите</p>]]></turbo:content></item></channel></rss>
|
||||||
@@ -1 +1 @@
|
|||||||
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[Untitled]]></title><link>http://github.com/LightAir/turbo-rss</link><description><![CDATA[Untitled]]></description><language>ru</language></channel></rss>
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title/><link></link><description/><language>ru</language></channel></rss>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link></link><turbo:source></turbo:source><turbo:content><![CDATA[<header> <h1>No title</h1></header>undefined]]></turbo:content></item></channel></rss>
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link></link><turbo:content><![CDATA[<header><h1></h1></header>undefined]]></turbo:content></item></channel></rss>
|
||||||
|
|||||||
1
test/expectedOutput/defaultItemTurboFalse.xml
Normal file
1
test/expectedOutput/defaultItemTurboFalse.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="false"><link></link><turbo:content><![CDATA[<header><h1></h1></header>undefined]]></turbo:content></item></channel></rss>
|
||||||
@@ -1 +1 @@
|
|||||||
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[Untitled]]></title><link>http://github.com/LightAir/turbo-rss</link><description><![CDATA[Untitled]]></description><language>ru</language><item turbo="true"><link></link><turbo:source></turbo:source><turbo:content><![CDATA[<header> <h1>No title</h1></header>undefined]]></turbo:content></item></channel></rss>
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title/><link></link><description/><language>ru</language><item turbo="true"><link></link><turbo:content><![CDATA[<header><h1></h1></header>undefined]]></turbo:content></item></channel></rss>
|
||||||
|
|||||||
1
test/expectedOutput/defaultTwoItem.xml
Normal file
1
test/expectedOutput/defaultTwoItem.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title/><link></link><description/><language>ru</language><item turbo="true"><link></link><turbo:content><![CDATA[<header><h1></h1></header>undefined]]></turbo:content></item><item turbo="true"><link></link><turbo:content><![CDATA[<header><h1></h1></header>undefined]]></turbo:content></item></channel></rss>
|
||||||
1
test/expectedOutput/goal.xml
Normal file
1
test/expectedOutput/goal.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>http://example.com/article4?this&that</link><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>vvm.space</author><turbo:goal type="yandex" turbo-goal-id="turbo-goal-id" name="order" id="12345"/><turbo:content><![CDATA[<header><figure><img src="http://example.com/example.png" /></figure><h1>item title</h1></header><p>hello</p>]]></turbo:content><yandex:related><link url="http://example.com/related/post1" img="http://example.com/i/img1.jpg">related link text 1</link><link url="http://example.com/related/post2" img="http://example.com/i/img2.jpg">related link text 2</link></yandex:related></item></channel></rss>
|
||||||
1
test/expectedOutput/imageCaption.xml
Normal file
1
test/expectedOutput/imageCaption.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>http://example.com/article4?this&that</link><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>LightAir</author><turbo:content><![CDATA[<header><figure><img src="http://example.com/example.png" /><figcaption>this is image caption</figcaption></figure><h1>item title</h1></header><p>hello</p>]]></turbo:content><yandex:related><link url="http://example.com/related/post1" img="http://example.com/i/img1.jpg">related link text 1</link><link url="http://example.com/related/post2" img="http://example.com/i/img2.jpg">related link text 2</link></yandex:related></item></channel></rss>
|
||||||
1
test/expectedOutput/menu.xml
Normal file
1
test/expectedOutput/menu.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>http://example.com/article4?this&that</link><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>LightAir</author><turbo:content><![CDATA[<header><figure><img src="http://example.com/example.png" /></figure><h1>item title</h1><menu><a href="http://example.com/">Главная</a><a href="http://example.com/about">О сайте</a></menu></header><p>hello</p>]]></turbo:content><yandex:related type="infinity"><link url="http://example.com/related/post1" img="http://example.com/i/img1.jpg">related link text 1</link><link url="http://example.com/related/post2" img="http://example.com/i/img2.jpg">related link text 2</link></yandex:related></item><item turbo="true"><link></link><turbo:content><![CDATA[<header><h1></h1></header>undefined]]></turbo:content></item></channel></rss>
|
||||||
@@ -1 +1 @@
|
|||||||
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>http://example.com/article4?this&that</link><turbo:source>http://example.com/article4?this&that</turbo:source><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>LightAir</author><turbo:content><![CDATA[<header><figure><img src="http://example.com/example.png" /></figure> <h1>item title</h1></header><p>hello</p>]]></turbo:content><yandex:related><link url="http://example.com/related/post1" img="http://example.com/i/img1.jpg">related link text 1</link><link url="http://example.com/related/post2" img="http://example.com/i/img2.jpg">related link text 2</link></yandex:related></item></channel></rss>
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>http://example.com/article4?this&that</link><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>LightAir</author><turbo:content><![CDATA[<header><figure><img src="http://example.com/example.png" /></figure><h1>item title</h1></header><p>hello</p>]]></turbo:content><yandex:related><link url="http://example.com/related/post1" img="http://example.com/i/img1.jpg">related link text 1</link><link url="http://example.com/related/post2" img="http://example.com/i/img2.jpg">related link text 2</link></yandex:related></item></channel></rss>
|
||||||
|
|||||||
1
test/expectedOutput/relatedItemInfinity.xml
Normal file
1
test/expectedOutput/relatedItemInfinity.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link>http://example.com/article4?this&that</link><pubDate>Sat, 26 May 2018 21:00:00 GMT</pubDate><author>LightAir</author><turbo:content><![CDATA[<header><figure><img src="http://example.com/example.png" /></figure><h1>item title</h1></header><p>hello</p>]]></turbo:content><yandex:related type="infinity"><link url="http://example.com/related/post1" img="http://example.com/i/img1.jpg">related link text 1</link><link url="http://example.com/related/post2" img="http://example.com/i/img2.jpg">related link text 2</link></yandex:related></item></channel></rss>
|
||||||
1
test/expectedOutput/subheading.xml
Normal file
1
test/expectedOutput/subheading.xml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0"><channel><title><![CDATA[title]]></title><link>http://example.com/rss.xml</link><description><![CDATA[description]]></description><language>ru</language><item turbo="true"><link></link><turbo:content><![CDATA[<header><h1>item title</h1><h2>Subheading</h2></header>undefined]]></turbo:content></item></channel></rss>
|
||||||
204
test/index.js
204
test/index.js
@@ -1,62 +1,202 @@
|
|||||||
// prova is a wrapper for tape
|
|
||||||
// use npm run test:browser to run tests in a browser
|
|
||||||
const test = require('tape');
|
const test = require('tape');
|
||||||
|
const TR = require('..');
|
||||||
const YTurbo = require('..');
|
|
||||||
|
|
||||||
const includeFolder = require('include-folder');
|
const includeFolder = require('include-folder');
|
||||||
const expectedOutput = includeFolder(__dirname + '/expectedOutput', /.*\.xml$/);
|
const expectedOutput = includeFolder(__dirname + '/expectedOutput', /.*\.xml$/);
|
||||||
|
|
||||||
|
const baseOptions = {
|
||||||
|
title: 'title',
|
||||||
|
description: 'description',
|
||||||
|
link: 'http://example.com/rss.xml',
|
||||||
|
site_url: 'http://example.com'
|
||||||
|
};
|
||||||
|
|
||||||
|
const relatedOptions = [{
|
||||||
|
link: 'http://example.com/related/post1',
|
||||||
|
image_url: 'http://example.com/i/img1.jpg',
|
||||||
|
text: 'related link text 1'
|
||||||
|
}, {
|
||||||
|
link: 'http://example.com/related/post2',
|
||||||
|
image_url: 'http://example.com/i/img2.jpg',
|
||||||
|
text: 'related link text 2'
|
||||||
|
}];
|
||||||
|
|
||||||
require('mockdate').set('Wed, 10 Dec 2014 19:04:57 GMT');
|
require('mockdate').set('Wed, 10 Dec 2014 19:04:57 GMT');
|
||||||
|
|
||||||
test('empty feed', function(t) {
|
test('empty feed', function (t) {
|
||||||
t.plan(2);
|
t.plan(3);
|
||||||
let feed = new YTurbo();
|
|
||||||
|
const feed = new TR();
|
||||||
t.equal(feed.xml(), expectedOutput.default.trim());
|
t.equal(feed.xml(), expectedOutput.default.trim());
|
||||||
|
|
||||||
feed.item();
|
feed.item();
|
||||||
t.equal(feed.xml(), expectedOutput.defaultOneItem.trim());
|
t.equal(feed.xml(), expectedOutput.defaultOneItem.trim());
|
||||||
|
|
||||||
|
feed.item();
|
||||||
|
t.equal(feed.xml(), expectedOutput.defaultTwoItem.trim());
|
||||||
});
|
});
|
||||||
|
|
||||||
test('default item', function(t) {
|
|
||||||
|
test('empty feed constructor', function (t) {
|
||||||
t.plan(1);
|
t.plan(1);
|
||||||
let feed = new YTurbo({
|
|
||||||
title: 'title',
|
const feed = new TR(
|
||||||
description: 'description',
|
{},
|
||||||
link: 'http://example.com/rss.xml',
|
[{}, {}]
|
||||||
site_url: 'http://example.com'
|
);
|
||||||
});
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.defaultTwoItem.trim());
|
||||||
|
});
|
||||||
|
|
||||||
|
test('default item', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
feed.item({});
|
feed.item({});
|
||||||
|
|
||||||
t.equal(feed.xml(), expectedOutput.defaultItem.trim());
|
t.equal(feed.xml(), expectedOutput.defaultItem.trim());
|
||||||
});
|
});
|
||||||
|
|
||||||
test('related item', function(t) {
|
test('related item', function (t) {
|
||||||
t.plan(1);
|
t.plan(1);
|
||||||
let feed = new YTurbo({
|
const feed = new TR(baseOptions);
|
||||||
title: 'title',
|
|
||||||
description: 'description',
|
|
||||||
link: 'http://example.com/rss.xml',
|
|
||||||
site_url: 'http://example.com'
|
|
||||||
});
|
|
||||||
|
|
||||||
feed.item({
|
feed.item({
|
||||||
title: 'item title',
|
title: 'item title',
|
||||||
|
image_url: 'http://example.com/example.png',
|
||||||
|
url: 'http://example.com/article4?this&that',
|
||||||
|
author: 'LightAir',
|
||||||
|
date: 'May 27, 2018 00:00 AM',
|
||||||
|
menu: '<a href="http://example.com/page1.html">Текст ссылки</a> <a href="http://example.com/page2.html">Текст ссылки</a>',
|
||||||
|
content: '<p>hello</p>',
|
||||||
|
related: relatedOptions
|
||||||
|
});
|
||||||
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.relatedItem.trim());
|
||||||
|
});
|
||||||
|
|
||||||
|
test('related item', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
|
feed.item({
|
||||||
|
title: 'item title',
|
||||||
image_url: 'http://example.com/example.png',
|
image_url: 'http://example.com/example.png',
|
||||||
url: 'http://example.com/article4?this&that',
|
url: 'http://example.com/article4?this&that',
|
||||||
author: 'LightAir',
|
author: 'LightAir',
|
||||||
date: 'May 27, 2018 00:00 AM',
|
date: 'May 27, 2018 00:00 AM',
|
||||||
content: '<p>hello</p>',
|
content: '<p>hello</p>',
|
||||||
related: [{
|
relatedInfinity: true,
|
||||||
link: 'http://example.com/related/post1',
|
related: relatedOptions
|
||||||
image_url: 'http://example.com/i/img1.jpg',
|
|
||||||
text: 'related link text 1'
|
|
||||||
}, {
|
|
||||||
link: 'http://example.com/related/post2',
|
|
||||||
image_url: 'http://example.com/i/img2.jpg',
|
|
||||||
text: 'related link text 2'
|
|
||||||
}]
|
|
||||||
});
|
});
|
||||||
|
|
||||||
t.equal(feed.xml(), expectedOutput.relatedItem.trim());
|
t.equal(feed.xml(), expectedOutput.relatedItemInfinity.trim());
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('menu', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
|
feed.item({
|
||||||
|
title: 'item title',
|
||||||
|
image_url: 'http://example.com/example.png',
|
||||||
|
url: 'http://example.com/article4?this&that',
|
||||||
|
author: 'LightAir',
|
||||||
|
date: 'May 27, 2018 00:00 AM',
|
||||||
|
content: '<p>hello</p>',
|
||||||
|
relatedInfinity: true,
|
||||||
|
menu: [{
|
||||||
|
link: 'http://example.com/',
|
||||||
|
text: 'Главная',
|
||||||
|
}, {
|
||||||
|
link: 'http://example.com/about',
|
||||||
|
text: 'О сайте',
|
||||||
|
}],
|
||||||
|
related: relatedOptions
|
||||||
|
});
|
||||||
|
|
||||||
|
feed.item({});
|
||||||
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.menu.trim());
|
||||||
|
});
|
||||||
|
|
||||||
|
test('goals', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
|
feed.item({
|
||||||
|
title: 'item title',
|
||||||
|
image_url: 'http://example.com/example.png',
|
||||||
|
url: 'http://example.com/article4?this&that',
|
||||||
|
author: 'vvm.space',
|
||||||
|
date: 'May 27, 2018 00:00 AM',
|
||||||
|
menu: '<a href="http://example.com/page1.html">Текст ссылки</a> <a href="http://example.com/page2.html">Текст ссылки</a>',
|
||||||
|
goals: [{
|
||||||
|
type: 'yandex',
|
||||||
|
id: 'turbo-goal-id',
|
||||||
|
counter_id: '12345',
|
||||||
|
name: 'order',
|
||||||
|
}],
|
||||||
|
content: '<p>hello</p>',
|
||||||
|
related: relatedOptions
|
||||||
|
});
|
||||||
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.goal.trim());
|
||||||
|
});
|
||||||
|
|
||||||
|
test('image caption', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
|
feed.item({
|
||||||
|
title: 'item title',
|
||||||
|
image_url: 'http://example.com/example.png',
|
||||||
|
image_caption: 'this is image caption',
|
||||||
|
url: 'http://example.com/article4?this&that',
|
||||||
|
author: 'LightAir',
|
||||||
|
date: 'May 27, 2018 00:00 AM',
|
||||||
|
menu: '<a href="http://example.com/page1.html">Текст ссылки</a> <a href="http://example.com/page2.html">Текст ссылки</a>',
|
||||||
|
content: '<p>hello</p>',
|
||||||
|
related: relatedOptions
|
||||||
|
});
|
||||||
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.imageCaption.trim());
|
||||||
|
});
|
||||||
|
|
||||||
|
test('subheading', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
|
feed.item({
|
||||||
|
title: 'item title',
|
||||||
|
subheading: 'Subheading',
|
||||||
|
});
|
||||||
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.subheading.trim());
|
||||||
|
});
|
||||||
|
|
||||||
|
test('breadcrumbs', function (t) {
|
||||||
|
t.plan(1);
|
||||||
|
const feed = new TR(baseOptions);
|
||||||
|
|
||||||
|
feed.item({
|
||||||
|
title: 'Суп с картофелем',
|
||||||
|
image_url: 'https://example.com/example.png',
|
||||||
|
breadcrumbs: [{
|
||||||
|
link: 'https://example.com/',
|
||||||
|
text: 'Главная',
|
||||||
|
}, {
|
||||||
|
link: 'https://example.com/soups/',
|
||||||
|
text: 'Супы',
|
||||||
|
}, {
|
||||||
|
link: 'https://example.com/soups/with-potatoes/',
|
||||||
|
text: 'Суп с картофелем'
|
||||||
|
}],
|
||||||
|
url: 'https://example.com/soups/with-potatoes/',
|
||||||
|
author: 'LightAir',
|
||||||
|
date: 'May 27, 2018 00:00 AM',
|
||||||
|
content: '<p>Для приготовления супа с картофелем, возьмите</p>'
|
||||||
|
});
|
||||||
|
|
||||||
|
t.equal(feed.xml(), expectedOutput.breadcrumbs.trim());
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user