Skip to content

Commit

Permalink
feat(route): add taiwanmobile rate-plans (#17766)
Browse files Browse the repository at this point in the history
* feat(route): add taiwanmobile rate-plans

* fix: remove title and date labels

* fix: use .toArray() before .map()

* Update lib/routes/taiwanmobile/rate-plans.ts

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/routes/taiwanmobile/rate-plans.ts

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* Update lib/routes/taiwanmobile/rate-plans.ts

Co-authored-by: Tony <TonyRL@users.noreply.github.com>

* fix: typo

---------
  • Loading branch information
Tsuyumi25 authored Dec 2, 2024
1 parent 5a188a3 commit 84a66f9
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/routes/taiwanmobile/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: '台灣大哥大',
url: 'www.taiwanmobile.com',
lang: 'zh-TW',
};
63 changes: 63 additions & 0 deletions lib/routes/taiwanmobile/rate-plans.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import { DataItem, Route } from '@/types';
import { parseDate } from '@/utils/parse-date';
import ofetch from '@/utils/ofetch';
import { load } from 'cheerio';
import cache from '@/utils/cache';

export const route: Route = {
path: '/rate-plans',
categories: ['other'],
example: '/taiwanmobile/rate-plans',
radar: [
{
source: ['taiwanmobile.com/cs/public/servAnn/queryList.htm'],
},
],
name: '資費公告',
maintainers: ['Tsuyumi25'],
handler,
url: 'www.taiwanmobile.com/cs/public/servAnn/queryList.htm?type=1',
};

async function handler() {
const baseUrl = 'https://www.taiwanmobile.com';
const listUrl = `${baseUrl}/cs/public/servAnn/queryList.htm?type=1`;
const response = await ofetch(listUrl);

const $ = load(response);

const list = $('.pagination_data')
.toArray()
.map((item) => {
const element = $(item);
const title = element.find('a').text().trim();
const link = new URL(element.find('a').attr('href') ?? '', baseUrl).href;
const pubDate = parseDate(element.find('td').first().text(), 'YYYY/MM/DD');

return {
title,
link,
pubDate,
};
}).slice(0, 20);

const items = await Promise.all(
list.map((item) =>
cache.tryGet(item.link, async () => {
const detailResponse = await ofetch(item.link);
const content = load(detailResponse);

return {
...item,
description: content('.v2-page-change__current').find('.v2-uikit__typography-text.-h3, .v2-m-faq-card__description.gray.pad_btm1').remove().end().html() || '暫無內容',
};
})
)
);

return {
title: '台灣大哥大 - 資費公告',
link: listUrl,
item: items as DataItem[],
};
}

0 comments on commit 84a66f9

Please sign in to comment.