Fixing bug 20524: Hideuser: Nicer error when trying to block hidden user without...
[lhc/web/wiklou.git] / maintenance / mwdocgen.php
1 <?php
2 /**
3 * Script to easily generate the mediawiki documentation using doxygen.
4 *
5 * By default it will generate the whole documentation but you will be able to
6 * generate just some parts.
7 *
8 * Usage:
9 * php mwdocgen.php
10 *
11 * Then make a selection from the menu
12 *
13 * KNOWN BUGS:
14 *
15 * - pass_thru seems to always use buffering (even with ob_implicit_flush()),
16 * that make output slow when doxygen parses language files.
17 * - the menu doesnt work, got disabled at revision 13740. Need to code it.
18 *
19 *
20 * @file
21 * @todo document
22 * @ingroup Maintenance
23 *
24 * @author Ashar Voultoiz <thoane@altern.org>
25 * @version first release
26 */
27
28 #
29 # Variables / Configuration
30 #
31
32 if( php_sapi_name() != 'cli' ) {
33 echo 'Run me from the command line.';
34 die( -1 );
35 }
36
37 /** Figure out the base directory for MediaWiki location */
38 $mwPath = dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR;
39
40 /** Global variable: temporary directory */
41 $tmpPath = '/tmp/';
42
43 /** doxygen binary script */
44 $doxygenBin = 'doxygen';
45
46 /** doxygen configuration template for mediawiki */
47 $doxygenTemplate = $mwPath . 'maintenance/Doxyfile';
48
49 /** svnstat command, used to get the version of each file */
50 $svnstat = $mwPath . 'bin/svnstat';
51
52 /** where Phpdoc should output documentation */
53 #$doxyOutput = '/var/www/mwdoc/';
54 $doxyOutput = $mwPath . 'docs' . DIRECTORY_SEPARATOR ;
55
56 /** MediaWiki subpaths */
57 $mwPathI = $mwPath.'includes/';
58 $mwPathL = $mwPath.'languages/';
59 $mwPathM = $mwPath.'maintenance/';
60 $mwPathS = $mwPath.'skins/';
61
62 /** Variable to get user input */
63 $input = '';
64 $exclude = '';
65
66 #
67 # Functions
68 #
69
70 /**
71 * Read a line from the shell
72 * @param $prompt String
73 */
74 function readaline( $prompt = '' ){
75 print $prompt;
76 $fp = fopen( "php://stdin", "r" );
77 $resp = trim( fgets( $fp, 1024 ) );
78 fclose( $fp );
79 return $resp;
80 }
81
82 /**
83 * Copied from SpecialVersion::getSvnRevision()
84 * @param $dir String
85 * @return Mixed: string or false
86 */
87 function getSvnRevision( $dir ) {
88 // http://svnbook.red-bean.com/nightly/en/svn.developer.insidewc.html
89 $entries = $dir . '/.svn/entries';
90
91 if( !file_exists( $entries ) ) {
92 return false;
93 }
94
95 $content = file( $entries );
96
97 // check if file is xml (subversion release <= 1.3) or not (subversion release = 1.4)
98 if( preg_match( '/^<\?xml/', $content[0] ) ) {
99 // subversion is release <= 1.3
100 if( !function_exists( 'simplexml_load_file' ) ) {
101 // We could fall back to expat... YUCK
102 return false;
103 }
104
105 $xml = simplexml_load_file( $entries );
106
107 if( $xml ) {
108 foreach( $xml->entry as $entry ) {
109 if( $xml->entry[0]['name'] == '' ) {
110 // The directory entry should always have a revision marker.
111 if( $entry['revision'] ) {
112 return intval( $entry['revision'] );
113 }
114 }
115 }
116 }
117 return false;
118 } else {
119 // subversion is release 1.4
120 return intval( $content[3] );
121 }
122 }
123
124 /**
125 * Generate a configuration file given user parameters and return the temporary filename.
126 * @param $doxygenTemplate String: full path for the template.
127 * @param $outputDirectory String: directory where the stuff will be output.
128 * @param $stripFromPath String: path that should be stripped out (usually mediawiki base path).
129 * @param $currentVersion String: Version number of the software
130 * @param $svnstat String: path to the svnstat file
131 * @param $input String: Path to analyze.
132 */
133 function generateConfigFile( $doxygenTemplate, $outputDirectory, $stripFromPath, $currentVersion, $svnstat, $input, $exclude ){
134 global $tmpPath;
135
136 $template = file_get_contents( $doxygenTemplate );
137
138 // Replace template placeholders by correct values.
139 $replacements = array(
140 '{{OUTPUT_DIRECTORY}}' => $outputDirectory,
141 '{{STRIP_FROM_PATH}}' => $stripFromPath,
142 '{{CURRENT_VERSION}}' => $currentVersion,
143 '{{SVNSTAT}}' => $svnstat,
144 '{{INPUT}}' => $input,
145 '{{EXCLUDE}}' => $exclude,
146 );
147 $tmpCfg = str_replace( array_keys( $replacements ), array_values( $replacements ), $template );
148 $tmpFileName = $tmpPath . 'mwdocgen'. rand() .'.tmp';
149 file_put_contents( $tmpFileName , $tmpCfg ) or die("Could not write doxygen configuration to file $tmpFileName\n");
150
151 return $tmpFileName;
152 }
153
154 #
155 # Main !
156 #
157
158 unset( $file );
159
160 if( is_array( $argv ) && isset( $argv[1] ) ) {
161 switch( $argv[1] ) {
162 case '--all': $input = 0; break;
163 case '--includes': $input = 1; break;
164 case '--languages': $input = 2; break;
165 case '--maintenance': $input = 3; break;
166 case '--skins': $input = 4; break;
167 case '--file':
168 $input = 5;
169 if( isset( $argv[2] ) ) {
170 $file = $argv[2];
171 }
172 break;
173 case '--no-extensions': $input = 6; break;
174 }
175 }
176
177 // TODO : generate a list of paths ))
178
179 if( $input === '' ) {
180 echo <<<OPTIONS
181 Several documentation possibilities:
182 0 : whole documentation (1 + 2 + 3 + 4)
183 1 : only includes
184 2 : only languages
185 3 : only maintenance
186 4 : only skins
187 5 : only a given file
188 6 : all but the extensions directory
189 OPTIONS;
190 while ( !is_numeric($input) )
191 {
192 $input = readaline( "\nEnter your choice [0]:" );
193 if($input == '') {
194 $input = 0;
195 }
196 }
197 }
198
199 switch ($input) {
200 case 0: $input = $mwPath; break;
201 case 1: $input = $mwPathI; break;
202 case 2: $input = $mwPathL; break;
203 case 3: $input = $mwPathM; break;
204 case 4: $input = $mwPathS; break;
205 case 5:
206 if( !isset( $file ) ) {
207 $file = readaline( "Enter file name $mwPath" );
208 }
209 $input = $mwPath.$file;
210 case 6:
211 $input = $mwPath;
212 $exclude = 'extensions';
213 }
214
215 $versionNumber = getSvnRevision( $input );
216 if( $versionNumber === false ){ #Not using subversion ?
217 $svnstat = ''; # Not really useful if subversion not available
218 $version = 'trunk'; # FIXME
219 } else {
220 $version = "trunk (r$versionNumber)";
221 }
222
223 $generatedConf = generateConfigFile( $doxygenTemplate, $doxyOutput, $mwPath, $version, $svnstat, $input, $exclude );
224 $command = $doxygenBin . ' ' . $generatedConf;
225
226 echo <<<TEXT
227 ---------------------------------------------------
228 Launching the command:
229
230 $command
231
232 ---------------------------------------------------
233
234 TEXT;
235
236 passthru( $command );
237
238 echo <<<TEXT
239 ---------------------------------------------------
240 Doxygen execution finished.
241 Check above for possible errors.
242
243 You might want to delete the temporary file $generatedConf
244
245 TEXT;