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.
Merge pull request #7 from DIYgod/master
[pull] master from diygod:master
- Loading branch information
Showing
6 changed files
with
287 additions
and
183 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
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
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,58 @@ | ||
import { load } from 'cheerio'; | ||
import { Context } from 'hono'; | ||
import InvalidParameterError from '@/errors/types/invalid-parameter'; | ||
import { Data, DataItem, Route } from '@/types'; | ||
import ofetch from '@/utils/ofetch'; | ||
import { parseDate } from '@/utils/parse-date'; | ||
|
||
const INSTANCES = new Map([ | ||
['apache', 'bz.apache.org/bugzilla'], | ||
['apache.ooo', 'bz.apache.org/ooo'], // Apache OpenOffice | ||
['apache.SpamAssassin', 'bz.apache.org/SpamAssassin'], | ||
['mozilla', 'bugzilla.mozilla.org'], | ||
['webkit', 'bugs.webkit.org'], | ||
]); | ||
|
||
async function handler(ctx: Context): Promise<Data> { | ||
const { site, bugId } = ctx.req.param(); | ||
if (!INSTANCES.has(site)) { | ||
throw new InvalidParameterError(`unknown site: ${site}`); | ||
} | ||
const link = `https://${INSTANCES.get(site)}/show_bug.cgi?id=${bugId}`; | ||
const $ = load(await ofetch(`${link}&ctype=xml`)); | ||
const items = $('long_desc').map((index, rawItem) => { | ||
const $ = load(rawItem, null, false); | ||
return { | ||
title: `comment #${$('commentid').text()}`, | ||
link: `${link}#c${index}`, | ||
description: $('thetext').text(), | ||
pubDate: parseDate($('bug_when').text()), | ||
author: $('who').attr('name'), | ||
} as DataItem; | ||
}); | ||
return { title: $('short_desc').text(), link, item: items.toArray() }; | ||
} | ||
|
||
function markdownFrom(instances: Map<string, string>, separator: string = ', '): string { | ||
return [...instances.entries()].map(([k, v]) => `[\`${k}\`](https://${v})`).join(separator); | ||
} | ||
|
||
export const route: Route = { | ||
path: '/bug/:site/:bugId', | ||
name: 'bugs', | ||
maintainers: ['FranklinYu'], | ||
handler, | ||
example: '/bug/webkit/251528', | ||
parameters: { | ||
site: 'site identifier', | ||
bugId: 'numeric identifier of the bug in the site', | ||
}, | ||
description: `Supported site identifiers: ${markdownFrom(INSTANCES)}.`, | ||
categories: ['programming'], | ||
|
||
// Radar is infeasible, because it needs access to URL parameters. | ||
zh: { | ||
name: 'bugs', | ||
description: `支持的站点标识符:${markdownFrom(INSTANCES, '、')}。`, | ||
}, | ||
}; |
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,11 @@ | ||
import type { Namespace } from '@/types'; | ||
|
||
export const namespace: Namespace = { | ||
name: 'Bugzilla', | ||
url: 'bugzilla.org', | ||
description: 'Bugzilla instances hosted by organizations.', | ||
zh: { | ||
name: 'Bugzilla', | ||
description: '各组织自建的Bugzilla实例。', | ||
}, | ||
}; |
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
Oops, something went wrong.