'use strict';
|
|
import { Iterables } from '../system';
|
|
import { TextEditor, Uri, window } from 'vscode';
|
|
import { ActiveEditorCommand, CommandContext, Commands, getCommandUri, isCommandViewContextWithCommit } from './common';
|
|
import { Container } from '../container';
|
|
import { GitUri } from '../gitService';
|
|
import { Logger } from '../logger';
|
|
|
|
export interface CopyMessageToClipboardCommandArgs {
|
|
message?: string;
|
|
sha?: string;
|
|
}
|
|
|
|
export class CopyMessageToClipboardCommand extends ActiveEditorCommand {
|
|
constructor() {
|
|
super(Commands.CopyMessageToClipboard);
|
|
}
|
|
|
|
protected async preExecute(context: CommandContext, args: CopyMessageToClipboardCommandArgs = {}): Promise<any> {
|
|
if (isCommandViewContextWithCommit(context)) {
|
|
args = { ...args };
|
|
args.sha = context.node.commit.sha;
|
|
return this.execute(context.editor, context.node.commit.uri, args);
|
|
}
|
|
|
|
return this.execute(context.editor, context.uri, args);
|
|
}
|
|
|
|
async execute(editor?: TextEditor, uri?: Uri, args: CopyMessageToClipboardCommandArgs = {}): Promise<any> {
|
|
uri = getCommandUri(uri, editor);
|
|
|
|
try {
|
|
const clipboard = await import('clipboardy');
|
|
|
|
args = { ...args };
|
|
|
|
// If we don't have an editor then get the message of the last commit to the branch
|
|
if (uri == null) {
|
|
const repoPath = await Container.git.getActiveRepoPath(editor);
|
|
if (!repoPath) return undefined;
|
|
|
|
const log = await Container.git.getLog(repoPath, { maxCount: 1 });
|
|
if (!log) return undefined;
|
|
|
|
args.message = Iterables.first(log.commits.values()).message;
|
|
}
|
|
else if (args.message === undefined) {
|
|
const gitUri = await GitUri.fromUri(uri);
|
|
|
|
if (args.sha === undefined) {
|
|
const blameline = (editor && editor.selection.active.line) || 0;
|
|
if (blameline < 0) return undefined;
|
|
|
|
try {
|
|
const blame =
|
|
editor && editor.document && editor.document.isDirty
|
|
? await Container.git.getBlameForLineContents(
|
|
gitUri,
|
|
blameline,
|
|
editor.document.getText()
|
|
)
|
|
: await Container.git.getBlameForLine(gitUri, blameline);
|
|
if (!blame) return undefined;
|
|
|
|
if (blame.commit.isUncommitted) return undefined;
|
|
|
|
args.sha = blame.commit.sha;
|
|
if (!gitUri.repoPath) {
|
|
gitUri.repoPath = blame.commit.repoPath;
|
|
}
|
|
}
|
|
catch (ex) {
|
|
Logger.error(ex, 'CopyMessageToClipboardCommand', `getBlameForLine(${blameline})`);
|
|
return window.showErrorMessage(`Unable to copy message. See output channel for more details`);
|
|
}
|
|
}
|
|
|
|
// Get the full commit message -- since blame only returns the summary
|
|
const commit = await Container.git.getLogCommit(gitUri.repoPath!, args.sha);
|
|
if (commit === undefined) return undefined;
|
|
|
|
args.message = commit.message;
|
|
}
|
|
|
|
void (await clipboard.write(args.message));
|
|
return undefined;
|
|
}
|
|
catch (ex) {
|
|
if (ex.message.includes("Couldn't find the required `xsel` binary")) {
|
|
window.showErrorMessage(
|
|
`Unable to copy message, xsel is not installed. You can install it via \`sudo apt install xsel\``
|
|
);
|
|
return;
|
|
}
|
|
|
|
Logger.error(ex, 'CopyMessageToClipboardCommand');
|
|
return window.showErrorMessage(`Unable to copy message. See output channel for more details`);
|
|
}
|
|
}
|
|
}
|