-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathBuildInfoUtils.js
More file actions
100 lines (85 loc) · 4.06 KB
/
Copy pathBuildInfoUtils.js
File metadata and controls
100 lines (85 loc) · 4.06 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
/*
* GNU AGPL-3.0 License
*
* Copyright (c) 2021 - present core.ai . All rights reserved.
* Original work Copyright (c) 2012 - 2021 Adobe Systems Incorporated. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
*
*/
/**
* Utilities for determining the git SHA from an optional repository or from the
* installed copy of Brackets.
*/
define(function (require, exports, module) {
var FileSystem = require("filesystem/FileSystem"),
FileUtils = require("file/FileUtils");
// make sure the global brackets variable is loaded
require("utils/Global");
/**
* Loads a SHA from Git metadata file. If the file contains a symbolic ref name, follows the ref
* and loads the SHA from that file in turn.
*/
function _loadSHA(path, callback) {
const result = new $.Deferred();
// HEAD contains a SHA in detached-head mode; otherwise it contains a relative path
// to a file in /refs which in turn contains the SHA
const file = FileSystem.getFileForPath(path);
FileUtils.readAsText(file).done(function (text) {
if (text.indexOf("ref: ") === 0) {
// e.g. "ref: refs/heads/branchname"
const basePath = path.substr(0, path.lastIndexOf("/")),
refRelPath = text.substr(5).trim(),
branch = text.substr(16).trim();
_loadSHA(basePath + "/" + refRelPath, callback).done(function (data) {
result.resolve({ branch: branch, sha: data.sha.trim() });
}).fail(function () {
result.resolve({ branch: branch });
});
} else {
result.resolve({ sha: text });
}
}).fail(function () {
result.reject();
});
return result.promise();
}
/**
* @return {$.Promise} A promise resolved with the git branch and SHA
* of a local copy of a repository or the branch and SHA
* embedded at build-time in the package.json repository metadata.
*/
function getBracketsSHA() {
var result = new $.Deferred();
// Look for Git metadata on disk to load the SHAs for 'brackets'. Done on
// startup instead of on demand because the version that's currently running is what was
// loaded at startup (the src on disk may be updated to a different version later).
// Git metadata may be missing (e.g. in the release builds) - silently ignore if so.
var bracketsSrc = FileUtils.getNativeBracketsDirectoryPath();
// Assumes Brackets is a standalone repo and not a submodule (prior to brackets-shell,
// brackets-app was setup this way)
var bracketsGitRoot = bracketsSrc.substr(0, bracketsSrc.lastIndexOf("/")) + "/.git/HEAD";
_loadSHA(bracketsGitRoot).done(function (data) {
// Found a repository
result.resolve(data.branch || "HEAD", data.sha || "unknown", true);
}).fail(function () {
// If package.json has repository data, Brackets is running from the installed /www folder
result.resolve(brackets.metadata.repository.branch, brackets.metadata.repository.SHA, false);
});
return result.promise();
}
exports.getBracketsSHA = getBracketsSHA;
// FIXME (jasonsanjose): Since the move to brackets-shell, can't reliably get SHA for shell.
// exports._getBracketsShellSHA = getBracketsShellSHA;
});