Don't send rel=canonical to variant-neutral page
[mediawiki.git] / includes / installer / WebInstallerOutput.php
blobf797ef9a4506ec63b91107035247e886910c7e83
1 <?php
2 /**
3 * Output handler for the web installer.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Deployment
24 /**
25 * Output class modelled on OutputPage.
27 * I've opted to use a distinct class rather than derive from OutputPage here in
28 * the interests of separation of concerns: if we used a subclass, there would be
29 * quite a lot of things you could do in OutputPage that would break the installer,
30 * that wouldn't be immediately obvious.
32 * @ingroup Deployment
33 * @since 1.17
35 class WebInstallerOutput {
37 /**
38 * The WebInstaller object this WebInstallerOutput is used by.
40 * @var WebInstaller
42 public $parent;
44 /**
45 * Buffered contents that haven't been output yet
46 * @var string
48 private $contents = '';
50 /**
51 * Has the header (or short header) been output?
52 * @var bool
54 private $headerDone = false;
56 /**
57 * @var string
59 public $redirectTarget;
61 /**
62 * Does the current page need to allow being used as a frame?
63 * If not, X-Frame-Options will be output to forbid it.
65 * @var bool
67 public $allowFrames = false;
69 /**
70 * Whether to use the limited header (used during CC license callbacks)
71 * @var bool
73 private $useShortHeader = false;
75 /**
76 * @param WebInstaller $parent
78 public function __construct( WebInstaller $parent ) {
79 $this->parent = $parent;
82 /**
83 * @param string $html
85 public function addHTML( $html ) {
86 $this->contents .= $html;
87 $this->flush();
90 /**
91 * @param string $text
93 public function addWikiText( $text ) {
94 $this->addHTML( $this->parent->parse( $text ) );
97 /**
98 * @param string $html
100 public function addHTMLNoFlush( $html ) {
101 $this->contents .= $html;
105 * @param string $url
107 * @throws MWException
109 public function redirect( $url ) {
110 if ( $this->headerDone ) {
111 throw new MWException( __METHOD__ . ' called after sending headers' );
113 $this->redirectTarget = $url;
116 public function output() {
117 $this->flush();
118 $this->outputFooter();
122 * Get the stylesheet of the MediaWiki skin.
124 * @return string
126 public function getCSS() {
127 // Horrible, horrible hack: the installer is currently hardcoded to use the Vector skin, so load
128 // it here. Include instead of require, as this will work without it, it will just look bad.
129 // We need the 'global' statement for $wgResourceModules because the Vector skin adds the
130 // definitions for its RL modules there that we use implicitly below.
131 // @codingStandardsIgnoreStart
132 global $wgResourceModules; // This is NOT UNUSED!
133 // @codingStandardsIgnoreEnd
134 global $wgStyleDirectory;
135 include_once "$wgStyleDirectory/Vector/Vector.php";
137 $moduleNames = array(
138 // See SkinTemplate::setupSkinUserCss
139 'mediawiki.legacy.shared',
140 // See Vector::setupSkinUserCss
141 'mediawiki.skinning.interface',
142 'skins.vector.styles',
144 'mediawiki.legacy.config',
147 $css = '';
149 $resourceLoader = new ResourceLoader();
150 $rlContext = new ResourceLoaderContext( $resourceLoader, new FauxRequest( array(
151 'debug' => 'true',
152 'lang' => $this->getLanguageCode(),
153 'only' => 'styles',
154 'skin' => 'vector',
155 ) ) );
156 foreach ( $moduleNames as $moduleName ) {
157 /** @var ResourceLoaderFileModule $module */
158 $module = $resourceLoader->getModule( $moduleName );
159 // One of the modules will be missing if Vector is unavailable
160 if ( !$module ) {
161 continue;
164 // Based on: ResourceLoaderFileModule::getStyles (without the DB query)
165 $styles = ResourceLoader::makeCombinedStyles( $module->readStyleFiles(
166 $module->getStyleFiles( $rlContext ),
167 $module->getFlip( $rlContext )
168 ) );
170 $css .= implode( "\n", $styles );
173 return $css;
177 * "<link>" to index.php?css=1 for the "<head>"
179 * @return string
181 private function getCssUrl() {
182 return Html::linkedStyle( $_SERVER['PHP_SELF'] . '?css=1' );
185 public function useShortHeader( $use = true ) {
186 $this->useShortHeader = $use;
189 public function allowFrames( $allow = true ) {
190 $this->allowFrames = $allow;
193 public function flush() {
194 if ( !$this->headerDone ) {
195 $this->outputHeader();
197 if ( !$this->redirectTarget && strlen( $this->contents ) ) {
198 echo $this->contents;
199 flush();
200 $this->contents = '';
205 * @return string
207 public function getDir() {
208 global $wgLang;
210 return is_object( $wgLang ) ? $wgLang->getDir() : 'ltr';
214 * @return string
216 public function getLanguageCode() {
217 global $wgLang;
219 return is_object( $wgLang ) ? $wgLang->getCode() : 'en';
223 * @return string[]
225 public function getHeadAttribs() {
226 return array(
227 'dir' => $this->getDir(),
228 'lang' => $this->getLanguageCode(),
233 * Get whether the header has been output
235 * @return bool
237 public function headerDone() {
238 return $this->headerDone;
241 public function outputHeader() {
242 $this->headerDone = true;
243 $this->parent->request->response()->header( 'Content-Type: text/html; charset=utf-8' );
245 if ( !$this->allowFrames ) {
246 $this->parent->request->response()->header( 'X-Frame-Options: DENY' );
249 if ( $this->redirectTarget ) {
250 $this->parent->request->response()->header( 'Location: ' . $this->redirectTarget );
252 return;
255 if ( $this->useShortHeader ) {
256 $this->outputShortHeader();
258 return;
261 <?php echo Html::htmlHeader( $this->getHeadAttribs() ); ?>
262 <head>
263 <meta name="robots" content="noindex, nofollow" />
264 <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
265 <title><?php $this->outputTitle(); ?></title>
266 <?php echo $this->getCssUrl() . "\n"; ?>
267 <?php echo $this->getJQuery() . "\n"; ?>
268 <?php echo Html::linkedScript( 'config.js' ) . "\n"; ?>
269 </head>
271 <?php echo Html::openElement( 'body', array( 'class' => $this->getDir() ) ) . "\n"; ?>
272 <div id="mw-page-base"></div>
273 <div id="mw-head-base"></div>
274 <div id="content">
275 <div id="bodyContent">
277 <h1><?php $this->outputTitle(); ?></h1>
278 <?php
281 public function outputFooter() {
282 if ( $this->useShortHeader ) {
283 echo Html::closeElement( 'body' ) . Html::closeElement( 'html' );
285 return;
289 </div></div>
291 <div id="mw-panel">
292 <div class="portal" id="p-logo">
293 <a style="background-image: url(images/installer-logo.png);"
294 href="https://www.mediawiki.org/"
295 title="Main Page"></a>
296 </div>
297 <div class="portal"><div class="body">
298 <?php
299 echo $this->parent->parse( wfMessage( 'config-sidebar' )->plain(), true );
301 </div></div>
302 </div>
304 <?php
305 echo Html::closeElement( 'body' ) . Html::closeElement( 'html' );
308 public function outputShortHeader() {
310 <?php echo Html::htmlHeader( $this->getHeadAttribs() ); ?>
311 <head>
312 <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
313 <meta name="robots" content="noindex, nofollow" />
314 <title><?php $this->outputTitle(); ?></title>
315 <?php echo $this->getCssUrl() . "\n"; ?>
316 <?php echo $this->getJQuery(); ?>
317 <?php echo Html::linkedScript( 'config.js' ); ?>
318 </head>
320 <body style="background-image: none">
321 <?php
324 public function outputTitle() {
325 global $wgVersion;
326 echo wfMessage( 'config-title', $wgVersion )->escaped();
330 * @return string
332 public function getJQuery() {
333 return Html::linkedScript( "../resources/lib/jquery/jquery.js" );