-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Igor Vinokur <ivinokur@redhat.com>
- Loading branch information
Showing
15 changed files
with
518 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2021 Red Hat, Inc. and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
// code copied and modified from https://github.com/microsoft/vscode/blob/1.55.2/src/vs/workbench/services/credentials/common/credentials.ts#L12 | ||
|
||
import { inject, injectable } from 'inversify'; | ||
import { Emitter, Event } from '../common/event'; | ||
import { KeytarService } from '../common/keytar-protocol'; | ||
|
||
export interface CredentialsProvider { | ||
getPassword(service: string, account: string): Promise<string | undefined>; | ||
setPassword(service: string, account: string, password: string): Promise<void>; | ||
deletePassword(service: string, account: string): Promise<boolean>; | ||
findPassword(service: string): Promise<string | undefined>; | ||
findCredentials(service: string): Promise<Array<{ account: string, password: string }>>; | ||
} | ||
|
||
export const CredentialsService = Symbol('CredentialsService'); | ||
|
||
export interface CredentialsService extends CredentialsProvider { | ||
readonly onDidChangePassword: Event<CredentialsChangeEvent>; | ||
} | ||
|
||
export interface CredentialsChangeEvent { | ||
service: string | ||
account: string; | ||
} | ||
|
||
@injectable() | ||
export class CredentialsServiceImpl implements CredentialsService { | ||
private onDidChangePasswordEmitter = new Emitter<CredentialsChangeEvent>(); | ||
readonly onDidChangePassword = this.onDidChangePasswordEmitter.event; | ||
|
||
private credentialsProvider: CredentialsProvider; | ||
|
||
constructor(@inject(KeytarService) private readonly keytarService: KeytarService) { | ||
this.credentialsProvider = new KeytarCredentialsProvider(this.keytarService); | ||
} | ||
|
||
getPassword(service: string, account: string): Promise<string | undefined> { | ||
return this.credentialsProvider.getPassword(service, account); | ||
} | ||
|
||
async setPassword(service: string, account: string, password: string): Promise<void> { | ||
await this.credentialsProvider.setPassword(service, account, password); | ||
|
||
this.onDidChangePasswordEmitter.fire({ service, account }); | ||
} | ||
|
||
deletePassword(service: string, account: string): Promise<boolean> { | ||
const didDelete = this.credentialsProvider.deletePassword(service, account); | ||
this.onDidChangePasswordEmitter.fire({ service, account }); | ||
|
||
return didDelete; | ||
} | ||
|
||
findPassword(service: string): Promise<string | undefined> { | ||
return this.credentialsProvider.findPassword(service); | ||
} | ||
|
||
findCredentials(service: string): Promise<Array<{ account: string, password: string; }>> { | ||
return this.credentialsProvider.findCredentials(service); | ||
} | ||
} | ||
|
||
class KeytarCredentialsProvider implements CredentialsProvider { | ||
|
||
constructor(private readonly keytarService: KeytarService) {} | ||
|
||
deletePassword(service: string, account: string): Promise<boolean> { | ||
return this.keytarService.deletePassword(service, account); | ||
} | ||
|
||
findCredentials(service: string): Promise<Array<{ account: string; password: string }>> { | ||
return this.keytarService.findCredentials(service); | ||
} | ||
|
||
findPassword(service: string): Promise<string | undefined> { | ||
return this.keytarService.findPassword(service); | ||
} | ||
|
||
getPassword(service: string, account: string): Promise<string | undefined> { | ||
return this.keytarService.getPassword(service, account); | ||
} | ||
|
||
setPassword(service: string, account: string, password: string): Promise<void> { | ||
return this.keytarService.setPassword(service, account, password); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2021 Red Hat, Inc. and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
export const keytarServicePath = '/services/keytar'; | ||
|
||
export const KeytarService = Symbol('KeytarService'); | ||
export interface KeytarService { | ||
setPassword(service: string, account: string, password: string): Promise<void>; | ||
getPassword(service: string, account: string): Promise<string | undefined>; | ||
deletePassword(service: string, account: string): Promise<boolean>; | ||
findPassword(service: string): Promise<string | undefined>; | ||
findCredentials(service: string): Promise<Array<{ account: string, password: string }>>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2021 Red Hat, Inc. and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
// code copied and modified from https://github.com/microsoft/vscode/blob/1.55.2/src/vs/platform/native/electron-main/nativeHostMainService.ts#L679-L771 | ||
|
||
import { KeytarService } from '../common/keytar-protocol'; | ||
import { injectable } from 'inversify'; | ||
import { isWindows } from '../common'; | ||
import * as keytar from 'keytar'; | ||
|
||
@injectable() | ||
export class KeytarServiceImpl implements KeytarService { | ||
private static readonly MAX_PASSWORD_LENGTH = 2500; | ||
private static readonly PASSWORD_CHUNK_SIZE = KeytarServiceImpl.MAX_PASSWORD_LENGTH - 100; | ||
|
||
async setPassword(service: string, account: string, password: string): Promise<void> { | ||
if (isWindows && password.length > KeytarServiceImpl.MAX_PASSWORD_LENGTH) { | ||
let index = 0; | ||
let chunk = 0; | ||
let hasNextChunk = true; | ||
while (hasNextChunk) { | ||
const passwordChunk = password.substring(index, index + KeytarServiceImpl.PASSWORD_CHUNK_SIZE); | ||
index += KeytarServiceImpl.PASSWORD_CHUNK_SIZE; | ||
hasNextChunk = password.length - index > 0; | ||
|
||
const content: ChunkedPassword = { | ||
content: passwordChunk, | ||
hasNextChunk: hasNextChunk | ||
}; | ||
|
||
await keytar.setPassword(service, chunk ? `${account}-${chunk}` : account, JSON.stringify(content)); | ||
chunk++; | ||
} | ||
|
||
} else { | ||
await keytar.setPassword(service, account, password); | ||
} | ||
} | ||
|
||
deletePassword(service: string, account: string): Promise<boolean> { | ||
return keytar.deletePassword(service, account); | ||
} | ||
|
||
async getPassword(service: string, account: string): Promise<string | undefined> { | ||
const password = await keytar.getPassword(service, account); | ||
if (password) { | ||
try { | ||
let { content, hasNextChunk }: ChunkedPassword = JSON.parse(password); | ||
if (!content || !hasNextChunk) { | ||
return password; | ||
} | ||
|
||
let index = 1; | ||
while (hasNextChunk) { | ||
const nextChunk = await keytar.getPassword(service, `${account}-${index++}`); | ||
const result: ChunkedPassword = JSON.parse(nextChunk!); | ||
content += result.content; | ||
hasNextChunk = result.hasNextChunk; | ||
} | ||
|
||
return content; | ||
} catch { | ||
return password; | ||
} | ||
} | ||
} | ||
async findPassword(service: string): Promise<string | undefined> { | ||
const password = await keytar.findPassword(service); | ||
if (password) { | ||
return password; | ||
} | ||
} | ||
async findCredentials(service: string): Promise<Array<{ account: string, password: string }>> { | ||
return keytar.findCredentials(service); | ||
} | ||
} | ||
|
||
interface ChunkedPassword { | ||
content: string; | ||
hasNextChunk: boolean; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.