Class: Decidim::CreateOmniauthRegistration
- Inherits:
-
Rectify::Command
- Object
- Rectify::Command
- Decidim::CreateOmniauthRegistration
- Defined in:
- decidim-core/app/commands/decidim/create_omniauth_registration.rb
Overview
A command with all the business logic to create a user from omniauth
Instance Method Summary collapse
-
#call ⇒ Object
Executes the command.
-
#initialize(form, verified_email = nil) ⇒ CreateOmniauthRegistration
constructor
Public: Initializes the command.
Constructor Details
#initialize(form, verified_email = nil) ⇒ CreateOmniauthRegistration
Public: Initializes the command.
form - A form object with the params.
9 10 11 12 |
# File 'decidim-core/app/commands/decidim/create_omniauth_registration.rb', line 9 def initialize(form, verified_email = nil) @form = form @verified_email = verified_email end |
Instance Method Details
#call ⇒ Object
Executes the command. Broadcasts these events:
-
:ok when everything is valid.
-
:invalid if the form wasn’t valid and we couldn’t proceed.
Returns nothing.
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'decidim-core/app/commands/decidim/create_omniauth_registration.rb', line 20 def call verify_oauth_signature! begin return broadcast(:ok, existing_identity.user) if existing_identity return broadcast(:invalid) if form.invalid? transaction do create_or_find_user create_identity end broadcast(:ok, @user) rescue ActiveRecord::RecordInvalid => error broadcast(:error, error.record) end end |