2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-07-15 08:54:28 -04:00
|
|
|
class PermalinkSerializer < ApplicationSerializer
|
2017-04-05 12:45:01 -04:00
|
|
|
attributes :id, :url, :topic_id, :topic_title, :topic_url,
|
|
|
|
:post_id, :post_url, :post_number, :post_topic_title,
|
2020-05-25 05:48:54 -04:00
|
|
|
:category_id, :category_name, :category_url, :external_url,
|
|
|
|
:tag_id, :tag_name, :tag_url
|
2015-07-17 06:23:48 -04:00
|
|
|
|
|
|
|
def topic_title
|
2017-04-05 12:45:01 -04:00
|
|
|
object&.topic&.title
|
2015-07-17 06:23:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def topic_url
|
2017-04-05 12:45:01 -04:00
|
|
|
object&.topic&.url
|
2015-07-17 06:23:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def post_url
|
2017-04-05 12:45:01 -04:00
|
|
|
# use `full_url` to support subfolder setups
|
|
|
|
object&.post&.full_url
|
2015-07-17 06:23:48 -04:00
|
|
|
end
|
|
|
|
|
2015-07-20 08:10:22 -04:00
|
|
|
def post_number
|
2017-04-05 12:45:01 -04:00
|
|
|
object&.post&.post_number
|
2015-07-20 08:10:22 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def post_topic_title
|
2017-04-05 12:45:01 -04:00
|
|
|
object&.post&.topic&.title
|
2015-07-20 08:10:22 -04:00
|
|
|
end
|
|
|
|
|
2015-07-17 06:23:48 -04:00
|
|
|
def category_name
|
2017-04-05 12:45:01 -04:00
|
|
|
object&.category&.name
|
2015-07-17 06:23:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def category_url
|
2017-04-05 12:45:01 -04:00
|
|
|
object&.category&.url
|
2015-07-17 06:23:48 -04:00
|
|
|
end
|
2020-05-25 05:48:54 -04:00
|
|
|
|
|
|
|
def tag_name
|
|
|
|
object&.tag&.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def tag_url
|
|
|
|
object&.tag&.full_url
|
|
|
|
end
|
2015-07-15 08:54:28 -04:00
|
|
|
end
|