feat(cli): make registry fetch use safeFetcher
This commit is contained in:
parent
9709f0e381
commit
de8a1129da
@ -1,14 +1,13 @@
|
|||||||
import fetch from 'node-fetch'
|
|
||||||
|
|
||||||
import {REGISTRY_URL, Registry} from '../const.js'
|
import {REGISTRY_URL, Registry} from '../const.js'
|
||||||
|
import {safeFetch} from './safeFetcher.js'
|
||||||
|
|
||||||
export async function getRegistry(
|
export async function getRegistry(
|
||||||
branch?: string,
|
branch?: string,
|
||||||
): Promise<{message: string; ok: false} | {ok: true; registry: Registry}> {
|
): Promise<{message: string; ok: false} | {ok: true; registry: Registry}> {
|
||||||
const registryResponse = await fetch(REGISTRY_URL(branch ?? 'main'))
|
const registryResponse = await safeFetch(REGISTRY_URL(branch ?? 'main'))
|
||||||
|
|
||||||
if (registryResponse.ok) {
|
if (registryResponse.ok) {
|
||||||
const registryJson = (await registryResponse.json()) as Registry
|
const registryJson = registryResponse.json as Registry
|
||||||
registryJson.base = registryJson.base.replace('{branch}', branch ?? 'main')
|
registryJson.base = registryJson.base.replace('{branch}', branch ?? 'main')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@ -17,10 +16,7 @@ export async function getRegistry(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return registryResponse
|
||||||
message: `Error while fetching registry from ${registryResponse.url}: ${registryResponse.status} ${registryResponse.statusText}`,
|
|
||||||
ok: false,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function getAvailableComponentNames(registry: Registry): Promise<string[]> {
|
export async function getAvailableComponentNames(registry: Registry): Promise<string[]> {
|
||||||
|
19
packages/cli/src/helpers/safeFetcher.ts
Normal file
19
packages/cli/src/helpers/safeFetcher.ts
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import fetch, {Response} from 'node-fetch'
|
||||||
|
|
||||||
|
export async function safeFetch(
|
||||||
|
url: string,
|
||||||
|
): Promise<{ok: true; json: unknown} | {ok: false; message: string; response: Response}> {
|
||||||
|
const response = await fetch(url)
|
||||||
|
if (response.ok) {
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
json: await response.json(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
message: `Error while fetching from ${response.url}: ${response.status} ${response.statusText}`,
|
||||||
|
response,
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user