2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
class AccountsController < ApplicationController
|
2017-04-19 11:52:37 +00:00
|
|
|
include AccountControllerConcern
|
2018-01-04 00:21:38 +00:00
|
|
|
|
|
|
|
before_action :set_cache_headers
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
2016-09-08 18:36:01 +00:00
|
|
|
format.html do
|
2017-08-24 23:41:18 +00:00
|
|
|
@pinned_statuses = []
|
|
|
|
|
2017-08-16 15:12:58 +00:00
|
|
|
if current_account && @account.blocking?(current_account)
|
|
|
|
@statuses = []
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-09-04 10:53:18 +00:00
|
|
|
@pinned_statuses = cache_collection(@account.pinned_statuses, Status) if show_pinned_statuses?
|
2017-08-24 23:41:18 +00:00
|
|
|
@statuses = filtered_statuses.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
|
|
|
@statuses = cache_collection(@statuses, Status)
|
|
|
|
@next_url = next_url unless @statuses.empty?
|
2016-09-08 18:36:01 +00:00
|
|
|
end
|
2016-03-24 12:21:53 +00:00
|
|
|
|
|
|
|
format.atom do
|
2017-05-26 14:35:25 +00:00
|
|
|
@entries = @account.stream_entries.where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
2017-09-06 17:01:28 +00:00
|
|
|
render xml: OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.feed(@account, @entries.reject { |entry| entry.status.nil? }))
|
2016-03-24 12:21:53 +00:00
|
|
|
end
|
2017-02-06 09:19:05 +00:00
|
|
|
|
2017-07-15 01:01:39 +00:00
|
|
|
format.json do
|
2018-01-04 00:21:38 +00:00
|
|
|
skip_session!
|
|
|
|
|
|
|
|
render_cached_json(['activitypub', 'actor', @account.cache_key], content_type: 'application/activity+json') do
|
|
|
|
ActiveModelSerializers::SerializableResource.new(@account, serializer: ActivityPub::ActorSerializer, adapter: ActivityPub::Adapter)
|
|
|
|
end
|
2017-07-15 01:01:39 +00:00
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-09-04 10:53:18 +00:00
|
|
|
def show_pinned_statuses?
|
|
|
|
[replies_requested?, media_requested?, params[:max_id].present?, params[:since_id].present?].none?
|
|
|
|
end
|
|
|
|
|
2017-08-16 15:12:58 +00:00
|
|
|
def filtered_statuses
|
|
|
|
default_statuses.tap do |statuses|
|
2017-08-24 23:41:18 +00:00
|
|
|
statuses.merge!(only_media_scope) if media_requested?
|
|
|
|
statuses.merge!(no_replies_scope) unless replies_requested?
|
2017-08-16 15:12:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_statuses
|
|
|
|
@account.statuses.where(visibility: [:public, :unlisted])
|
|
|
|
end
|
|
|
|
|
|
|
|
def only_media_scope
|
|
|
|
Status.where(id: account_media_status_ids)
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_media_status_ids
|
|
|
|
@account.media_attachments.attached.reorder(nil).select(:status_id).distinct
|
|
|
|
end
|
|
|
|
|
|
|
|
def no_replies_scope
|
|
|
|
Status.without_replies
|
|
|
|
end
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
def set_account
|
2016-09-04 19:06:04 +00:00
|
|
|
@account = Account.find_local!(params[:username])
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
2017-08-16 15:12:58 +00:00
|
|
|
|
|
|
|
def next_url
|
2017-08-24 23:41:18 +00:00
|
|
|
if media_requested?
|
2017-08-16 15:12:58 +00:00
|
|
|
short_account_media_url(@account, max_id: @statuses.last.id)
|
2017-08-24 23:41:18 +00:00
|
|
|
elsif replies_requested?
|
2017-08-16 15:12:58 +00:00
|
|
|
short_account_with_replies_url(@account, max_id: @statuses.last.id)
|
|
|
|
else
|
|
|
|
short_account_url(@account, max_id: @statuses.last.id)
|
|
|
|
end
|
|
|
|
end
|
2017-08-24 23:41:18 +00:00
|
|
|
|
|
|
|
def media_requested?
|
|
|
|
request.path.ends_with?('/media')
|
|
|
|
end
|
|
|
|
|
|
|
|
def replies_requested?
|
|
|
|
request.path.ends_with?('/with_replies')
|
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|