Sha256: 2e9483512ccb73fcf952ba384aec2b0d128efb0bcd8cb240703f940539eb9969

Contents?: true

Size: 1.36 KB

Versions: 13

Compression:

Stored size: 1.36 KB

Contents

# frozen_string_literal: true

module Decidim
  module Debates
    # A command with all the business logic when a user updates a debate.
    class CloseDebate < Decidim::Command
      # Public: Initializes the command.
      #
      # form         - A form object with the params.
      def initialize(form)
        @form = form
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid, together with the debate.
      # - :invalid if the form was not valid and we could not proceed.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if form.invalid?

        close_debate
        broadcast(:ok, debate)
      end

      private

      attr_reader :form

      def close_debate
        @debate = Decidim.traceability.perform_action!(
          :close,
          form.debate,
          form.current_user
        ) do
          form.debate.update!(attributes)
        end

        Decidim::EventsManager.publish(
          event: "decidim.events.debates.debate_closed",
          event_class: Decidim::Debates::CloseDebateEvent,
          resource: debate,
          followers: debate.followers
        )
      end

      def attributes
        {
          conclusions: {
            I18n.locale => form.conclusions
          },
          closed_at: form.closed_at
        }
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
decidim-debates-0.29.1 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.4 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.29.0 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.3 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.29.0.rc4 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.29.0.rc3 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.29.0.rc2 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.29.0.rc1 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.2 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.1 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.0 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.0.rc5 app/commands/decidim/debates/close_debate.rb
decidim-debates-0.28.0.rc4 app/commands/decidim/debates/close_debate.rb