gab-social/app/serializers/rest/group_serializer.rb

41 lines
918 B
Ruby
Raw Normal View History

2019-07-02 08:10:25 +01:00
# frozen_string_literal: true
class REST::GroupSerializer < ActiveModel::Serializer
include RoutingHelper
attributes :id, :title, :description, :description_html, :cover_image_url, :is_archived,
:member_count, :created_at, :is_private, :is_visible, :slug, :tags, :group_category
2019-07-02 08:10:25 +01:00
def id
object.id.to_s
end
def group_category
if object.group_categories
object.group_categories
end
end
def description
object.description
end
def description_html
Formatter.instance.formatGroupDescription(object.description).strip
end
2019-07-15 14:47:05 +01:00
def clean_migrated_url
object
.cover_image_file_name
.sub("gab://groups/", "https://gab.com/media/user/")
end
2019-07-02 08:10:25 +01:00
def cover_image_url
2019-07-15 14:47:05 +01:00
if object.cover_image_file_name and object.cover_image_file_name.start_with? "gab://groups/"
return clean_migrated_url
end
2019-07-02 08:10:25 +01:00
full_asset_url(object.cover_image.url)
end
end