mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 04:36:23 +00:00
23 lines
1.0 KiB
TypeScript
23 lines
1.0 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
import { Uri } from 'vscode';
|
|
|
|
const VALID_DESKTOP_CALLBACK_SCHEMES = [
|
|
'vscode',
|
|
'vscode-insiders',
|
|
// On Windows, some browsers don't seem to redirect back to OSS properly.
|
|
// As a result, you get stuck in the auth flow. We exclude this from the
|
|
// list until we can figure out a way to fix this behavior in browsers.
|
|
// The behavior was experienced on Windows.
|
|
// 'code-oss',
|
|
'vscode-wsl',
|
|
'vscode-exploration'
|
|
];
|
|
|
|
// This comes from the GitHub Authentication server
|
|
export function isSupportedEnvironment(url: Uri): boolean {
|
|
return VALID_DESKTOP_CALLBACK_SCHEMES.includes(url.scheme) || url.authority.endsWith('vscode.dev') || url.authority.endsWith('github.dev');
|
|
}
|