2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-01 05:42:08 +11:00
|
|
|
class AccountsController < ApplicationController
|
2020-06-09 08:18:47 +10:00
|
|
|
PAGE_SIZE = 20
|
|
|
|
PAGE_SIZE_MAX = 200
|
2018-02-26 13:31:28 +11:00
|
|
|
|
2017-04-19 21:52:37 +10:00
|
|
|
include AccountControllerConcern
|
2019-07-12 04:11:09 +10:00
|
|
|
include SignatureAuthentication
|
2018-01-04 11:21:38 +11:00
|
|
|
|
2022-09-22 06:45:57 +10:00
|
|
|
before_action :require_account_signature!, if: -> { request.format == :json && authorized_fetch_mode? }
|
2018-01-04 11:21:38 +11:00
|
|
|
before_action :set_cache_headers
|
2016-03-01 05:42:08 +11:00
|
|
|
|
2020-02-20 08:31:53 +11:00
|
|
|
skip_around_action :set_locale, if: -> { [:json, :rss].include?(request.format&.to_sym) }
|
2020-06-20 03:18:47 +10:00
|
|
|
skip_before_action :require_functional!, unless: :whitelist_mode?
|
2019-08-12 06:59:40 +10:00
|
|
|
|
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-07-08 20:03:45 +10:00
|
|
|
expires_in 0, public: true unless user_signed_in?
|
2022-11-17 20:58:33 +11:00
|
|
|
|
|
|
|
@rss_url = rss_url
|
2016-09-09 04:36:01 +10:00
|
|
|
end
|
2016-03-24 23:21:53 +11:00
|
|
|
|
2018-04-25 10:10:02 +10:00
|
|
|
format.rss do
|
2019-10-03 02:30:33 +10:00
|
|
|
expires_in 1.minute, public: true
|
2019-03-18 01:39:25 +11:00
|
|
|
|
2020-06-09 08:18:47 +10:00
|
|
|
limit = params[:limit].present? ? [params[:limit].to_i, PAGE_SIZE_MAX].min : PAGE_SIZE
|
|
|
|
@statuses = filtered_statuses.without_reblogs.limit(limit)
|
2019-08-19 04:54:36 +10:00
|
|
|
@statuses = cache_collection(@statuses, Status)
|
2018-04-25 10:10:02 +10:00
|
|
|
end
|
|
|
|
|
2017-07-15 11:01:39 +10:00
|
|
|
format.json do
|
2019-07-12 04:11:09 +10:00
|
|
|
expires_in 3.minutes, public: !(authorized_fetch_mode? && signed_request_account.present?)
|
2020-09-14 21:04:29 +10:00
|
|
|
render_with_cache json: @account, content_type: 'application/activity+json', serializer: ActivityPub::ActorSerializer, adapter: ActivityPub::Adapter
|
2017-07-15 11:01:39 +10:00
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
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
|
2021-04-27 02:57:46 +10:00
|
|
|
Status.joins(:media_attachments).merge(@account.media_attachments.reorder(nil)).group(:id)
|
2017-08-17 01:12:58 +10:00
|
|
|
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
|
|
|
|
2020-11-08 10:28:39 +11:00
|
|
|
def skip_temporary_suspension_response?
|
|
|
|
request.format == :json
|
|
|
|
end
|
|
|
|
|
2019-08-19 04:54:36 +10:00
|
|
|
def rss_url
|
|
|
|
if tag_requested?
|
|
|
|
short_account_tag_url(@account, params[:tag], format: 'rss')
|
|
|
|
else
|
|
|
|
short_account_url(@account, format: 'rss')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-25 09:41:18 +10:00
|
|
|
def media_requested?
|
2021-02-19 19:56:14 +11:00
|
|
|
request.path.split('.').first.end_with?('/media') && !tag_requested?
|
2017-08-25 09:41:18 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def replies_requested?
|
2021-02-19 19:56:14 +11:00
|
|
|
request.path.split('.').first.end_with?('/with_replies') && !tag_requested?
|
2017-08-25 09:41:18 +10:00
|
|
|
end
|
2018-02-26 13:31:28 +11:00
|
|
|
|
2019-02-04 14:25:59 +11:00
|
|
|
def tag_requested?
|
2021-02-19 19:56:14 +11:00
|
|
|
request.path.split('.').first.end_with?(Addressable::URI.parse("/tagged/#{params[:tag]}").normalize)
|
2019-02-04 14:25:59 +11:00
|
|
|
end
|
|
|
|
|
2020-08-28 20:31:56 +10:00
|
|
|
def cached_filtered_status_page
|
|
|
|
cache_collection_paginated_by_id(
|
|
|
|
filtered_statuses,
|
|
|
|
Status,
|
|
|
|
PAGE_SIZE,
|
|
|
|
params_slice(:max_id, :min_id, :since_id)
|
|
|
|
)
|
2020-05-04 00:30:36 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def params_slice(*keys)
|
|
|
|
params.slice(*keys).permit(*keys)
|
2018-02-26 13:31:28 +11:00
|
|
|
end
|
2016-03-01 05:42:08 +11:00
|
|
|
end
|