1 require "oauth/controllers/provider_controller"
3 class OauthController < ApplicationController
4 include OAuth::Controllers::ProviderController
14 def user_authorizes_token?
17 @token.client_application.permissions.each do |pref|
19 @token.write_attribute(pref, true)
22 @token.write_attribute(pref, false)
30 @token = current_user.oauth_tokens.find_by_token params[:token]
33 flash[:notice] = t("oauth.revoke.flash", :application => @token.client_application.name)
35 redirect_to oauth_clients_url(:display_name => @token.user.display_name)
42 render :action => "authorize_failure"
46 if @token.invalidated?
47 @message = t "oauth.oauthorize_failure.invalid"
48 render :action => "authorize_failure"
51 if user_authorizes_token?
52 @token.authorize!(current_user)
54 callback_url = params[:oauth_callback] || @token.client_application.callback_url
56 callback_url = @token.oob? ? @token.client_application.callback_url : @token.callback_url
58 @redirect_url = URI.parse(callback_url) unless callback_url.blank?
60 if @redirect_url.to_s.blank?
61 render :action => "authorize_success"
63 @redirect_url.query = if @redirect_url.query.blank?
64 "oauth_token=#{@token.token}"
67 "&oauth_token=#{@token.token}"
70 unless @token.oauth10?
71 @redirect_url.query += "&oauth_verifier=#{@token.verifier}"
74 redirect_to @redirect_url.to_s
78 @message = t("oauth.oauthorize_failure.denied", :app_name => @token.client_application.name)
79 render :action => "authorize_failure"