Module: Card::Set::Right::Password

Extended by:
Card::Set
Defined in:
platypus/tmp/set/gem-defaults/mod014-account/right/password.rb

Overview

Set: All “+Password” cards

Defined Under Namespace

Modules: HtmlFormat

Constant Summary collapse

PASSWORD_REGEX =
{
  lower: /[a-z]/,
  upper: /[A-Z]/,
  special_char: /[!"#$%&'()*+,-.\/:;<=>?@\[\]\\^_`{|}~]/,
  number: /\d+/,
  letter: /[a-zA-Z]/
}.freeze

Constants included from Helpers

Helpers::SET_PATTERN_TEST_REGEXP

Constants included from Event::Api

Event::Api::OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Card::Set

reset

Methods included from I18nScope

#mod_name, #scope

Methods included from Card::Set::Registrar

#extended, #finalize_load, #process_base_modules, #register_set

Methods included from Helpers

#format_module, #format_modules, #method_missing, #modules, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscored_name

Methods included from AdvancedApi

#assign_type, #attachment, #define_set_from_error, #ensure_set, #setting_opts, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.source_locationObject



7
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/mod/account/set/right/password.rb"; end

Instance Method Details

#event: encrypt_passwordObject



28
29
30
31
32
33
34
35
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 28

event :encrypt_password, :store, on: :save, changed: :content do
  salt = left&.salt
  self.content = Auth.encrypt content, salt

  # errors.add :password, 'need a valid salt'
  # turns out we have a lot of existing accounts without a salt.
  # not sure when that broke??
end

#event: validate_password_charsObject



44
45
46
47
48
49
50
51
52
53
54
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 44

event :validate_password_chars, :validate, on: :save do
  pw_requirements = check_password_regex(
    Cardio.config.,
    PASSWORD_REGEX,
    content
  )
  return unless pw_requirements

  error_message = consolidated_password_error_message(pw_requirements)
  errors.add :password, t(:account_password_requirements, char_type: error_message)
end

#event: validate_password_lengthObject



37
38
39
40
41
42
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 37

event :validate_password_length, :validate, on: :save do
  min_pw_length = Cardio.config.
  return if content.length >= min_pw_length

  errors.add :password, t(:account_password_length, num_char: min_pw_length)
end

#event: validate_password_presentObject



56
57
58
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 56

event :validate_password_present, :prepare_to_validate, on: :update do
  abort :success if content.blank?
end

#history?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 20

def history?
  false
end

#ok_to_read?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 24

def ok_to_read?
  own_account? || super
end

#view: rawObject



60
61
62
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 60

view :raw do
  t :account_encrypted
end