Class: Decidim::Plans::CreatePlan

Inherits:
Rectify::Command
  • Object
show all
Includes:
AttachmentMethods
Defined in:
app/commands/decidim/plans/create_plan.rb

Overview

A command with all the business logic when a user creates a new plan.

Instance Method Summary collapse

Constructor Details

#initialize(form, current_user) ⇒ CreatePlan

Public: Initializes the command.

form - A form object with the params. current_user - The current user.



12
13
14
15
16
# File 'app/commands/decidim/plans/create_plan.rb', line 12

def initialize(form, current_user)
  @form = form
  @current_user = current_user
  @attached_to = nil
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid, together with the plan.

  • :invalid if the form wasn’t valid and we couldn’t proceed.

Returns nothing.



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'app/commands/decidim/plans/create_plan.rb', line 24

def call
  if process_attachments?
    return broadcast(:invalid) if attachments_invalid?
  end

  if form.invalid?
    mark_attachment_reattachment
    return broadcast(:invalid)
  end

  Decidim::Plans.tracer.trace!(@form.current_user) do
    transaction do
      create_plan
      create_plan_contents
      update_attachments if process_attachments?
    end
  end

  broadcast(:ok, plan)
end