about summary refs log blame commit diff
path: root/app/controllers/well_known/webfinger_controller.rb
blob: 9de9db6ba8c1b4448b2982df71d9211b33169f2a (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                                                    
                         
                                                         
                                           
 
                                                                                                         
 
            
                                     
                                                                                                  


           


                                                            
                              
                                       
                                                 
                                                                                                                                        
                                                   
       

                               



                                                                        


                   





                 
     
# frozen_string_literal: true

module WellKnown
  class WebfingerController < ActionController::Base
    include RoutingHelper

    before_action { response.headers['Vary'] = 'Accept' }
    before_action :set_account
    before_action :check_account_suspension

    rescue_from ActiveRecord::RecordNotFound, with: :not_found
    rescue_from ActionController::ParameterMissing, WebfingerResource::InvalidRequest, with: :bad_request

    def show
      expires_in 3.days, public: true
      render json: @account, serializer: WebfingerSerializer, content_type: 'application/jrd+json'
    end

    private

    def set_account
      @account = Account.find_local!(username_from_resource)
    end

    def username_from_resource
      resource_user    = resource_param
      username, domain = resource_user.split('@')
      resource_user    = "#{username}@#{Rails.configuration.x.local_domain}" if Rails.configuration.x.alternate_domains.include?(domain)

      WebfingerResource.new(resource_user).username
    end

    def resource_param
      params.require(:resource)
    end

    def check_account_suspension
      expires_in(3.minutes, public: true) && gone if @account.suspended?
    end

    def bad_request
      head 400
    end

    def not_found
      head 404
    end

    def gone
      head 410
    end
  end
end