TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:33 +02:00
commit 1a6eae9988
124 changed files with 11393 additions and 0 deletions
+102
View File
@@ -0,0 +1,102 @@
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Redirects\Evaluation;
use TYPO3\CMS\Core\Page\JavaScriptModuleInstruction;
use TYPO3\CMS\Core\Utility\PathUtility;
/**
* Triggered from DataHandler as TCA formevals hook for validation / sanitation of domain values.
*
* @internal
*/
class SourceHost
{
/**
* Returns JavaScript instruction for client side validation/evaluation
* (invoked by FormEngine when editing redirect entities).
*
* Returned `JavaScriptModuleInstruction` delegates handling to corresponding
* JavaScript module, having a method `evaluateSourceHost` that deals with that
* evaluation request.
*/
public function returnFieldJS(): JavaScriptModuleInstruction
{
return JavaScriptModuleInstruction::create('@typo3/redirects/form-engine-evaluation.js', 'FormEngineEvaluation');
}
/**
* Server-side removing of protocol on save
*
* @param string $value The field value to be evaluated
* @return string Evaluated field value
*/
public function evaluateFieldValue(string $value): string
{
// 1) Special case: * means any domain
if ($value === '*') {
return $value;
}
// 2) Check if value contains a protocol like http:// https:// etc...
if (PathUtility::hasProtocolAndScheme($value)) {
$tmp = $this->parseUrl($value);
if (!empty($tmp)) {
return $tmp;
}
}
// 3) Check domain name
// remove anything after the first "/"
$checkValue = $value;
if (str_contains($value, '/')) {
$checkValue = substr($value, 0, (int)strpos($value, '/'));
}
$validHostnameRegex = '/^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$/';
if (preg_match_all($validHostnameRegex, $checkValue, $matches, PREG_SET_ORDER) !== false) {
if (!empty($matches)) {
return $checkValue;
}
}
// 4) IPv4 or IPv6
$isIP = filter_var($value, FILTER_VALIDATE_IP) === $value;
if ($isIP) {
return $value;
}
return '';
}
protected function parseUrl(string $value): string
{
$urlParts = parse_url($value);
if (!empty($urlParts['host'])) {
$value = $urlParts['host'];
// Special case IPv6 with protocol: http://[2001:0db8:85a3:08d3::0370:7344]/
// $urlParts['host'] will be [2001:0db8:85a3:08d3::0370:7344]
$ipv6Pattern = '/\[([a-zA-Z0-9:]*)\]/';
preg_match_all($ipv6Pattern, $urlParts['host'], $ipv6Matches, PREG_SET_ORDER);
if (!empty($ipv6Matches[0][1])) {
$value = $ipv6Matches[0][1];
}
}
return $value;
}
}