Skip to content
Snippets Groups Projects
Unverified Commit 3cd70f8c authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

refactor(github): Extract getSourceUrl function (#12510)

parent 3a460c21
No related merge requests found
...@@ -13,12 +13,18 @@ export function getSourceUrlBase(registryUrl: string): string { ...@@ -13,12 +13,18 @@ export function getSourceUrlBase(registryUrl: string): string {
return ensureTrailingSlash(registryUrl ?? defaultSourceUrlBase); return ensureTrailingSlash(registryUrl ?? defaultSourceUrlBase);
} }
export function getApiBaseUrl(sourceUrlBase: string): string { export function getApiBaseUrl(registryUrl: string): string {
const sourceUrlBase = getSourceUrlBase(registryUrl);
return sourceUrlBase === defaultSourceUrlBase return sourceUrlBase === defaultSourceUrlBase
? `https://api.github.com/` ? `https://api.github.com/`
: `${sourceUrlBase}api/v3/`; : `${sourceUrlBase}api/v3/`;
} }
export function getSourceUrl(lookupName: string, registryUrl?: string): string {
const sourceUrlBase = getSourceUrlBase(registryUrl);
return `${sourceUrlBase}${lookupName}`;
}
export async function getGithubRelease( export async function getGithubRelease(
apiBaseUrl: string, apiBaseUrl: string,
repo: string, repo: string,
......
...@@ -5,7 +5,7 @@ import { ...@@ -5,7 +5,7 @@ import {
cacheNamespace, cacheNamespace,
getApiBaseUrl, getApiBaseUrl,
getGithubRelease, getGithubRelease,
getSourceUrlBase, getSourceUrl,
http, http,
id, id,
} from './common'; } from './common';
...@@ -45,15 +45,14 @@ export async function getReleases({ ...@@ -45,15 +45,14 @@ export async function getReleases({
if (cachedResult) { if (cachedResult) {
return cachedResult; return cachedResult;
} }
const sourceUrlBase = getSourceUrlBase(registryUrl); const apiBaseUrl = getApiBaseUrl(registryUrl);
const apiBaseUrl = getApiBaseUrl(sourceUrlBase);
const url = `${apiBaseUrl}repos/${repo}/releases?per_page=100`; const url = `${apiBaseUrl}repos/${repo}/releases?per_page=100`;
const res = await http.getJson<GithubRelease[]>(url, { const res = await http.getJson<GithubRelease[]>(url, {
paginate: true, paginate: true,
}); });
const githubReleases = res.body; const githubReleases = res.body;
const dependency: ReleaseResult = { const dependency: ReleaseResult = {
sourceUrl: `${sourceUrlBase}${repo}`, sourceUrl: getSourceUrl(repo, registryUrl),
releases: null, releases: null,
}; };
dependency.releases = githubReleases.map( dependency.releases = githubReleases.map(
...@@ -113,7 +112,7 @@ export async function getDigest( ...@@ -113,7 +112,7 @@ export async function getDigest(
return cachedResult; return cachedResult;
} }
const apiBaseUrl = getApiBaseUrl(getSourceUrlBase(registryUrl)); const apiBaseUrl = getApiBaseUrl(registryUrl);
const currentRelease = await getGithubRelease(apiBaseUrl, repo, currentValue); const currentRelease = await getGithubRelease(apiBaseUrl, repo, currentValue);
const digestAsset = await findDigestAsset(currentRelease, currentDigest); const digestAsset = await findDigestAsset(currentRelease, currentDigest);
let newDigest: string; let newDigest: string;
......
import { logger } from '../../logger'; import { logger } from '../../logger';
import * as packageCache from '../../util/cache/package'; import * as packageCache from '../../util/cache/package';
import { GithubHttp } from '../../util/http/github'; import { GithubHttp } from '../../util/http/github';
import { ensureTrailingSlash } from '../../util/url';
import * as githubReleases from '../github-releases'; import * as githubReleases from '../github-releases';
import { getApiBaseUrl, getSourceUrl } from '../github-releases/common';
import type { DigestConfig, GetReleasesConfig, ReleaseResult } from '../types'; import type { DigestConfig, GetReleasesConfig, ReleaseResult } from '../types';
import type { GitHubTag, TagResponse } from './types'; import type { GitHubTag, TagResponse } from './types';
...@@ -33,14 +33,7 @@ async function getTagCommit( ...@@ -33,14 +33,7 @@ async function getTagCommit(
return cachedResult; return cachedResult;
} }
// default to GitHub.com if no GHE host is specified. const apiBaseUrl = getApiBaseUrl(registryUrl);
const sourceUrlBase = ensureTrailingSlash(
registryUrl ?? 'https://github.com/'
);
const apiBaseUrl =
sourceUrlBase === 'https://github.com/'
? `https://api.github.com/`
: `${sourceUrlBase}api/v3/`;
let digest: string; let digest: string;
try { try {
const url = `${apiBaseUrl}repos/${githubRepo}/git/refs/tags/${tag}`; const url = `${apiBaseUrl}repos/${githubRepo}/git/refs/tags/${tag}`;
...@@ -93,14 +86,7 @@ export async function getDigest( ...@@ -93,14 +86,7 @@ export async function getDigest(
if (cachedResult) { if (cachedResult) {
return cachedResult; return cachedResult;
} }
// default to GitHub.com if no GHE host is specified. const apiBaseUrl = getApiBaseUrl(registryUrl);
const sourceUrlBase = ensureTrailingSlash(
registryUrl ?? 'https://github.com/'
);
const apiBaseUrl =
sourceUrlBase === 'https://github.com/'
? `https://api.github.com/`
: `${sourceUrlBase}api/v3/`;
let digest: string; let digest: string;
try { try {
const url = `${apiBaseUrl}repos/${repo}/commits?per_page=1`; const url = `${apiBaseUrl}repos/${repo}/commits?per_page=1`;
...@@ -138,14 +124,7 @@ async function getTags({ ...@@ -138,14 +124,7 @@ async function getTags({
return cachedResult; return cachedResult;
} }
// default to GitHub.com if no GHE host is specified. const apiBaseUrl = getApiBaseUrl(registryUrl);
const sourceUrlBase = ensureTrailingSlash(
registryUrl ?? 'https://github.com/'
);
const apiBaseUrl =
sourceUrlBase === 'https://github.com/'
? `https://api.github.com/`
: `${sourceUrlBase}api/v3/`;
// tag // tag
const url = `${apiBaseUrl}repos/${repo}/tags?per_page=100`; const url = `${apiBaseUrl}repos/${repo}/tags?per_page=100`;
...@@ -155,7 +134,7 @@ async function getTags({ ...@@ -155,7 +134,7 @@ async function getTags({
}) })
).body.map((o) => o.name); ).body.map((o) => o.name);
const dependency: ReleaseResult = { const dependency: ReleaseResult = {
sourceUrl: `${sourceUrlBase}${repo}`, sourceUrl: getSourceUrl(repo, registryUrl),
releases: null, releases: null,
}; };
dependency.releases = versions.map((version) => ({ dependency.releases = versions.map((version) => ({
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment