2017-04-30 00:23:45 +02:00
|
|
|
# frozen_string_literal: true
|
2017-04-13 13:09:07 +02:00
|
|
|
|
|
|
|
module WellKnown
|
2023-04-19 16:07:29 +02:00
|
|
|
class HostMetaController < ActionController::Base # rubocop:disable Rails/ApplicationController
|
2017-06-02 22:21:36 +02:00
|
|
|
include RoutingHelper
|
|
|
|
|
2017-04-13 13:09:07 +02:00
|
|
|
def show
|
|
|
|
@webfinger_template = "#{webfinger_url}?resource={uri}"
|
2019-07-08 12:03:45 +02:00
|
|
|
expires_in 3.days, public: true
|
2024-10-02 11:23:44 +02:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.any do
|
|
|
|
render content_type: 'application/xrd+xml', formats: [:xml]
|
|
|
|
end
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
render json: {
|
|
|
|
links: [
|
|
|
|
{
|
|
|
|
rel: 'lrdd',
|
|
|
|
template: @webfinger_template,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2017-04-13 13:09:07 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|