Class: Decidim::Plans::PublishPlan

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

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(plan, current_user) ⇒ PublishPlan

Public: Initializes the command.

plan - The plan to publish. current_user - The current user.



11
12
13
14
# File 'app/commands/decidim/plans/publish_plan.rb', line 11

def initialize(plan, current_user)
  @plan = plan
  @current_user = current_user
end

Instance Method Details

#callObject

Executes the command. Broadcasts these events:

  • :ok when everything is valid and the plan is published.

  • :invalid if the plan’s author is not the current user.

Returns nothing.



22
23
24
25
26
27
28
29
30
31
32
33
# File 'app/commands/decidim/plans/publish_plan.rb', line 22

def call
  return broadcast(:invalid) unless @plan.authored_by?(@current_user)

  transaction do
    publish_plan
    send_notification
    send_notification_to_participatory_space
    send_notification_to_proposal_authors
  end

  broadcast(:ok, @plan)
end