Files
wehub-resource-sync 9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

51 lines
2.4 KiB
JavaScript

// wikidata search — find Wikidata entities (items) by keyword.
//
// Hits `wbsearchentities` on the public MediaWiki API. Returns Q-IDs that
// round-trip into `wikidata entity` for full detail.
import { cli, Strategy } from '@jackwener/opencli/registry';
import { EmptyResultError } from '@jackwener/opencli/errors';
import { WIKIDATA_BASE, requireBoundedInt, requireLanguage, requireString, wikidataFetch } from './utils.js';
cli({
site: 'wikidata',
name: 'search',
access: 'read',
description: 'Search Wikidata items by keyword (returns Q-IDs)',
domain: 'www.wikidata.org',
strategy: Strategy.PUBLIC,
browser: false,
args: [
{ name: 'query', positional: true, required: true, help: 'Search keyword (label / alias)' },
{ name: 'language', default: 'en', help: 'Search & display language (ISO 639, e.g. en, fr, zh)' },
{ name: 'limit', type: 'int', default: 20, help: 'Max items (1-50)' },
],
columns: ['rank', 'qid', 'label', 'description', 'matchType', 'matchText', 'url'],
func: async (args) => {
const query = requireString(args.query, 'query');
const language = requireLanguage(args.language);
const limit = requireBoundedInt(args.limit, 20, 50);
const url = `${WIKIDATA_BASE}/w/api.php?action=wbsearchentities`
+ `&search=${encodeURIComponent(query)}`
+ `&language=${encodeURIComponent(language)}`
+ `&uselang=${encodeURIComponent(language)}`
+ `&type=item&format=json&limit=${limit}&origin=*`;
const body = await wikidataFetch(url, 'wikidata search');
const list = Array.isArray(body?.search) ? body.search : [];
if (!list.length) {
throw new EmptyResultError('wikidata search', `No Wikidata items matched "${query}" in language "${language}".`);
}
return list.slice(0, limit).map((item, i) => {
const qid = String(item?.id ?? '').trim();
return {
rank: i + 1,
qid,
label: typeof item?.label === 'string' ? item.label : null,
description: typeof item?.description === 'string' ? item.description : null,
matchType: typeof item?.match?.type === 'string' ? item.match.type : null,
matchText: typeof item?.match?.text === 'string' ? item.match.text : null,
url: qid ? `${WIKIDATA_BASE}/wiki/${qid}` : '',
};
});
},
});