* Include SVN revision number in {{CURRENTVERSION}} output, where applicable
[lhc/web/wiklou.git] / includes / SpecialVersion.php
1 <?php
2 /**#@+
3 * Give information about the version of MediaWiki, PHP, the DB and extensions
4 *
5 * @package MediaWiki
6 * @subpackage SpecialPage
7 *
8 * @bug 2019, 4531
9 *
10 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
11 * @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
12 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
13 */
14
15 /**
16 * constructor
17 */
18 function wfSpecialVersion() {
19 $version = new SpecialVersion;
20 $version->execute();
21 }
22
23 class SpecialVersion {
24 /**
25 * main()
26 */
27 function execute() {
28 global $wgOut;
29
30 $wgOut->addHTML( '<div dir="ltr">' );
31 $wgOut->addWikiText(
32 $this->MediaWikiCredits() .
33 $this->extensionCredits() .
34 $this->wgHooks()
35 );
36 $wgOut->addHTML( $this->IPInfo() );
37 $wgOut->addHTML( '</div>' );
38 }
39
40 /**#@+
41 * @private
42 */
43
44 /**
45 * @static
46 */
47 function MediaWikiCredits() {
48 $version = self::getVersion();
49 $dbr =& wfGetDB( DB_SLAVE );
50
51 $ret =
52 "__NOTOC__
53 This wiki is powered by '''[http://www.mediawiki.org/ MediaWiki]''',
54 copyright (C) 2001-2006 Magnus Manske, Brion Vibber, Lee Daniel Crocker,
55 Tim Starling, Erik Möller, Gabriel Wicke, Ævar Arnfjörð Bjarmason,
56 Niklas Laxström, Domas Mituzas, Rob Church and others.
57
58 MediaWiki is free software; you can redistribute it and/or modify
59 it under the terms of the GNU General Public License as published by
60 the Free Software Foundation; either version 2 of the License, or
61 (at your option) any later version.
62
63 MediaWiki is distributed in the hope that it will be useful,
64 but WITHOUT ANY WARRANTY; without even the implied warranty of
65 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
66 GNU General Public License for more details.
67
68 You should have received [{{SERVER}}{{SCRIPTPATH}}/COPYING a copy of the GNU General Public License]
69 along with this program; if not, write to the Free Software
70 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
71 or [http://www.gnu.org/copyleft/gpl.html read it online]
72
73 * [http://www.mediawiki.org/ MediaWiki]: $version
74 * [http://www.php.net/ PHP]: " . phpversion() . " (" . php_sapi_name() . ")
75 * " . $dbr->getSoftwareLink() . ": " . $dbr->getServerVersion();
76
77 return str_replace( "\t\t", '', $ret );
78 }
79
80 public static function getVersion() {
81 global $wgVersion, $IP;
82 $svn = self::getSvnRevision( $IP );
83 return $svn ? "$wgVersion (r$svn)" : $wgVersion;
84 }
85
86 function extensionCredits() {
87 global $wgExtensionCredits, $wgExtensionFunctions, $wgParser, $wgSkinExtensionFunction;
88
89 if ( ! count( $wgExtensionCredits ) && ! count( $wgExtensionFunctions ) && ! count( $wgSkinExtensionFunction ) )
90 return '';
91
92 $extensionTypes = array(
93 'specialpage' => 'Special pages',
94 'parserhook' => 'Parser hooks',
95 'variable' => 'Variables',
96 'other' => 'Other',
97 );
98 wfRunHooks( 'SpecialVersionExtensionTypes', array( &$this, &$extensionTypes ) );
99
100 $out = "\n* Extensions:\n";
101 foreach ( $extensionTypes as $type => $text ) {
102 if ( count( @$wgExtensionCredits[$type] ) ) {
103 $out .= "** $text:\n";
104
105 usort( $wgExtensionCredits[$type], array( $this, 'compare' ) );
106
107 foreach ( $wgExtensionCredits[$type] as $extension ) {
108 wfSuppressWarnings();
109 $out .= $this->formatCredits(
110 $extension['name'],
111 $extension['version'],
112 $extension['author'],
113 $extension['url'],
114 $extension['description']
115 );
116 wfRestoreWarnings();
117 }
118 }
119 }
120
121 if ( count( $wgExtensionFunctions ) ) {
122 $out .= "** Extension functions:\n";
123 $out .= '***' . $this->listToText( $wgExtensionFunctions ) . "\n";
124 }
125
126 if ( $cnt = count( $tags = $wgParser->getTags() ) ) {
127 for ( $i = 0; $i < $cnt; ++$i )
128 $tags[$i] = "&lt;{$tags[$i]}&gt;";
129 $out .= "** Parser extension tags:\n";
130 $out .= '***' . $this->listToText( $tags ). "\n";
131 }
132
133 if( $cnt = count( $fhooks = $wgParser->getFunctionHooks() ) ) {
134 $out .= "** Parser function hooks:\n";
135 $out .= '***' . $this->listToText( $fhooks ) . "\n";
136 }
137
138 if ( count( $wgSkinExtensionFunction ) ) {
139 $out .= "** Skin extension functions:\n";
140 $out .= '***' . $this->listToText( $wgSkinExtensionFunction ) . "\n";
141 }
142
143 return $out;
144 }
145
146 function compare( $a, $b ) {
147 if ( $a['name'] === $b['name'] )
148 return 0;
149 else
150 return Language::lc( $a['name'] ) > Language::lc( $b['name'] ) ? 1 : -1;
151 }
152
153 function formatCredits( $name, $version = null, $author = null, $url = null, $description = null) {
154 $ret = '*** ';
155 if ( isset( $url ) )
156 $ret .= "[$url ";
157 $ret .= "''$name";
158 if ( isset( $version ) )
159 $ret .= " (version $version)";
160 $ret .= "''";
161 if ( isset( $url ) )
162 $ret .= ']';
163 if ( isset( $description ) )
164 $ret .= ', ' . $description;
165 if ( isset( $description ) && isset( $author ) )
166 $ret .= ', ';
167 if ( isset( $author ) )
168 $ret .= ' by ' . $this->listToText( (array)$author );
169
170 return "$ret\n";
171 }
172
173 /**
174 * @return string
175 */
176 function wgHooks() {
177 global $wgHooks;
178
179 if ( count( $wgHooks ) ) {
180 $myWgHooks = $wgHooks;
181 ksort( $myWgHooks );
182
183 $ret = "* Hooks:\n";
184 foreach ($myWgHooks as $hook => $hooks)
185 $ret .= "** $hook: " . $this->listToText( $hooks ) . "\n";
186
187 return $ret;
188 } else
189 return '';
190 }
191
192 /**
193 * @static
194 *
195 * @return string
196 */
197 function IPInfo() {
198 $ip = str_replace( '--', ' - ', htmlspecialchars( wfGetIP() ) );
199 return "<!-- visited from $ip -->\n" .
200 "<span style='display:none'>visited from $ip</span>";
201 }
202
203 /**
204 * @param array $list
205 * @return string
206 */
207 function listToText( $list ) {
208 $cnt = count( $list );
209
210 if ( $cnt == 1 )
211 // Enforce always returning a string
212 return (string)$this->arrayToString( $list[0] );
213 else {
214 $t = array_slice( $list, 0, $cnt - 1 );
215 $one = array_map( array( &$this, 'arrayToString' ), $t );
216 $two = $this->arrayToString( $list[$cnt - 1] );
217
218 return implode( ', ', $one ) . " and $two";
219 }
220 }
221
222 /**
223 * @static
224 *
225 * @param mixed $list Will convert an array to string if given and return
226 * the paramater unaltered otherwise
227 * @return mixed
228 */
229 function arrayToString( $list ) {
230 if ( ! is_array( $list ) )
231 return $list;
232 else {
233 $class = get_class( $list[0] );
234 return "($class, {$list[1]})";
235 }
236 }
237
238 /**
239 * Retrieve the revision number of a Subversion working directory.
240 *
241 * @param string $dir
242 * @return mixed revision number as int, or false if not a SVN checkout
243 */
244 public static function getSvnRevision( $dir ) {
245 if( !function_exists( 'simplexml_load_file' ) ) {
246 // We could fall back to expat... YUCK
247 return false;
248 }
249
250 // http://svnbook.red-bean.com/nightly/en/svn.developer.insidewc.html
251 $entries = $dir . '/.svn/entries';
252
253 // SimpleXml whines about the xmlns...
254 wfSuppressWarnings();
255 $xml = simplexml_load_file( $entries );
256 wfRestoreWarnings();
257
258 if( $xml ) {
259 foreach( $xml->entry as $entry ) {
260 if( $xml->entry[0]['name'] == '' ) {
261 // The directory entry should always have a revision marker.
262 if( $entry['revision'] ) {
263 return intval( $entry['revision'] );
264 }
265 }
266 }
267 }
268 return false;
269 }
270
271 /**#@-*/
272 }
273
274 /**#@-*/
275 ?>