Sha256: e547811488796fa26d7a72e20c188f1f662ba08e48796b66942c1a2600693b83

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

module Decidim
  module Proposals
    # A command with all the business logic when a user withdraws a new proposal.
    class WithdrawProposal < Rectify::Command
      # Public: Initializes the command.
      #
      # proposal     - The proposal to withdraw.
      # current_user - The current user.
      def initialize(proposal, current_user)
        @proposal = proposal
        @current_user = current_user
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid, together with the proposal.
      # - :invalid if the proposal already has supports or does not belong to current user.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if @proposal.votes.any?

        transaction do
          change_proposal_state_to_withdrawn
          reject_emendations_if_any
        end

        broadcast(:ok, @proposal)
      end

      private

      def change_proposal_state_to_withdrawn
        @proposal.update state: "withdrawn"
      end

      def reject_emendations_if_any
        return if @proposal.emendations.empty?

        @proposal.emendations.each do |emendation|
          @form = form(Decidim::Amendable::RejectForm).from_params(id: emendation.amendment.id)
          result = Decidim::Amendable::Reject.call(@form)
          return result[:ok] if result[:ok]
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-proposals-0.16.1 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.16.0 app/commands/decidim/proposals/withdraw_proposal.rb