Federated social network node, running on kosmos.social
https://kosmos.social
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
646 B
26 lines
646 B
# 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.filter_map { |account| ::Keys::QueryService.new.call(account) } |
|
end |
|
|
|
def account_ids |
|
Array(params[:id]).map(&:to_i) |
|
end |
|
end
|
|
|