Class: Decidim::Admin::UserGroupCsvVerificationForm

Inherits:
Form show all
Includes:
HasUploadValidations, ProcessesFileLocally
Defined in:
decidim-admin/app/forms/decidim/admin/user_group_csv_verification_form.rb

Overview

A form object used to upload CSV to batch verify user groups.

Constant Summary

Constants included from Decidim::AttributeObject::TypeMap

Decidim::AttributeObject::TypeMap::Boolean, Decidim::AttributeObject::TypeMap::Decimal

Instance Attribute Summary

Attributes inherited from Decidim::AttributeObject::Form

#context

Instance Method Summary collapse

Methods included from HasUploadValidations

#attached_uploader, #maximum_avatar_size, #maximum_upload_size

Methods inherited from Decidim::AttributeObject::Form

ensure_hash, from_model, from_params, hash_from, infer_model_name, #map_model, mimic, mimicked_model_name, model_name, #persisted?, #to_key, #to_model, #to_param, #valid?, #with_context

Methods included from Decidim::AttributeObject::Model

#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h

Instance Method Details

#validate_csvObject



16
17
18
19
20
21
22
# File 'decidim-admin/app/forms/decidim/admin/user_group_csv_verification_form.rb', line 16

def validate_csv
  process_file_locally(file) do |file_path|
    CSV.open(file_path, &:readline)
  end
rescue CSV::MalformedCSVError
  errors.add(:file, :malformed)
end