2016-02-22 15:00:20 +00:00
|
|
|
class XrdController < ApplicationController
|
2016-08-17 16:56:23 +01:00
|
|
|
before_action :set_format
|
2016-02-22 15:00:20 +00:00
|
|
|
|
|
|
|
def host_meta
|
|
|
|
@webfinger_template = "#{webfinger_url}?resource={uri}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def webfinger
|
2016-03-16 17:29:52 +00:00
|
|
|
@account = Account.find_local!(username_from_resource)
|
2016-02-29 19:06:39 +00:00
|
|
|
@canonical_account_uri = "acct:#{@account.username}@#{Rails.configuration.x.local_domain}"
|
2016-02-22 15:00:20 +00:00
|
|
|
@magic_key = pem_to_magic_key(@account.keypair.public_key)
|
2016-02-29 18:42:08 +00:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2016-08-17 16:56:23 +01:00
|
|
|
head 404
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_format
|
|
|
|
request.format = 'xml'
|
|
|
|
response.headers['Content-Type'] = 'application/xrd+xml'
|
|
|
|
end
|
|
|
|
|
|
|
|
def username_from_resource
|
2016-03-16 17:29:52 +00:00
|
|
|
if resource_param.start_with?('acct:')
|
|
|
|
resource_param.split('@').first.gsub('acct:', '')
|
2016-02-28 14:46:29 +00:00
|
|
|
else
|
2016-03-16 17:29:52 +00:00
|
|
|
url = Addressable::URI.parse(resource_param)
|
2016-02-28 14:46:29 +00:00
|
|
|
url.path.gsub('/users/', '')
|
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def pem_to_magic_key(public_key)
|
|
|
|
modulus, exponent = [public_key.n, public_key.e].map do |component|
|
2016-09-29 20:28:21 +01:00
|
|
|
result = ''
|
2016-02-22 15:00:20 +00:00
|
|
|
|
2016-09-29 20:28:21 +01:00
|
|
|
until component.zero?
|
2016-02-22 15:00:20 +00:00
|
|
|
result << [component % 256].pack('C')
|
|
|
|
component >>= 8
|
|
|
|
end
|
|
|
|
|
|
|
|
result.reverse!
|
|
|
|
end
|
|
|
|
|
2016-09-29 20:28:21 +01:00
|
|
|
(['RSA'] + [modulus, exponent].map { |n| Base64.urlsafe_encode64(n) }).join('.')
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
2016-03-16 17:29:52 +00:00
|
|
|
|
|
|
|
def resource_param
|
|
|
|
params.require(:resource)
|
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|