6270b27fdd3382179217016f7b5aaa02de659aea
[lhc/web/wiklou.git] / includes / GitInfo.php
1 <?php
2 /**
3 * A class to help return information about a git repo MediaWiki may be inside
4 * This is used by Special:Version and is also useful for the LocalSettings.php
5 * of anyone working on large branches in git to setup config that show up only
6 * when specific branches are currently checked out.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
22 *
23 * @file
24 */
25
26 use MediaWiki\Shell\Shell;
27
28 class GitInfo {
29
30 /**
31 * Singleton for the repo at $IP
32 */
33 protected static $repo = null;
34
35 /**
36 * Location of the .git directory
37 */
38 protected $basedir;
39
40 /**
41 * Location of the repository
42 */
43 protected $repoDir;
44
45 /**
46 * Path to JSON cache file for pre-computed git information.
47 */
48 protected $cacheFile;
49
50 /**
51 * Cached git information.
52 */
53 protected $cache = [];
54
55 /**
56 * @var array|false Map of repo URLs to viewer URLs. Access via static method getViewers().
57 */
58 private static $viewers = false;
59
60 /**
61 * @param string $repoDir The root directory of the repo where .git can be found
62 * @param bool $usePrecomputed Use precomputed information if available
63 * @see precomputeValues
64 */
65 public function __construct( $repoDir, $usePrecomputed = true ) {
66 $this->repoDir = $repoDir;
67 $this->cacheFile = self::getCacheFilePath( $repoDir );
68 wfDebugLog( 'gitinfo',
69 "Computed cacheFile={$this->cacheFile} for {$repoDir}"
70 );
71 if ( $usePrecomputed &&
72 $this->cacheFile !== null &&
73 is_readable( $this->cacheFile )
74 ) {
75 $this->cache = FormatJson::decode(
76 file_get_contents( $this->cacheFile ),
77 true
78 );
79 wfDebugLog( 'gitinfo', "Loaded git data from cache for {$repoDir}" );
80 }
81
82 if ( !$this->cacheIsComplete() ) {
83 wfDebugLog( 'gitinfo', "Cache incomplete for {$repoDir}" );
84 $this->basedir = $repoDir . DIRECTORY_SEPARATOR . '.git';
85 if ( is_readable( $this->basedir ) && !is_dir( $this->basedir ) ) {
86 $GITfile = file_get_contents( $this->basedir );
87 if ( strlen( $GITfile ) > 8 &&
88 substr( $GITfile, 0, 8 ) === 'gitdir: '
89 ) {
90 $path = rtrim( substr( $GITfile, 8 ), "\r\n" );
91 if ( $path[0] === '/' || substr( $path, 1, 1 ) === ':' ) {
92 // Path from GITfile is absolute
93 $this->basedir = $path;
94 } else {
95 $this->basedir = $repoDir . DIRECTORY_SEPARATOR . $path;
96 }
97 }
98 }
99 }
100 }
101
102 /**
103 * Compute the path to the cache file for a given directory.
104 *
105 * @param string $repoDir The root directory of the repo where .git can be found
106 * @return string Path to GitInfo cache file in $wgGitInfoCacheDirectory or
107 * fallback in the extension directory itself
108 * @since 1.24
109 */
110 protected static function getCacheFilePath( $repoDir ) {
111 global $IP, $wgGitInfoCacheDirectory;
112
113 if ( $wgGitInfoCacheDirectory ) {
114 // Convert both $IP and $repoDir to canonical paths to protect against
115 // $IP having changed between the settings files and runtime.
116 $realIP = realpath( $IP );
117 $repoName = realpath( $repoDir );
118 if ( $repoName === false ) {
119 // Unit tests use fake path names
120 $repoName = $repoDir;
121 }
122 if ( strpos( $repoName, $realIP ) === 0 ) {
123 // Strip $IP from path
124 $repoName = substr( $repoName, strlen( $realIP ) );
125 }
126 // Transform path to git repo to something we can safely embed in
127 // a filename
128 $repoName = strtr( $repoName, DIRECTORY_SEPARATOR, '-' );
129 $fileName = 'info' . $repoName . '.json';
130 $cachePath = "{$wgGitInfoCacheDirectory}/{$fileName}";
131 if ( is_readable( $cachePath ) ) {
132 return $cachePath;
133 }
134 }
135
136 return "$repoDir/gitinfo.json";
137 }
138
139 /**
140 * Get the singleton for the repo at $IP
141 *
142 * @return GitInfo
143 */
144 public static function repo() {
145 if ( is_null( self::$repo ) ) {
146 global $IP;
147 self::$repo = new self( $IP );
148 }
149 return self::$repo;
150 }
151
152 /**
153 * Check if a string looks like a hex encoded SHA1 hash
154 *
155 * @param string $str The string to check
156 * @return bool Whether or not the string looks like a SHA1
157 */
158 public static function isSHA1( $str ) {
159 return !!preg_match( '/^[0-9A-F]{40}$/i', $str );
160 }
161
162 /**
163 * Get the HEAD of the repo (without any opening "ref: ")
164 *
165 * @return string|bool The HEAD (git reference or SHA1) or false
166 */
167 public function getHead() {
168 if ( !isset( $this->cache['head'] ) ) {
169 $headFile = "{$this->basedir}/HEAD";
170 $head = false;
171
172 if ( is_readable( $headFile ) ) {
173 $head = file_get_contents( $headFile );
174
175 if ( preg_match( "/ref: (.*)/", $head, $m ) ) {
176 $head = rtrim( $m[1] );
177 } else {
178 $head = rtrim( $head );
179 }
180 }
181 $this->cache['head'] = $head;
182 }
183 return $this->cache['head'];
184 }
185
186 /**
187 * Get the SHA1 for the current HEAD of the repo
188 *
189 * @return string|bool A SHA1 or false
190 */
191 public function getHeadSHA1() {
192 if ( !isset( $this->cache['headSHA1'] ) ) {
193 $head = $this->getHead();
194 $sha1 = false;
195
196 // If detached HEAD may be a SHA1
197 if ( self::isSHA1( $head ) ) {
198 $sha1 = $head;
199 } else {
200 // If not a SHA1 it may be a ref:
201 $refFile = "{$this->basedir}/{$head}";
202 $packedRefs = "{$this->basedir}/packed-refs";
203 $headRegex = preg_quote( $head, '/' );
204 if ( is_readable( $refFile ) ) {
205 $sha1 = rtrim( file_get_contents( $refFile ) );
206 } elseif ( is_readable( $packedRefs ) &&
207 preg_match( "/^([0-9A-Fa-f]{40}) $headRegex$/m", file_get_contents( $packedRefs ), $matches )
208 ) {
209 $sha1 = $matches[1];
210 }
211 }
212 $this->cache['headSHA1'] = $sha1;
213 }
214 return $this->cache['headSHA1'];
215 }
216
217 /**
218 * Get the commit date of HEAD entry of the git code repository
219 *
220 * @since 1.22
221 * @return int|bool Commit date (UNIX timestamp) or false
222 */
223 public function getHeadCommitDate() {
224 global $wgGitBin;
225
226 if ( !isset( $this->cache['headCommitDate'] ) ) {
227 $date = false;
228 if ( is_file( $wgGitBin ) &&
229 is_executable( $wgGitBin ) &&
230 $this->getHead() !== false
231 ) {
232 $cmd = [
233 $wgGitBin,
234 'show',
235 '-s',
236 '--format=format:%ct',
237 'HEAD',
238 ];
239 $gitDir = realpath( $this->basedir );
240 $result = Shell::command( $cmd )
241 ->environment( [ 'GIT_DIR' => $gitDir ] )
242 ->restrict( Shell::RESTRICT_DEFAULT | Shell::NO_NETWORK )
243 ->whitelistPaths( [ $gitDir, $this->repoDir ] )
244 ->execute();
245
246 if ( $result->getExitCode() === 0 ) {
247 $date = (int)$result->getStdout();
248 }
249 }
250 $this->cache['headCommitDate'] = $date;
251 }
252 return $this->cache['headCommitDate'];
253 }
254
255 /**
256 * Get the name of the current branch, or HEAD if not found
257 *
258 * @return string|bool The branch name, HEAD, or false
259 */
260 public function getCurrentBranch() {
261 if ( !isset( $this->cache['branch'] ) ) {
262 $branch = $this->getHead();
263 if ( $branch &&
264 preg_match( "#^refs/heads/(.*)$#", $branch, $m )
265 ) {
266 $branch = $m[1];
267 }
268 $this->cache['branch'] = $branch;
269 }
270 return $this->cache['branch'];
271 }
272
273 /**
274 * Get an URL to a web viewer link to the HEAD revision.
275 *
276 * @return string|bool String if a URL is available or false otherwise
277 */
278 public function getHeadViewUrl() {
279 $url = $this->getRemoteUrl();
280 if ( $url === false ) {
281 return false;
282 }
283 foreach ( self::getViewers() as $repo => $viewer ) {
284 $pattern = '#^' . $repo . '$#';
285 if ( preg_match( $pattern, $url, $matches ) ) {
286 $viewerUrl = preg_replace( $pattern, $viewer, $url );
287 $headSHA1 = $this->getHeadSHA1();
288 $replacements = [
289 '%h' => substr( $headSHA1, 0, 7 ),
290 '%H' => $headSHA1,
291 '%r' => urlencode( $matches[1] ),
292 '%R' => $matches[1],
293 ];
294 return strtr( $viewerUrl, $replacements );
295 }
296 }
297 return false;
298 }
299
300 /**
301 * Get the URL of the remote origin.
302 * @return string|bool String if a URL is available or false otherwise.
303 */
304 protected function getRemoteUrl() {
305 if ( !isset( $this->cache['remoteURL'] ) ) {
306 $config = "{$this->basedir}/config";
307 $url = false;
308 if ( is_readable( $config ) ) {
309 Wikimedia\suppressWarnings();
310 $configArray = parse_ini_file( $config, true );
311 Wikimedia\restoreWarnings();
312 $remote = false;
313
314 // Use the "origin" remote repo if available or any other repo if not.
315 if ( isset( $configArray['remote origin'] ) ) {
316 $remote = $configArray['remote origin'];
317 } elseif ( is_array( $configArray ) ) {
318 foreach ( $configArray as $sectionName => $sectionConf ) {
319 if ( substr( $sectionName, 0, 6 ) == 'remote' ) {
320 $remote = $sectionConf;
321 }
322 }
323 }
324
325 if ( $remote !== false && isset( $remote['url'] ) ) {
326 $url = $remote['url'];
327 }
328 }
329 $this->cache['remoteURL'] = $url;
330 }
331 return $this->cache['remoteURL'];
332 }
333
334 /**
335 * Check to see if the current cache is fully populated.
336 *
337 * Note: This method is public only to make unit testing easier. There's
338 * really no strong reason that anything other than a test should want to
339 * call this method.
340 *
341 * @return bool True if all expected cache keys exist, false otherwise
342 */
343 public function cacheIsComplete() {
344 return isset( $this->cache['head'] ) &&
345 isset( $this->cache['headSHA1'] ) &&
346 isset( $this->cache['headCommitDate'] ) &&
347 isset( $this->cache['branch'] ) &&
348 isset( $this->cache['remoteURL'] );
349 }
350
351 /**
352 * Precompute and cache git information.
353 *
354 * Creates a JSON file in the cache directory associated with this
355 * GitInfo instance. This cache file will be used by subsequent GitInfo objects referencing
356 * the same directory to avoid needing to examine the .git directory again.
357 *
358 * @since 1.24
359 */
360 public function precomputeValues() {
361 if ( $this->cacheFile !== null ) {
362 // Try to completely populate the cache
363 $this->getHead();
364 $this->getHeadSHA1();
365 $this->getHeadCommitDate();
366 $this->getCurrentBranch();
367 $this->getRemoteUrl();
368
369 if ( !$this->cacheIsComplete() ) {
370 wfDebugLog( 'gitinfo',
371 "Failed to compute GitInfo for \"{$this->basedir}\""
372 );
373 return;
374 }
375
376 $cacheDir = dirname( $this->cacheFile );
377 if ( !file_exists( $cacheDir ) &&
378 !wfMkdirParents( $cacheDir, null, __METHOD__ )
379 ) {
380 throw new MWException( "Unable to create GitInfo cache \"{$cacheDir}\"" );
381 }
382
383 file_put_contents( $this->cacheFile, FormatJson::encode( $this->cache ) );
384 }
385 }
386
387 /**
388 * @see self::getHeadSHA1
389 * @return string
390 */
391 public static function headSHA1() {
392 return self::repo()->getHeadSHA1();
393 }
394
395 /**
396 * @see self::getCurrentBranch
397 * @return string
398 */
399 public static function currentBranch() {
400 return self::repo()->getCurrentBranch();
401 }
402
403 /**
404 * @see self::getHeadViewUrl()
405 * @return bool|string
406 */
407 public static function headViewUrl() {
408 return self::repo()->getHeadViewUrl();
409 }
410
411 /**
412 * Gets the list of repository viewers
413 * @return array
414 */
415 protected static function getViewers() {
416 global $wgGitRepositoryViewers;
417
418 if ( self::$viewers === false ) {
419 self::$viewers = $wgGitRepositoryViewers;
420 Hooks::run( 'GitViewers', [ &self::$viewers ] );
421 }
422
423 return self::$viewers;
424 }
425 }