1
1
import type { RemotesConfig } from '../../config' ;
2
+ import { SelfHostedIntegrationId } from '../../constants.integrations' ;
2
3
import type { Container } from '../../container' ;
4
+ import type { CloudIntegrationConnection } from '../../plus/integrations/authentication/models' ;
5
+ import { toIntegrationId } from '../../plus/integrations/authentication/models' ;
3
6
import { Logger } from '../../system/logger' ;
4
7
import { configuration } from '../../system/vscode/configuration' ;
8
+ import { parseGitRemoteUrl } from '../parsers/remoteParser' ;
5
9
import { AzureDevOpsRemote } from './azure-devops' ;
6
10
import { BitbucketRemote } from './bitbucket' ;
7
11
import { BitbucketServerRemote } from './bitbucket-server' ;
@@ -73,7 +77,10 @@ const builtInProviders: RemoteProviders = [
73
77
} ,
74
78
] ;
75
79
76
- export function loadRemoteProviders ( cfg : RemotesConfig [ ] | null | undefined ) : RemoteProviders {
80
+ export function loadRemoteProviders (
81
+ cfg : RemotesConfig [ ] | null | undefined ,
82
+ connectedIntegrations : CloudIntegrationConnection [ ] | undefined ,
83
+ ) : RemoteProviders {
77
84
const providers : RemoteProviders = [ ] ;
78
85
79
86
if ( cfg ?. length ) {
@@ -97,6 +104,37 @@ export function loadRemoteProviders(cfg: RemotesConfig[] | null | undefined): Re
97
104
}
98
105
}
99
106
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
+
100
138
providers . push ( ...builtInProviders ) ;
101
139
102
140
return providers ;
@@ -136,12 +174,14 @@ function getCustomProviderCreator(cfg: RemotesConfig) {
136
174
}
137
175
}
138
176
139
- export function getRemoteProviderMatcher (
177
+ export async function getRemoteProviderMatcher (
140
178
container : Container ,
141
179
providers ?: RemoteProviders ,
142
- ) : ( url : string , domain : string , path : string ) => RemoteProvider | undefined {
180
+ ) : Promise < ( url : string , domain : string , path : string ) => RemoteProvider | undefined > {
143
181
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 ) ;
145
185
}
146
186
147
187
return ( url : string , domain : string , path : string ) =>
0 commit comments