MediaWiki REL1_33
FileContentsHasher.php
Go to the documentation of this file.
1<?php
23
25 protected $cache;
26
28 private static $instance;
29
30 public function __construct() {
31 $this->cache = ObjectCache::getLocalServerInstance( 'hash' );
32 }
33
39 public static function singleton() {
40 if ( !self::$instance ) {
41 self::$instance = new self;
42 }
43
44 return self::$instance;
45 }
46
56 public function getFileContentsHashInternal( $filePath, $algo = 'md4' ) {
57 $mtime = filemtime( $filePath );
58 if ( $mtime === false ) {
59 return false;
60 }
61
62 $cacheKey = $this->cache->makeGlobalKey( __CLASS__, $filePath, $mtime, $algo );
63 $hash = $this->cache->get( $cacheKey );
64
65 if ( $hash ) {
66 return $hash;
67 }
68
69 $contents = file_get_contents( $filePath );
70 if ( $contents === false ) {
71 return false;
72 }
73
74 $hash = hash( $algo, $contents );
75 $this->cache->set( $cacheKey, $hash, 60 * 60 * 24 ); // 24h
76
77 return $hash;
78 }
79
89 public static function getFileContentsHash( $filePaths, $algo = 'md4' ) {
91
92 if ( !is_array( $filePaths ) ) {
93 $filePaths = (array)$filePaths;
94 }
95
97
98 if ( count( $filePaths ) === 1 ) {
99 $hash = $instance->getFileContentsHashInternal( $filePaths[0], $algo );
101 return $hash;
102 }
103
104 sort( $filePaths );
105 $hashes = array_map( function ( $filePath ) use ( $instance, $algo ) {
106 return $instance->getFileContentsHashInternal( $filePath, $algo ) ?: '';
107 }, $filePaths );
108
110
111 $hashes = implode( '', $hashes );
112 return $hashes ? hash( $algo, $hashes ) : false;
113 }
114}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Class representing a cache/ephemeral data store.
Definition BagOStuff.php:58
static FileContentsHasher $instance
static getFileContentsHash( $filePaths, $algo='md4')
Get a hash of the combined contents of one or more files, either by retrieving a previously-computed ...
getFileContentsHashInternal( $filePath, $algo='md4')
Get a hash of a file's contents, either by retrieving a previously- computed hash from the cache,...
static singleton()
Get the singleton instance of this class.
you have access to all of the normal MediaWiki so you can get a DB use the cache
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))