rsshub
Version:
Make RSS Great Again!
79 lines (71 loc) • 2.26 kB
text/typescript
import { Route } from '@/types';
import got from '@/utils/got';
import { parseJSONP } from './jsonp-helper';
import { art } from '@/utils/render';
import path from 'node:path';
export const route: Route = {
path: '/live',
categories: ['live'],
example: '/yoasobi-music/live',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['www.yoasobi-music.jp/', 'www.yoasobi-music.jp/live'],
},
],
name: 'Live',
maintainers: ['Kiotlin'],
handler,
url: 'www.yoasobi-music.jp/',
};
async function handler() {
const ARTIST = 'YOASOBI',
SONYJPURL = 'https://www.sonymusic.co.jp',
BASEURL = 'https://www.sonymusic.co.jp/json/v2/artist',
POSTFIX = 'start/0/count/-1';
const api = `${BASEURL}/${ARTIST}/live/${POSTFIX}`;
const officialUrl = 'https://www.yoasobi-music.jp/live';
const title = 'LATEST LIVE';
const response = await got({
method: 'get',
url: api,
});
const data = parseJSONP(response.data).items.map((item) => ({
title: item.tourName,
imageLink: item.tourImage === '' ? null : `${SONYJPURL}${item.tourImage}`,
link: `${officialUrl}/${item.link.split('/').pop()}`,
description: item.tourInfo,
// @param {Array} liveItem - An array contains all the sessions
sessions: item.liveItem,
}));
return {
// the source title
title,
// the source url
link: officialUrl,
// the source description
description: "YOASOBI's Latest Live",
// iterate through all leaf objects
item: data.map((item) => ({
// the article title
title: item.title,
// the article content
description: art(path.join(__dirname, 'templates/live.art'), {
image: item.imageLink,
description: item.description,
sessions: item.sessions,
}),
// no pubDate
// the article link
link: item.link,
})),
};
}