2017-05-23 09:11:39 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-14 06:53:31 -08:00
|
|
|
class Api::V1::Timelines::PublicController < Api::V1::Timelines::BaseController
|
2019-09-13 07:03:46 -07:00
|
|
|
before_action :require_user!, only: [:show], if: :require_auth?
|
2023-11-14 06:53:31 -08:00
|
|
|
|
|
|
|
PERMITTED_PARAMS = %i(local remote limit only_media).freeze
|
2017-05-23 09:11:39 -07:00
|
|
|
|
2017-05-31 11:27:17 -07:00
|
|
|
def show
|
2023-04-25 06:41:34 -07:00
|
|
|
cache_if_unauthenticated!
|
2017-05-31 11:27:17 -07:00
|
|
|
@statuses = load_statuses
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @statuses, each_serializer: REST::StatusSerializer, relationships: StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
|
2017-05-31 11:27:17 -07:00
|
|
|
end
|
2017-05-23 09:11:39 -07:00
|
|
|
|
2017-05-31 11:27:17 -07:00
|
|
|
private
|
2017-05-23 09:11:39 -07:00
|
|
|
|
2019-09-13 07:03:46 -07:00
|
|
|
def require_auth?
|
|
|
|
!Setting.timeline_preview
|
|
|
|
end
|
|
|
|
|
2017-05-31 11:27:17 -07:00
|
|
|
def load_statuses
|
2020-08-28 03:31:56 -07:00
|
|
|
cached_public_statuses_page
|
2017-05-31 11:27:17 -07:00
|
|
|
end
|
2017-05-23 09:11:39 -07:00
|
|
|
|
2020-08-28 03:31:56 -07:00
|
|
|
def cached_public_statuses_page
|
2020-09-07 02:02:04 -07:00
|
|
|
cache_collection(public_statuses, Status)
|
2020-08-28 03:31:56 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def public_statuses
|
2020-09-07 02:02:04 -07:00
|
|
|
public_feed.get(
|
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
|
|
|
params[:max_id],
|
|
|
|
params[:since_id],
|
|
|
|
params[:min_id]
|
|
|
|
)
|
2017-05-31 11:27:17 -07:00
|
|
|
end
|
2017-05-23 09:11:39 -07:00
|
|
|
|
2020-09-07 02:02:04 -07:00
|
|
|
def public_feed
|
|
|
|
PublicFeed.new(
|
|
|
|
current_account,
|
|
|
|
local: truthy_param?(:local),
|
|
|
|
remote: truthy_param?(:remote),
|
|
|
|
only_media: truthy_param?(:only_media)
|
|
|
|
)
|
2017-05-31 11:27:17 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
2023-11-14 06:53:31 -08:00
|
|
|
api_v1_timelines_public_url next_path_params
|
2017-05-31 11:27:17 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2023-11-14 06:53:31 -08:00
|
|
|
api_v1_timelines_public_url prev_path_params
|
2017-05-23 09:11:39 -07:00
|
|
|
end
|
|
|
|
end
|