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
{
37 * The WebInstaller object this WebInstallerOutput is used by.
44 * Buffered contents that haven't been output yet
47 private $contents = '';
50 * Has the header (or short header) been output?
53 private $headerDone = false;
55 public $redirectTarget;
58 * Does the current page need to allow being used as a frame?
59 * If not, X-Frame-Options will be output to forbid it.
63 public $allowFrames = false;
66 * Whether to use the limited header (used during CC license callbacks)
69 private $useShortHeader = false;
74 * @param $parent WebInstaller
76 public function __construct( WebInstaller
$parent ) {
77 $this->parent
= $parent;
80 public function addHTML( $html ) {
81 $this->contents
.= $html;
85 public function addWikiText( $text ) {
86 $this->addHTML( $this->parent
->parse( $text ) );
89 public function addHTMLNoFlush( $html ) {
90 $this->contents
.= $html;
93 public function redirect( $url ) {
94 if ( $this->headerDone
) {
95 throw new MWException( __METHOD__
. ' called after sending headers' );
97 $this->redirectTarget
= $url;
100 public function output() {
102 $this->outputFooter();
106 * Get the raw vector CSS, flipping if needed
107 * @param string $dir 'ltr' or 'rtl'
110 public function getCSS( $dir ) {
111 $skinDir = dirname( dirname( __DIR__
) ) . '/skins';
113 // All these files will be concatenated in sequence and loaded
115 // The string 'images/' in the files' contents will be replaced
116 // by '../skins/$skinName/images/', where $skinName is what appears
117 // before the last '/' in each of the strings.
118 $cssFileNames = array(
120 // Basically the "skins.vector" ResourceLoader module styles
122 'common/commonElements.css',
123 'common/commonContent.css',
124 'common/commonInterface.css',
127 // mw-config specific
133 wfSuppressWarnings();
134 foreach ( $cssFileNames as $cssFileName ) {
135 $fullCssFileName = "$skinDir/$cssFileName";
136 $cssFileContents = file_get_contents( $fullCssFileName );
137 if ( $cssFileContents ) {
138 preg_match( "/^(\w+)\//", $cssFileName, $match );
139 $skinName = $match[1];
140 $css .= str_replace( 'images/', "../skins/$skinName/images/", $cssFileContents );
142 $css .= "/** Your webserver cannot read $fullCssFileName. Please check file permissions. */";
149 if ( $dir == 'rtl' ) {
150 $css = CSSJanus
::transform( $css, true );
157 * "<link>" to index.php?css=foobar for the "<head>"
160 private function getCssUrl() {
161 return Html
::linkedStyle( $_SERVER['PHP_SELF'] . '?css=' . $this->getDir() );
164 public function useShortHeader( $use = true ) {
165 $this->useShortHeader
= $use;
168 public function allowFrames( $allow = true ) {
169 $this->allowFrames
= $allow;
172 public function flush() {
173 if ( !$this->headerDone
) {
174 $this->outputHeader();
176 if ( !$this->redirectTarget
&& strlen( $this->contents
) ) {
177 echo $this->contents
;
179 $this->contents
= '';
186 public function getDir() {
188 return is_object( $wgLang ) ?
$wgLang->getDir() : 'ltr';
194 public function getLanguageCode() {
196 return is_object( $wgLang ) ?
$wgLang->getCode() : 'en';
202 public function getHeadAttribs() {
204 'dir' => $this->getDir(),
205 'lang' => $this->getLanguageCode(),
210 * Get whether the header has been output
213 public function headerDone() {
214 return $this->headerDone
;
217 public function outputHeader() {
218 $this->headerDone
= true;
219 $dbTypes = $this->parent
->getDBTypes();
221 $this->parent
->request
->response()->header( 'Content-Type: text/html; charset=utf-8' );
222 if ( !$this->allowFrames
) {
223 $this->parent
->request
->response()->header( 'X-Frame-Options: DENY' );
225 if ( $this->redirectTarget
) {
226 $this->parent
->request
->response()->header( 'Location: ' . $this->redirectTarget
);
230 if ( $this->useShortHeader
) {
231 $this->outputShortHeader();
236 <?php
echo Html
::htmlHeader( $this->getHeadAttribs() ); ?
>
238 <meta name
="robots" content
="noindex, nofollow" />
239 <meta http
-equiv
="Content-type" content
="text/html; charset=utf-8" />
240 <title
><?php
$this->outputTitle(); ?
></title
>
241 <?php
echo $this->getCssUrl() . "\n"; ?
>
242 <?php
echo Html
::inlineScript( "var dbTypes = " . Xml
::encodeJsVar( $dbTypes ) ) . "\n"; ?
>
243 <?php
echo $this->getJQuery() . "\n"; ?
>
244 <?php
echo Html
::linkedScript( '../skins/common/config.js' ) . "\n"; ?
>
247 <?php
echo Html
::openElement( 'body', array( 'class' => $this->getDir() ) ) . "\n"; ?
>
248 <div id
="mw-page-base"></div
>
249 <div id
="mw-head-base"></div
>
251 <div id
="bodyContent">
253 <h1
><?php
$this->outputTitle(); ?
></h1
>
257 public function outputFooter() {
258 if ( $this->useShortHeader
) {
270 <div
class="portal" id
="p-logo">
271 <a style
="background-image: url(../skins/common/images/mediawiki.png);"
272 href
="http://www.mediawiki.org/"
273 title
="Main Page"></a
>
275 <div
class="portal"><div
class="body">
277 echo $this->parent
->parse( wfMessage( 'config-sidebar' )->plain(), true );
287 public function outputShortHeader() {
289 <?php
echo Html
::htmlHeader( $this->getHeadAttribs() ); ?
>
291 <meta http
-equiv
="Content-type" content
="text/html; charset=utf-8" />
292 <meta name
="robots" content
="noindex, nofollow" />
293 <title
><?php
$this->outputTitle(); ?
></title
>
294 <?php
echo $this->getCssUrl() . "\n"; ?
>
295 <?php
echo $this->getJQuery(); ?
>
296 <?php
echo Html
::linkedScript( '../skins/common/config.js' ); ?
>
299 <body style
="background-image: none">
303 public function outputTitle() {
305 echo wfMessage( 'config-title', $wgVersion )->escaped();
308 public function getJQuery() {
309 return Html
::linkedScript( "../resources/jquery/jquery.js" );