summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/setupGithubCommand.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/cli/src/ui/commands/setupGithubCommand.ts')
-rw-r--r--packages/cli/src/ui/commands/setupGithubCommand.ts98
1 files changed, 67 insertions, 31 deletions
diff --git a/packages/cli/src/ui/commands/setupGithubCommand.ts b/packages/cli/src/ui/commands/setupGithubCommand.ts
index 84d6b5af..2f024e60 100644
--- a/packages/cli/src/ui/commands/setupGithubCommand.ts
+++ b/packages/cli/src/ui/commands/setupGithubCommand.ts
@@ -4,7 +4,10 @@
* SPDX-License-Identifier: Apache-2.0
*/
-import path from 'path';
+import path from 'node:path';
+import * as fs from 'node:fs';
+import { Writable } from 'node:stream';
+import { ProxyAgent } from 'undici';
import { CommandContext } from '../../ui/commands/types.js';
import {
@@ -48,6 +51,8 @@ export const setupGithubCommand: SlashCommand = {
action: async (
context: CommandContext,
): Promise<SlashCommandActionReturn> => {
+ const abortController = new AbortController();
+
if (!isGitHubRepository()) {
throw new Error(
'Unable to determine the GitHub repository. /setup-github must be run from a git repository.',
@@ -68,7 +73,24 @@ export const setupGithubCommand: SlashCommand = {
// Get the latest release tag from GitHub
const proxy = context?.services?.config?.getProxy();
const releaseTag = await getLatestGitHubRelease(proxy);
+ const readmeUrl = `https://github.com/google-github-actions/run-gemini-cli/blob/${releaseTag}/README.md#quick-start`;
+ // Create the .github/workflows directory to download the files into
+ const githubWorkflowsDir = path.join(gitRepoRoot, '.github', 'workflows');
+ try {
+ await fs.promises.mkdir(githubWorkflowsDir, { recursive: true });
+ } catch (_error) {
+ console.debug(
+ `Failed to create ${githubWorkflowsDir} directory:`,
+ _error,
+ );
+ throw new Error(
+ `Unable to create ${githubWorkflowsDir} directory. Do you have file permissions in the current directory?`,
+ );
+ }
+
+ // Download each workflow in parallel - there aren't enough files to warrant
+ // a full workerpool model here.
const workflows = [
'gemini-cli/gemini-cli.yml',
'issue-triage/gemini-issue-automated-triage.yml',
@@ -76,29 +98,60 @@ export const setupGithubCommand: SlashCommand = {
'pr-review/gemini-pr-review.yml',
];
- const commands = [];
+ const downloads = [];
+ for (const workflow of workflows) {
+ downloads.push(
+ (async () => {
+ const endpoint = `https://raw.githubusercontent.com/google-github-actions/run-gemini-cli/refs/tags/${releaseTag}/examples/workflows/${workflow}`;
+ const response = await fetch(endpoint, {
+ method: 'GET',
+ dispatcher: proxy ? new ProxyAgent(proxy) : undefined,
+ signal: AbortSignal.any([
+ AbortSignal.timeout(30_000),
+ abortController.signal,
+ ]),
+ } as RequestInit);
- // Ensure fast exit
- commands.push(`set -eEuo pipefail`);
+ if (!response.ok) {
+ throw new Error(
+ `Invalid response code downloading ${endpoint}: ${response.status} - ${response.statusText}`,
+ );
+ }
+ const body = response.body;
+ if (!body) {
+ throw new Error(
+ `Empty body while downloading ${endpoint}: ${response.status} - ${response.statusText}`,
+ );
+ }
- // Make the directory if it doesn't exist
- commands.push(`mkdir -p "${gitRepoRoot}/.github/workflows"`);
+ const destination = path.resolve(
+ githubWorkflowsDir,
+ path.basename(workflow),
+ );
- for (const workflow of workflows) {
- const fileName = path.basename(workflow);
- const curlCommand = buildCurlCommand(
- `https://raw.githubusercontent.com/google-github-actions/run-gemini-cli/refs/tags/${releaseTag}/examples/workflows/${workflow}`,
- [`--output "${gitRepoRoot}/.github/workflows/${fileName}"`],
+ const fileStream = fs.createWriteStream(destination, {
+ mode: 0o644, // -rw-r--r--, user(rw), group(r), other(r)
+ flags: 'w', // write and overwrite
+ flush: true,
+ });
+
+ await body.pipeTo(Writable.toWeb(fileStream));
+ })(),
);
- commands.push(curlCommand);
}
- const readmeUrl = `https://github.com/google-github-actions/run-gemini-cli/blob/${releaseTag}/README.md#quick-start`;
+ // Wait for all downloads to complete
+ await Promise.all(downloads).finally(() => {
+ // Stop existing downloads
+ abortController.abort();
+ });
+ // Print out a message
+ const commands = [];
+ commands.push('set -eEuo pipefail');
commands.push(
`echo "Successfully downloaded ${workflows.length} workflows. Follow the steps in ${readmeUrl} (skipping the /setup-github step) to complete setup."`,
);
-
commands.push(...getOpenUrlsCommands(readmeUrl));
const command = `(${commands.join(' && ')})`;
@@ -113,20 +166,3 @@ export const setupGithubCommand: SlashCommand = {
};
},
};
-
-// buildCurlCommand is a helper for constructing a consistent curl command.
-function buildCurlCommand(u: string, additionalArgs?: string[]): string {
- const args = [];
- args.push('--fail');
- args.push('--location');
- args.push('--show-error');
- args.push('--silent');
-
- for (const val of additionalArgs || []) {
- args.push(val);
- }
-
- args.sort();
-
- return `curl ${args.join(' ')} "${u}"`;
-}