- if any_auth
- @token.authorize!(@user)
- redirect_url = params[:oauth_callback] || @token.client_application.callback_url
- if redirect_url
- redirect_to "#{redirect_url}?oauth_token=#{@token.token}"
- else
- render :action => "authorize_success"
- end
+ def oauth1_authorize
+ override_content_security_policy_directives(:form_action => []) if CSP_ENFORCE || defined?(CSP_REPORT_URL)
+
+ 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"