2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::AccountByUsernameController < Api::BaseController
|
|
|
|
before_action :set_account
|
|
|
|
before_action :check_account_suspension
|
2020-04-17 06:35:46 +01:00
|
|
|
before_action :check_account_local
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
|
|
|
render json: @account, serializer: REST::AccountSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
2019-11-18 01:54:18 +00:00
|
|
|
@account = Account.find_acct!(params[:username])
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def check_account_suspension
|
|
|
|
gone if @account.suspended?
|
|
|
|
end
|
2020-04-17 06:35:46 +01:00
|
|
|
|
|
|
|
# if not our domain don't display
|
|
|
|
def check_account_local
|
|
|
|
gone unless @account.local?
|
|
|
|
end
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|