-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(route): Add SYCL.tech * refactor(route): Change SYCL.tech namespace to SYCL * refactor(route): Update SYCL.tech namespace to SYCL - Change Descritption language from Chinese to English. - Format the description
- Loading branch information
Showing
2 changed files
with
53 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,47 @@ | ||
import { Route } from '@/types'; | ||
import ofetch from '@/utils/ofetch'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
|
||
export const route: Route = { | ||
path: '/:feed?', | ||
categories: ['programming'], | ||
example: '/sycltech/news', | ||
parameters: { feed: 'Feed source, defaults to news, references https://feeds.sycl.tech/' }, | ||
features: { | ||
requireConfig: false, | ||
requirePuppeteer: false, | ||
antiCrawler: false, | ||
supportBT: false, | ||
supportPodcast: false, | ||
supportScihub: false, | ||
}, | ||
name: 'Feeds', | ||
maintainers: ['mocusez'], | ||
handler, | ||
description: `| Events | News | Research Paper | Videos | | ||
| :----: | :--: | :-------------: | :----: | | ||
| events | news | research_papers | videos |`, | ||
}; | ||
|
||
async function handler(ctx) { | ||
const feeds: string[] = ['news', 'events', 'research_papers', 'videos']; | ||
let { feed = 'news' } = ctx.req.param(); | ||
if (!feeds.includes(feed)) { | ||
feed = 'news'; | ||
} | ||
const data = await ofetch(`https://feeds.sycl.tech/${feed}/feed.json`); | ||
|
||
const items = data.items.map((item) => ({ | ||
title: item.title, | ||
link: item.external_url, | ||
description: item.content_html, | ||
pubDate: parseDate(item.date_published), | ||
author: item.author.name, | ||
})); | ||
|
||
return { | ||
title: `SYCL.tech ${feed}`, | ||
link: `https://feeds.sycl.tech/${feed}/feed.json`, | ||
item: items, | ||
}; | ||
} |
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,6 @@ | ||
import type { Namespace } from '@/types'; | ||
|
||
export const namespace: Namespace = { | ||
name: 'SYCL', | ||
url: 'sycl.tech', | ||
}; |