MediaWiki  1.31.0
GitInfo.php
Go to the documentation of this file.
1 <?php
27 
28 class GitInfo {
29 
33  protected static $repo = null;
34 
38  protected $basedir;
39 
43  protected $repoDir;
44 
48  protected $cacheFile;
49 
53  protected $cache = [];
54 
58  private static $viewers = false;
59 
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 
110  protected static function getCacheFilePath( $repoDir ) {
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 
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 
158  public static function isSHA1( $str ) {
159  return !!preg_match( '/^[0-9A-F]{40}$/i', $str );
160  }
161 
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 
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 
223  public function getHeadCommitDate() {
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 
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 
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 
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 
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 
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 
391  public static function headSHA1() {
392  return self::repo()->getHeadSHA1();
393  }
394 
399  public static function currentBranch() {
400  return self::repo()->getCurrentBranch();
401  }
402 
407  public static function headViewUrl() {
408  return self::repo()->getHeadViewUrl();
409  }
410 
415  protected static function getViewers() {
417 
418  if ( self::$viewers === false ) {
419  self::$viewers = $wgGitRepositoryViewers;
420  Hooks::run( 'GitViewers', [ &self::$viewers ] );
421  }
422 
423  return self::$viewers;
424  }
425 }
GitInfo\getRemoteUrl
getRemoteUrl()
Get the URL of the remote origin.
Definition: GitInfo.php:304
GitInfo\getHead
getHead()
Get the HEAD of the repo (without any opening "ref: ")
Definition: GitInfo.php:167
MediaWiki\Shell\Shell
Executes shell commands.
Definition: Shell.php:44
GitInfo\getHeadCommitDate
getHeadCommitDate()
Get the commit date of HEAD entry of the git code repository.
Definition: GitInfo.php:223
GitInfo\$repoDir
$repoDir
Location of the repository.
Definition: GitInfo.php:43
wfMkdirParents
wfMkdirParents( $dir, $mode=null, $caller=null)
Make directory, and make all parent directories if they don't exist.
Definition: GlobalFunctions.php:2064
GitInfo\isSHA1
static isSHA1( $str)
Check if a string looks like a hex encoded SHA1 hash.
Definition: GitInfo.php:158
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1985
GitInfo\$cacheFile
$cacheFile
Path to JSON cache file for pre-computed git information.
Definition: GitInfo.php:48
GitInfo\headSHA1
static headSHA1()
Definition: GitInfo.php:391
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
GitInfo\headViewUrl
static headViewUrl()
Definition: GitInfo.php:407
GitInfo\$cache
$cache
Cached git information.
Definition: GitInfo.php:53
cache
you have access to all of the normal MediaWiki so you can get a DB use the cache
Definition: maintenance.txt:52
wfDebugLog
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
Definition: GlobalFunctions.php:1075
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
GitInfo\precomputeValues
precomputeValues()
Precompute and cache git information.
Definition: GitInfo.php:360
FormatJson\decode
static decode( $value, $assoc=false)
Decodes a JSON string.
Definition: FormatJson.php:187
FormatJson\encode
static encode( $value, $pretty=false, $escaping=0)
Returns the JSON representation of a value.
Definition: FormatJson.php:127
GitInfo\getHeadSHA1
getHeadSHA1()
Get the SHA1 for the current HEAD of the repo.
Definition: GitInfo.php:191
GitInfo\repo
static repo()
Get the singleton for the repo at $IP.
Definition: GitInfo.php:144
MWException
MediaWiki exception.
Definition: MWException.php:26
$matches
$matches
Definition: NoLocalSettings.php:24
$IP
$IP
Definition: update.php:3
GitInfo\__construct
__construct( $repoDir, $usePrecomputed=true)
Definition: GitInfo.php:65
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
GitInfo\cacheIsComplete
cacheIsComplete()
Check to see if the current cache is fully populated.
Definition: GitInfo.php:343
GitInfo\$viewers
static array false $viewers
Map of repo URLs to viewer URLs.
Definition: GitInfo.php:58
GitInfo
Definition: GitInfo.php:28
$wgGitBin
$wgGitBin
Fully specified path to git binary.
Definition: DefaultSettings.php:6646
GitInfo\getViewers
static getViewers()
Gets the list of repository viewers.
Definition: GitInfo.php:415
GitInfo\currentBranch
static currentBranch()
Definition: GitInfo.php:399
GitInfo\getHeadViewUrl
getHeadViewUrl()
Get an URL to a web viewer link to the HEAD revision.
Definition: GitInfo.php:278
GitInfo\$basedir
$basedir
Location of the .git directory.
Definition: GitInfo.php:38
$wgGitInfoCacheDirectory
$wgGitInfoCacheDirectory
Directory where GitInfo will look for pre-computed cache files.
Definition: DefaultSettings.php:2541
$wgGitRepositoryViewers
$wgGitRepositoryViewers
Map GIT repository URLs to viewer URLs to provide links in Special:Version.
Definition: DefaultSettings.php:6661
GitInfo\$repo
static $repo
Singleton for the repo at $IP.
Definition: GitInfo.php:33
$path
$path
Definition: NoLocalSettings.php:25
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
GitInfo\getCurrentBranch
getCurrentBranch()
Get the name of the current branch, or HEAD if not found.
Definition: GitInfo.php:260
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:203
GitInfo\getCacheFilePath
static getCacheFilePath( $repoDir)
Compute the path to the cache file for a given directory.
Definition: GitInfo.php:110
array
the array() calling protocol came about after MediaWiki 1.4rc1.