forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(route): google developers blog (DIYgod#17521)
* feat(route): google developers blog * docs: fix category ---------
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
import { Route } from '@/types'; | ||
import ofetch from '@/utils/ofetch'; | ||
import { load } from 'cheerio'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
import type { Context } from 'hono'; | ||
|
||
const baseUrl = 'https://developers.googleblog.com'; | ||
|
||
export const route: Route = { | ||
path: '/developers/:locale?', | ||
name: 'Developers Blog', | ||
url: 'developers.googleblog.com', | ||
maintainers: ['Loongphy'], | ||
handler, | ||
example: '/google/developers/en', | ||
parameters: { | ||
locale: { | ||
description: 'language', | ||
default: 'en', | ||
options: [ | ||
{ value: 'en', label: 'English' }, | ||
{ value: 'es', label: 'Español (Latam)' }, | ||
{ value: 'id', label: 'Bahasa Indonesia' }, | ||
{ value: 'ja', label: '日本語' }, | ||
{ value: 'ko', label: '한국어' }, | ||
{ value: 'pt-br', label: 'Português (Brasil)' }, | ||
{ value: 'zh-hans', label: '简体中文' }, | ||
], | ||
}, | ||
}, | ||
description: 'Google Developers Blog', | ||
categories: ['blog'], | ||
radar: [ | ||
{ | ||
source: ['developers.googleblog.com'], | ||
}, | ||
], | ||
}; | ||
|
||
async function handler(ctx: Context) { | ||
const locale = ctx.req.param('locale') ?? 'en'; | ||
|
||
const response = await ofetch(`${baseUrl}/${locale}/search`); | ||
const $ = load(response); | ||
|
||
const items = $('.search-result') | ||
.toArray() | ||
.map((element) => { | ||
const dateCategory = $(element).find('.search-result__eyebrow').text().trim(); | ||
const [date, category] = dateCategory.split(' / '); | ||
const titleElement = $(element).find('.search-result__title a'); | ||
const title = titleElement.text().trim(); | ||
const link = titleElement.attr('href'); | ||
const summary = $(element).find('.search-result__summary').text().trim(); | ||
|
||
return { | ||
title, | ||
link: `${baseUrl}${link}`, | ||
pubDate: parseDate(date), | ||
description: summary, | ||
author: 'Google', | ||
category: [category], | ||
}; | ||
}); | ||
|
||
return { | ||
title: 'Google Developers Blog', | ||
link: baseUrl, | ||
item: items, | ||
}; | ||
} |