Sha256: 3e0b45b2c1f3f32a5ad3ef0c5d863c4fd276255e74580ad849957c6d124af7fe

Contents?: true

Size: 1.62 KB

Versions: 12

Compression:

Stored size: 1.62 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,
            scope: form.scope,
            comments_enabled: form.comments_enabled
          )
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
decidim-debates-0.26.10 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.9 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.8 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.7 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.5 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.4 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.3 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.2 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.1 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.0 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.0.rc2 app/commands/decidim/debates/admin/update_debate.rb
decidim-debates-0.26.0.rc1 app/commands/decidim/debates/admin/update_debate.rb