2021-01-28 11:19:50 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Citizen - A responsive skin developed for the Star Citizen Wiki
|
|
|
|
*
|
|
|
|
* This file is part of Citizen.
|
|
|
|
*
|
|
|
|
* Citizen 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Citizen 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 Citizen. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
|
2021-01-28 11:21:58 +00:00
|
|
|
declare( strict_types=1 );
|
2021-01-28 11:19:50 +00:00
|
|
|
|
2022-05-26 20:54:52 +00:00
|
|
|
namespace MediaWiki\Skins\Citizen\Partials;
|
2021-01-28 11:19:50 +00:00
|
|
|
|
|
|
|
use Exception;
|
|
|
|
|
2021-01-28 19:34:46 +00:00
|
|
|
final class Metadata extends Partial {
|
2021-01-28 11:19:50 +00:00
|
|
|
|
2021-01-28 11:21:58 +00:00
|
|
|
/**
|
|
|
|
* Adds metadata to the output page
|
|
|
|
*/
|
|
|
|
public function addMetadata() {
|
2022-05-22 19:06:49 +00:00
|
|
|
$out = $this->out;
|
|
|
|
|
2021-01-28 11:21:58 +00:00
|
|
|
// Theme color
|
2022-05-22 19:06:49 +00:00
|
|
|
$out->addMeta( 'theme-color', $this->getConfigValue( 'CitizenThemeColor' ) ?? '' );
|
2021-01-28 11:19:50 +00:00
|
|
|
|
2021-01-28 11:21:58 +00:00
|
|
|
// Generate webapp manifest
|
|
|
|
$this->addManifest();
|
2021-01-28 11:19:50 +00:00
|
|
|
|
2021-01-28 11:21:58 +00:00
|
|
|
// Preconnect origin
|
|
|
|
$this->addPreConnect();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the manifest if enabled in 'CitizenEnableManifest'.
|
|
|
|
* Manifest link will be empty if wfExpandUrl throws an exception.
|
|
|
|
*/
|
|
|
|
private function addManifest() {
|
|
|
|
if ( $this->getConfigValue( 'CitizenEnableManifest' ) !== true ) {
|
2021-01-28 11:27:55 +00:00
|
|
|
return;
|
2021-01-28 11:21:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$href =
|
|
|
|
wfExpandUrl( wfAppendQuery( wfScript( 'api' ),
|
|
|
|
[ 'action' => 'webapp-manifest' ] ), PROTO_RELATIVE );
|
|
|
|
} catch ( Exception $e ) {
|
|
|
|
$href = '';
|
|
|
|
}
|
|
|
|
|
2022-05-22 19:06:49 +00:00
|
|
|
$out = $this->out;
|
|
|
|
$out->addLink( [
|
2021-01-28 11:21:58 +00:00
|
|
|
'rel' => 'manifest',
|
|
|
|
'href' => $href,
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a preconnect header if enabled in 'CitizenEnablePreconnect'
|
|
|
|
*/
|
|
|
|
private function addPreConnect() {
|
|
|
|
if ( $this->getConfigValue( 'CitizenEnablePreconnect' ) !== true ) {
|
2021-01-28 11:27:55 +00:00
|
|
|
return;
|
2021-01-28 11:21:58 +00:00
|
|
|
}
|
|
|
|
|
2022-05-22 19:06:49 +00:00
|
|
|
$out = $this->out;
|
|
|
|
$out->addLink( [
|
2021-01-28 11:21:58 +00:00
|
|
|
'rel' => 'preconnect',
|
|
|
|
'href' => $this->getConfigValue( 'CitizenPreconnectURL' ),
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
}
|