2017-05-31 19:36:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 18:09:25 +00:00
|
|
|
class Api::V1::Accounts::SearchController < Api::BaseController
|
2018-07-05 16:31:35 +00:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }
|
2017-05-31 19:36:24 +00:00
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def show
|
|
|
|
@accounts = account_search
|
2017-07-07 02:02:06 +00:00
|
|
|
render json: @accounts, each_serializer: REST::AccountSerializer
|
2017-05-31 19:36:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_search
|
|
|
|
AccountSearchService.new.call(
|
|
|
|
params[:q],
|
2017-12-05 22:02:27 +00: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-26 14:21:36 +00:00
|
|
|
limit: limit_param(DEFAULT_ACCOUNTS_LIMIT),
|
2017-12-05 22:02:27 +00: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-26 14:21:36 +00:00
|
|
|
following: truthy_param?(:following),
|
|
|
|
offset: params[:offset]
|
2017-05-31 19:36:24 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|