Class: Decidim::Admin::ParticipatorySpacePrivateUserCsvImportForm

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

Overview

A form object used to upload CSV to batch participatory space private users.

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



20
21
22
23
24
25
26
27
28
# File 'decidim-admin/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb', line 20

def validate_csv
  return if file.blank?

  process_import_file(file) do |(, user_name)|
    errors.add(:user_name, :invalid) if user_name.blank? || !user_name.match?(UserBaseEntity::REGEXP_NAME)
  end
rescue CSV::MalformedCSVError
  errors.add(:file, :malformed)
end