mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 02:58:31 -05:00
* Merge from vscode a5cf1da01d5db3d2557132be8d30f89c38019f6c * remove files we don't want * fix hygiene * update distro * update distro * fix hygiene * fix strict nulls * distro * distro * fix tests * fix tests * add another edit * fix viewlet icon * fix azure dialog * fix some padding * fix more padding issues
75 lines
2.6 KiB
TypeScript
75 lines
2.6 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { localize } from 'vs/nls';
|
|
import { Event, Emitter } from 'vs/base/common/event';
|
|
import { IAuthTokenService, AuthTokenStatus } from 'vs/platform/auth/common/auth';
|
|
import { ICredentialsService } from 'vs/platform/credentials/common/credentials';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
import { IQuickInputService } from 'vs/platform/quickinput/common/quickInput';
|
|
import { URI } from 'vs/base/common/uri';
|
|
|
|
const SERVICE_NAME = 'VS Code';
|
|
const ACCOUNT = 'MyAccount';
|
|
|
|
export class AuthTokenService extends Disposable implements IAuthTokenService {
|
|
_serviceBrand: undefined;
|
|
|
|
private _status: AuthTokenStatus = AuthTokenStatus.Initializing;
|
|
get status(): AuthTokenStatus { return this._status; }
|
|
private _onDidChangeStatus: Emitter<AuthTokenStatus> = this._register(new Emitter<AuthTokenStatus>());
|
|
readonly onDidChangeStatus: Event<AuthTokenStatus> = this._onDidChangeStatus.event;
|
|
|
|
readonly _onDidGetCallback: Emitter<URI> = this._register(new Emitter<URI>());
|
|
|
|
constructor(
|
|
@ICredentialsService private readonly credentialsService: ICredentialsService,
|
|
@IQuickInputService private readonly quickInputService: IQuickInputService
|
|
) {
|
|
super();
|
|
this.getToken().then(token => {
|
|
if (token) {
|
|
this.setStatus(AuthTokenStatus.SignedIn);
|
|
} else {
|
|
this.setStatus(AuthTokenStatus.SignedOut);
|
|
}
|
|
});
|
|
}
|
|
|
|
async getToken(): Promise<string | undefined> {
|
|
const token = await this.credentialsService.getPassword(SERVICE_NAME, ACCOUNT);
|
|
if (token) {
|
|
return token;
|
|
}
|
|
|
|
return undefined; // {{SQL CARBON EDIT}} strict-null-check
|
|
}
|
|
|
|
async login(): Promise<void> {
|
|
const token = await this.quickInputService.input({ placeHolder: localize('enter token', "Please provide the auth bearer token"), ignoreFocusLost: true, });
|
|
if (token) {
|
|
await this.credentialsService.setPassword(SERVICE_NAME, ACCOUNT, token);
|
|
this.setStatus(AuthTokenStatus.SignedIn);
|
|
}
|
|
}
|
|
|
|
async refreshToken(): Promise<void> {
|
|
await this.logout();
|
|
}
|
|
|
|
async logout(): Promise<void> {
|
|
await this.credentialsService.deletePassword(SERVICE_NAME, ACCOUNT);
|
|
this.setStatus(AuthTokenStatus.SignedOut);
|
|
}
|
|
|
|
private setStatus(status: AuthTokenStatus): void {
|
|
if (this._status !== status) {
|
|
this._status = status;
|
|
this._onDidChangeStatus.fire(status);
|
|
}
|
|
}
|
|
|
|
}
|