2017-04-13 07:09:07 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module WellKnown
|
2017-12-27 12:21:12 -05:00
|
|
|
class WebfingerController < ActionController::Base
|
2017-06-02 16:21:36 -04:00
|
|
|
include RoutingHelper
|
|
|
|
|
2019-09-17 08:58:02 -04:00
|
|
|
before_action :set_account
|
|
|
|
before_action :check_account_suspension
|
2017-12-27 12:21:12 -05:00
|
|
|
|
2020-05-14 17:28:06 -04:00
|
|
|
rescue_from ActiveRecord::RecordNotFound, with: :not_found
|
|
|
|
rescue_from ActionController::ParameterMissing, WebfingerResource::InvalidRequest, with: :bad_request
|
2017-04-13 07:09:07 -04:00
|
|
|
|
2019-09-17 08:58:02 -04:00
|
|
|
def show
|
2019-07-08 06:03:45 -04:00
|
|
|
expires_in 3.days, public: true
|
2019-08-01 13:14:02 -04:00
|
|
|
render json: @account, serializer: WebfingerSerializer, content_type: 'application/jrd+json'
|
2017-04-13 07:09:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-09-17 08:58:02 -04:00
|
|
|
def set_account
|
|
|
|
@account = Account.find_local!(username_from_resource)
|
|
|
|
end
|
|
|
|
|
2017-04-13 07:09:07 -04:00
|
|
|
def username_from_resource
|
2019-07-08 06:03:45 -04:00
|
|
|
resource_user = resource_param
|
2017-05-22 09:40:04 -04:00
|
|
|
username, domain = resource_user.split('@')
|
2019-07-08 06:03:45 -04:00
|
|
|
resource_user = "#{username}@#{Rails.configuration.x.local_domain}" if Rails.configuration.x.alternate_domains.include?(domain)
|
2017-05-22 09:40:04 -04:00
|
|
|
|
|
|
|
WebfingerResource.new(resource_user).username
|
2017-04-13 07:09:07 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def resource_param
|
|
|
|
params.require(:resource)
|
|
|
|
end
|
2019-09-17 08:58:02 -04:00
|
|
|
|
|
|
|
def check_account_suspension
|
2020-11-07 18:28:39 -05:00
|
|
|
expires_in(3.minutes, public: true) && gone if @account.suspended_permanently?
|
2019-09-17 08:58:02 -04:00
|
|
|
end
|
|
|
|
|
2020-05-14 17:28:06 -04:00
|
|
|
def bad_request
|
2021-07-03 15:13:47 -04:00
|
|
|
expires_in(3.minutes, public: true)
|
2020-05-14 17:28:06 -04:00
|
|
|
head 400
|
|
|
|
end
|
|
|
|
|
2019-09-17 08:58:02 -04:00
|
|
|
def not_found
|
2021-07-03 15:13:47 -04:00
|
|
|
expires_in(3.minutes, public: true)
|
2019-09-17 08:58:02 -04:00
|
|
|
head 404
|
|
|
|
end
|
|
|
|
|
|
|
|
def gone
|
|
|
|
head 410
|
|
|
|
end
|
2017-04-13 07:09:07 -04:00
|
|
|
end
|
|
|
|
end
|