Module: Devise::Models::DecidimValidatable

Defined in:
decidim-core/lib/devise/models/decidim_validatable.rb

Overview

Validatable creates all needed validations for a user email and password. Automatically validate if the email is present, unique and its format is valid. Also tests presence of password, confirmation and length.

Options

Validatable adds the following options to devise_for:

* +email_regexp+: the regular expression used to validate e-mails;

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

VALIDATIONS =

All validations used by this module.

[:validates_presence_of, :validates_uniqueness_of, :validates_format_of,
:validates_length_of].freeze

Class Method Summary collapse

Class Method Details

.assert_validations_api!(base) ⇒ Object

:nodoc:



39
40
41
42
43
44
45
46
# File 'decidim-core/lib/devise/models/decidim_validatable.rb', line 39

def self.assert_validations_api!(base) # :nodoc:
  unavailable_validations = VALIDATIONS.reject { |v| base.respond_to?(v) }

  unless unavailable_validations.empty?
    raise "Could not use :validatable module since #{base} does not respond " \
          "to the following methods: #{unavailable_validations.to_sentence}."
  end
end

.included(base) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'decidim-core/lib/devise/models/decidim_validatable.rb', line 24

def self.included(base)
  base.extend ClassMethods
  assert_validations_api!(base)

  base.class_eval do
    validates_presence_of :email, if: :email_required?
    validates_uniqueness_of :email, allow_blank: true, if: :email_changed?, scope: :organization
    validates_format_of :email, with: email_regexp, allow_blank: true, if: :email_changed?

    validates_presence_of :password, if: :password_required?

    validates :password, password: { name: :name, email: :email, username: :nickname }
  end
end

.required_fields(_klass) ⇒ Object



20
21
22
# File 'decidim-core/lib/devise/models/decidim_validatable.rb', line 20

def self.required_fields(_klass)
  []
end