Class: Decidim::Plans::Admin::CreatePlan

Inherits:
Rectify::Command
  • Object
show all
Includes:
Decidim::Plans::AttachmentMethods
Defined in:
app/commands/decidim/plans/admin/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) ⇒ CreatePlan

Public: Initializes the command.

form - A form object with the params.



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

def initialize(form)
  @form = form
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.



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

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
      link_proposals
      update_attachments if process_attachments?
      send_notification
    end
  end

  broadcast(:ok, plan)
end