mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:21:11 +01:00
30 lines
555 B
Ruby
30 lines
555 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::SearchController < Api::BaseController
|
|
RESULTS_LIMIT = 10
|
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
before_action :require_user!
|
|
|
|
respond_to :json
|
|
|
|
def index
|
|
@search = Search.new(search_results)
|
|
render json: @search, serializer: REST::SearchSerializer
|
|
end
|
|
|
|
private
|
|
|
|
def search_results
|
|
SearchService.new.call(
|
|
params[:q],
|
|
RESULTS_LIMIT,
|
|
resolving_search?,
|
|
current_account
|
|
)
|
|
end
|
|
|
|
def resolving_search?
|
|
params[:resolve] == 'true'
|
|
end
|
|
end
|