2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-29 10:42:08 -08:00
|
|
|
class AccountsController < ApplicationController
|
2017-04-19 04:52:37 -07:00
|
|
|
include AccountControllerConcern
|
2017-07-14 11:41:49 -07:00
|
|
|
include SignatureVerification
|
2016-02-29 10:42:08 -08:00
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
2016-09-08 11:36:01 -07:00
|
|
|
format.html do
|
2017-08-24 16:41:18 -07:00
|
|
|
@pinned_statuses = []
|
|
|
|
|
2017-08-16 08:12:58 -07:00
|
|
|
if current_account && @account.blocking?(current_account)
|
|
|
|
@statuses = []
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-09-04 03:53:18 -07:00
|
|
|
@pinned_statuses = cache_collection(@account.pinned_statuses, Status) if show_pinned_statuses?
|
2017-08-24 16:41:18 -07: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 11:36:01 -07:00
|
|
|
end
|
2016-03-24 05:21:53 -07:00
|
|
|
|
|
|
|
format.atom do
|
2017-05-26 07:35:25 -07:00
|
|
|
@entries = @account.stream_entries.where(hidden: false).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
|
2017-09-06 10:01:28 -07:00
|
|
|
render xml: OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.feed(@account, @entries.reject { |entry| entry.status.nil? }))
|
2016-03-24 05:21:53 -07:00
|
|
|
end
|
2017-02-06 01:19:05 -08:00
|
|
|
|
2017-07-14 18:01:39 -07:00
|
|
|
format.json do
|
2017-10-07 08:43:42 -07:00
|
|
|
render json: @account,
|
|
|
|
serializer: ActivityPub::ActorSerializer,
|
|
|
|
adapter: ActivityPub::Adapter,
|
|
|
|
content_type: 'application/activity+json'
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-09-04 03:53:18 -07:00
|
|
|
def show_pinned_statuses?
|
|
|
|
[replies_requested?, media_requested?, params[:max_id].present?, params[:since_id].present?].none?
|
|
|
|
end
|
|
|
|
|
2017-08-16 08:12:58 -07:00
|
|
|
def filtered_statuses
|
|
|
|
default_statuses.tap do |statuses|
|
2017-08-24 16:41:18 -07:00
|
|
|
statuses.merge!(only_media_scope) if media_requested?
|
|
|
|
statuses.merge!(no_replies_scope) unless replies_requested?
|
2017-08-16 08:12:58 -07: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 10:42:08 -08:00
|
|
|
def set_account
|
2016-09-04 12:06:04 -07:00
|
|
|
@account = Account.find_local!(params[:username])
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|
2017-08-16 08:12:58 -07:00
|
|
|
|
|
|
|
def next_url
|
2017-08-24 16:41:18 -07:00
|
|
|
if media_requested?
|
2017-08-16 08:12:58 -07:00
|
|
|
short_account_media_url(@account, max_id: @statuses.last.id)
|
2017-08-24 16:41:18 -07:00
|
|
|
elsif replies_requested?
|
2017-08-16 08:12:58 -07: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 16:41:18 -07:00
|
|
|
|
|
|
|
def media_requested?
|
|
|
|
request.path.ends_with?('/media')
|
|
|
|
end
|
|
|
|
|
|
|
|
def replies_requested?
|
|
|
|
request.path.ends_with?('/with_replies')
|
|
|
|
end
|
2016-02-29 10:42:08 -08:00
|
|
|
end
|