2017-03-22 02:32:27 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::SearchController < Api::BaseController
|
2017-11-15 01:53:33 +01:00
|
|
|
include Authorization
|
|
|
|
|
2017-05-31 03:11:54 +02:00
|
|
|
RESULTS_LIMIT = 5
|
|
|
|
|
2017-07-11 17:08:26 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
2017-03-22 02:32:27 +01:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2017-11-15 01:53:33 +01:00
|
|
|
@search = Search.new(search)
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @search, serializer: REST::SearchSerializer
|
2017-05-31 03:11:54 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-11-15 01:53:33 +01:00
|
|
|
def search
|
|
|
|
search_results.tap do |search|
|
|
|
|
search[:statuses].keep_if do |status|
|
|
|
|
begin
|
|
|
|
authorize status, :show?
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-31 03:11:54 +02:00
|
|
|
def search_results
|
|
|
|
SearchService.new.call(
|
|
|
|
params[:q],
|
|
|
|
RESULTS_LIMIT,
|
2018-03-01 02:47:59 +01:00
|
|
|
truthy_param?(:resolve),
|
2017-05-31 03:11:54 +02:00
|
|
|
current_account
|
|
|
|
)
|
|
|
|
end
|
2017-03-22 02:32:27 +01:00
|
|
|
end
|