Newer
Older
import { join } from 'path';
import URL from 'url';
import fs from 'fs-extra';
import Git from 'simple-git/promise';
import {
CONFIG_VALIDATION,
REPOSITORY_CHANGED,
REPOSITORY_EMPTY,
REPOSITORY_TEMPORARY_ERROR,
SYSTEM_INSUFFICIENT_DISK_SPACE,
} from '../../constants/error-messages';
import { logger } from '../../logger';
import { CommitFilesConfig } from '../../platform/common';
import { ExternalHostError } from '../../types/errors/external-host-error';
import * as limits from '../../workers/global/limits';
import { writePrivateKey } from './private-key';
export * from './private-key';
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
declare module 'fs-extra' {
export function exists(pathLike: string): Promise<boolean>;
}
export type StatusResult = Git.StatusResult;
export type DiffResult = Git.DiffResult;
interface StorageConfig {
localDir: string;
baseBranch?: string;
url: string;
extraCloneOpts?: Git.Options;
gitAuthorName?: string;
gitAuthorEmail?: string;
}
interface LocalConfig extends StorageConfig {
baseBranch: string;
baseBranchSha: string;
branchExists: Record<string, boolean>;
branchPrefix: string;
}
// istanbul ignore next
function checkForPlatformFailure(err: Error): void {
if (process.env.NODE_ENV === 'test') {
return;
}
const platformFailureStrings = [
'remote: Invalid username or password',
'gnutls_handshake() failed',
'The requested URL returned error: 5',
'The remote end hung up unexpectedly',
'access denied or repository not exported',
'Could not write new index file',
'Failed to connect to',
'Connection timed out',
];
for (const errorStr of platformFailureStrings) {
if (err.message.includes(errorStr)) {
throw new ExternalHostError(err, 'git');
}
}
}
function localName(branchName: string): string {
return branchName.replace(/^origin\//, '');
}
function throwBaseBranchValidationError(branchName: string): never {
const error = new Error(CONFIG_VALIDATION);
error.validationError = 'baseBranch not found';
error.validationMessage =
'The following configured baseBranch could not be found: ' + branchName;
throw error;
}
async function isDirectory(dir: string): Promise<boolean> {
try {
return (await fs.stat(dir)).isDirectory();
} catch (err) {
return false;
}
}
async function getDefaultBranch(git: Git.SimpleGit): Promise<string> {
// see https://stackoverflow.com/a/44750379/1438522
try {
const res = await git.raw(['symbolic-ref', 'refs/remotes/origin/HEAD']);
return res.replace('refs/remotes/origin/', '').trim();
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
if (
err.message.startsWith(
'fatal: ref refs/remotes/origin/HEAD is not a symbolic ref'
)
) {
throw new Error(REPOSITORY_EMPTY);
}
throw err;
}
}
let config: LocalConfig = {} as any;
let git: Git.SimpleGit | undefined;
let privateKeySet = false;
async function resetToBranch(branchName: string): Promise<void> {
logger.debug(`resetToBranch(${branchName})`);
await git.raw(['reset', '--hard']);
await git.checkout(branchName);
await git.raw(['reset', '--hard', 'origin/' + branchName]);
await git.raw(['clean', '-fd']);
}
async function deleteLocalBranch(branchName: string): Promise<void> {
await git.branch(['-D', branchName]);
}
async function cleanLocalBranches(): Promise<void> {
const existingBranches = (await git.raw(['branch']))
.split('\n')
.map((branch) => branch.trim())
.filter((branch) => branch.length)
.filter((branch) => !branch.startsWith('* '));
logger.debug({ existingBranches });
for (const branchName of existingBranches) {
await deleteLocalBranch(branchName);
}
}
export async function getSubmodules(): Promise<string[]> {
return (
(await git.raw([
'config',
'--file',
'.gitmodules',
'--get-regexp',
'path',
])) || ''
)
.trim()
.split(/[\n\s]/)
.filter((_e: string, i: number) => i % 2);
}
export async function initRepo(args: StorageConfig): Promise<void> {
config = { ...args } as any;
config.branchExists = {};
logger.debug('Initializing git repository into ' + config.localDir);
const gitHead = join(config.localDir, '.git/HEAD');
let clone = true;
if (await fs.exists(gitHead)) {
try {
git = Git(config.localDir).silent(true);
await git.raw(['remote', 'set-url', 'origin', config.url]);
const fetchStart = Date.now();
await git.fetch(['--depth=10']);
config.baseBranch = config.baseBranch || (await getDefaultBranch(git));
await resetToBranch(config.baseBranch);
await cleanLocalBranches();
await git.raw(['remote', 'prune', 'origin']);
const durationMs = Math.round(Date.now() - fetchStart);
logger.debug({ durationMs }, 'git fetch completed');
clone = false;
} catch (err) /* istanbul ignore next */ {
logger.error({ err }, 'git fetch error');
}
}
if (clone) {
await fs.emptyDir(config.localDir);
git = Git(config.localDir).silent(true);
const cloneStart = Date.now();
try {
// clone only the default branch
let opts = ['--depth=2'];
opts = opts.concat(
Object.entries(config.extraCloneOpts).map((e) => `${e[0]}=${e[1]}`)
await git.clone(config.url, '.', opts);
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
} catch (err) /* istanbul ignore next */ {
logger.debug({ err }, 'git clone error');
if (err.message?.includes('write error: No space left on device')) {
throw new Error(SYSTEM_INSUFFICIENT_DISK_SPACE);
}
throw new ExternalHostError(err, 'git');
}
const durationMs = Math.round(Date.now() - cloneStart);
logger.debug({ durationMs }, 'git clone completed');
}
const submodules = await getSubmodules();
for (const submodule of submodules) {
try {
logger.debug(`Cloning git submodule at ${submodule}`);
await git.submoduleUpdate(['--init', '--', submodule]);
} catch (err) {
logger.warn(`Unable to initialise git submodule at ${submodule}`);
}
}
try {
const latestCommitDate = (await git.log({ n: 1 })).latest.date;
logger.debug({ latestCommitDate }, 'latest commit');
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
if (err.message.includes('does not have any commits yet')) {
throw new Error(REPOSITORY_EMPTY);
}
logger.warn({ err }, 'Cannot retrieve latest commit date');
}
try {
const { gitAuthorName, gitAuthorEmail } = config;
if (gitAuthorName) {
logger.debug({ gitAuthorName }, 'Setting git author name');
await git.raw(['config', 'user.name', gitAuthorName]);
}
if (gitAuthorEmail) {
logger.debug({ gitAuthorEmail }, 'Setting git author email');
await git.raw(['config', 'user.email', gitAuthorEmail]);
}
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
logger.debug({ err }, 'Error setting git author config');
throw new Error(REPOSITORY_TEMPORARY_ERROR);
}
config.baseBranch = config.baseBranch || (await getDefaultBranch(git));
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
}
// istanbul ignore next
export async function getRepoStatus(): Promise<StatusResult> {
return git.status();
}
export async function createBranch(
branchName: string,
sha: string
): Promise<void> {
logger.debug(`createBranch(${branchName})`);
await git.reset('hard');
await git.raw(['clean', '-fd']);
await git.checkout(['-B', branchName, sha]);
await git.push('origin', branchName, { '--force': true });
config.branchExists[branchName] = true;
}
export async function branchExists(branchName: string): Promise<boolean> {
// First check cache
if (config.branchExists[branchName] !== undefined) {
return config.branchExists[branchName];
}
if (!branchName.startsWith(config.branchPrefix)) {
// fetch the branch only if it's not part of the existing branchPrefix
try {
await git.raw(['remote', 'set-branches', '--add', 'origin', branchName]);
await git.fetch(['origin', branchName, '--depth=2']);
} catch (err) {
checkForPlatformFailure(err);
}
}
try {
await git.raw(['show-branch', 'origin/' + branchName]);
config.branchExists[branchName] = true;
return true;
} catch (err) {
checkForPlatformFailure(err);
config.branchExists[branchName] = false;
return false;
}
}
// Return the commit SHA for a branch
export async function getBranchCommit(branchName: string): Promise<string> {
if (!(await branchExists(branchName))) {
throw Error(
'Cannot fetch commit for branch that does not exist: ' + branchName
);
}
const res = await git.revparse(['origin/' + branchName]);
return res.trim();
}
export async function getCommitMessages(): Promise<string[]> {
logger.debug('getCommitMessages');
const res = await git.log({
n: 10,
format: { message: '%s' },
});
return res.all.map((commit) => commit.message);
}
export async function setBaseBranch(branchName: string): Promise<string> {
if (branchName) {
if (!(await branchExists(branchName))) {
throwBaseBranchValidationError(branchName);
}
logger.debug(`Setting baseBranch to ${branchName}`);
config.baseBranch = branchName;
try {
if (branchName !== 'master') {
config.baseBranchSha = (
await git.raw(['rev-parse', 'origin/' + branchName])
).trim();
}
await git.checkout([branchName, '-f']);
await git.reset('hard');
const latestCommitDate = (await git.log({ n: 1 })).latest.date;
logger.debug({ branchName, latestCommitDate }, 'latest commit');
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
if (
err.message.includes(
'unknown revision or path not in the working tree'
) ||
err.message.includes('did not match any file(s) known to git')
) {
throwBaseBranchValidationError(branchName);
}
throw err;
}
}
return (
config.baseBranchSha ||
(await git.raw(['rev-parse', 'origin/master'])).trim()
);
}
/*
* When we initially clone, we clone only the default branch so how no knowledge of other branches existing.
* By calling this function once the repo's branchPrefix is known, we can fetch all of Renovate's branches in one command.
*/
export async function setBranchPrefix(branchPrefix: string): Promise<void> {
logger.debug('Setting branchPrefix: ' + branchPrefix);
config.branchPrefix = branchPrefix;
const ref = `refs/heads/${branchPrefix}*:refs/remotes/origin/${branchPrefix}*`;
try {
await git.fetch(['origin', ref, '--depth=2', '--force']);
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
throw err;
}
}
export async function getFileList(): Promise<string[]> {
const branch = config.baseBranch;
const submodules = await getSubmodules();
const files: string = await git.raw(['ls-tree', '-r', branch]);
// istanbul ignore if
if (!files) {
return [];
}
return files
.split('\n')
.filter(Boolean)
.filter((line) => line.startsWith('100'))
.map((line) => line.split(/\t/).pop())
.filter((file: string) =>
submodules.every((submodule: string) => !file.startsWith(submodule))
);
}
export async function getAllRenovateBranches(
branchPrefix: string
): Promise<string[]> {
const branches = await git.branch(['--remotes', '--verbose']);
return branches.all
.map(localName)
.filter((branchName) => branchName.startsWith(branchPrefix));
}
export async function isBranchStale(branchName: string): Promise<boolean> {
if (!(await branchExists(branchName))) {
throw Error(
'Cannot check staleness for branch that does not exist: ' + branchName
);
}
const branches = await git.branch([
'--remotes',
'--verbose',
'--contains',
config.baseBranchSha || `origin/${config.baseBranch}`,
]);
return !branches.all.map(localName).includes(branchName);
}
export async function deleteBranch(branchName: string): Promise<void> {
try {
await git.raw(['push', '--delete', 'origin', branchName]);
logger.debug({ branchName }, 'Deleted remote branch');
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
logger.debug({ branchName }, 'No remote branch to delete');
}
try {
await deleteLocalBranch(branchName);
// istanbul ignore next
logger.debug({ branchName }, 'Deleted local branch');
} catch (err) {
checkForPlatformFailure(err);
logger.debug({ branchName }, 'No local branch to delete');
}
config.branchExists[branchName] = false;
}
export async function mergeBranch(branchName: string): Promise<void> {
await git.reset('hard');
await git.checkout(['-B', branchName, 'origin/' + branchName]);
await git.checkout(config.baseBranch);
await git.merge(['--ff-only', branchName]);
await git.push('origin', config.baseBranch);
limits.incrementLimit('prCommitsPerRunLimit');
}
export async function getBranchLastCommitTime(
branchName: string
): Promise<Date> {
try {
const time = await git.show(['-s', '--format=%ai', 'origin/' + branchName]);
return new Date(Date.parse(time));
} catch (err) {
checkForPlatformFailure(err);
return new Date();
}
}
export async function getBranchFiles(
branchName: string,
baseBranchName?: string
): Promise<string[]> {
try {
const diff = await git.diffSummary([
branchName,
baseBranchName || config.baseBranch,
]);
return diff.files.map((file) => file.file);
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
return null;
}
}
export async function getFile(
filePath: string,
branchName?: string
): Promise<string | null> {
if (branchName) {
const exists = await branchExists(branchName);
if (!exists) {
logger.debug({ branchName }, 'branch no longer exists - aborting');
throw new Error(REPOSITORY_CHANGED);
}
}
try {
const content = await git.show([
'origin/' + (branchName || config.baseBranch) + ':' + filePath,
]);
return content;
} catch (err) {
checkForPlatformFailure(err);
return null;
}
}
export async function hasDiff(branchName: string): Promise<boolean> {
try {
return (await git.diff(['HEAD', branchName])) !== '';
} catch (err) {
return true;
}
}
export async function commitFiles({
branchName,
files,
message,
force = false,
}: CommitFilesConfig): Promise<string | null> {
logger.debug(`Committing files to branch ${branchName}`);
if (!privateKeySet) {
await writePrivateKey(config.localDir);
privateKeySet = true;
}
try {
await git.reset('hard');
await git.raw(['clean', '-fd']);
await git.checkout(['-B', branchName, 'origin/' + config.baseBranch]);
const fileNames = [];
const deleted = [];
for (const file of files) {
// istanbul ignore if
if (file.name === '|delete|') {
deleted.push(file.contents);
} else if (await isDirectory(join(config.localDir, file.name))) {
fileNames.push(file.name);
await git.add(file.name);
} else {
fileNames.push(file.name);
let contents;
// istanbul ignore else
if (typeof file.contents === 'string') {
contents = Buffer.from(file.contents);
} else {
contents = file.contents;
}
await fs.outputFile(join(config.localDir, file.name), contents);
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
}
}
// istanbul ignore if
if (fileNames.length === 1 && fileNames[0] === 'renovate.json') {
fileNames.unshift('-f');
}
if (fileNames.length) {
await git.add(fileNames);
}
if (deleted.length) {
for (const f of deleted) {
try {
await git.rm([f]);
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
logger.debug({ err }, 'Cannot delete ' + f);
}
}
}
const commitRes = await git.commit(message, [], {
'--no-verify': true,
});
const commit = commitRes?.commit || 'unknown';
if (!force && !(await hasDiff(`origin/${branchName}`))) {
logger.debug(
{ branchName, fileNames },
'No file changes detected. Skipping commit'
);
return null;
}
await git.push('origin', `${branchName}:${branchName}`, {
'--force': true,
'-u': true,
'--no-verify': true,
});
// Fetch it after create
const ref = `refs/heads/${branchName}:refs/remotes/origin/${branchName}`;
await git.fetch(['origin', ref, '--depth=2', '--force']);
config.branchExists[branchName] = true;
limits.incrementLimit('prCommitsPerRunLimit');
return commit;
} catch (err) /* istanbul ignore next */ {
checkForPlatformFailure(err);
logger.debug({ err }, 'Error commiting files');
throw new Error(REPOSITORY_CHANGED);
}
}
export function getUrl({
protocol,
auth,
hostname,
host,
repository,
}: {
protocol?: 'ssh' | 'http' | 'https';
auth?: string;
hostname?: string;
host?: string;
repository: string;
}): string {
if (protocol === 'ssh') {
return `git@${hostname}:${repository}.git`;
}
return URL.format({
protocol: protocol || 'https',
auth,
hostname,
host,
pathname: repository + '.git',
});
}