Sha256: 4a9699aab2e358a633924cbbc7c49eff60b3e8ec9bb9fa7c40f56e7d746e0f3f

Contents?: true

Size: 1.3 KB

Versions: 7

Compression:

Stored size: 1.3 KB

Contents

# frozen_string_literal: true

require "csv"

module Decidim
  module Votings
    module Census
      module Admin
        # A command with the business logic to update a census dataset.
        #
        # dataset - the Decidim::Votings::Census::Dataset to update
        # attributes - the hash of attibutes to update
        # user - the user performing the action (used for tracing)
        class UpdateDataset < Decidim::Command
          def initialize(dataset, attributes, user)
            @dataset = dataset
            @attributes = attributes
            @user = user
          end

          # Executes the command. Broadcast this events:
          # - :ok when everything is valid
          # - :invalid when the input was not valid and could not proceed
          #
          # Returns nothing.
          def call
            return broadcast(:invalid) unless valid?

            update_census_dataset!

            broadcast(:ok)
          end

          attr_reader :dataset, :attributes, :user

          def valid?
            user.present? && dataset.present? && attributes.present?
          end

          def update_census_dataset!
            Decidim.traceability.update!(
              dataset,
              user,
              attributes
            )
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-elections-0.28.4 app/commands/decidim/votings/census/admin/update_dataset.rb
decidim-elections-0.28.3 app/commands/decidim/votings/census/admin/update_dataset.rb
decidim-elections-0.28.2 app/commands/decidim/votings/census/admin/update_dataset.rb
decidim-elections-0.28.1 app/commands/decidim/votings/census/admin/update_dataset.rb
decidim-elections-0.28.0 app/commands/decidim/votings/census/admin/update_dataset.rb
decidim-elections-0.28.0.rc5 app/commands/decidim/votings/census/admin/update_dataset.rb
decidim-elections-0.28.0.rc4 app/commands/decidim/votings/census/admin/update_dataset.rb