DEV: serialize image upload thumbnail (#29276)

Since we recently blocked accidental serialization of AR models, we are getting a 500 error in some cases with thumbnails. We can fix this by serializing the thumbnail, previously we just returned a raw OptimizedImage object.

Thumbnails are now attached to the serializer in core, therefore we no longer need to use add_to_serializer within the chat plugin to use thumbnails within chat message uploads.
This commit is contained in:
David Battersby 2024-10-18 12:55:14 +04:00 committed by GitHub
parent 7f607699b8
commit 16acba6cf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 38 additions and 6 deletions

View File

@ -16,6 +16,12 @@ class UploadSerializer < ApplicationSerializer
:human_filesize,
:dominant_color
has_one :thumbnail,
serializer: UploadThumbnailSerializer,
root: false,
embed: :object,
if: -> { SiteSetting.create_thumbnails && object.has_thumbnail? }
def url
if object.for_site_setting
object.url

View File

@ -0,0 +1,5 @@
# frozen_string_literal: true
class UploadThumbnailSerializer < ApplicationSerializer
attributes :id, :upload_id, :width, :height, :url, :extension, :filesize
end

View File

@ -272,12 +272,6 @@ after_initialize do
object.chat_separate_sidebar_mode
end
add_to_serializer(
:upload,
:thumbnail,
include_condition: -> { SiteSetting.chat_enabled && SiteSetting.create_thumbnails },
) { object.thumbnail }
on(:site_setting_changed) do |name, old_value, new_value|
user_option_field = Chat::RETENTION_SETTINGS_TO_USER_OPTION_FIELDS[name.to_sym]
begin

View File

@ -42,6 +42,33 @@
},
"dominant_color": {
"type": ["string", "null"]
},
"thumbnail": {
"type": ["object", "null"],
"additionalProperties": false,
"properties": {
"id": {
"type": "integer"
},
"upload_id": {
"type": "integer"
},
"url": {
"type": "string"
},
"extension": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"filesize": {
"type": "integer"
}
}
}
},
"required": [