2017-06-01 05:36:24 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::Accounts::SearchController < Api::BaseController
|
2018-07-06 02:31:35 +10:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }
|
2017-06-01 05:36:24 +10:00
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def show
|
|
|
|
@accounts = account_search
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-06-01 05:36:24 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_search
|
|
|
|
AccountSearchService.new.call(
|
|
|
|
params[:q],
|
2017-12-06 09:02:27 +11:00
|
|
|
current_account,
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-27 01:21:36 +11:00
|
|
|
limit: limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
2017-12-06 09:02:27 +11:00
|
|
|
resolve: truthy_param?(:resolve),
|
Add type, limit, offset, min_id, max_id, account_id to search API (#10091)
* Add type, limit, offset, min_id, max_id, account_id to search API
Fix #8939
* Make the offset work on accounts and hashtags search as well
* Assure brakeman we are not doing mass assignment here
* Do not allow paginating unless a type is chosen
* Fix search query and index id field on statuses instead of created_at
2019-02-27 01:21:36 +11:00
|
|
|
following: truthy_param?(:following),
|
|
|
|
offset: params[:offset]
|
2017-06-01 05:36:24 +10:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|