mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-06 09:51:53 +00:00
27 lines
647 B
Ruby
27 lines
647 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Api::V1::Crypto::Keys::QueriesController < Api::BaseController
|
||
|
before_action -> { doorkeeper_authorize! :crypto }
|
||
|
before_action :require_user!
|
||
|
before_action :set_accounts
|
||
|
before_action :set_query_results
|
||
|
|
||
|
def create
|
||
|
render json: @query_results, each_serializer: REST::Keys::QueryResultSerializer
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def set_accounts
|
||
|
@accounts = Account.where(id: account_ids).includes(:devices)
|
||
|
end
|
||
|
|
||
|
def set_query_results
|
||
|
@query_results = @accounts.map { |account| ::Keys::QueryService.new.call(account) }.compact
|
||
|
end
|
||
|
|
||
|
def account_ids
|
||
|
Array(params[:id]).map(&:to_i)
|
||
|
end
|
||
|
end
|