Sha256: b550bf3c9f912548e68ac60beba6321f2b189ad589969b7cd73b8e8c933676ea
Contents?: true
Size: 1.04 KB
Versions: 39
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
39 entries across 39 versions & 1 rubygems