Skip to content

Commit

Permalink
Validation for whitelisted domains only (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
bestwebua committed Jun 26, 2019
1 parent d2196be commit a969133
Show file tree
Hide file tree
Showing 11 changed files with 193 additions and 41 deletions.
1 change: 1 addition & 0 deletions .reek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ detectors:

Attribute:
exclude:
- Truemail::Configuration#whitelist_validation
- Truemail::Configuration#smtp_safe_check
- Truemail::Wrapper#attempts

Expand Down
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ AllCops:
Metrics/LineLength:
Max: 140

Metrics/ClassLength:
Max: 150

Metrics/MethodLength:
Max: 15

Metrics/CyclomaticComplexity:
Enabled: false

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
truemail (1.1.0)
truemail (1.2.0)

GEM
remote: https://rubygems.org/
Expand Down
68 changes: 61 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Truemail

[![Maintainability](https://api.codeclimate.com/v1/badges/657aa241399927dcd2e2/maintainability)](https://codeclimate.com/github/rubygarage/truemail/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/657aa241399927dcd2e2/test_coverage)](https://codeclimate.com/github/rubygarage/truemail/test_coverage) [![Gem Version](https://badge.fury.io/rb/truemail.svg)](https://badge.fury.io/rb/truemail) [![CircleCI](https://circleci.com/gh/rubygarage/truemail/tree/master.svg?style=svg)](https://circleci.com/gh/rubygarage/truemail/tree/master) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)
[![Maintainability](https://api.codeclimate.com/v1/badges/657aa241399927dcd2e2/maintainability)](https://codeclimate.com/github/rubygarage/truemail/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/657aa241399927dcd2e2/test_coverage)](https://codeclimate.com/github/rubygarage/truemail/test_coverage) [![CircleCI](https://circleci.com/gh/rubygarage/truemail/tree/master.svg?style=svg)](https://circleci.com/gh/rubygarage/truemail/tree/master) [![Gem Version](https://badge.fury.io/rb/truemail.svg)](https://badge.fury.io/rb/truemail) [![Downloads](https://img.shields.io/gem/dt/truemail.svg?colorA=004d99&colorB=0073e6)](https://rubygems.org/gems/truemail) [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](CODE_OF_CONDUCT.md)

The Truemail gem helps you validate emails by regex pattern, presence of domain mx-records, and real existence of email account on a current email server. Also Truemail gem allows performing an audit of the host in which runs.

Expand Down Expand Up @@ -90,7 +90,12 @@ Truemail.configure do |config|
# return true. Other validations will not processed even if it was defined in validation_type_for
config.whitelisted_domains = ['somedomain1.com', 'somedomain2.com']

# Optional parameter. Validation of email which contains whitelisted domain always will
# Optional parameter. With this option Truemail will validate email which contains whitelisted
# domain only, i.e. if domain whitelisted, validation will passed to Regex, MX or SMTP validators.
# Validation of email which not contains whitelisted domain always will return false.
config.whitelist_validation = true

# Optional parameter. Validation of email which contains blacklisted domain always will
# return false. Other validations will not processed even if it was defined in validation_type_for
config.blacklisted_domains = ['somedomain1.com', 'somedomain2.com']

Expand All @@ -116,6 +121,7 @@ Truemail.configuration
@connection_attempts=3,
@validation_type_by_domain={},
@whitelisted_domains=[],
@whitelist_validation=true,
@blacklisted_domains=[],
@verifier_domain="somedomain.com",
@verifier_email="[email protected]"
Expand All @@ -141,6 +147,7 @@ Truemail.configuration
@connection_attempts=1,
@validation_type_by_domain={},
@whitelisted_domains=[],
@whitelist_validation=true,
@blacklisted_domains=[],
@verifier_domain="somedomain.com",
@verifier_email="[email protected]",
Expand Down Expand Up @@ -168,7 +175,8 @@ Please note, other validations will not processed even if it was defined in ```v

**Sequence of domain list check:**
1. Whitelist check
2. Blacklist check
2. Whitelist validation check
3. Blacklist check

Example of usage:

Expand Down Expand Up @@ -201,6 +209,53 @@ Truemail.validate('[email protected]')
@validation_type=:whitelist>
```

##### Whitelist validation case

```ruby
require 'truemail'

Truemail.configure do |config|
config.verifier_email = '[email protected]'
config.whitelisted_domains = ['white-domain.com']
config.whitelist_validation = true
end
```

When email domain in whitelist and ```whitelist_validation``` is sets equal to ```true``` validation type will be passed to other validators.
Validation of email which not contains whitelisted domain always will return ```false```.

###### Email has whitelisted domain

```ruby
Truemail.validate('[email protected]', with: :regex)

#<Truemail::Validator:0x000055b8429f3490
@result=#<struct Truemail::Validator::Result
success=true,
email="[email protected]",
domain=nil,
mail_servers=[],
errors={},
smtp_debug=nil>,
@validation_type=:regex>
```

###### Email hasn't whitelisted domain

```ruby
Truemail.validate('[email protected]', with: :regex)

#<Truemail::Validator:0x000055b8429f3490
@result=#<struct Truemail::Validator::Result
success=false,
email="[email protected]",
domain=nil,
mail_servers=[],
errors={},
smtp_debug=nil>,
@validation_type=:blacklist>
```

##### Blacklist case

When email in blacklist, validation type will be redefined too. Validation result returns ```false```
Expand Down Expand Up @@ -384,6 +439,7 @@ Truemail.validate('[email protected]')
@smtp_safe_check=false,
@validation_type_by_domain={},
@whitelisted_domains=[],
@whitelist_validation=false,
@blacklisted_domains=[],
@verifier_domain="example.com",
@verifier_email="[email protected]">,
Expand Down Expand Up @@ -440,6 +496,7 @@ Truemail.validate('[email protected]')
@smtp_safe_check=true,
@validation_type_by_domain={},
@whitelisted_domains=[],
@whitelist_validation=false,
@blacklisted_domains=[],
@verifier_domain="example.com",
@verifier_email="[email protected]">,
Expand Down Expand Up @@ -480,6 +537,7 @@ Truemail.validate('[email protected]')
@smtp_safe_check=true,
@validation_type_by_domain={},
@whitelisted_domains=[],
@whitelist_validation=false,
@blacklisted_domains=[],
@verifier_domain="example.com",
@verifier_email="[email protected]">,
Expand Down Expand Up @@ -553,10 +611,6 @@ end
```

---
## ToDo

Fail validations logger

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rubygarage/truemail. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. Please check the [open tikets](https://github.com/rubygarage/truemail/issues). Be shure to follow Contributor Code of Conduct below and our [Contributing Guidelines](CONTRIBUTING.md).
Expand Down
31 changes: 20 additions & 11 deletions lib/truemail/configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,14 @@ class Configuration
:whitelisted_domains,
:blacklisted_domains

attr_accessor :smtp_safe_check
attr_accessor :whitelist_validation, :smtp_safe_check

alias retry_count connection_attempts

def initialize
@email_pattern = Truemail::RegexConstant::REGEX_EMAIL_PATTERN
@smtp_error_body_pattern = Truemail::RegexConstant::REGEX_SMTP_ERROR_BODY_PATTERN
@connection_timeout = Truemail::Configuration::DEFAULT_CONNECTION_TIMEOUT
@response_timeout = Truemail::Configuration::DEFAULT_RESPONSE_TIMEOUT
@connection_attempts = Truemail::Configuration::DEFAULT_CONNECTION_ATTEMPTS
@default_validation_type = Truemail::Configuration::DEFAULT_VALIDATION_TYPE
@validation_type_by_domain = {}
@whitelisted_domains = []
@blacklisted_domains = []
@smtp_safe_check = false
instance_initializer.each do |instace_variable, value|
instance_variable_set(:"@#{instace_variable}", value)
end
end

%i[email_pattern smtp_error_body_pattern].each do |method|
Expand Down Expand Up @@ -84,6 +77,22 @@ def complete?

private

def instance_initializer
{
email_pattern: Truemail::RegexConstant::REGEX_EMAIL_PATTERN,
smtp_error_body_pattern: Truemail::RegexConstant::REGEX_SMTP_ERROR_BODY_PATTERN,
connection_timeout: Truemail::Configuration::DEFAULT_CONNECTION_TIMEOUT,
response_timeout: Truemail::Configuration::DEFAULT_RESPONSE_TIMEOUT,
connection_attempts: Truemail::Configuration::DEFAULT_CONNECTION_ATTEMPTS,
default_validation_type: Truemail::Configuration::DEFAULT_VALIDATION_TYPE,
validation_type_by_domain: {},
whitelisted_domains: [],
whitelist_validation: false,
blacklisted_domains: [],
smtp_safe_check: false
}
end

def raise_unless(argument_context, argument_name, condition)
raise Truemail::ArgumentError.new(argument_context, argument_name) unless condition
end
Expand Down
14 changes: 11 additions & 3 deletions lib/truemail/validate/domain_list_match.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class DomainListMatch < Truemail::Validate::Base
ERROR = 'blacklisted email'

def run
return success(true) if whitelisted_domain?
return unless blacklisted_domain?
return success(true) if whitelisted_domain? && !whitelist_validation?
return unless whitelist_validation_case? || blacklisted_domain?
success(false)
add_error(Truemail::Validate::DomainListMatch::ERROR)
end
Expand All @@ -19,7 +19,15 @@ def email_domain
end

def whitelisted_domain?
configuration.whitelisted_domains.include?(email_domain)
@whitelisted_domain ||= configuration.whitelisted_domains.include?(email_domain)
end

def whitelist_validation?
configuration.whitelist_validation
end

def whitelist_validation_case?
whitelist_validation? && !whitelisted_domain?
end

def blacklisted_domain?
Expand Down
2 changes: 1 addition & 1 deletion lib/truemail/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Truemail
VERSION = '1.1.0'
VERSION = '1.2.0'
end
1 change: 1 addition & 0 deletions spec/support/shared_examples/has_attr_accessor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module Truemail
connection_attempts
default_validation_type
whitelisted_domains
whitelist_validation
blacklisted_domains
smtp_safe_check
].each do |attribute|
Expand Down
1 change: 1 addition & 0 deletions spec/support/shared_examples/sets_default_configuration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module Truemail
expect(configuration_instance.default_validation_type).to eq(Truemail::Configuration::DEFAULT_VALIDATION_TYPE)
expect(configuration_instance.validation_type_by_domain).to eq({})
expect(configuration_instance.whitelisted_domains).to eq([])
expect(configuration_instance.whitelist_validation).to eq(false)
expect(configuration_instance.blacklisted_domains).to eq([])
expect(configuration_instance.smtp_safe_check).to be(false)
end
Expand Down
4 changes: 4 additions & 0 deletions spec/truemail/configuration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
expect(configuration_instance.default_validation_type).to eq(Truemail::Configuration::DEFAULT_VALIDATION_TYPE)
expect(configuration_instance.validation_type_by_domain).to eq({})
expect(configuration_instance.whitelisted_domains).to eq([])
expect(configuration_instance.whitelist_validation).to eq(false)
expect(configuration_instance.blacklisted_domains).to eq([])
expect(configuration_instance.smtp_safe_check).to be(false)
end
Expand All @@ -57,6 +58,7 @@
.and not_change(configuration_instance, :default_validation_type)
.and not_change(configuration_instance, :validation_type_by_domain)
.and not_change(configuration_instance, :whitelisted_domains)
.and not_change(configuration_instance, :whitelist_validation)
.and not_change(configuration_instance, :blacklisted_domains)
.and not_change(configuration_instance, :smtp_safe_check)

Expand All @@ -78,6 +80,7 @@
.and not_change(configuration_instance, :default_validation_type)
.and not_change(configuration_instance, :validation_type_by_domain)
.and not_change(configuration_instance, :whitelisted_domains)
.and not_change(configuration_instance, :whitelist_validation)
.and not_change(configuration_instance, :blacklisted_domains)
.and not_change(configuration_instance, :smtp_safe_check)

Expand All @@ -99,6 +102,7 @@
.and not_change(configuration_instance, :default_validation_type)
.and not_change(configuration_instance, :validation_type_by_domain)
.and not_change(configuration_instance, :whitelisted_domains)
.and not_change(configuration_instance, :whitelist_validation)
.and not_change(configuration_instance, :blacklisted_domains)
.and not_change(configuration_instance, :smtp_safe_check)

Expand Down
Loading

0 comments on commit a969133

Please sign in to comment.