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