Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/SecureLinkFixer/includes/Hooks.php
Ðазад
<?php /** * Copyright (C) 2018 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 3 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, see <https://www.gnu.org/licenses/>. */ namespace MediaWiki\SecureLinkFixer; use MediaWiki\Hook\LinkerMakeExternalLinkHook; use MediaWiki\Utils\UrlUtils; class Hooks implements LinkerMakeExternalLinkHook { private HSTSPreloadLookup $lookup; private UrlUtils $urlUtils; public function __construct( HSTSPreloadLookup $lookup, UrlUtils $urlUtils ) { $this->lookup = $lookup; $this->urlUtils = $urlUtils; } /** * Hook: LinkerMakeExternalLink * * Changes the scheme of the URL to HTTPS if necessary * * @param string &$url Link URL * @param string &$text Link text * @param string &$link New link HTML (if returning false) * @param string[] &$attribs Attributes to be applied * @param string $linkType External link type * @return bool|void True or no return value to continue or false to abort */ public function onLinkerMakeExternalLink( &$url, &$text, &$link, &$attribs, $linkType ) { if ( str_starts_with( $url, 'https://' ) ) { // Already HTTPS return; } $parsed = $this->urlUtils->parse( $url ); if ( !$parsed ) { return; } if ( $parsed['scheme'] !== 'http' && $parsed['scheme'] !== '' ) { // We only want http:// and proto-rel return; } if ( $this->lookup->isPreloaded( $parsed['host'] ) ) { $parsed['scheme'] = 'https'; $parsed['delimiter'] = '://'; $url = UrlUtils::assemble( $parsed ); } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка