-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48137 from nextcloud/enh/add-rich-object-formatter
feat: Add OCP interface to format richtext into string
- Loading branch information
Showing
13 changed files
with
129 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} |
Oops, something went wrong.