0

Rails 3.0.9
Devise 1.5.3 で確認可能

Devise と Google OAuth2 認証を使用しています。
Google がログイン パスをチェックすると、制御がアプリケーションに返されました。

私の問題は次のとおりです。Devise が確認手順を記載した手紙を送信します。しかし、Devise が Google アカウントにそのような手紙を送らないことを望みます。ユーザーは、私のアプリケーションを通じて登録されています。

ユーザーモデルは次のとおりです。

class User < ActiveRecord::Base
    # Include default devise modules. Others available are:
    # :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
    devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable, :confirmable, :omniauthable

    validates_presence_of :user_name, :address, :tel

    # Setup accessible (or protected) attributes for your model
    attr_accessible :user_name, :address, :tel, :attorney_number, :email, :password, :password_confirmation, :remember_me 

    has_many :eclaims
    has_many :createdtemplates

    before_create do |user|
        user.with_agreement = 1
    end

    def self.find_for_google_oauth2(access_token, signed_in_resource=nil)
        data = access_token.info
        user = User.where(:email => data["email"]).first

        unless user
            user = User.create(
                       user_name: 'no defined',
                       address: 'no defined',
                       tel: 'no defined',
                       attorney_number: nil,
                       email: data["email"],
                       encrypted_password: Devise.friendly_token[0,20],
                      )
        end
        user
    end 
end

ユーザー::OmniauthCallbacksController

class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
    def google_oauth2
        # You need to implement the method below in your model (e.g. app/models/user.rb)
        @user = User.find_for_google_oauth2(request.env["omniauth.auth"], current_user)

        if @user.persisted?
          flash[:notice] = I18n.t "devise.omniauth_callbacks.success", :kind => "Google"
          sign_in_and_redirect @user, :event => :authentication
        else
          session["devise.google_data"] = request.env["omniauth.auth"]
          redirect_to new_user_registration_url
        end
    end 
end

ルート.rb:

EFiling2::Application.routes.draw do
  root :to => "home#index"

  devise_for :users, 
    :path_names => { :sign_up => "register", :sign_in => "login", :sign_out => "logout" }, 
    :controllers => { 
      :sessions => "sessions", 
      :registrations => "registrations", 
      :confirmations => "confirmations", 
      :passwords => "passwords",
      :omniauth_callbacks => "users/omniauth_callbacks"
    }
end
4

2 に答える 2

1

電話する代わりにcreate...

user = User.create(user_name: 'no defined', ...)

呼び出すことができるようにユーザーオブジェクトを構築しますconfirm!...

user = User.new
...
user.confirm!
user.save!
于 2012-08-29T06:13:25.777 に答える
1

nomericalの答えへのアドオンです。これも使えますが、

user.skip_confirmation! 

ほぼ同じことを別の方法で行うだけです。

于 2013-12-30T10:28:59.917 に答える