- if any_auth
- @token.authorize!(@user)
- if @token.oauth10?
- redirect_url = params[:oauth_callback] || @token.client_application.callback_url
- else
- redirect_url = @token.oob? ? @token.client_application.callback_url : @token.callback_url
- end
- if redirect_url and not redirect_url.empty?
- if @token.oauth10?
- redirect_to "#{redirect_url}?oauth_token=#{@token.token}"
- else
- redirect_to "#{redirect_url}?oauth_token=#{@token.token}&oauth_verifier=#{@token.verifier}"
- end
- else
- render :action => "authorize_success"
- end
+ def oauth1_authorize
+ append_content_security_policy_directives(:form_action => %w[*])
+
+ if @token.invalidated?
+ @message = t "oauth.authorize_failure.invalid"
+ render :action => "authorize_failure"
+ elsif request.post?
+ if user_authorizes_token?
+ @token.authorize!(current_user)
+ callback_url = if @token.oauth10?
+ params[:oauth_callback] || @token.client_application.callback_url
+ else
+ @token.oob? ? @token.client_application.callback_url : @token.callback_url
+ end
+ @redirect_url = URI.parse(callback_url) if callback_url.present?
+
+ if @redirect_url.to_s.blank?
+ render :action => "authorize_success"