2012-10-16 18:20:43 +00:00
|
|
|
<?php
|
2012-11-18 14:34:00 +00:00
|
|
|
/**
|
2012-12-20 19:44:47 +00:00
|
|
|
* Content handler for CSS pages.
|
|
|
|
|
*
|
2012-11-18 14:34:00 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
2012-12-20 19:44:47 +00:00
|
|
|
* @ingroup Content
|
2012-11-18 14:34:00 +00:00
|
|
|
*/
|
2021-07-21 01:03:59 +00:00
|
|
|
|
|
|
|
|
use MediaWiki\Content\Transform\PreSaveTransformParams;
|
|
|
|
|
use MediaWiki\MediaWikiServices;
|
2021-02-18 04:38:29 +00:00
|
|
|
use Wikimedia\Minify\CSSMin;
|
2012-10-16 18:20:43 +00:00
|
|
|
|
|
|
|
|
/**
|
2012-12-20 19:44:47 +00:00
|
|
|
* Content handler for CSS pages.
|
|
|
|
|
*
|
2012-10-16 18:20:43 +00:00
|
|
|
* @since 1.21
|
2012-12-20 19:44:47 +00:00
|
|
|
* @ingroup Content
|
2012-10-16 18:20:43 +00:00
|
|
|
*/
|
2014-09-15 08:17:29 +00:00
|
|
|
class CssContentHandler extends CodeContentHandler {
|
2014-03-03 17:08:05 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param string $modelId
|
|
|
|
|
*/
|
2012-10-16 18:20:43 +00:00
|
|
|
public function __construct( $modelId = CONTENT_MODEL_CSS ) {
|
2016-02-17 09:09:32 +00:00
|
|
|
parent::__construct( $modelId, [ CONTENT_FORMAT_CSS ] );
|
2012-10-16 18:20:43 +00:00
|
|
|
}
|
|
|
|
|
|
2014-08-17 06:04:08 +00:00
|
|
|
protected function getContentClass() {
|
2016-08-13 04:16:37 +00:00
|
|
|
return CssContent::class;
|
2012-10-16 18:20:43 +00:00
|
|
|
}
|
2015-07-19 16:16:16 +00:00
|
|
|
|
|
|
|
|
public function supportsRedirects() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a redirect that is also valid CSS
|
|
|
|
|
*
|
|
|
|
|
* @param Title $destination
|
|
|
|
|
* @param string $text ignored
|
2015-08-28 17:40:08 +00:00
|
|
|
* @return CssContent
|
2015-07-19 16:16:16 +00:00
|
|
|
*/
|
|
|
|
|
public function makeRedirectContent( Title $destination, $text = '' ) {
|
|
|
|
|
// The parameters are passed as a string so the / is not url-encoded by wfArrayToCgi
|
|
|
|
|
$url = $destination->getFullURL( 'action=raw&ctype=text/css', false, PROTO_RELATIVE );
|
|
|
|
|
$class = $this->getContentClass();
|
|
|
|
|
return new $class( '/* #REDIRECT */@import ' . CSSMin::buildUrlValue( $url ) . ';' );
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-21 01:03:59 +00:00
|
|
|
public function preSaveTransform(
|
|
|
|
|
Content $content,
|
|
|
|
|
PreSaveTransformParams $pstParams
|
|
|
|
|
): Content {
|
2021-08-05 15:15:10 +00:00
|
|
|
$deprecatedContent = $this->maybeCallDeprecatedContentPST( $content, $pstParams );
|
|
|
|
|
if ( $deprecatedContent ) {
|
|
|
|
|
return $deprecatedContent;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-21 01:03:59 +00:00
|
|
|
'@phan-var CssContent $content';
|
|
|
|
|
|
|
|
|
|
// @todo Make pre-save transformation optional for script pages (T34858)
|
|
|
|
|
$services = MediaWikiServices::getInstance();
|
|
|
|
|
if ( !$services->getUserOptionsLookup()->getBoolOption( $pstParams->getUser(), 'pst-cssjs' ) ) {
|
|
|
|
|
// Allow bot users to disable the pre-save transform for CSS/JS (T236828).
|
|
|
|
|
$popts = clone $pstParams->getParserOptions();
|
|
|
|
|
$popts->setPreSaveTransform( false );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$text = $content->getText();
|
|
|
|
|
$pst = $services->getParser()->preSaveTransform(
|
|
|
|
|
$text,
|
|
|
|
|
$pstParams->getPage(),
|
|
|
|
|
$pstParams->getUser(),
|
|
|
|
|
$pstParams->getParserOptions()
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$class = $this->getContentClass();
|
|
|
|
|
return new $class( $pst );
|
|
|
|
|
}
|
2012-11-18 14:34:00 +00:00
|
|
|
}
|