Sha256: ae2cb634c9a54d5602b224330ab94287750b2f91bc4fb3aea369ed7ba35332fb

Contents?: true

Size: 1.41 KB

Versions: 19

Compression:

Stored size: 1.41 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 < Decidim::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.
      # - :has_supports if the proposal already has supports or does not belong to current user.
      #
      # Returns nothing.
      def call
        return broadcast(:has_supports) 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

19 entries across 19 versions & 1 rubygems

Version Path
decidim-proposals-0.28.4 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.9 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.28.3 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.8 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.28.2 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.7 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.28.1 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.6 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.28.0 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.5 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.28.0.rc5 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.28.0.rc4 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.4 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.3 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.2 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.1 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.0 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.0.rc2 app/commands/decidim/proposals/withdraw_proposal.rb
decidim-proposals-0.27.0.rc1 app/commands/decidim/proposals/withdraw_proposal.rb