- def oauthorize
- @token = RequestToken.find_by_token params[:oauth_token]
- unless @token.invalidated?
- if request.post?
- any_auth = false
- @token.client_application.permissions.each do |pref|
- if params[pref]
- logger.info "OAUTHORIZE PARAMS found #{pref}"
- @token.write_attribute(pref, true)
- any_auth ||= true
- else
- @token.write_attribute(pref, false)
- end
- end
-
- 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 Settings.csp_enforce || Settings.key?(: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"