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