Class: Decidim::Admin::ParticipatorySpace::CreateAdmin

Inherits:
Command
  • Object
show all
Defined in:
decidim-admin/app/commands/decidim/admin/participatory_space/create_admin.rb

Instance Method Summary collapse

Methods inherited from Command

call, #evaluate, #method_missing, #respond_to_missing?, #transaction, #with_events

Constructor Details

#initialize(form, participatory_space, options = {}) ⇒ CreateAdmin

Public: Initializes the command.

form - A form object with the params. participatory_space - The ParticipatoryProcess that will hold the

user role


12
13
14
15
16
17
18
19
# File 'decidim-admin/app/commands/decidim/admin/participatory_space/create_admin.rb', line 12

def initialize(form, participatory_space, options = {})
  @form = form
  @current_user = form.current_user
  @participatory_space = participatory_space
  @event_class = options.delete(:event_class)
  @event = options.delete(:event)
  @role_class = options.delete(:role_class)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Decidim::Command

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid.

  • :invalid if the form was not valid and we could not proceed.

Returns nothing.



27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'decidim-admin/app/commands/decidim/admin/participatory_space/create_admin.rb', line 27

def call
  return broadcast(:invalid) if form.invalid?

  ActiveRecord::Base.transaction do
    @user ||= existing_user || new_user
    existing_role || create_role
    add_admin_as_follower
  end

  broadcast(:ok)
rescue ActiveRecord::RecordInvalid
  form.errors.add(:email, :taken)
  broadcast(:invalid)
end