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