Skip to content

Commit 377483f

Browse files
committed
Associate a Cloud GitHub Enterprise provider with remote by its domain
(#3901)
1 parent 0958984 commit 377483f

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
@@ -5039,8 +5039,12 @@ export class LocalGitProvider implements GitProvider, Disposable {
50395039
let remotesPromise = this.useCaching ? this._remotesCache.get(repoPath) : undefined;
50405040
if (remotesPromise == null) {
50415041
async function load(this: LocalGitProvider): Promise<GitRemote[]> {
5042+
const ci = await this.container.cloudIntegrations;
5043+
const connections = await ci?.getConnections();
5044+
50425045
const providers = loadRemoteProviders(
50435046
configuration.get('remotes', this.container.git.getRepository(repoPath!)?.folder?.uri ?? null),
5047+
connections,
50445048
);
50455049

50465050
try {
@@ -5049,7 +5053,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
50495053
this.container,
50505054
data,
50515055
repoPath!,
5052-
getRemoteProviderMatcher(this.container, providers),
5056+
await getRemoteProviderMatcher(this.container, providers),
50535057
);
50545058
return remotes;
50555059
} 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
@@ -2781,7 +2781,7 @@ export class GitHubGitProvider implements GitProvider, Disposable {
27812781
): Promise<GitRemote[]> {
27822782
if (repoPath == null) return [];
27832783

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

27862786
const uri = Uri.parse(repoPath, true);
27872787
const [, owner, repo] = uri.path.split('/', 3);
@@ -2798,7 +2798,7 @@ export class GitHubGitProvider implements GitProvider, Disposable {
27982798
'https',
27992799
domain,
28002800
path,
2801-
getRemoteProviderMatcher(this.container, providers)(url, domain, path),
2801+
(await getRemoteProviderMatcher(this.container, providers))(url, domain, path),
28022802
[
28032803
{ type: 'fetch', url: url },
28042804
{ type: 'push', url: url },

0 commit comments

Comments
 (0)