2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-01 05:42:08 +11:00
|
|
|
class AccountsController < ApplicationController
|
2018-02-26 13:31:28 +11:00
|
|
|
PAGE_SIZE = 20
|
|
|
|
|
2017-04-19 21:52:37 +10:00
|
|
|
include AccountControllerConcern
|
2018-01-04 11:21:38 +11:00
|
|
|
|
|
|
|
before_action :set_cache_headers
|
2016-03-01 05:42:08 +11:00
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
2016-09-09 04:36:01 +10:00
|
|
|
format.html do
|
2019-03-18 01:39:25 +11:00
|
|
|
mark_cacheable! unless user_signed_in?
|
|
|
|
|
2018-08-09 17:56:53 +10:00
|
|
|
@body_classes = 'with-modals'
|
|
|
|
@pinned_statuses = []
|
|
|
|
@endorsed_accounts = @account.endorsed_accounts.to_a.sample(4)
|
2017-08-25 09:41:18 +10:00
|
|
|
|
2017-08-17 01:12:58 +10:00
|
|
|
if current_account && @account.blocking?(current_account)
|
|
|
|
@statuses = []
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-09-04 20:53:18 +10:00
|
|
|
@pinned_statuses = cache_collection(@account.pinned_statuses, Status) if show_pinned_statuses?
|
2018-02-26 13:31:28 +11:00
|
|
|
@statuses = filtered_status_page(params)
|
2017-08-25 09:41:18 +10:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
2018-04-25 10:10:02 +10:00
|
|
|
|
2018-02-26 13:31:28 +11:00
|
|
|
unless @statuses.empty?
|
2018-04-25 10:10:02 +10:00
|
|
|
@older_url = older_url if @statuses.last.id > filtered_statuses.last.id
|
|
|
|
@newer_url = newer_url if @statuses.first.id < filtered_statuses.first.id
|
2018-02-26 13:31:28 +11:00
|
|
|
end
|
2016-09-09 04:36:01 +10:00
|
|
|
end
|
2016-03-24 23:21:53 +11:00
|
|
|
|
|
|
|
format.atom do
|
2019-03-18 01:39:25 +11:00
|
|
|
mark_cacheable!
|
|
|
|
|
2018-02-26 13:31:28 +11:00
|
|
|
@entries = @account.stream_entries.where(hidden: false).with_includes.paginate_by_max_id(PAGE_SIZE, params[:max_id], params[:since_id])
|
2017-09-07 03:01:28 +10:00
|
|
|
render xml: OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.feed(@account, @entries.reject { |entry| entry.status.nil? }))
|
2016-03-24 23:21:53 +11:00
|
|
|
end
|
2017-02-06 20:19:05 +11:00
|
|
|
|
2018-04-25 10:10:02 +10:00
|
|
|
format.rss do
|
2019-03-18 01:39:25 +11:00
|
|
|
mark_cacheable!
|
|
|
|
|
2018-04-25 10:10:02 +10:00
|
|
|
@statuses = cache_collection(default_statuses.without_reblogs.without_replies.limit(PAGE_SIZE), Status)
|
|
|
|
render xml: RSS::AccountSerializer.render(@account, @statuses)
|
|
|
|
end
|
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
format.json do
|
2018-08-19 23:52:38 +10:00
|
|
|
render_cached_json(['activitypub', 'actor', @account], content_type: 'application/activity+json') do
|
2018-01-04 11:21:38 +11:00
|
|
|
ActiveModelSerializers::SerializableResource.new(@account, serializer: ActivityPub::ActorSerializer, adapter: ActivityPub::Adapter)
|
|
|
|
end
|
2017-07-15 11:01:39 +10:00
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-09-04 20:53:18 +10:00
|
|
|
def show_pinned_statuses?
|
2019-02-05 10:27:18 +11:00
|
|
|
[replies_requested?, media_requested?, tag_requested?, params[:max_id].present?, params[:min_id].present?].none?
|
2017-09-04 20:53:18 +10:00
|
|
|
end
|
|
|
|
|
2017-08-17 01:12:58 +10:00
|
|
|
def filtered_statuses
|
|
|
|
default_statuses.tap do |statuses|
|
2019-02-04 14:25:59 +11:00
|
|
|
statuses.merge!(hashtag_scope) if tag_requested?
|
2017-08-25 09:41:18 +10:00
|
|
|
statuses.merge!(only_media_scope) if media_requested?
|
|
|
|
statuses.merge!(no_replies_scope) unless replies_requested?
|
2017-08-17 01:12:58 +10: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
|
|
|
|
|
2019-02-04 14:25:59 +11:00
|
|
|
def hashtag_scope
|
2019-03-13 23:02:13 +11:00
|
|
|
tag = Tag.find_normalized(params[:tag])
|
|
|
|
|
|
|
|
if tag
|
|
|
|
Status.tagged_with(tag.id)
|
|
|
|
else
|
|
|
|
Status.none
|
|
|
|
end
|
2019-02-04 14:25:59 +11:00
|
|
|
end
|
|
|
|
|
2019-03-14 15:28:30 +11:00
|
|
|
def username_param
|
|
|
|
params[:username]
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|
2017-08-17 01:12:58 +10:00
|
|
|
|
2018-02-26 13:31:28 +11:00
|
|
|
def older_url
|
|
|
|
pagination_url(max_id: @statuses.last.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def newer_url
|
|
|
|
pagination_url(min_id: @statuses.first.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_url(max_id: nil, min_id: nil)
|
2019-02-04 14:25:59 +11:00
|
|
|
if tag_requested?
|
|
|
|
short_account_tag_url(@account, params[:tag], max_id: max_id, min_id: min_id)
|
|
|
|
elsif media_requested?
|
2018-02-26 13:31:28 +11:00
|
|
|
short_account_media_url(@account, max_id: max_id, min_id: min_id)
|
2017-08-25 09:41:18 +10:00
|
|
|
elsif replies_requested?
|
2018-02-26 13:31:28 +11:00
|
|
|
short_account_with_replies_url(@account, max_id: max_id, min_id: min_id)
|
2017-08-17 01:12:58 +10:00
|
|
|
else
|
2018-02-26 13:31:28 +11:00
|
|
|
short_account_url(@account, max_id: max_id, min_id: min_id)
|
2017-08-17 01:12:58 +10:00
|
|
|
end
|
|
|
|
end
|
2017-08-25 09:41:18 +10:00
|
|
|
|
|
|
|
def media_requested?
|
|
|
|
request.path.ends_with?('/media')
|
|
|
|
end
|
|
|
|
|
|
|
|
def replies_requested?
|
|
|
|
request.path.ends_with?('/with_replies')
|
|
|
|
end
|
2018-02-26 13:31:28 +11:00
|
|
|
|
2019-02-04 14:25:59 +11:00
|
|
|
def tag_requested?
|
2019-02-06 01:11:11 +11:00
|
|
|
request.path.ends_with?(Addressable::URI.parse("/tagged/#{params[:tag]}").normalize)
|
2019-02-04 14:25:59 +11:00
|
|
|
end
|
|
|
|
|
2018-02-26 13:31:28 +11:00
|
|
|
def filtered_status_page(params)
|
|
|
|
if params[:min_id].present?
|
|
|
|
filtered_statuses.paginate_by_min_id(PAGE_SIZE, params[:min_id]).reverse
|
|
|
|
else
|
|
|
|
filtered_statuses.paginate_by_max_id(PAGE_SIZE, params[:max_id], params[:since_id]).to_a
|
|
|
|
end
|
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|