email_login_link 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fb0f187bb29cfb261637f2ed7516b90ceb593092
4
+ data.tar.gz: 8ec8c2217792b1a4bd0d1265f9eb038ed49cffce
5
+ SHA512:
6
+ metadata.gz: c93e821fec5af574bdbf4a237cb85f4b7d6a165bf9ed952a56d6c5d0e6a8f95d1b61f45ab8fc573f6d21a33fc3cb38997a9b86768dce657a1337debb55ba0d5b
7
+ data.tar.gz: b58a24d076062ba75df1434eec8db74f3776f1a28cfb817099e18eeb23620bfbb0372d1071018daf16c159d3d0f5f61134f06cbb49d0e9ed8546091c54d8eda2
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in email_login_link.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Mark Hoad
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,68 @@
1
+ # EmailLoginLink
2
+
3
+ This gem is designed to answer two extremely basic questions when provided with an email address.
4
+
5
+ 1. Is there a known login URL for the relevant e-mail provider
6
+ 2. If so, what is the URL?
7
+
8
+ It's development is inspired by a tweet from Patrick McKenzie a.k.a @patio11 on Twitter / Hacker News
9
+
10
+ ![Tweet from @patio11](http://i.imgur.com/3S7NHcT.png "It's not strictly a microservice I know")
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ ```ruby
17
+ gem 'email_login_link'
18
+ ```
19
+
20
+ Or alternatively you can use:
21
+
22
+ ```ruby
23
+ gem 'email_login_link', :git => "git://github.com/mhoad/email_login_link.git"
24
+ ```
25
+
26
+ And then execute:
27
+
28
+ $ bundle
29
+
30
+ Or install it yourself as:
31
+
32
+ $ gem install email_login_link
33
+
34
+ ## Usage
35
+
36
+ To check if a email address has a known login URL associated with it simply type:
37
+
38
+ ```ruby
39
+ EmailLoginLink.known_login_url?("example@gmail.com")
40
+ ```
41
+
42
+ To return the login URL associated with a given email address (assuming one exists) type:
43
+
44
+ ```ruby
45
+ EmailLoginLink.login_url("example@gmail.com")
46
+ ```
47
+
48
+ Note: This gem also has the ability to check custom domains (i.e. non-free e-mail accounts) to see if they are configured
49
+ to use Google Apps for Your Domain. In the instance that an email address meets this criteria the appropriate login URL
50
+ will be returned such as:
51
+
52
+ http://mail.google.com/a/#{domain}"
53
+
54
+ ## Development
55
+
56
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
57
+
58
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
59
+
60
+ ## Contributing
61
+
62
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mhoad/email_login_link.
63
+
64
+
65
+ ## License
66
+
67
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
68
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "email_login_link"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'email_login_link/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "email_login_link"
8
+ spec.version = EmailLoginLink::VERSION
9
+ spec.authors = ["Mark Hoad"]
10
+ spec.email = ["mark@afterwire.net"]
11
+
12
+ spec.summary = %q{Return the appropriate login URL for a given E-Mail address}
13
+ spec.description = %q{Given an e-mail address this gem will check to see if it is able to determine
14
+ the appropriate login URL for that service. For example user@gmail.com would
15
+ return https://accounts.google.com/ServiceLogin?service=mail&continue=https://mail.google.com/mail/}
16
+ spec.homepage = "http://www.afterwire.net/"
17
+ spec.license = "MIT"
18
+
19
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.10"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ spec.add_development_dependency "rspec"
27
+ end
@@ -0,0 +1,3 @@
1
+ module EmailLoginLink
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,47 @@
1
+ require "email_login_link/version"
2
+ require "provider_urls"
3
+ require 'resolv'
4
+
5
+ module EmailLoginLink
6
+
7
+ def self.known_login_url?(email_address)
8
+ domain = get_domain(email_address)
9
+ result = false
10
+
11
+ if $urls.has_key?(domain)
12
+ result = true
13
+ elsif check_if_google_apps?(domain)
14
+ result = true
15
+ end
16
+
17
+ result
18
+ end
19
+
20
+ def self.login_url(email_address)
21
+ domain = get_domain(email_address)
22
+ if $urls.has_key?(domain)
23
+ return $urls[domain]
24
+ else
25
+ return "http://mail.google.com/a/#{domain}"
26
+ end
27
+ end
28
+
29
+ private
30
+ def self.get_domain(email_address)
31
+ return email_address.gsub(/.+@([^.]+.+)/, '\1').downcase
32
+ end
33
+
34
+ def self.get_mx_record(domain)
35
+ begin
36
+ mx_resource = Resolv::DNS::Resource::IN::MX
37
+ return Resolv::DNS.new.getresource(domain, mx_resource).exchange.to_s
38
+ rescue Exception => e
39
+ return false
40
+ end
41
+ end
42
+
43
+ def self.check_if_google_apps?(domain)
44
+ mx_record = get_mx_record(domain)
45
+ mx_record && mx_record.include?("google")
46
+ end
47
+ end
@@ -0,0 +1,6 @@
1
+ module EmailLoginLink
2
+ $urls = {}
3
+ $urls["gmail.com"] = "https://accounts.google.com/ServiceLogin?service=mail&continue=https://mail.google.com/mail/"
4
+ $urls["hotmail.com"] = "https://login.live.com/"
5
+ $urls.freeze
6
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: email_login_link
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Mark Hoad
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-12-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: "Given an e-mail address this gem will check to see if it is able to
56
+ determine \n the appropriate login URL for that service.
57
+ For example user@gmail.com would\n return https://accounts.google.com/ServiceLogin?service=mail&continue=https://mail.google.com/mail/"
58
+ email:
59
+ - mark@afterwire.net
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - ".gitignore"
65
+ - ".rspec"
66
+ - ".travis.yml"
67
+ - Gemfile
68
+ - LICENSE.txt
69
+ - README.md
70
+ - Rakefile
71
+ - bin/console
72
+ - bin/setup
73
+ - email_login_link.gemspec
74
+ - lib/email_login_link.rb
75
+ - lib/email_login_link/version.rb
76
+ - lib/provider_urls.rb
77
+ homepage: http://www.afterwire.net/
78
+ licenses:
79
+ - MIT
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubyforge_project:
97
+ rubygems_version: 2.4.5.1
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: Return the appropriate login URL for a given E-Mail address
101
+ test_files: []