Skip to content

Commit

Permalink
feat(route): add osu!
Browse files Browse the repository at this point in the history
  • Loading branch information
JimenezLi committed Sep 22, 2023
1 parent 4b7961b commit 3e5a512
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 0 deletions.
36 changes: 36 additions & 0 deletions lib/v2/osu/beatmaps/packs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');

module.exports = async (ctx) => {
const { type = 'standard' } = ctx.params;

const link = `https://osu.ppy.sh/beatmaps/packs?type=${type}`;

const response = await got.get(link);
require('fs').writeFileSync('./test_osu_429.html', String(response.data));
const $ = cheerio.load(response.data);
const itemList = $('.beatmap-pack');

ctx.state.data = {
title: `osu! Beatmap Pack - ${type}`,
link,
item: itemList.toArray().map((element) => {
const item = $(element);
const title = item.find('.beatmap-pack__name').text().trim();
const link = item.find('.beatmap-pack__header').attr('href');
// Trying to get the description will return 429 (Too Many Requests).
const description = item.find('.beatmap-pack__body').html();
const pubDate = parseDate(item.find('.beatmap-pack__date').text(), 'YYYY-MM-DD');
const author = item.find('.beatmap-pack__author--bold').text().trim();

return {
title,
link,
description,
pubDate,
author,
};
}),
};
};
3 changes: 3 additions & 0 deletions lib/v2/osu/maintainer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
'/packs/:type?': ['JimenezLi'],
};
13 changes: 13 additions & 0 deletions lib/v2/osu/radar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
'ppy.sh': {
_name: 'osu!',
osu: [
{
title: 'osu! Beatmap Pack',
docs: 'https://docs.rsshub.app/routes/game#osu-beatmap-packs',
source: '/beatmaps/packs',
target: (params, url) => `https://osu.ppy.sh/beatmaps/packs?type=${new URL(url).searchParams.get('type') ?? 'standard'}`,
},
],
},
};
3 changes: 3 additions & 0 deletions lib/v2/osu/router.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = (router) => {
router.get('/packs/:type?', require('./beatmaps/packs'));
};
6 changes: 6 additions & 0 deletions website/docs/routes/game.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,12 @@ Sorting types, default to `date`:

<Route author="hoilc" example="/nintendo/system-update" path="/nintendo/system-update"/>

## osu! {#osu}

### Beatmap Packs {#osu-beatmap-packs}

<Route author="JimenezLi" example="/osu/packs" path="/osu/packs/:type?" paramsDesc={['pack type, default to `standard`, can choose from `featured`, `tournament`, `loved`, `chart`, `theme` and `artist`']} radar="1"/>

## PlayStation Store {#playstation-store}

### Game List(Hong Kong) {#playstation-store-game-list-hong-kong}
Expand Down

0 comments on commit 3e5a512

Please sign in to comment.