2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::MediaAttachmentSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :id, :type, :url, :preview_url,
|
|
|
|
:remote_url, :text_url, :meta,
|
|
|
|
:description, :blurhash
|
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
|
|
|
|
2019-07-04 08:27:52 +01:00
|
|
|
def clean_migrated_url
|
|
|
|
object
|
|
|
|
.file_file_name
|
|
|
|
.sub("gab://media/", "")
|
|
|
|
.gsub("https://gabfiles.blob.core.windows.net/", "https://gab.com/media/")
|
|
|
|
.gsub("https://files.gab.com/file/files-gab/", "https://gab.com/media/")
|
|
|
|
.gsub("https://f002.backblazeb2.com/file/files-gab/", "https://gab.com/media/")
|
|
|
|
.split("|")
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def url
|
2019-07-03 23:32:03 +01:00
|
|
|
if object.file_file_name and object.file_file_name.start_with? "gab://media/"
|
2019-07-04 08:27:52 +01:00
|
|
|
return clean_migrated_url[1]
|
2019-07-03 23:32:03 +01:00
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
if object.needs_redownload?
|
|
|
|
media_proxy_url(object.id, :original)
|
|
|
|
else
|
|
|
|
full_asset_url(object.file.url(:original))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def remote_url
|
|
|
|
object.remote_url.presence
|
|
|
|
end
|
|
|
|
|
|
|
|
def preview_url
|
2019-07-03 23:32:03 +01:00
|
|
|
if object.file_file_name and object.file_file_name.start_with? "gab://media/"
|
2019-07-04 08:27:52 +01:00
|
|
|
return clean_migrated_url[0]
|
2019-07-03 23:32:03 +01:00
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
if object.needs_redownload?
|
|
|
|
media_proxy_url(object.id, :small)
|
|
|
|
else
|
|
|
|
full_asset_url(object.file.url(:small))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def text_url
|
|
|
|
object.local? ? medium_url(object) : nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def meta
|
|
|
|
object.file.meta
|
|
|
|
end
|
|
|
|
end
|