Module: Card::Set::Right::Email
- Extended by:
- Card::Set
- Defined in:
- platypus/tmp/set/gem-defaults/mod014-account/right/email.rb
Overview
-- encoding : utf-8 --
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Constants included from Event::Api
Class Method Summary collapse
Instance Method Summary collapse
-
#email_required? ⇒ Boolean
-
#event: downcase_email ⇒ Object
-
#event: validate_email ⇒ Object
-
#event: validate_unique_email ⇒ Object
-
#ok_to_read? ⇒ Boolean
-
#own_email? ⇒ Boolean
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
8 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/email.rb', line 8 def self.source_location; "/Users/ethan/dev/decko/gem/mod/account/set/right/email.rb"; end |
Instance Method Details
#email_required? ⇒ Boolean
42 43 44 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/email.rb', line 42 def email_required? !left&.left&.codename == :wagn_bot end |
#event: downcase_email ⇒ Object
36 37 38 39 40 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/email.rb', line 36 event :downcase_email, :prepare_to_validate, on: :save do return if !content || content == content.downcase self.content = content.downcase end |
#event: validate_email ⇒ Object
14 15 16 17 18 19 20 21 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/email.rb', line 14 event :validate_email, :validate, on: :save do return unless content? self.content = content.strip return if content.match?(/^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i) errors.add :content, t(:account_error_invalid_address) end |
#event: validate_unique_email ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/email.rb', line 23 event :validate_unique_email, after: :validate_email, on: :save do if content.present? Auth.as_bot do cql = { right_id: EmailID, eq: content, return: :id } cql[:not] = { id: id } if id cql_comment = t(:account_search_email_duplicate, content: content) if Card.search(cql, cql_comment).first errors.add :content, t(:account_error_not_unique) end end end end |
#ok_to_read? ⇒ Boolean
46 47 48 49 50 51 52 |
# File 'platypus/tmp/set/gem-defaults/mod014-account/right/email.rb', line 46 def ok_to_read? if own_email? || Auth.always_ok? true else deny_because t(:account_deny_email_restricted) end end |