mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-18 11:03:17 +00:00
commit
074b63d8d9
9 changed files with 11 additions and 8 deletions
|
@ -9,6 +9,9 @@
|
|||
- Update ApiV1Controller, fix bookmark bug. Closes #5216 ([9f7cc52c](https://github.com/pixelfed/pixelfed/commit/9f7cc52c))
|
||||
- Update Status caption logic, stop storing duplicate html caption in db and defer to cached StatusService rendering ([9eeb7b67](https://github.com/pixelfed/pixelfed/commit/9eeb7b67))
|
||||
- Update AutolinkService, optimize lookups ([eac2c196](https://github.com/pixelfed/pixelfed/commit/eac2c196))
|
||||
- Update DirectMessageController, remove 72h limit for admins ([639df410](https://github.com/pixelfed/pixelfed/commit/639df410))
|
||||
- Update StatusService, fix newlines ([56c07b7a](https://github.com/pixelfed/pixelfed/commit/56c07b7a))
|
||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||
|
||||
## [v0.12.4 (2024-11-08)](https://github.com/pixelfed/pixelfed/compare/v0.12.4...dev)
|
||||
|
|
|
@ -10,7 +10,7 @@ use League\Fractal\Serializer\ArraySerializer;
|
|||
|
||||
class StatusService
|
||||
{
|
||||
const CACHE_KEY = 'pf:services:status:';
|
||||
const CACHE_KEY = 'pf:services:status:v1:';
|
||||
|
||||
public static function key($id, $publicOnly = true)
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
|||
{
|
||||
public function transform(Status $status)
|
||||
{
|
||||
$content = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$content = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
|
||||
return [
|
||||
'@context' => [
|
||||
|
|
|
@ -52,7 +52,7 @@ class CreateNote extends Fractal\TransformerAbstract
|
|||
$emojis = CustomEmoji::scan($status->caption, true) ?? [];
|
||||
$emoji = array_merge($emojis, $mentions);
|
||||
$tags = array_merge($emoji, $hashtags);
|
||||
$content = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$content = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
|
||||
return [
|
||||
'@context' => [
|
||||
|
|
|
@ -53,7 +53,7 @@ class Note extends Fractal\TransformerAbstract
|
|||
$emojis = CustomEmoji::scan($status->caption, true) ?? [];
|
||||
$emoji = array_merge($emojis, $mentions);
|
||||
$tags = array_merge($emoji, $hashtags);
|
||||
$content = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$content = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
|
||||
return [
|
||||
'@context' => [
|
||||
|
|
|
@ -53,7 +53,7 @@ class UpdateNote extends Fractal\TransformerAbstract
|
|||
$emoji = array_merge($emojis, $mentions);
|
||||
$tags = array_merge($emoji, $hashtags);
|
||||
|
||||
$content = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$content = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
$latestEdit = $status->edits()->latest()->first();
|
||||
|
||||
return [
|
||||
|
|
|
@ -13,7 +13,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
|||
{
|
||||
public function transform(Status $status)
|
||||
{
|
||||
$content = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$content = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
|
||||
return [
|
||||
'id' => (string) $status->id,
|
||||
|
|
|
@ -23,7 +23,7 @@ class StatusStatelessTransformer extends Fractal\TransformerAbstract
|
|||
{
|
||||
$taggedPeople = MediaTagService::get($status->id);
|
||||
$poll = $status->type === 'poll' ? PollService::get($status->id) : null;
|
||||
$rendered = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$rendered = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
|
||||
return [
|
||||
'_v' => 1,
|
||||
|
|
|
@ -25,7 +25,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
|||
$pid = request()->user()->profile_id;
|
||||
$taggedPeople = MediaTagService::get($status->id);
|
||||
$poll = $status->type === 'poll' ? PollService::get($status->id, $pid) : null;
|
||||
$content = $status->caption ? Autolink::create()->autolink($status->caption) : null;
|
||||
$content = $status->caption ? nl2br(Autolink::create()->autolink($status->caption)) : null;
|
||||
|
||||
return [
|
||||
'_v' => 1,
|
||||
|
|
Loading…
Reference in a new issue