2021-11-25 12:07:38 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Trends::LinksController < Api::BaseController
|
|
|
|
before_action :set_links
|
|
|
|
|
2022-03-25 23:26:50 +00:00
|
|
|
after_action :insert_pagination_headers
|
|
|
|
|
|
|
|
DEFAULT_LINKS_LIMIT = 10
|
|
|
|
|
2021-11-25 12:07:38 +00:00
|
|
|
def index
|
|
|
|
render json: @links, each_serializer: REST::Trends::LinkSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_links
|
|
|
|
@links = begin
|
|
|
|
if Setting.trends
|
2022-02-24 23:34:14 +00:00
|
|
|
links_from_trends
|
2021-11-25 12:07:38 +00:00
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-02-24 23:34:14 +00:00
|
|
|
|
|
|
|
def links_from_trends
|
2022-03-25 23:26:50 +00:00
|
|
|
Trends.links.query.allowed.in_locale(content_locale).offset(offset_param).limit(limit_param(DEFAULT_LINKS_LIMIT))
|
|
|
|
end
|
|
|
|
|
|
|
|
def insert_pagination_headers
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_params(core_params)
|
|
|
|
params.slice(:limit).permit(:limit).merge(core_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def next_path
|
2022-04-07 16:06:15 +00:00
|
|
|
api_v1_trends_links_url pagination_params(offset: offset_param + limit_param(DEFAULT_LINKS_LIMIT)) if records_continue?
|
2022-03-25 23:26:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def prev_path
|
|
|
|
api_v1_trends_links_url pagination_params(offset: offset_param - limit_param(DEFAULT_LINKS_LIMIT)) if offset_param > limit_param(DEFAULT_LINKS_LIMIT)
|
|
|
|
end
|
|
|
|
|
2022-04-07 16:06:15 +00:00
|
|
|
def records_continue?
|
|
|
|
@links.size == limit_param(DEFAULT_LINKS_LIMIT)
|
|
|
|
end
|
|
|
|
|
2022-03-25 23:26:50 +00:00
|
|
|
def offset_param
|
|
|
|
params[:offset].to_i
|
2022-02-24 23:34:14 +00:00
|
|
|
end
|
2021-11-25 12:07:38 +00:00
|
|
|
end
|