Explorar el Código

Merge pull request #5377 from pixelfed/staging

Fix broken newlines.
daniel hace 7 meses
padre
commit
074b63d8d9

+ 3 - 0
CHANGELOG.md

@@ -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)

+ 1 - 1
app/Services/StatusService.php

@@ -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)
     {

+ 1 - 1
app/Transformer/ActivityPub/StatusTransformer.php

@@ -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' => [

+ 1 - 1
app/Transformer/ActivityPub/Verb/CreateNote.php

@@ -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' => [

+ 1 - 1
app/Transformer/ActivityPub/Verb/Note.php

@@ -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' => [

+ 1 - 1
app/Transformer/ActivityPub/Verb/UpdateNote.php

@@ -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 [

+ 1 - 1
app/Transformer/Api/Mastodon/v1/StatusTransformer.php

@@ -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,

+ 1 - 1
app/Transformer/Api/StatusStatelessTransformer.php

@@ -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,

+ 1 - 1
app/Transformer/Api/StatusTransformer.php

@@ -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,