Skip to content

Commit 1fb39e1

Browse files
committed
Associate a Cloud GitHub Enterprise provider with remote by its domain
(#3901)
1 parent 5e57878 commit 1fb39e1

File tree

5 files changed

+55
-9
lines changed

5 files changed

+55
-9
lines changed

src/env/node/git/localGitProvider.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -4896,8 +4896,12 @@ export class LocalGitProvider implements GitProvider, Disposable {
48964896
let remotesPromise = this.useCaching ? this._remotesCache.get(repoPath) : undefined;
48974897
if (remotesPromise == null) {
48984898
async function load(this: LocalGitProvider): Promise<GitRemote[]> {
4899+
const ci = await this.container.cloudIntegrations;
4900+
const connections = await ci?.getConnections();
4901+
48994902
const providers = loadRemoteProviders(
49004903
configuration.get('remotes', this.container.git.getRepository(repoPath!)?.folder?.uri ?? null),
4904+
connections,
49014905
);
49024906

49034907
try {
@@ -4906,7 +4910,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
49064910
this.container,
49074911
data,
49084912
repoPath!,
4909-
getRemoteProviderMatcher(this.container, providers),
4913+
await getRemoteProviderMatcher(this.container, providers),
49104914
);
49114915
return remotes;
49124916
} catch (ex) {

src/git/parsers/remoteParser.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ import type { getRemoteProviderMatcher } from '../remotes/remoteProviders';
66

77
const remoteRegex = /^(.*)\t(.*)\s\((.*)\)$/gm;
88

9+
type PromiseType<T> = T extends Promise<infer U> ? U : T;
10+
911
export function parseGitRemotes(
1012
container: Container,
1113
data: string,
1214
repoPath: string,
13-
remoteProviderMatcher: ReturnType<typeof getRemoteProviderMatcher>,
15+
remoteProviderMatcher: PromiseType<ReturnType<typeof getRemoteProviderMatcher>>,
1416
): GitRemote[] {
1517
using sw = maybeStopWatch(`Git.parseRemotes(${repoPath})`, { log: false, logLevel: 'debug' });
1618
if (!data) return [];

src/git/remotes/remoteProviders.ts

+44-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import type { RemotesConfig } from '../../config';
2+
import { SelfHostedIntegrationId } from '../../constants.integrations';
23
import type { Container } from '../../container';
4+
import type { CloudIntegrationConnection } from '../../plus/integrations/authentication/models';
5+
import { toIntegrationId } from '../../plus/integrations/authentication/models';
36
import { Logger } from '../../system/logger';
47
import { configuration } from '../../system/vscode/configuration';
8+
import { parseGitRemoteUrl } from '../parsers/remoteParser';
59
import { AzureDevOpsRemote } from './azure-devops';
610
import { BitbucketRemote } from './bitbucket';
711
import { BitbucketServerRemote } from './bitbucket-server';
@@ -73,7 +77,10 @@ const builtInProviders: RemoteProviders = [
7377
},
7478
];
7579

76-
export function loadRemoteProviders(cfg: RemotesConfig[] | null | undefined): RemoteProviders {
80+
export function loadRemoteProviders(
81+
cfg: RemotesConfig[] | null | undefined,
82+
connectedIntegrations: CloudIntegrationConnection[] | undefined,
83+
): RemoteProviders {
7784
const providers: RemoteProviders = [];
7885

7986
if (cfg?.length) {
@@ -97,6 +104,37 @@ export function loadRemoteProviders(cfg: RemotesConfig[] | null | undefined): Re
97104
}
98105
}
99106

107+
if (connectedIntegrations?.length) {
108+
for (const ci of connectedIntegrations) {
109+
if (toIntegrationId[ci.provider] === SelfHostedIntegrationId.CloudGitHubEnterprise) {
110+
const host = new URL(ci.domain).host;
111+
const rc: RemotesConfig = {
112+
domain: host,
113+
regex: null,
114+
name: ci.domain,
115+
protocol: 'https',
116+
type: 'GitHub',
117+
};
118+
const providerCreator = getCustomProviderCreator(rc);
119+
if (providerCreator == null) continue;
120+
121+
let matcher: string | RegExp | undefined;
122+
try {
123+
matcher = rc.domain?.toLowerCase();
124+
if (matcher == null) throw new Error('No matcher found');
125+
} catch (ex) {
126+
Logger.error(ex, `Loading remote provider '${rc.name ?? ''}' failed`);
127+
}
128+
129+
providers.push({
130+
custom: true,
131+
matcher: matcher!,
132+
creator: providerCreator,
133+
});
134+
}
135+
}
136+
}
137+
100138
providers.push(...builtInProviders);
101139

102140
return providers;
@@ -136,12 +174,14 @@ function getCustomProviderCreator(cfg: RemotesConfig) {
136174
}
137175
}
138176

139-
export function getRemoteProviderMatcher(
177+
export async function getRemoteProviderMatcher(
140178
container: Container,
141179
providers?: RemoteProviders,
142-
): (url: string, domain: string, path: string) => RemoteProvider | undefined {
180+
): Promise<(url: string, domain: string, path: string) => RemoteProvider | undefined> {
143181
if (providers == null) {
144-
providers = loadRemoteProviders(configuration.get('remotes', null));
182+
const ci = await container.cloudIntegrations;
183+
const c = await ci?.getConnections();
184+
providers = loadRemoteProviders(configuration.get('remotes', null), c);
145185
}
146186

147187
return (url: string, domain: string, path: string) =>

src/plus/drafts/draftsService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ export class DraftService implements Disposable {
729729
} else if (data.provider?.repoName != null) {
730730
name = data.provider.repoName;
731731
} else if (data.remote?.url != null && data.remote?.domain != null && data.remote?.path != null) {
732-
const matcher = getRemoteProviderMatcher(this.container);
732+
const matcher = await getRemoteProviderMatcher(this.container);
733733
const provider = matcher(data.remote.url, data.remote.domain, data.remote.path);
734734
name = provider?.repoName ?? data.remote.path;
735735
} else {

src/plus/integrations/providers/github/githubGitProvider.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2767,7 +2767,7 @@ export class GitHubGitProvider implements GitProvider, Disposable {
27672767
): Promise<GitRemote[]> {
27682768
if (repoPath == null) return [];
27692769

2770-
const providers = loadRemoteProviders(configuration.get('remotes', null));
2770+
const providers = loadRemoteProviders(configuration.get('remotes', null), undefined);
27712771

27722772
const uri = Uri.parse(repoPath, true);
27732773
const [, owner, repo] = uri.path.split('/', 3);
@@ -2784,7 +2784,7 @@ export class GitHubGitProvider implements GitProvider, Disposable {
27842784
'https',
27852785
domain,
27862786
path,
2787-
getRemoteProviderMatcher(this.container, providers)(url, domain, path),
2787+
(await getRemoteProviderMatcher(this.container, providers))(url, domain, path),
27882788
[
27892789
{ type: 'fetch', url: url },
27902790
{ type: 'push', url: url },

0 commit comments

Comments
 (0)