This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-31 12:36:24 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::Accounts::SearchController < Api::BaseController
|
2017-05-31 12:36:24 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
|
|
|
@accounts = account_search
|
2017-07-06 19:02:06 -07:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-05-31 12:36:24 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_search
|
|
|
|
AccountSearchService.new.call(
|
|
|
|
params[:q],
|
|
|
|
limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
2017-12-05 14:02:27 -08:00
|
|
|
current_account,
|
|
|
|
resolve: truthy_param?(:resolve),
|
|
|
|
following: truthy_param?(:following)
|
2017-05-31 12:36:24 -07:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|