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
Class Method Summary collapse
Instance Method Summary collapse
-
#event: encrypt_password ⇒ Object
-
#event: validate_password_chars ⇒ Object
-
#event: validate_password_length ⇒ Object
-
#event: validate_password_present ⇒ Object
-
#history? ⇒ Boolean
-
#ok_to_read? ⇒ Boolean
-
#view: raw ⇒ Object
Methods included from Card::Set
Methods included from I18nScope
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
Class Method Details
.source_location ⇒ Object
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_password ⇒ Object
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_chars ⇒ Object
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.account_password_requirements, PASSWORD_REGEX, content ) return unless pw_requirements = (pw_requirements) errors.add :password, t(:account_password_requirements, char_type: ) end |
#event: validate_password_length ⇒ Object
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.account_password_length return if content.length >= min_pw_length errors.add :password, t(:account_password_length, num_char: min_pw_length) end |
#event: validate_password_present ⇒ Object
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
20 21 22 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 20 def history? false end |
#ok_to_read? ⇒ 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: raw ⇒ Object
60 61 62 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/password.rb', line 60 view :raw do t :account_encrypted end |