mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
173 lines
5.3 KiB
TypeScript
173 lines
5.3 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 * as vscode from 'vscode';
|
|
import * as nls from 'vscode-nls';
|
|
import * as path from 'path';
|
|
import { promises as fs } from 'fs';
|
|
import { API as GitAPI, Repository } from './typings/git';
|
|
import { getOctokit } from './auth';
|
|
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
function sanitizeRepositoryName(value: string): string {
|
|
return value.trim().replace(/[^a-z0-9_.]/ig, '-');
|
|
}
|
|
|
|
function getPick<T extends vscode.QuickPickItem>(quickpick: vscode.QuickPick<T>): Promise<T | undefined> {
|
|
return Promise.race<T | undefined>([
|
|
new Promise<T>(c => quickpick.onDidAccept(() => quickpick.selectedItems.length > 0 && c(quickpick.selectedItems[0]))),
|
|
new Promise<undefined>(c => quickpick.onDidHide(() => c(undefined)))
|
|
]);
|
|
}
|
|
|
|
export async function publishRepository(gitAPI: GitAPI, repository?: Repository): Promise<void> {
|
|
if (!vscode.workspace.workspaceFolders?.length) {
|
|
return;
|
|
}
|
|
|
|
let folder: vscode.WorkspaceFolder;
|
|
|
|
if (vscode.workspace.workspaceFolders.length === 1) {
|
|
folder = vscode.workspace.workspaceFolders[0];
|
|
} else {
|
|
const picks = vscode.workspace.workspaceFolders.map(folder => ({ label: folder.name, folder }));
|
|
const placeHolder = localize('pick folder', "Pick a folder to publish to GitHub");
|
|
const pick = await vscode.window.showQuickPick(picks, { placeHolder });
|
|
|
|
if (!pick) {
|
|
return;
|
|
}
|
|
|
|
folder = pick.folder;
|
|
}
|
|
|
|
let quickpick = vscode.window.createQuickPick<vscode.QuickPickItem & { repo?: string, auth?: 'https' | 'ssh' }>();
|
|
quickpick.ignoreFocusOut = true;
|
|
|
|
quickpick.placeholder = 'Repository Name';
|
|
quickpick.value = folder.name;
|
|
quickpick.show();
|
|
quickpick.busy = true;
|
|
|
|
const octokit = await getOctokit();
|
|
const user = await octokit.users.getAuthenticated({});
|
|
const owner = user.data.login;
|
|
quickpick.busy = false;
|
|
|
|
let repo: string | undefined;
|
|
|
|
const onDidChangeValue = async () => {
|
|
const sanitizedRepo = sanitizeRepositoryName(quickpick.value);
|
|
|
|
if (!sanitizedRepo) {
|
|
quickpick.items = [];
|
|
} else {
|
|
quickpick.items = [{ label: `$(repo) Publish to GitHub private repository`, description: `$(github) ${owner}/${sanitizedRepo}`, alwaysShow: true, repo: sanitizedRepo }];
|
|
}
|
|
};
|
|
|
|
onDidChangeValue();
|
|
|
|
while (true) {
|
|
const listener = quickpick.onDidChangeValue(onDidChangeValue);
|
|
const pick = await getPick(quickpick);
|
|
listener.dispose();
|
|
|
|
repo = pick?.repo;
|
|
|
|
if (repo) {
|
|
try {
|
|
quickpick.busy = true;
|
|
await octokit.repos.get({ owner, repo: repo });
|
|
quickpick.items = [{ label: `$(error) GitHub repository already exists`, description: `$(github) ${owner}/${repo}`, alwaysShow: true }];
|
|
} catch {
|
|
break;
|
|
} finally {
|
|
quickpick.busy = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
quickpick.dispose();
|
|
|
|
if (!repo) {
|
|
return;
|
|
}
|
|
|
|
quickpick = vscode.window.createQuickPick();
|
|
quickpick.placeholder = localize('ignore', "Select which files should be included in the repository.");
|
|
quickpick.canSelectMany = true;
|
|
quickpick.show();
|
|
|
|
try {
|
|
quickpick.busy = true;
|
|
|
|
const repositoryPath = folder.uri.fsPath;
|
|
const currentPath = path.join(repositoryPath);
|
|
const children = await fs.readdir(currentPath);
|
|
quickpick.items = children.map(name => ({ label: name }));
|
|
quickpick.selectedItems = quickpick.items;
|
|
quickpick.busy = false;
|
|
|
|
const result = await Promise.race([
|
|
new Promise<readonly vscode.QuickPickItem[]>(c => quickpick.onDidAccept(() => c(quickpick.selectedItems))),
|
|
new Promise<undefined>(c => quickpick.onDidHide(() => c(undefined)))
|
|
]);
|
|
|
|
if (!result) {
|
|
return;
|
|
}
|
|
|
|
const ignored = new Set(children);
|
|
result.forEach(c => ignored.delete(c.label));
|
|
|
|
const raw = [...ignored].map(i => `/${i}`).join('\n');
|
|
await fs.writeFile(path.join(repositoryPath, '.gitignore'), raw, 'utf8');
|
|
} finally {
|
|
quickpick.dispose();
|
|
}
|
|
|
|
const githubRepository = await vscode.window.withProgress({ location: vscode.ProgressLocation.Notification, cancellable: false, title: 'Publish to GitHub' }, async progress => {
|
|
progress.report({ message: 'Publishing to GitHub private repository', increment: 25 });
|
|
|
|
const res = await octokit.repos.createForAuthenticatedUser({
|
|
name: repo!,
|
|
private: true
|
|
});
|
|
|
|
const createdGithubRepository = res.data;
|
|
|
|
progress.report({ message: 'Creating first commit', increment: 25 });
|
|
|
|
if (!repository) {
|
|
repository = await gitAPI.init(folder.uri) || undefined;
|
|
|
|
if (!repository) {
|
|
return;
|
|
}
|
|
|
|
await repository.commit('first commit', { all: true });
|
|
}
|
|
|
|
progress.report({ message: 'Uploading files', increment: 25 });
|
|
await repository.addRemote('origin', createdGithubRepository.clone_url);
|
|
await repository.push('origin', 'master', true);
|
|
|
|
return createdGithubRepository;
|
|
});
|
|
|
|
if (!githubRepository) {
|
|
return;
|
|
}
|
|
|
|
const openInGitHub = 'Open In GitHub';
|
|
const action = await vscode.window.showInformationMessage(`Successfully published the '${owner}/${repo}' repository on GitHub.`, openInGitHub);
|
|
|
|
if (action === openInGitHub) {
|
|
vscode.commands.executeCommand('vscode.open', vscode.Uri.parse(githubRepository.html_url));
|
|
}
|
|
}
|