mirror of https://github.com/tootsuite/mastodon
Reduce complexity in `StatusCacheHydrator` (#27783)
parent
c9204b792c
commit
ce1bd81c85
|
@ -16,12 +16,36 @@ class StatusCacheHydrator
|
||||||
# We take advantage of the fact that some relationships can only occur with an original status, not
|
# We take advantage of the fact that some relationships can only occur with an original status, not
|
||||||
# the reblog that wraps it, so we can assume that some values are always false
|
# the reblog that wraps it, so we can assume that some values are always false
|
||||||
if payload[:reblog]
|
if payload[:reblog]
|
||||||
|
hydrate_reblog_payload(payload, account_id)
|
||||||
|
else
|
||||||
|
hydrate_non_reblog_payload(payload, account_id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def hydrate_non_reblog_payload(empty_payload, account_id)
|
||||||
|
empty_payload.tap do |payload|
|
||||||
|
payload[:favourited] = Favourite.where(account_id: account_id, status_id: @status.id).exists?
|
||||||
|
payload[:reblogged] = Status.where(account_id: account_id, reblog_of_id: @status.id).exists?
|
||||||
|
payload[:muted] = ConversationMute.where(account_id: account_id, conversation_id: @status.conversation_id).exists?
|
||||||
|
payload[:bookmarked] = Bookmark.where(account_id: account_id, status_id: @status.id).exists?
|
||||||
|
payload[:pinned] = StatusPin.where(account_id: account_id, status_id: @status.id).exists? if @status.account_id == account_id
|
||||||
|
payload[:filtered] = mapped_applied_custom_filter(account_id, @status)
|
||||||
|
|
||||||
|
if payload[:poll]
|
||||||
|
payload[:poll][:voted] = @status.account_id == account_id
|
||||||
|
payload[:poll][:own_votes] = []
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def hydrate_reblog_payload(empty_payload, account_id)
|
||||||
|
empty_payload.tap do |payload|
|
||||||
payload[:muted] = false
|
payload[:muted] = false
|
||||||
payload[:bookmarked] = false
|
payload[:bookmarked] = false
|
||||||
payload[:pinned] = false if @status.account_id == account_id
|
payload[:pinned] = false if @status.account_id == account_id
|
||||||
payload[:filtered] = CustomFilter
|
payload[:filtered] = mapped_applied_custom_filter(account_id, @status.reblog)
|
||||||
.apply_cached_filters(CustomFilter.cached_filters_for(account_id), @status.reblog)
|
|
||||||
.map { |filter| serialized_filter(filter) }
|
|
||||||
|
|
||||||
# If the reblogged status is being delivered to the author who disabled the display of the application
|
# If the reblogged status is being delivered to the author who disabled the display of the application
|
||||||
# used to create the status, we need to hydrate it here too
|
# used to create the status, we need to hydrate it here too
|
||||||
|
@ -47,26 +71,14 @@ class StatusCacheHydrator
|
||||||
|
|
||||||
payload[:favourited] = payload[:reblog][:favourited]
|
payload[:favourited] = payload[:reblog][:favourited]
|
||||||
payload[:reblogged] = payload[:reblog][:reblogged]
|
payload[:reblogged] = payload[:reblog][:reblogged]
|
||||||
else
|
|
||||||
payload[:favourited] = Favourite.where(account_id: account_id, status_id: @status.id).exists?
|
|
||||||
payload[:reblogged] = Status.where(account_id: account_id, reblog_of_id: @status.id).exists?
|
|
||||||
payload[:muted] = ConversationMute.where(account_id: account_id, conversation_id: @status.conversation_id).exists?
|
|
||||||
payload[:bookmarked] = Bookmark.where(account_id: account_id, status_id: @status.id).exists?
|
|
||||||
payload[:pinned] = StatusPin.where(account_id: account_id, status_id: @status.id).exists? if @status.account_id == account_id
|
|
||||||
payload[:filtered] = CustomFilter
|
|
||||||
.apply_cached_filters(CustomFilter.cached_filters_for(account_id), @status)
|
|
||||||
.map { |filter| serialized_filter(filter) }
|
|
||||||
|
|
||||||
if payload[:poll]
|
|
||||||
payload[:poll][:voted] = @status.account_id == account_id
|
|
||||||
payload[:poll][:own_votes] = []
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
payload
|
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
def mapped_applied_custom_filter(account_id, status)
|
||||||
|
CustomFilter
|
||||||
|
.apply_cached_filters(CustomFilter.cached_filters_for(account_id), status)
|
||||||
|
.map { |filter| serialized_filter(filter) }
|
||||||
|
end
|
||||||
|
|
||||||
def serialized_filter(filter)
|
def serialized_filter(filter)
|
||||||
ActiveModelSerializers::SerializableResource.new(
|
ActiveModelSerializers::SerializableResource.new(
|
||||||
|
|
Loading…
Reference in New Issue