Files
wehub-resource-sync 9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

48 lines
2.3 KiB
JavaScript

// dockerhub search — search the public Docker Hub repository index.
//
// Hits `https://hub.docker.com/v2/search/repositories/?query=…`. Returns the
// agent-useful projection: official-flag, owner/name (round-trips into
// `dockerhub image`), star count, pull count, short description.
import { cli, Strategy } from '@jackwener/opencli/registry';
import { EmptyResultError } from '@jackwener/opencli/errors';
import { HUB_BASE, hubFetch, requireBoundedInt, requireString } from './utils.js';
cli({
site: 'dockerhub',
name: 'search',
access: 'read',
description: 'Search Docker Hub repositories by keyword',
domain: 'hub.docker.com',
strategy: Strategy.PUBLIC,
browser: false,
args: [
{ name: 'query', positional: true, required: true, help: 'Search keyword (e.g. "nginx", "bitnami redis")' },
{ name: 'limit', type: 'int', default: 25, help: 'Max repositories (1-100, single Docker Hub page)' },
],
columns: ['rank', 'image', 'official', 'stars', 'pulls', 'description', 'url'],
func: async (args) => {
const query = requireString(args.query, 'query');
const limit = requireBoundedInt(args.limit, 25, 100);
const url = `${HUB_BASE}/search/repositories/?query=${encodeURIComponent(query)}&page_size=${limit}`;
const body = await hubFetch(url, 'dockerhub search');
const list = Array.isArray(body?.results) ? body.results : [];
if (!list.length) {
throw new EmptyResultError('dockerhub search', `No Docker Hub repositories matched "${query}".`);
}
return list.slice(0, limit).map((r, i) => {
const owner = String(r.repo_owner ?? '').trim();
const name = String(r.repo_name ?? '').trim();
const image = owner ? `${owner}/${name}` : (r.is_official ? `library/${name}` : name);
return {
rank: i + 1,
image,
official: Boolean(r.is_official),
stars: r.star_count != null ? Number(r.star_count) : null,
pulls: r.pull_count != null ? Number(r.pull_count) : null,
description: String(r.short_description ?? '').trim(),
url: image ? `https://hub.docker.com/r/${image}` : '',
};
});
},
});