2017-05-31 21:36:24 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::Accounts::SearchController < Api::BaseController
|
2017-05-31 21:36:24 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
|
|
|
@accounts = account_search
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_search
|
|
|
|
AccountSearchService.new.call(
|
|
|
|
params[:q],
|
|
|
|
limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
2017-12-05 23:02:27 +01:00
|
|
|
current_account,
|
|
|
|
resolve: truthy_param?(:resolve),
|
|
|
|
following: truthy_param?(:following)
|
2017-05-31 21:36:24 +02:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2017-12-05 23:02:27 +01:00
|
|
|
def truthy_param?(key)
|
|
|
|
params[key] == 'true'
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
end
|