Sha256: 01ae3327594f7e5503806bf734a454b7af0212db04e6c46637f0c3a8f030e1ff

Contents?: true

Size: 1.43 KB

Versions: 19

Compression:

Stored size: 1.43 KB

Contents

# frozen_string_literal: true

module Decidim
  module Amendable
    # A command with all the business logic to withdraw an amendment.
    class Withdraw < Decidim::Command
      # Public: Initializes the command.
      #
      # amendment     - The amendment to withdraw.
      # current_user  - The current user.
      def initialize(amendment, current_user)
        @amendment = amendment
        @amender = amendment.amender
        @current_user = current_user
        @emendation = amendment.emendation
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid, together with the resource.
      # - :invalid if the resource already has supports or does not belong to current user.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) unless emendation.votes.empty? && amender == current_user

        transaction do
          withdraw_amendment!
          notify_emendation_state_change!
        end

        broadcast(:ok, emendation)
      end

      private

      attr_reader :amendment, :amender, :current_user, :emendation

      def withdraw_amendment!
        @amendment = Decidim.traceability.update!(
          amendment,
          current_user,
          { state: "withdrawn" },
          visibility: "public-only"
        )
      end

      def notify_emendation_state_change!
        emendation.process_amendment_state_change!
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

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