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 global $wgStyleDirectory;
129 $moduleNames = array(
130 // See SkinTemplate::setupSkinUserCss
131 'mediawiki.legacy.shared',
132 // See Vector::setupSkinUserCss
133 'mediawiki.skinning.interface',
136 if ( file_exists( "$wgStyleDirectory/Vector/Vector.php" ) ) {
137 // Force loading Vector skin if available as a fallback skin
138 // for whatever ResourceLoader wants to have as the default.
140 // Include instead of require, as this will work without it, it will just look bad.
141 // We need the 'global' statement for $wgResourceModules because the Vector skin adds the
142 // definitions for its RL modules there that we use implicitly below.
144 // @codingStandardsIgnoreStart
145 global $wgResourceModules; // This is NOT UNUSED!
146 // @codingStandardsIgnoreEnd
148 include_once "$wgStyleDirectory/Vector/Vector.php";
150 $moduleNames[] = 'skins.vector.styles';
153 $moduleNames[] = 'mediawiki.legacy.config';
155 $resourceLoader = new ResourceLoader();
156 $rlContext = new ResourceLoaderContext( $resourceLoader, new FauxRequest( array(
158 'lang' => $this->getLanguageCode(),
163 foreach ( $moduleNames as $moduleName ) {
164 /** @var ResourceLoaderFileModule $module */
165 $module = $resourceLoader->getModule( $moduleName );
167 // Based on: ResourceLoaderFileModule::getStyles (without the DB query)
168 $styles = array_merge( $styles, ResourceLoader
::makeCombinedStyles(
169 $module->readStyleFiles(
170 $module->getStyleFiles( $rlContext ),
171 $module->getFlip( $rlContext )
175 return implode( "\n", $styles );
179 * "<link>" to index.php?css=1 for the "<head>"
183 private function getCssUrl() {
184 return Html
::linkedStyle( $_SERVER['PHP_SELF'] . '?css=1' );
187 public function useShortHeader( $use = true ) {
188 $this->useShortHeader
= $use;
191 public function allowFrames( $allow = true ) {
192 $this->allowFrames
= $allow;
195 public function flush() {
196 if ( !$this->headerDone
) {
197 $this->outputHeader();
199 if ( !$this->redirectTarget
&& strlen( $this->contents
) ) {
200 echo $this->contents
;
202 $this->contents
= '';
209 public function getDir() {
212 return is_object( $wgLang ) ?
$wgLang->getDir() : 'ltr';
218 public function getLanguageCode() {
221 return is_object( $wgLang ) ?
$wgLang->getCode() : 'en';
227 public function getHeadAttribs() {
229 'dir' => $this->getDir(),
230 'lang' => wfBCP47( $this->getLanguageCode() ),
235 * Get whether the header has been output
239 public function headerDone() {
240 return $this->headerDone
;
243 public function outputHeader() {
244 $this->headerDone
= true;
245 $this->parent
->request
->response()->header( 'Content-Type: text/html; charset=utf-8' );
247 if ( !$this->allowFrames
) {
248 $this->parent
->request
->response()->header( 'X-Frame-Options: DENY' );
251 if ( $this->redirectTarget
) {
252 $this->parent
->request
->response()->header( 'Location: ' . $this->redirectTarget
);
257 if ( $this->useShortHeader
) {
258 $this->outputShortHeader();
263 <?php
echo Html
::htmlHeader( $this->getHeadAttribs() ); ?
>
265 <meta name
="robots" content
="noindex, nofollow" />
266 <meta http
-equiv
="Content-type" content
="text/html; charset=utf-8" />
267 <title
><?php
$this->outputTitle(); ?
></title
>
268 <?php
echo $this->getCssUrl() . "\n"; ?
>
269 <?php
echo $this->getJQuery() . "\n"; ?
>
270 <?php
echo Html
::linkedScript( 'config.js' ) . "\n"; ?
>
273 <?php
echo Html
::openElement( 'body', array( 'class' => $this->getDir() ) ) . "\n"; ?
>
274 <div id
="mw-page-base"></div
>
275 <div id
="mw-head-base"></div
>
276 <div id
="content" class="mw-body">
277 <div id
="bodyContent" class="mw-body-content">
279 <h1
><?php
$this->outputTitle(); ?
></h1
>
283 public function outputFooter() {
284 if ( $this->useShortHeader
) {
285 echo Html
::closeElement( 'body' ) . Html
::closeElement( 'html' );
294 <div
class="portal" id
="p-logo">
295 <a style
="background-image: url(images/installer-logo.png);"
296 href
="https://www.mediawiki.org/"
297 title
="Main Page"></a
>
300 $message = wfMessage( 'config-sidebar' )->plain();
301 foreach( explode( '----', $message ) as $section ) {
302 echo '<div class="portal"><div class="body">';
303 echo $this->parent
->parse( $section, true );
310 echo Html
::closeElement( 'body' ) . Html
::closeElement( 'html' );
313 public function outputShortHeader() {
315 <?php
echo Html
::htmlHeader( $this->getHeadAttribs() ); ?
>
317 <meta http
-equiv
="Content-type" content
="text/html; charset=utf-8" />
318 <meta name
="robots" content
="noindex, nofollow" />
319 <title
><?php
$this->outputTitle(); ?
></title
>
320 <?php
echo $this->getCssUrl() . "\n"; ?
>
321 <?php
echo $this->getJQuery(); ?
>
322 <?php
echo Html
::linkedScript( 'config.js' ); ?
>
325 <body style
="background-image: none">
329 public function outputTitle() {
331 echo wfMessage( 'config-title', $wgVersion )->escaped();
337 public function getJQuery() {
338 return Html
::linkedScript( "../resources/lib/jquery/jquery.js" );