-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathgit.ts
More file actions
168 lines (144 loc) · 5.21 KB
/
git.ts
File metadata and controls
168 lines (144 loc) · 5.21 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
import { exec } from '@actions/exec';
import * as core from '@actions/core';
import * as github from '@actions/github';
import { URL } from 'url';
const DEFAULT_GITHUB_URL = 'https://github.com';
interface ExecResult {
stdout: string;
stderr: string;
code: number | null;
}
async function capture(cmd: string, args: string[]): Promise<ExecResult> {
const res: ExecResult = {
stdout: '',
stderr: '',
code: null,
};
try {
const code = await exec(cmd, args, {
listeners: {
stdout(data) {
res.stdout += data.toString();
},
stderr(data) {
res.stderr += data.toString();
},
},
});
res.code = code;
return res;
} catch (err) {
const msg = `Command '${cmd}' failed with args '${args.join(' ')}': ${res.stderr}: ${err}`;
core.debug(`@actions/exec.exec() threw an error: ${msg}`);
throw new Error(msg);
}
}
export function getServerUrlObj(repositoryUrl: string | undefined): URL {
const urlValue =
repositoryUrl && repositoryUrl.trim().length > 0
? repositoryUrl
: process.env['GITHUB_SERVER_URL'] ?? DEFAULT_GITHUB_URL;
return new URL(urlValue);
}
export function getServerUrl(repositoryUrl: string | undefined): string {
return getServerUrlObj(repositoryUrl).origin;
}
export function getServerName(repositoryUrl: string | undefined): string {
return getServerUrlObj(repositoryUrl).hostname;
}
export async function cmd(additionalGitOptions: string[], ...args: string[]): Promise<string> {
core.debug(`Executing Git: ${args.join(' ')}`);
const serverUrl = getServerUrl(github.context.payload.repository?.html_url);
const userArgs = [
...additionalGitOptions,
'-c',
'user.name=github-actions[bot]',
'-c',
'user.email=github-actions[bot]@users.noreply.github.com',
'-c',
`http.${serverUrl}/.extraheader=`, // This config is necessary to support actions/checkout@v2 (#9)
];
const res = await capture('git', userArgs.concat(args));
if (res.code !== 0) {
throw new Error(`Command 'git ${args.join(' ')}' failed: ${JSON.stringify(res)}`);
}
return res.stdout;
}
function getCurrentRepoRemoteUrl(token: string): string {
const { repo, owner } = github.context.repo;
const serverName = getServerName(github.context.payload.repository?.html_url);
return getRepoRemoteUrl(token, `${serverName}/${owner}/${repo}`);
}
function getRepoRemoteUrl(token: string, repoUrl: string): string {
return `https://x-access-token:${token}@${repoUrl}.git`;
}
export async function push(
token: string,
repoUrl: string | undefined,
branch: string,
additionalGitOptions: string[] = [],
...options: string[]
): Promise<string> {
core.debug(`Executing 'git push' to branch '${branch}' with token and options '${options.join(' ')}'`);
const remote = repoUrl ? getRepoRemoteUrl(token, repoUrl) : getCurrentRepoRemoteUrl(token);
let args = ['push', remote, `${branch}:${branch}`, '--no-verify'];
if (options.length > 0) {
args = args.concat(options);
}
return cmd(additionalGitOptions, ...args);
}
export async function pull(
token: string | undefined,
branch: string,
additionalGitOptions: string[] = [],
...options: string[]
): Promise<string> {
core.debug(`Executing 'git pull' to branch '${branch}' with token and options '${options.join(' ')}'`);
const remote = token !== undefined ? getCurrentRepoRemoteUrl(token) : 'origin';
let args = ['pull', remote, branch];
if (options.length > 0) {
args = args.concat(options);
}
return cmd(additionalGitOptions, ...args);
}
export async function fetch(
token: string | undefined,
branch: string,
additionalGitOptions: string[] = [],
...options: string[]
): Promise<string> {
core.debug(`Executing 'git fetch' for branch '${branch}' with token and options '${options.join(' ')}'`);
const remote = token !== undefined ? getCurrentRepoRemoteUrl(token) : 'origin';
let args = ['fetch', remote, `${branch}:${branch}`];
if (options.length > 0) {
args = args.concat(options);
}
return cmd(additionalGitOptions, ...args);
}
export async function clone(
token: string,
ghRepository: string,
baseDirectory: string,
additionalGitOptions: string[] = [],
...options: string[]
): Promise<string> {
core.debug(`Executing 'git clone' to directory '${baseDirectory}' with token and options '${options.join(' ')}'`);
const remote = getRepoRemoteUrl(token, ghRepository);
let args = ['clone', remote, baseDirectory];
if (options.length > 0) {
args = args.concat(options);
}
return cmd(additionalGitOptions, ...args);
}
export async function checkout(
ghRef: string,
additionalGitOptions: string[] = [],
...options: string[]
): Promise<string> {
core.debug(`Executing 'git checkout' to ref '${ghRef}' with token and options '${options.join(' ')}'`);
let args = ['checkout', ghRef];
if (options.length > 0) {
args = args.concat(options);
}
return cmd(additionalGitOptions, ...args);
}