Sha256: c8fd10f89b6aebf4ca37f3b7365ed7c0a4749fc90c7eac3ea0387ec2dd781433

Contents?: true

Size: 1.4 KB

Versions: 8

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

module Decidim
  module Elections
    module Admin
      # This command is executed when the user creates an Election
      # from the admin panel.
      class CreateElection < Rectify::Command
        include ::Decidim::AttachmentMethods
        include ::Decidim::GalleryMethods

        def initialize(form)
          @form = form
        end

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

          if process_gallery?
            build_gallery
            return broadcast(:invalid) if gallery_invalid?
          end

          transaction do
            create_election!
            create_gallery if process_gallery?
          end

          broadcast(:ok, election)
        end

        private

        attr_reader :form, :election, :gallery

        def create_election!
          attributes = {
            title: form.title,
            description: form.description,
            start_time: form.start_time,
            end_time: form.end_time,
            component: form.current_component
          }

          @election = Decidim.traceability.create!(
            Election,
            form.current_user,
            attributes,
            visibility: "all"
          )
          @attached_to = @election
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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