-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apply Secrets plugin API #9463
Merged
Merged
Apply Secrets plugin API #9463
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We likely need a
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I confirmed that the
keytar
dependency is license compatibleThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do I need to create a CQ for this package?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vinokurig I don't think so, it falls under the following use-case. I confirmed that the dependency looks fine, you may double-check if you like following this process.