37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
|
|
module.exports = async (ctx) => {
|
|
const url = 'https://www.zotero.org/support/changelog';
|
|
const response = await got(url);
|
|
const data = response.data;
|
|
const $ = cheerio.load(data);
|
|
const list = $('h2');
|
|
|
|
ctx.state.data = {
|
|
title: 'Zotero - Version History',
|
|
link: url,
|
|
item:
|
|
list &&
|
|
list
|
|
.map((index, item) => {
|
|
item = $(item);
|
|
let date = $(item)
|
|
.text()
|
|
.match(/\((.*)\)/);
|
|
if (Array.isArray(date)) {
|
|
date = date[1];
|
|
} else {
|
|
date = null;
|
|
}
|
|
return {
|
|
title: item.text().trim(),
|
|
description: $('<div/>').append(item.nextUntil('h2').clone()).html(),
|
|
pubDate: date,
|
|
link: url + '#' + item.attr('id'),
|
|
};
|
|
})
|
|
.get(),
|
|
};
|
|
};
|