Sha256: 171cbff40122fb7d91c599c68a35033a12f0dd375e8a17eb8a2557e9e7abd7cd

Contents?: true

Size: 1.72 KB

Versions: 6

Compression:

Stored size: 1.72 KB

Contents

# frozen_string_literal: true

module Decidim
  module EnhancedTextwork
    # A command with all the business logic when a user updates a collaborative_draft.
    class UpdateCollaborativeDraft < Rectify::Command
      include HashtagsMethods

      # Public: Initializes the command.
      #
      # form         - A form object with the params.
      # current_user - The current user.
      # collaborative_draft - the collaborative_draft to update.
      def initialize(form, current_user, collaborative_draft)
        @form = form
        @current_user = current_user
        @collaborative_draft = collaborative_draft
      end

      # Executes the command. Broadcasts these events:
      #
      # - :ok when everything is valid, together with the collaborative_draft.
      # - :invalid if the form wasn't valid and we couldn't proceed.
      #
      # Returns nothing.
      def call
        return broadcast(:invalid) if form.invalid?
        return broadcast(:invalid) unless collaborative_draft.editable_by?(current_user)

        transaction do
          update_collaborative_draft
        end

        broadcast(:ok, collaborative_draft)
      end

      private

      attr_reader :form, :collaborative_draft, :current_user

      def update_collaborative_draft
        Decidim.traceability.update!(
          @collaborative_draft,
          @current_user,
          attributes,
          visibility: "public-only"
        )
      end

      def attributes
        {
          title: title_with_hashtags,
          body: body_with_hashtags,
          category: form.category,
          scope: form.scope,
          address: form.address,
          latitude: form.latitude,
          longitude: form.longitude
        }
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-enhanced_textwork-1.0.5 app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb
decidim-enhanced_textwork-1.0.4 app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb
decidim-enhanced_textwork-1.0.3 app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb
decidim-enhanced_textwork-1.0.2 app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb
decidim-enhanced_textwork-1.0.1 app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb
decidim-enhanced_textwork-1.0.0 app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb