Sha256: b82fb5a410a471afba0cc86623fcc1f826de03c0785ea0bd1446f864a52790fa

Contents?: true

Size: 1.53 KB

Versions: 8

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

module Decidim
  module Debates
    module Admin
      # This command is executed when the user changes a Debate from the admin
      # panel.
      class UpdateDebate < Rectify::Command
        # Initializes a UpdateDebate Command.
        #
        # form - The form from which to get the data.
        # debate - The current instance of the page to be updated.
        def initialize(form, debate)
          @form = form
          @debate = debate
        end

        # Updates the debate if valid.
        #
        # Broadcasts :ok if successful, :invalid otherwise.
        def call
          return broadcast(:invalid) if form.invalid?

          update_debate
          broadcast(:ok)
        end

        private

        attr_reader :debate, :form

        def update_debate
          parsed_title = Decidim::ContentProcessor.parse_with_processor(:hashtag, form.title, current_organization: form.current_organization).rewrite
          parsed_description = Decidim::ContentProcessor.parse_with_processor(:hashtag, form.description, current_organization: form.current_organization).rewrite

          Decidim.traceability.update!(
            debate,
            form.current_user,
            category: form.category,
            title: parsed_title,
            description: parsed_description,
            information_updates: form.information_updates,
            instructions: form.instructions,
            end_time: form.end_time,
            start_time: form.start_time
          )
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
decidim-debates-0.23.6 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.5 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.4 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.3 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.2 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.1 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.1.rc1 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.23.0 app/commands/decidim/debates/admin/update_debate.rb