2021-09-03 02:30:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (C) 2021 Kunal Mehta <legoktm@debian.org>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace MediaWiki\SyntaxHighlight;
|
|
|
|
|
2022-05-20 02:11:31 +00:00
|
|
|
use MediaWiki\ResourceLoader as RL;
|
2021-09-03 02:30:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* At runtime switch between bundled CSS or dynamically generated
|
|
|
|
*/
|
2022-05-20 02:11:31 +00:00
|
|
|
class ResourceLoaderPygmentsModule extends RL\FileModule {
|
2021-09-03 02:30:32 +00:00
|
|
|
|
2024-01-22 08:39:30 +00:00
|
|
|
private bool $useBundled;
|
2021-09-03 02:30:32 +00:00
|
|
|
|
|
|
|
/** @inheritDoc */
|
|
|
|
public function __construct(
|
|
|
|
array $options = [],
|
|
|
|
$localBasePath = null,
|
|
|
|
$remoteBasePath = null
|
|
|
|
) {
|
|
|
|
$this->useBundled = Pygmentize::useBundled();
|
|
|
|
if ( $this->useBundled ) {
|
2021-10-10 20:28:17 +00:00
|
|
|
// Generated styles before our overrides
|
|
|
|
array_unshift( $options['styles'], 'pygments.generated.css' );
|
2021-09-03 02:30:32 +00:00
|
|
|
}
|
|
|
|
parent::__construct( $options, $localBasePath, $remoteBasePath );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We sometimes have generated styles
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function supportsURLLoading() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @inheritDoc */
|
2022-05-20 02:11:31 +00:00
|
|
|
public function getStyles( RL\Context $context ) {
|
2021-09-03 02:30:32 +00:00
|
|
|
$styles = parent::getStyles( $context );
|
|
|
|
if ( !$this->useBundled ) {
|
2021-10-10 20:28:17 +00:00
|
|
|
// Generated styles before our overrides
|
|
|
|
$styles['all'] = Pygmentize::getGeneratedCSS() . ( $styles['all'] ?? '' );
|
2021-09-03 02:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $styles;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @inheritDoc */
|
2022-05-20 02:11:31 +00:00
|
|
|
public function getDefinitionSummary( RL\Context $context ) {
|
2021-09-03 02:30:32 +00:00
|
|
|
$summary = parent::getDefinitionSummary( $context );
|
|
|
|
if ( !$this->useBundled ) {
|
|
|
|
$summary[] = Pygmentize::getVersion();
|
|
|
|
}
|
|
|
|
return $summary;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|