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
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.
35 class WebInstallerOutput
{
38 * The WebInstaller object this WebInstallerOutput is used by.
45 * Buffered contents that haven't been output yet
48 private $contents = '';
51 * Has the header (or short header) been output?
54 private $headerDone = false;
59 public $redirectTarget;
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.
67 public $allowFrames = false;
70 * Whether to use the limited header (used during CC license callbacks)
73 private $useShortHeader = false;
76 * @param WebInstaller $parent
78 public function __construct( WebInstaller
$parent ) {
79 $this->parent
= $parent;
85 public function addHTML( $html ) {
86 $this->contents
.= $html;
93 public function addWikiText( $text ) {
94 $this->addHTML( $this->parent
->parse( $text ) );
100 public function addHTMLNoFlush( $html ) {
101 $this->contents
.= $html;
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() {
118 $this->outputFooter();
122 * Get the stylesheet of the MediaWiki skin.
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',
149 $resourceLoader = new ResourceLoader();
150 $rlContext = new ResourceLoaderContext( $resourceLoader, new FauxRequest( array(
152 'lang' => $this->getLanguageCode(),
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
164 // Based on: ResourceLoaderFileModule::getStyles (without the DB query)
165 $styles = ResourceLoader
::makeCombinedStyles( $module->readStyleFiles(
166 $module->getStyleFiles( $rlContext ),
167 $module->getFlip( $rlContext )
170 $css .= implode( "\n", $styles );
177 * "<link>" to index.php?css=1 for the "<head>"
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
;
200 $this->contents
= '';
207 public function getDir() {
210 return is_object( $wgLang ) ?
$wgLang->getDir() : 'ltr';
216 public function getLanguageCode() {
219 return is_object( $wgLang ) ?
$wgLang->getCode() : 'en';
225 public function getHeadAttribs() {
227 'dir' => $this->getDir(),
228 'lang' => $this->getLanguageCode(),
233 * Get whether the header has been output
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
);
255 if ( $this->useShortHeader
) {
256 $this->outputShortHeader();
261 <?php
echo Html
::htmlHeader( $this->getHeadAttribs() ); ?
>
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"; ?
>
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
>
275 <div id
="bodyContent">
277 <h1
><?php
$this->outputTitle(); ?
></h1
>
281 public function outputFooter() {
282 if ( $this->useShortHeader
) {
283 echo Html
::closeElement( 'body' ) . Html
::closeElement( 'html' );
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
>
297 <div
class="portal"><div
class="body">
299 echo $this->parent
->parse( wfMessage( 'config-sidebar' )->plain(), true );
305 echo Html
::closeElement( 'body' ) . Html
::closeElement( 'html' );
308 public function outputShortHeader() {
310 <?php
echo Html
::htmlHeader( $this->getHeadAttribs() ); ?
>
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' ); ?
>
320 <body style
="background-image: none">
324 public function outputTitle() {
326 echo wfMessage( 'config-title', $wgVersion )->escaped();
332 public function getJQuery() {
333 return Html
::linkedScript( "../resources/lib/jquery/jquery.js" );