mirror of
https://github.com/flarum/core.git
synced 2025-08-05 07:57:46 +02:00
[1.x] fix(Mentions): allow renderer to be used without context (#3953)
* fix(Mentions): allow renderer to be used without context * test(Mentions): implement test for rendering post without context
This commit is contained in:
@@ -11,6 +11,7 @@ namespace Flarum\Mentions\Formatter;
|
|||||||
|
|
||||||
use Flarum\Discussion\Discussion;
|
use Flarum\Discussion\Discussion;
|
||||||
use Flarum\Http\SlugManager;
|
use Flarum\Http\SlugManager;
|
||||||
|
use Flarum\Post\Post;
|
||||||
use Psr\Http\Message\ServerRequestInterface as Request;
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
||||||
use s9e\TextFormatter\Renderer;
|
use s9e\TextFormatter\Renderer;
|
||||||
use s9e\TextFormatter\Utils;
|
use s9e\TextFormatter\Utils;
|
||||||
@@ -39,16 +40,17 @@ class FormatPostMentions
|
|||||||
*
|
*
|
||||||
* @param \s9e\TextFormatter\Renderer $renderer
|
* @param \s9e\TextFormatter\Renderer $renderer
|
||||||
* @param mixed $context
|
* @param mixed $context
|
||||||
* @param string|null $xml
|
* @param string $xml
|
||||||
* @param \Psr\Http\Message\ServerRequestInterface $request
|
* @param \Psr\Http\Message\ServerRequestInterface|null $request
|
||||||
* @return string
|
* @return string $xml to be rendered
|
||||||
*/
|
*/
|
||||||
public function __invoke(Renderer $renderer, $context, $xml, Request $request = null)
|
public function __invoke(Renderer $renderer, $context, $xml, Request $request = null)
|
||||||
{
|
{
|
||||||
$post = $context;
|
return Utils::replaceAttributes($xml, 'POSTMENTION', function ($attributes) use ($context) {
|
||||||
|
$post = (($context && isset($context->getRelations()['mentionsPosts'])) || $context instanceof Post)
|
||||||
|
? $context->mentionsPosts->find($attributes['id'])
|
||||||
|
: Post::find($attributes['id']);
|
||||||
|
|
||||||
return Utils::replaceAttributes($xml, 'POSTMENTION', function ($attributes) use ($post) {
|
|
||||||
$post = $post->mentionsPosts->find($attributes['id']);
|
|
||||||
if ($post && $post->user) {
|
if ($post && $post->user) {
|
||||||
$attributes['displayname'] = $post->user->display_name;
|
$attributes['displayname'] = $post->user->display_name;
|
||||||
}
|
}
|
||||||
|
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
namespace Flarum\Mentions\Formatter;
|
namespace Flarum\Mentions\Formatter;
|
||||||
|
|
||||||
|
use Flarum\Post\Post;
|
||||||
use s9e\TextFormatter\Utils;
|
use s9e\TextFormatter\Utils;
|
||||||
use Symfony\Contracts\Translation\TranslatorInterface;
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
||||||
|
|
||||||
@@ -50,8 +51,11 @@ class UnparsePostMentions
|
|||||||
{
|
{
|
||||||
$post = $context;
|
$post = $context;
|
||||||
|
|
||||||
return Utils::replaceAttributes($xml, 'POSTMENTION', function ($attributes) use ($post) {
|
return Utils::replaceAttributes($xml, 'POSTMENTION', function ($attributes) use ($context) {
|
||||||
$post = $post->mentionsPosts->find($attributes['id']);
|
$post = (($context && isset($context->getRelations()['mentionsPosts'])) || $context instanceof Post)
|
||||||
|
? $context->mentionsPosts->find($attributes['id'])
|
||||||
|
: Post::find($attributes['id']);
|
||||||
|
|
||||||
if ($post && $post->user) {
|
if ($post && $post->user) {
|
||||||
$attributes['displayname'] = $post->user->display_name;
|
$attributes['displayname'] = $post->user->display_name;
|
||||||
}
|
}
|
||||||
|
@@ -11,6 +11,8 @@ namespace Flarum\Mentions\Tests\integration\api;
|
|||||||
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Flarum\Extend;
|
use Flarum\Extend;
|
||||||
|
use Flarum\Formatter\Formatter;
|
||||||
|
use Flarum\Post\Post;
|
||||||
use Flarum\Post\CommentPost;
|
use Flarum\Post\CommentPost;
|
||||||
use Flarum\Testing\integration\RetrievesAuthorizedUsers;
|
use Flarum\Testing\integration\RetrievesAuthorizedUsers;
|
||||||
use Flarum\Testing\integration\TestCase;
|
use Flarum\Testing\integration\TestCase;
|
||||||
@@ -538,6 +540,41 @@ class PostMentionsTest extends TestCase
|
|||||||
$this->assertStringContainsString('PostMention', $response['data']['attributes']['contentHtml']);
|
$this->assertStringContainsString('PostMention', $response['data']['attributes']['contentHtml']);
|
||||||
$this->assertNotNull(CommentPost::find($response['data']['id'])->mentionsPosts->find(11));
|
$this->assertNotNull(CommentPost::find($response['data']['id'])->mentionsPosts->find(11));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
public function rendering_post_mention_with_a_post_context_works()
|
||||||
|
{
|
||||||
|
/** @var Formatter $formatter */
|
||||||
|
$formatter = $this->app()->getContainer()->make(Formatter::class);
|
||||||
|
|
||||||
|
$post = Post::find(4);
|
||||||
|
$user = User::find(1);
|
||||||
|
|
||||||
|
$xml = $formatter->parse($post->content, $post, $user);
|
||||||
|
$renderedHtml = $formatter->render($xml, $post);
|
||||||
|
|
||||||
|
$this->assertStringContainsString('TOBY$', $renderedHtml);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
public function rendering_post_mention_without_a_context_works()
|
||||||
|
{
|
||||||
|
/** @var Formatter $formatter */
|
||||||
|
$formatter = $this->app()->getContainer()->make(Formatter::class);
|
||||||
|
|
||||||
|
$post = Post::find(4);
|
||||||
|
$user = User::find(1);
|
||||||
|
|
||||||
|
$xml = $formatter->parse($post->content, null, $user);
|
||||||
|
$renderedHtml = $formatter->render($xml);
|
||||||
|
|
||||||
|
$this->assertStringContainsString('TOBY$', $renderedHtml);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class CustomOtherDisplayNameDriver implements DriverInterface
|
class CustomOtherDisplayNameDriver implements DriverInterface
|
||||||
|
Reference in New Issue
Block a user