This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-02-16 15:28:32 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Accounts::LookupController < Api::BaseController
|
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:accounts' }
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def show
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_if_unauthenticated!
|
2021-02-16 15:28:32 +01:00
|
|
|
render json: @account, serializer: REST::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = ResolveAccountService.new.call(params[:acct], skip_webfinger: true) || raise(ActiveRecord::RecordNotFound)
|
2022-05-02 01:00:08 +02:00
|
|
|
rescue Addressable::URI::InvalidURIError
|
|
|
|
raise(ActiveRecord::RecordNotFound)
|
2021-02-16 15:28:32 +01:00
|
|
|
end
|
|
|
|
end
|