omniauth-scientist 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 60103e1cd9f35d1c4536365b3b174581ce4e1b58e4314cc50f2b501f28931720
4
+ data.tar.gz: dec823994918653c5e8d563d128679ef192cd257468d6385e59a841478fbd08d
5
+ SHA512:
6
+ metadata.gz: 12fc82e60833aed5d672a8decb29fc2b49e3d6f04969eb480f6e0e540a01e12ed7a3283b3c522e368ecb90f2383838932ad0996d8772e0bc1a9e5dd5c13c0b07
7
+ data.tar.gz: 395f62e98a7572ac5e5c3011040dc3c76281d344f4a80391eead74c8dc8486d04c36912493cf43199f40a9bf952040f24853754272582dcbe7e343e05c9de82e
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ /pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --colour
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in omniauth-scientist.gemspec
4
+ gemspec
5
+
6
+ group :development, :test do
7
+ gem 'rake'
8
+ end
@@ -0,0 +1,7 @@
1
+ Copyright (c) 2019 Chris Petersen and Assay Depot Inc. d/b/a Scientist.com
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,32 @@
1
+ # OmniAuth Scientist
2
+
3
+ ## Basic Usage
4
+
5
+ ```ruby
6
+ use OmniAuth::Builder do
7
+ provider :scientist, ENV['SCIENTIST_ID'], ENV['SCIENTIST_SECRET']
8
+ end
9
+ ```
10
+
11
+ ## Enterprise Usage
12
+
13
+ ```ruby
14
+ provider :scientist, ENV['SCIENTIST_ID'], ENV['SCIENTIST_SECRET'],
15
+ {
16
+ client_options: {
17
+ site: 'https://<YOURSUBDOMAIN>.scientist.com',
18
+ authorize_url: 'https://<YOURSUBDOMAIN>.scientist.com/oauth/authorize',
19
+ token_url: 'https://<YOURSUBDOMAIN>.scientist.com/oauth/token'
20
+ }
21
+ }
22
+ ```
23
+
24
+ ## License
25
+
26
+ Copyright (c) 2019 Assay Depot Inc. d/b/a Scientist.com
27
+
28
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
29
+
30
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
31
+
32
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new
6
+
7
+ desc 'Run specs'
8
+ task :default => :spec
@@ -0,0 +1,2 @@
1
+ require "omniauth-scientist/version"
2
+ require 'omniauth/strategies/scientist'
@@ -0,0 +1,5 @@
1
+ module OmniAuth
2
+ module Scientist
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,66 @@
1
+ require 'omniauth-oauth2'
2
+
3
+ module OmniAuth
4
+ module Strategies
5
+ class Scientist < OmniAuth::Strategies::OAuth2
6
+ option :client_options, {
7
+ :site => 'https://app.scientist.com',
8
+ :authorize_url => 'https://app.scientist.com/oauth/authorize',
9
+ :token_url => 'https://app.scientist.com/oauth/token'
10
+ }
11
+
12
+ def request_phase
13
+ super
14
+ end
15
+
16
+ def authorize_params
17
+ super.tap do |params|
18
+ %w[scope client_options].each do |v|
19
+ if request.params[v]
20
+ params[v.to_sym] = request.params[v]
21
+ end
22
+ end
23
+ end
24
+ end
25
+
26
+ uid { user_attribute('id') }
27
+
28
+ info do
29
+ {
30
+ 'provider' => 'scientist',
31
+ 'uid' => uid,
32
+ 'email' => email,
33
+ 'name' => "#{user_attribute('first_name')} #{user_attribute('last_name')}",
34
+ 'first_name' => user_attribute('first_name'),
35
+ 'last_name' => user_attribute('last_name'),
36
+ 'title' => user_attribute('title'),
37
+ 'company' => user_attribute('company'),
38
+ 'site' => user_attribute('site')
39
+ }
40
+ end
41
+
42
+ extra do
43
+ { raw_info: raw_info }
44
+ end
45
+
46
+ def raw_info
47
+ access_token.options[:mode] = :header
48
+ @raw_info ||= { 'user' => access_token['user'] }
49
+ end
50
+
51
+ def email
52
+ user_attribute('email')
53
+ end
54
+
55
+ def callback_url
56
+ full_host + script_name + callback_path
57
+ end
58
+
59
+ protected
60
+
61
+ def user_attribute(attribute)
62
+ raw_info['user'][attribute] if raw_info['user']
63
+ end
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,25 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/omniauth-scientist/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Chris Petersen"]
6
+ gem.email = ["chris@scientist.com"]
7
+ gem.description = %q{Official OmniAuth strategy for Scientist.}
8
+ gem.summary = %q{Official OmniAuth strategy for Scientist.}
9
+ gem.homepage = "https://github.com/assaydepot/omniauth-scientist"
10
+ gem.license = "MIT"
11
+
12
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
13
+ gem.files = `git ls-files`.split("\n")
14
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
+ gem.name = "omniauth-scientist"
16
+ gem.require_paths = ["lib"]
17
+ gem.version = OmniAuth::Scientist::VERSION
18
+
19
+ gem.add_dependency 'omniauth', '~> 1.9'
20
+ gem.add_dependency 'omniauth-oauth2', '>= 1.6.0', '< 2.0'
21
+ gem.add_development_dependency 'rspec'
22
+ gem.add_development_dependency 'rack-test'
23
+ gem.add_development_dependency 'simplecov'
24
+ gem.add_development_dependency 'webmock'
25
+ end
@@ -0,0 +1,116 @@
1
+ require 'spec_helper'
2
+
3
+ describe OmniAuth::Strategies::Scientist do
4
+ let(:access_token) { instance_double('AccessToken', :options => {}) }
5
+ let(:parsed_response) { instance_double('ParsedResponse') }
6
+ let(:response) { instance_double('Response', :parsed => parsed_response) }
7
+
8
+ let(:enterprise_site) { 'https://some.other.site.com/' }
9
+ let(:enterprise_authorize_url) { 'https://some.other.site.com/oauth/authorize' }
10
+ let(:enterprise_token_url) { 'https://some.other.site.com/oauth/token' }
11
+ let(:enterprise) do
12
+ OmniAuth::Strategies::Scientist.new('SCIENTIST_ID', 'SCIENTIST_SECRET',
13
+ {
14
+ :client_options => {
15
+ :site => enterprise_site,
16
+ :authorize_url => enterprise_authorize_url,
17
+ :token_url => enterprise_token_url
18
+ }
19
+ }
20
+ )
21
+ end
22
+
23
+ subject do
24
+ OmniAuth::Strategies::Scientist.new({})
25
+ end
26
+
27
+ before(:each) do
28
+ allow(subject).to receive(:access_token).and_return(access_token)
29
+ end
30
+
31
+ context 'client options' do
32
+ it 'should have correct site' do
33
+ expect(subject.options.client_options.site).to eq('https://app.scientist.com')
34
+ end
35
+
36
+ it 'should have correct authorize url' do
37
+ expect(subject.options.client_options.authorize_url).to eq('https://app.scientist.com/oauth/authorize')
38
+ end
39
+
40
+ it 'should have correct token url' do
41
+ expect(subject.options.client_options.token_url).to eq('https://app.scientist.com/oauth/token')
42
+ end
43
+
44
+ describe 'should be overrideable' do
45
+ it 'for site' do
46
+ expect(enterprise.options.client_options.site).to eq(enterprise_site)
47
+ end
48
+
49
+ it 'for authorize url' do
50
+ expect(enterprise.options.client_options.authorize_url).to eq(enterprise_authorize_url)
51
+ end
52
+
53
+ it 'for token url' do
54
+ expect(enterprise.options.client_options.token_url).to eq(enterprise_token_url)
55
+ end
56
+ end
57
+ end
58
+
59
+ context '#email' do
60
+ it 'should return email from raw_info if available' do
61
+ allow(subject).to receive(:raw_info).and_return({ 'email' => 'you@example.com' })
62
+ expect(subject.email).to eq('you@example.com')
63
+ end
64
+
65
+ it 'should return nil if there is no raw_info and email access is not allowed' do
66
+ allow(subject).to receive(:raw_info).and_return({})
67
+ expect(subject.email).to be_nil
68
+ end
69
+
70
+ it 'should not return the primary email if there is no raw_info and email access is allowed' do
71
+ emails = [
72
+ { 'email' => 'secondary@example.com', 'primary' => false },
73
+ { 'email' => 'primary@example.com', 'primary' => true }
74
+ ]
75
+ allow(subject).to receive(:raw_info).and_return({})
76
+ subject.options['scope'] = 'user'
77
+ allow(subject).to receive(:emails).and_return(emails)
78
+ expect(subject.email).to be_nil
79
+ end
80
+
81
+ it 'should not return the first email if there is no raw_info and email access is allowed' do
82
+ emails = [
83
+ { 'email' => 'first@example.com', 'primary' => false },
84
+ { 'email' => 'second@example.com', 'primary' => false }
85
+ ]
86
+ allow(subject).to receive(:raw_info).and_return({})
87
+ subject.options['scope'] = 'user'
88
+ allow(subject).to receive(:emails).and_return(emails)
89
+ expect(subject.email).to be_nil
90
+ end
91
+ end
92
+
93
+ context '#raw_info' do
94
+ it 'should use relative paths' do
95
+ expect(access_token).to receive(:get).with('user').and_return(response)
96
+ expect(subject.raw_info).to eq(parsed_response)
97
+ end
98
+ end
99
+
100
+ context '#info.email' do
101
+ it 'should use any available email' do
102
+ allow(subject).to receive(:raw_info).and_return({})
103
+ allow(subject).to receive(:email).and_return('you@example.com')
104
+ expect(subject.info['email']).to eq('you@example.com')
105
+ end
106
+ end
107
+
108
+ describe '#callback_url' do
109
+ it 'is a combination of host, script name, and callback path' do
110
+ allow(subject).to receive(:full_host).and_return('https://example.com')
111
+ allow(subject).to receive(:script_name).and_return('/sub_uri')
112
+
113
+ expect(subject.callback_url).to eq('https://example.com/sub_uri/auth/scientist/callback')
114
+ end
115
+ end
116
+ end
@@ -0,0 +1,15 @@
1
+ $:.unshift File.expand_path('..', __FILE__)
2
+ $:.unshift File.expand_path('../../lib', __FILE__)
3
+ require 'simplecov'
4
+ SimpleCov.start
5
+ require 'rspec'
6
+ require 'rack/test'
7
+ require 'webmock/rspec'
8
+ require 'omniauth'
9
+ require 'omniauth-scientist'
10
+
11
+ RSpec.configure do |config|
12
+ config.include WebMock::API
13
+ config.include Rack::Test::Methods
14
+ config.extend OmniAuth::Test::StrategyMacros, :type => :strategy
15
+ end
metadata ADDED
@@ -0,0 +1,148 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-scientist
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Chris Petersen
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-01-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: omniauth
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: omniauth-oauth2
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 1.6.0
34
+ - - "<"
35
+ - !ruby/object:Gem::Version
36
+ version: '2.0'
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 1.6.0
44
+ - - "<"
45
+ - !ruby/object:Gem::Version
46
+ version: '2.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rack-test
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ - !ruby/object:Gem::Dependency
76
+ name: simplecov
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: webmock
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ description: Official OmniAuth strategy for Scientist.
104
+ email:
105
+ - chris@scientist.com
106
+ executables: []
107
+ extensions: []
108
+ extra_rdoc_files: []
109
+ files:
110
+ - ".gitignore"
111
+ - ".rspec"
112
+ - Gemfile
113
+ - LICENSE.txt
114
+ - README.md
115
+ - Rakefile
116
+ - lib/omniauth-scientist.rb
117
+ - lib/omniauth-scientist/version.rb
118
+ - lib/omniauth/strategies/scientist.rb
119
+ - omniauth-scientist.gemspec
120
+ - spec/omniauth/strategies/scientist_spec.rb
121
+ - spec/spec_helper.rb
122
+ homepage: https://github.com/assaydepot/omniauth-scientist
123
+ licenses:
124
+ - MIT
125
+ metadata: {}
126
+ post_install_message:
127
+ rdoc_options: []
128
+ require_paths:
129
+ - lib
130
+ required_ruby_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ required_rubygems_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ requirements: []
141
+ rubyforge_project:
142
+ rubygems_version: 2.7.6
143
+ signing_key:
144
+ specification_version: 4
145
+ summary: Official OmniAuth strategy for Scientist.
146
+ test_files:
147
+ - spec/omniauth/strategies/scientist_spec.rb
148
+ - spec/spec_helper.rb