mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 15:31:11 +01:00
3c6503038e
* Add protocol handler. Handle follow intents * Add share intent * Improve code in intents controller * Adjust share form CSS
18 lines
446 B
Ruby
18 lines
446 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IntentsController < ApplicationController
|
|
def show
|
|
uri = Addressable::URI.parse(params[:uri])
|
|
|
|
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
|
|
end
|