Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>pull/48137/head
parent
f8dde2d254
commit
70a886ce83
@ -0,0 +1,36 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors |
||||
* SPDX-License-Identifier: AGPL-3.0-or-later |
||||
*/ |
||||
|
||||
namespace OC\RichObjectStrings; |
||||
|
||||
use OCP\RichObjectStrings\IRichTextFormatter; |
||||
|
||||
class RichTextFormatter implements IRichTextFormatter { |
||||
/** |
||||
* @throws \InvalidArgumentException if a parameter has no name or no type |
||||
*/ |
||||
public function richToParsed(string $message, array $parameters): string { |
||||
$placeholders = []; |
||||
$replacements = []; |
||||
foreach ($parameters as $placeholder => $parameter) { |
||||
$placeholders[] = '{' . $placeholder . '}'; |
||||
foreach (['name','type'] as $requiredField) { |
||||
if (!isset($parameter[$requiredField]) || !is_string($parameter[$requiredField])) { |
||||
throw new \InvalidArgumentException("Invalid rich object, {$requiredField} field is missing"); |
||||
} |
||||
} |
||||
$replacements[] = match($parameter['type']) { |
||||
'user' => '@' . $parameter['name'], |
||||
'file' => $parameter['path'] ?? $parameter['name'], |
||||
default => $parameter['name'], |
||||
}; |
||||
} |
||||
return str_replace($placeholders, $replacements, $message); |
||||
} |
||||
} |
||||
@ -0,0 +1,25 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors |
||||
* SPDX-License-Identifier: AGPL-3.0-or-later |
||||
*/ |
||||
|
||||
namespace OCP\RichObjectStrings; |
||||
|
||||
/** |
||||
* Parse rich text and format it with the richobjects |
||||
* |
||||
* @since 31.0.0 |
||||
*/ |
||||
interface IRichTextFormatter { |
||||
/** |
||||
* @since 31.0.0 |
||||
* @param string $message |
||||
* @param array<string,array<string,string>> $parameters |
||||
* @throws \InvalidArgumentException if a parameter has no name or no type |
||||
*/ |
||||
public function richToParsed(string $message, array $parameters): string; |
||||
} |
||||
Loading…
Reference in new issue