2017-04-30 08:23:45 +10:00
|
|
|
# frozen_string_literal: true
|
2017-04-13 21:09:07 +10:00
|
|
|
|
|
|
|
module WellKnown
|
2017-12-28 04:21:12 +11:00
|
|
|
class HostMetaController < ActionController::Base
|
2017-06-03 06:21:36 +10:00
|
|
|
include RoutingHelper
|
|
|
|
|
2017-12-28 04:21:12 +11:00
|
|
|
before_action { response.headers['Vary'] = 'Accept' }
|
|
|
|
|
2017-04-13 21:09:07 +10:00
|
|
|
def show
|
|
|
|
@webfinger_template = "#{webfinger_url}?resource={uri}"
|
2019-07-08 20:03:45 +10:00
|
|
|
expires_in 3.days, public: true
|
2020-01-03 15:28:56 +11:00
|
|
|
render content_type: 'application/xrd+xml', formats: [:xml]
|
2017-04-13 21:09:07 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|