60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?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\Core\DataHandling\SoftReference;
|
|
|
|
/**
|
|
* A generic parser class useful if tokenID prefixes are needed.
|
|
*/
|
|
abstract class AbstractSoftReferenceParser implements SoftReferenceParserInterface
|
|
{
|
|
protected string $tokenID_basePrefix = '';
|
|
protected string $parserKey = '';
|
|
protected array $parameters = [];
|
|
|
|
/**
|
|
* Make Token ID for input index.
|
|
*
|
|
* @param string $index Suffix value.
|
|
* @return string Token ID
|
|
*/
|
|
public function makeTokenID(string $index = ''): string
|
|
{
|
|
return md5($this->tokenID_basePrefix . ':' . $index);
|
|
}
|
|
|
|
/**
|
|
* @param string $parserKey The softref parser key.
|
|
* @param array $parameters Parameters of the softlink parser. Basically this is the content inside optional []-brackets after the softref keys. Parameters are exploded by ";
|
|
*/
|
|
public function setParserKey(string $parserKey, array $parameters): void
|
|
{
|
|
$this->parserKey = $parserKey;
|
|
$this->parameters = $parameters;
|
|
}
|
|
|
|
public function getParserKey(): string
|
|
{
|
|
return $this->parserKey;
|
|
}
|
|
|
|
protected function setTokenIdBasePrefix(string $table, string $uid, string $field, string $structurePath): void
|
|
{
|
|
$this->tokenID_basePrefix = implode(':', [$table, $uid, $field, $structurePath, $this->getParserKey()]);
|
|
}
|
|
}
|