-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
100 lines (82 loc) · 2.71 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/**
* Copyright Zendesk, Inc.
*
* Use of this source code is governed under the Apache License, Version 2.0
* found at http://www.apache.org/licenses/LICENSE-2.0.
*/
import { handleErrorMessage, handleSuccessMessage } from '../../utils/index.js';
import { Command } from 'commander';
import { Ora } from 'ora';
import { execa } from 'execa';
type RETVAL = {
owner: string;
repo: string;
};
/**
* Execute the `github-repository` command.
*
* @param {string} [path] Path to a git directory.
* @param {Ora} [spinner] Terminal spinner.
*
* @returns {Promise<object>} The repository {owner, name} provided by CI
* environment variables or extracted from the given git repository.
*/
export const execute = async (path?: string, spinner?: Ora): Promise<RETVAL | undefined> => {
let retVal: RETVAL | undefined;
if (process.env.GITHUB_REPOSITORY) {
const [owner, repo] = process.env.GITHUB_REPOSITORY.split('/');
retVal = { owner, repo };
} else if (process.env.TRAVIS_REPO_SLUG) {
const [owner, repo] = process.env.TRAVIS_REPO_SLUG.split('/');
retVal = { owner, repo };
} else if (process.env.CIRCLECI) {
const owner = process.env.CIRCLE_PROJECT_USERNAME!;
const repo = process.env.CIRCLE_PROJECT_REPONAME!;
retVal = { owner, repo };
}
if (!retVal) {
const lsRemoteArgs = ['ls-remote', '--get-url'];
if (path) {
lsRemoteArgs.unshift('-C', path);
}
try {
const remote = await execa('git', lsRemoteArgs);
const regexp = /^.+github\.com[/:](?<owner>[\w-]+)\/(?<repo>[\w.-]+)\.git$/u;
/* eslint-disable-next-line @typescript-eslint/prefer-regexp-exec */
const match = remote.stdout.match(regexp);
if (match?.groups) {
const owner = match.groups.owner;
const repo = match.groups.repo;
retVal = { owner, repo };
} else {
handleErrorMessage(`Unexpected remote URL: ${remote.stdout}`, 'github-repository', spinner);
}
} catch (error: unknown) {
handleErrorMessage(error, 'github-repository', spinner);
throw error;
}
}
return retVal;
};
export default (spinner: Ora): Command => {
const command = new Command('github-repository');
return command
.description('output GitHub repository name for the repo')
.arguments('[path]')
.action(async (path: string) => {
try {
spinner.start();
const repository = await execute(path, spinner);
if (repository) {
handleSuccessMessage(`${repository.owner}/${repository.repo}`, spinner);
} else {
throw new Error();
}
} catch {
spinner.fail('GitHub repository not found');
process.exitCode = 1;
} finally {
spinner.stop();
}
});
};