This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-14 04:53:31 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class IntentsController < ApplicationController
|
2018-06-09 22:47:50 +02:00
|
|
|
before_action :check_uri
|
|
|
|
rescue_from Addressable::URI::InvalidURIError, with: :handle_invalid_uri
|
2017-08-14 04:53:31 +02:00
|
|
|
|
2018-06-09 22:47:50 +02:00
|
|
|
def show
|
2017-08-14 04:53:31 +02:00
|
|
|
if uri.scheme == 'web+mastodon'
|
|
|
|
case uri.host
|
|
|
|
when 'follow'
|
|
|
|
return redirect_to authorize_follow_path(acct: uri.query_values['uri'].gsub(/\Aacct:/, ''))
|
|
|
|
when 'share'
|
|
|
|
return redirect_to share_path(text: uri.query_values['text'])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
not_found
|
|
|
|
end
|
2018-06-09 22:47:50 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_uri
|
|
|
|
not_found if uri.blank?
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_invalid_uri
|
|
|
|
not_found
|
|
|
|
end
|
|
|
|
|
|
|
|
def uri
|
|
|
|
@uri ||= Addressable::URI.parse(params[:uri])
|
|
|
|
end
|
2017-08-14 04:53:31 +02:00
|
|
|
end
|