32 lines
1018 B
JavaScript
32 lines
1018 B
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const path = require('path');
|
|
const { art } = require('@/utils/render');
|
|
|
|
module.exports = async (ctx) => {
|
|
const baseUrl = 'https://www.playstation.com/en-sg/ps-plus/whats-new/';
|
|
|
|
const { data: response } = await got(baseUrl);
|
|
const $ = cheerio.load(response);
|
|
|
|
const list = $('.cmp-experiencefragment--your-latest-monthly-games .box')
|
|
.toArray()
|
|
.map((item) => {
|
|
item = $(item);
|
|
return {
|
|
title: item.find('h3').text(),
|
|
description: art(path.join(__dirname, 'templates/monthly-games.art'), {
|
|
img: item.find('.media-block__img source').attr('srcset'),
|
|
text: item.find('h3 + p').text(),
|
|
}),
|
|
link: item.find('.button a').attr('href'),
|
|
};
|
|
});
|
|
|
|
ctx.state.data = {
|
|
title: 'PlayStation Plus Monthly Games',
|
|
link: baseUrl,
|
|
item: list,
|
|
};
|
|
};
|