2017-05-23 12:11:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-14 09:53:31 -05:00
|
|
|
class Api::V1::Timelines::HomeController < Api::V1::Timelines::BaseController
|
2018-07-05 12:31:35 -04:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:statuses' }, only: [:show]
|
2017-05-31 14:27:17 -04:00
|
|
|
before_action :require_user!, only: [:show]
|
2023-11-14 09:53:31 -05:00
|
|
|
|
|
|
|
PERMITTED_PARAMS = %i(local limit).freeze
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2017-05-31 14:27:17 -04:00
|
|
|
def show
|
2023-07-12 11:06:00 -04:00
|
|
|
with_read_replica do
|
2023-07-08 13:45:36 -04:00
|
|
|
@statuses = load_statuses
|
|
|
|
@relationships = StatusRelationshipsPresenter.new(@statuses, current_user&.account_id)
|
|
|
|
end
|
2018-01-17 17:56:03 -05:00
|
|
|
|
|
|
|
render json: @statuses,
|
|
|
|
each_serializer: REST::StatusSerializer,
|
2023-07-08 13:45:36 -04:00
|
|
|
relationships: @relationships,
|
2019-10-06 16:11:17 -04:00
|
|
|
status: account_home_feed.regenerating? ? 206 : 200
|
2017-05-31 14:27:17 -04:00
|
|
|
end
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2017-05-31 14:27:17 -04:00
|
|
|
private
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2017-05-31 14:27:17 -04:00
|
|
|
def load_statuses
|
2024-05-16 04:03:46 -04:00
|
|
|
preloaded_home_statuses
|
2017-05-31 14:27:17 -04:00
|
|
|
end
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2024-05-16 04:03:46 -04:00
|
|
|
def preloaded_home_statuses
|
|
|
|
preload_collection home_statuses, Status
|
2017-05-31 14:27:17 -04:00
|
|
|
end
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2017-05-31 14:27:17 -04:00
|
|
|
def home_statuses
|
|
|
|
account_home_feed.get(
|
|
|
|
limit_param(DEFAULT_STATUSES_LIMIT),
|
|
|
|
params[:max_id],
|
2018-09-27 20:23:45 -04:00
|
|
|
params[:since_id],
|
|
|
|
params[:min_id]
|
2017-05-31 14:27:17 -04:00
|
|
|
)
|
|
|
|
end
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2017-05-31 14:27:17 -04:00
|
|
|
def account_home_feed
|
2017-11-17 18:16:48 -05:00
|
|
|
HomeFeed.new(current_account)
|
2017-05-31 14:27:17 -04:00
|
|
|
end
|
2017-05-23 12:11:39 -04:00
|
|
|
|
2017-05-31 14:27:17 -04:00
|
|
|
def next_path
|
2023-11-14 09:53:31 -05:00
|
|
|
api_v1_timelines_home_url next_path_params
|
2017-05-31 14:27:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
2023-11-14 09:53:31 -05:00
|
|
|
api_v1_timelines_home_url prev_path_params
|
2017-05-23 12:11:39 -04:00
|
|
|
end
|
|
|
|
end
|