소스 검색

Fixes #1208 - refines connect to remote flow

Adds a deny everywhere option
Adds command to reset denials
main
Eric Amodio 4 년 전
부모
커밋
934ef04eb0
11개의 변경된 파일149개의 추가작업 그리고 61개의 파일을 삭제
  1. +1
    -0
      CHANGELOG.md
  2. +9
    -0
      package.json
  3. +1
    -0
      src/commands.ts
  4. +1
    -0
      src/commands/common.ts
  5. +17
    -0
      src/commands/resetRemoteConnectionAuthorization.ts
  6. +7
    -3
      src/constants.ts
  7. +20
    -11
      src/extension.ts
  8. +18
    -5
      src/git/gitService.ts
  9. +9
    -3
      src/git/models/repository.ts
  10. +65
    -39
      src/git/remotes/provider.ts
  11. +1
    -0
      src/quickpicks/quickPicksItems.ts

+ 1
- 0
CHANGELOG.md 파일 보기

@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Fixes [#1208](https://github.com/eamodio/vscode-gitlens/issues/1208) - Connect to Github notification is noisy
- Fixes [#526](https://github.com/eamodio/vscode-gitlens/issues/526) - FAILED in gitlens.outputLevel=verbose; likely due to regex not in quotes
- Fixes [#1222](https://github.com/eamodio/vscode-gitlens/issues/1222) - GitLens: Open Associated Pull Request doesn't work
- Fixes [#1223](https://github.com/eamodio/vscode-gitlens/issues/1223) - commit pane, ${tips} does not show tags

+ 9
- 0
package.json 파일 보기

@ -4409,6 +4409,11 @@
"command": "gitlens.views.tags.setShowAvatarsOff",
"title": "Hide Avatars",
"category": "GitLens"
},
{
"command": "gitlens.resetRemoteConnectionAuthorization",
"title": "Reset Remote Connection Authorization",
"category": "GitLens"
}
],
"menus": {
@ -5596,6 +5601,10 @@
{
"command": "gitlens.views.tags.setShowAvatarsOff",
"when": "false"
},
{
"command": "gitlens.resetRemoteConnectionAuthorization",
"when": "gitlens:hasRichRemotes"
}
],
"editor/context": [

+ 1
- 0
src/commands.ts 파일 보기

@ -39,6 +39,7 @@ export * from './commands/rebaseEditor';
export * from './commands/refreshHover';
export * from './commands/remoteProviders';
export * from './commands/repositories';
export * from './commands/resetRemoteConnectionAuthorization';
export * from './commands/resetSuppressedWarnings';
export * from './commands/setViewsLayout';
export * from './commands/searchCommits';

+ 1
- 0
src/commands/common.ts 파일 보기

@ -92,6 +92,7 @@ export enum Commands {
PushRepositories = 'gitlens.pushRepositories',
GitCommands = 'gitlens.gitCommands',
RefreshHover = 'gitlens.refreshHover',
ResetRemoteConnectionAuthorization = 'gitlens.resetRemoteConnectionAuthorization',
ResetSuppressedWarnings = 'gitlens.resetSuppressedWarnings',
RevealCommitInView = 'gitlens.revealCommitInView',
SearchCommits = 'gitlens.showCommitSearch',

+ 17
- 0
src/commands/resetRemoteConnectionAuthorization.ts 파일 보기

@ -0,0 +1,17 @@
'use strict';
import { Container } from '../container';
import { command, Command, Commands } from './common';
@command()
export class ResetRemoteConnectionAuthorizationCommand extends Command {
constructor() {
super(Commands.ResetRemoteConnectionAuthorization);
}
async execute() {
for (const repo of await Container.git.getRepositories()) {
const remote = await Container.git.getRichRemoteProvider(repo.path, { includeDisconnected: true });
await remote?.provider?.resetRemoteConnectionAuthorization();
}
}
}

+ 7
- 3
src/constants.ts 파일 보기

@ -31,8 +31,9 @@ export enum ContextKeys {
DisabledToggleCodeLens = 'gitlens:disabledToggleCodeLens',
Disabled = 'gitlens:disabled',
Enabled = 'gitlens:enabled',
HasRemotes = 'gitlens:hasRemotes',
HasConnectedRemotes = 'gitlens:hasConnectedRemotes',
HasRemotes = 'gitlens:hasRemotes',
HasRichRemotes = 'gitlens:hasRichRemotes',
Key = 'gitlens:key',
Readonly = 'gitlens:readonly',
ViewsCanCompare = 'gitlens:views:canCompare',
@ -129,15 +130,17 @@ export enum GlyphChars {
}
export enum SyncedState {
Version = 'gitlens:synced:version',
DisallowConnectionPrefix = 'gitlens:disallow:connection:',
UpdatesViewVisible = 'gitlens:views:updates:visible',
Version = 'gitlens:synced:version',
WelcomeViewVisible = 'gitlens:views:welcome:visible',
}
export enum GlobalState {
DeprecatedVersion = 'gitlensVersion',
Avatars = 'gitlens:avatars',
Version = 'gitlens:version',
Deprecated_Version = 'gitlensVersion',
}
export const ImageMimetypes: Record<string, string> = {
@ -208,6 +211,7 @@ export interface StarredRepositories {
export enum WorkspaceState {
BranchComparisons = 'gitlens:branch:comparisons',
ConnectedPrefix = 'gitlens:connected:',
DefaultRemote = 'gitlens:remote:default',
DisallowConnectionPrefix = 'gitlens:disallow:connection:',
StarredBranches = 'gitlens:starred:branches',

+ 20
- 11
src/extension.ts 파일 보기

@ -13,9 +13,13 @@ import { Messages } from './messages';
import { Strings, Versions } from './system';
import { ViewNode } from './views/nodes';
let _context: ExtensionContext | undefined;
export async function activate(context: ExtensionContext) {
const start = process.hrtime();
_context = context;
let extensionId = 'eamodio.gitlens';
if (paths.basename(context.globalStorageUri.fsPath) === 'eamodio.gitlens-insiders') {
extensionId = 'eamodio.gitlens-insiders';
@ -34,11 +38,7 @@ export async function activate(context: ExtensionContext) {
// Pretend we are enabled (until we know otherwise) and set the view contexts to reduce flashing on load
void setContext(ContextKeys.Enabled, true);
context.globalState.setKeysForSync([
SyncedState.Version,
SyncedState.UpdatesViewVisible,
SyncedState.WelcomeViewVisible,
]);
setKeysForSync();
Logger.configure(context, configuration.get('outputLevel'), o => {
if (GitUri.is(o)) {
@ -64,7 +64,7 @@ export async function activate(context: ExtensionContext) {
const syncedVersion = context.globalState.get<string>(SyncedState.Version);
const previousVersion =
context.globalState.get<string>(GlobalState.Version) ??
context.globalState.get<string>(GlobalState.DeprecatedVersion) ??
context.globalState.get<string>(GlobalState.Deprecated_Version) ??
syncedVersion;
if (Logger.level === TraceLevel.Debug || Logger.isDebugging) {
@ -157,10 +157,6 @@ export function deactivate() {
// nothing to do
}
export async function setEnabled(enabled: boolean): Promise<void> {
await Promise.all([setContext(ContextKeys.Enabled, enabled), setContext(ContextKeys.Disabled, !enabled)]);
}
// async function migrateSettings(context: ExtensionContext, previousVersion: string | undefined) {
// if (previousVersion === undefined) return;
@ -174,7 +170,20 @@ export async function setEnabled(enabled: boolean): Promise {
// }
// }
function notifyOnUnsupportedGitVersion(version: string) {
export async function setEnabled(enabled: boolean): Promise<void> {
await Promise.all([setContext(ContextKeys.Enabled, enabled), setContext(ContextKeys.Disabled, !enabled)]);
}
export function setKeysForSync(...keys: (SyncedState | string)[]) {
return _context?.globalState.setKeysForSync([
...keys,
SyncedState.UpdatesViewVisible,
SyncedState.Version,
SyncedState.WelcomeViewVisible,
]);
}
export function notifyOnUnsupportedGitVersion(version: string) {
if (GitService.compareGitVersion('2.7.2') !== -1) return;
// If git is less than v2.7.2

+ 18
- 5
src/git/gitService.ts 파일 보기

@ -445,23 +445,36 @@ export class GitService implements Disposable {
await setEnabled(hasRepository);
let hasRemotes = false;
let hasRichRemotes = false;
let hasConnectedRemotes = false;
if (hasRepository) {
for (const repo of repositoryTree.values()) {
if (!hasConnectedRemotes) {
hasConnectedRemotes = await repo.hasConnectedRemotes();
hasConnectedRemotes = await repo.hasConnectedRemote();
if (hasConnectedRemotes) {
hasRichRemotes = true;
hasRemotes = true;
}
}
if (!hasRichRemotes) {
hasRichRemotes = await repo.hasRichRemote();
}
if (!hasRemotes) {
hasRemotes = hasConnectedRemotes || (await repo.hasRemotes());
hasRemotes = await repo.hasRemotes();
}
if (hasRemotes && hasConnectedRemotes) break;
if (hasRemotes && hasRichRemotes && hasConnectedRemotes) break;
}
}
await setContext(ContextKeys.HasRemotes, hasRemotes);
await setContext(ContextKeys.HasConnectedRemotes, hasConnectedRemotes);
await Promise.all([
setContext(ContextKeys.HasRemotes, hasRemotes),
setContext(ContextKeys.HasRichRemotes, hasRichRemotes),
setContext(ContextKeys.HasConnectedRemotes, hasConnectedRemotes),
]);
// If we have no repositories setup a watcher in case one is initialized
if (!hasRepository) {

+ 9
- 3
src/git/models/repository.ts 파일 보기

@ -485,14 +485,20 @@ export class Repository implements Disposable {
return Container.git.getTags(this.path, options);
}
async hasConnectedRemote(): Promise<boolean> {
const remote = await Container.git.getRichRemoteProvider(await this.getRemotes());
return remote?.provider != null;
}
async hasRemotes(): Promise<boolean> {
const remotes = await this.getRemotes();
return remotes?.length > 0;
}
async hasConnectedRemotes(): Promise<boolean> {
const remotes = await this.getRemotes();
const remote = await Container.git.getRichRemoteProvider(remotes);
async hasRichRemote(): Promise<boolean> {
const remote = await Container.git.getRichRemoteProvider(await this.getRemotes(), {
includeDisconnected: true,
});
return remote?.provider != null;
}

+ 65
- 39
src/git/remotes/provider.ts 파일 보기

@ -13,8 +13,9 @@ import {
} from 'vscode';
import { DynamicAutolinkReference } from '../../annotations/autolinks';
import { AutolinkReference } from '../../config';
import { WorkspaceState } from '../../constants';
import { SyncedState, WorkspaceState } from '../../constants';
import { Container } from '../../container';
import { setKeysForSync } from '../../extension';
import { Logger } from '../../logger';
import { Messages } from '../../messages';
import { Account, GitLogCommit, IssueOrPullRequest, PullRequest, PullRequestState, Repository } from '../models/models';
@ -287,7 +288,15 @@ export abstract class RichRemoteProvider extends RemoteProvider {
return this.custom ? `${this.name}:${this.domain}` : this.name;
}
private get disallowConnectionKey() {
private get connectedKey() {
return `${WorkspaceState.ConnectedPrefix}${this.key}`;
}
private get disallowSyncedGlobalConnectionKey() {
return `${SyncedState.DisallowConnectionPrefix}${this.key}`;
}
private get disallowWorkspaceConnectionKey() {
return `${WorkspaceState.DisallowConnectionPrefix}${this.key}`;
}
@ -330,7 +339,8 @@ export abstract class RichRemoteProvider extends RemoteProvider {
this._session = null;
if (disconnected) {
void Container.context.workspaceState.update(this.disallowConnectionKey, true);
void Container.context.workspaceState.update(this.connectedKey, undefined);
void Container.context.workspaceState.update(this.disallowWorkspaceConnectionKey, true);
this._onDidChange.fire();
if (!silent) {
@ -339,6 +349,15 @@ export abstract class RichRemoteProvider extends RemoteProvider {
}
}
@log()
async resetRemoteConnectionAuthorization() {
await Promise.all([
Container.context.workspaceState.update(this.connectedKey, undefined),
Container.context.workspaceState.update(this.disallowWorkspaceConnectionKey, undefined),
Container.context.globalState.update(this.disallowSyncedGlobalConnectionKey, undefined),
]);
}
@gate()
@debug<RichRemoteProvider['isConnected']>({
exit: connected => `returned ${connected}`,
@ -525,26 +544,36 @@ export abstract class RichRemoteProvider extends RemoteProvider {
): Promise<PullRequest | undefined>;
@gate()
private async ensureSession(createIfNone: boolean): Promise<AuthenticationSession | undefined> {
private async ensureSession(createIfNeeded: boolean): Promise<AuthenticationSession | undefined> {
if (this._session != null) return this._session;
if (createIfNone) {
await Container.context.workspaceState.update(this.disallowConnectionKey, undefined);
} else if (Container.context.workspaceState.get<boolean>(this.disallowConnectionKey)) {
if (createIfNeeded) {
await Promise.all([
Container.context.workspaceState.update(this.connectedKey, undefined),
Container.context.workspaceState.update(this.disallowWorkspaceConnectionKey, undefined),
]);
} else if (
!Container.context.workspaceState.get<boolean>(this.connectedKey) &&
(Container.context.globalState.get<boolean>(this.disallowSyncedGlobalConnectionKey) ||
Container.context.workspaceState.get<boolean>(this.disallowWorkspaceConnectionKey))
) {
return undefined;
}
let session;
try {
session = await authentication.getSession(this.authProvider.id, this.authProvider.scopes, {
createIfNone: createIfNone,
createIfNone: createIfNeeded,
});
} catch (ex) {
await Container.context.workspaceState.update(this.disallowConnectionKey, true);
await Promise.all([
Container.context.workspaceState.update(this.connectedKey, undefined),
Container.context.workspaceState.update(this.disallowWorkspaceConnectionKey, true),
]);
if (ex instanceof Error && ex.message.includes('User did not consent')) {
if (!createIfNone) {
void this.promptToRetyConnection();
if (!createIfNeeded) {
void this.promptToAllow(true);
}
return undefined;
}
@ -552,19 +581,25 @@ export abstract class RichRemoteProvider extends RemoteProvider {
session = null;
}
if (session === undefined && !createIfNone) {
await Container.context.workspaceState.update(this.disallowConnectionKey, true);
if (session === undefined && !createIfNeeded) {
await Promise.all([
Container.context.workspaceState.update(this.connectedKey, undefined),
Container.context.workspaceState.update(this.disallowWorkspaceConnectionKey, true),
]);
void this.promptToConnect();
void this.promptToAllow();
}
this._session = session ?? null;
this.invalidClientExceptionCount = 0;
if (session != null) {
await Container.context.workspaceState.update(this.disallowConnectionKey, undefined);
await Promise.all([
Container.context.workspaceState.update(this.connectedKey, true),
Container.context.workspaceState.update(this.disallowWorkspaceConnectionKey, undefined),
]);
if (createIfNone) {
if (createIfNeeded) {
this._onDidChange.fire();
_onDidChangeAuthentication.fire({ reason: 'connected', key: this.key });
}
@ -574,34 +609,25 @@ export abstract class RichRemoteProvider extends RemoteProvider {
}
@gate()
private async promptToConnect() {
const connect: MessageItem = { title: `Connect to ${this.name}` };
const cancel: MessageItem = { title: 'Cancel', isCloseAffordance: true };
private async promptToAllow(retry: boolean = false) {
const allow: MessageItem = { title: 'Allow' };
const deny: MessageItem = { title: 'Deny' };
const denyEverywhere: MessageItem = { title: 'Deny Everywhere' };
const result = await window.showInformationMessage(
`GitLens would like to connect to ${this.name} to provide a rich integration with pull requests, issues, avatars, and more. If you choose to connect, you will be prompted to authenticate with ${this.name}.`,
connect,
cancel,
);
if (result === connect) {
void this.connect();
}
}
@gate()
private async promptToRetyConnection() {
const connect: MessageItem = { title: `Connect to ${this.name}` };
const cancel: MessageItem = { title: 'Cancel', isCloseAffordance: true };
const result = await window.showErrorMessage(
`GitLens wants to connect to ${this.name} to provide a rich integration with pull requests, issues, avatars, and more. If you choose to connect, you will be prompted again to allow authentication with ${this.name}.`,
connect,
cancel,
retry
? `By allowing GitLens to connect to ${this.name}, it can provide a rich integration with pull requests, issues, avatars, and more.\n\nIf you choose 'Allow', you will again be prompted to authenticate with ${this.name}.`
: `Allow GitLens to connect to ${this.name} to provide a rich integration with pull requests, issues, avatars, and more.\n\nIf you choose 'Allow', you will be prompted to authenticate with ${this.name}.`,
allow,
deny,
denyEverywhere,
);
if (result === connect) {
if (result === allow) {
void this.connect();
} else if (result === denyEverywhere) {
setKeysForSync(this.disallowSyncedGlobalConnectionKey);
await Container.context.globalState.update(this.disallowSyncedGlobalConnectionKey, true);
}
}

+ 1
- 0
src/quickpicks/quickPicksItems.ts 파일 보기

@ -6,6 +6,7 @@ import { GitReference, GitRevisionReference, GitStashCommit, SearchPattern } fro
import { Keys } from '../keyboard';
declare module 'vscode' {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
interface QuickPickItem {
onDidSelect?(): void;
onDidPressKey?(key: Keys): Promise<void>;

불러오는 중...
취소
저장