Sha256: 21df495d914ecf526d84a6e0cfc782fdf7deff379431a45999606303b96e3008
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true require "csv" module Decidim module Admin # A command with all the business logic when processing the CSV to verify # user groups. class ProcessUserGroupVerificationCsv < Rectify::Command # Public: Initializes the command. # # form - the form object containing the uploaded file def initialize(form) @form = form end # Executes the command. Broadcasts these events: # # - :ok when everything is valid. # - :invalid if the form wasn't valid and we couldn't proceed. # # Returns nothing. def call return broadcast(:invalid) unless @form.valid? process_csv broadcast(:ok) end private def process_csv verifier = @form.current_user organization = @form.current_organization CSV.foreach(@form.file.path) do |row| email = row[0] VerifyUserGroupFromCsvJob.perform_later(email, verifier, organization) if email.present? end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems