Merge pull request #48137 from nextcloud/enh/add-rich-object-formatter
feat: Add OCP interface to format richtext into stringpull/48184/head
commit
989d708bd8
@ -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