mirror of https://github.com/microsoft/vscode.git
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getVersion = getVersion;
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
const path_1 = __importDefault(require("path"));
|
|
const fs_1 = __importDefault(require("fs"));
|
|
/**
|
|
* Returns the sha1 commit version of a repository or undefined in case of failure.
|
|
*/
|
|
function getVersion(repo) {
|
|
const git = path_1.default.join(repo, '.git');
|
|
const headPath = path_1.default.join(git, 'HEAD');
|
|
let head;
|
|
try {
|
|
head = fs_1.default.readFileSync(headPath, 'utf8').trim();
|
|
}
|
|
catch (e) {
|
|
return undefined;
|
|
}
|
|
if (/^[0-9a-f]{40}$/i.test(head)) {
|
|
return head;
|
|
}
|
|
const refMatch = /^ref: (.*)$/.exec(head);
|
|
if (!refMatch) {
|
|
return undefined;
|
|
}
|
|
const ref = refMatch[1];
|
|
const refPath = path_1.default.join(git, ref);
|
|
try {
|
|
return fs_1.default.readFileSync(refPath, 'utf8').trim();
|
|
}
|
|
catch (e) {
|
|
// noop
|
|
}
|
|
const packedRefsPath = path_1.default.join(git, 'packed-refs');
|
|
let refsRaw;
|
|
try {
|
|
refsRaw = fs_1.default.readFileSync(packedRefsPath, 'utf8').trim();
|
|
}
|
|
catch (e) {
|
|
return undefined;
|
|
}
|
|
const refsRegex = /^([0-9a-f]{40})\s+(.+)$/gm;
|
|
let refsMatch;
|
|
const refs = {};
|
|
while (refsMatch = refsRegex.exec(refsRaw)) {
|
|
refs[refsMatch[2]] = refsMatch[1];
|
|
}
|
|
return refs[ref];
|
|
}
|
|
//# sourceMappingURL=git.js.map
|