Browse Source

Allow alternate domains for mastodon handlers (#3187)

master
Immae 7 years ago
committed by Eugen Rochko
parent
commit
a94c152fd3
4 changed files with 41 additions and 1 deletions
  1. +5
    -0
      .env.production.sample
  2. +8
    -1
      app/controllers/well_known/webfinger_controller.rb
  3. +4
    -0
      config/initializers/ostatus.rb
  4. +24
    -0
      spec/controllers/well_known/webfinger_controller_spec.rb

+ 5
- 0
.env.production.sample View File

@@ -20,6 +20,11 @@ LOCAL_HTTPS=true
# DO *NOT* USE THIS UNLESS YOU KNOW *EXACTLY* WHAT YOU ARE DOING.
# WEB_DOMAIN=mastodon.example.com

# Use this if you want to have several aliases handler@example1.com
# handler@example2.com etc. for the same user. LOCAL_DOMAIN should not
# be added. Comma separated values
# ALTERNATE_DOMAINS=example1.com,example2.com

# Application secrets
# Generate each with the `rake secret` task (`docker-compose run --rm web rake secret` if you use docker compose)
PAPERCLIP_SECRET=


+ 8
- 1
app/controllers/well_known/webfinger_controller.rb View File

@@ -23,7 +23,14 @@ module WellKnown
private

def username_from_resource
WebfingerResource.new(resource_param).username
resource_user = resource_param

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

WebfingerResource.new(resource_user).username
end

def pem_to_magic_key(public_key)


+ 4
- 0
config/initializers/ostatus.rb View File

@@ -5,12 +5,16 @@ host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
web_host = ENV.fetch('WEB_DOMAIN') { host }
https = ENV['LOCAL_HTTPS'] == 'true'

alternate_domains = ENV.fetch('ALTERNATE_DOMAINS') { "" }

Rails.application.configure do
config.x.local_domain = host
config.x.web_domain = web_host
config.x.use_https = https
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'

config.x.alternate_domains = alternate_domains.split(/\s*,\s*/)

config.action_mailer.default_url_options = { host: web_host, protocol: https ? 'https://' : 'http://', trailing_slash: false }
config.x.streaming_api_base_url = 'ws://localhost:4000'



+ 24
- 0
spec/controllers/well_known/webfinger_controller_spec.rb View File

@@ -6,6 +6,12 @@ describe WellKnown::WebfingerController, type: :controller do
describe 'GET #show' do
let(:alice) { Fabricate(:account, username: 'alice') }

around(:each) do |example|
before = Rails.configuration.x.alternate_domains
example.run
Rails.configuration.x.alternate_domains = before
end

it 'returns http success when account can be found' do
get :show, params: { resource: alice.to_webfinger_s }, format: :json

@@ -17,5 +23,23 @@ describe WellKnown::WebfingerController, type: :controller do

expect(response).to have_http_status(:not_found)
end

it 'returns http success when account can be found with alternate domains' do
Rails.configuration.x.alternate_domains = ["foo.org"]
username, domain = alice.to_webfinger_s.split("@")

get :show, params: { resource: "#{username}@foo.org" }, format: :json

expect(response).to have_http_status(:success)
end

it 'returns http not found when account can not be found with alternate domains' do
Rails.configuration.x.alternate_domains = ["foo.org"]
username, domain = alice.to_webfinger_s.split("@")

get :show, params: { resource: "#{username}@bar.org" }, format: :json

expect(response).to have_http_status(:not_found)
end
end
end

Loading…
Cancel
Save