omniauth-scalingo 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/Gemfile +13 -0
- data/Guardfile +10 -0
- data/LICENSE.txt +7 -0
- data/README.md +22 -0
- data/Rakefile +8 -0
- data/lib/omniauth/strategies/scalingo.rb +55 -0
- data/lib/omniauth-scalingo/version.rb +5 -0
- data/lib/omniauth-scalingo.rb +2 -0
- data/omniauth-scalingo.gemspec +25 -0
- data/spec/omniauth/strategies/scalingo_spec.rb +45 -0
- data/spec/spec_helper.rb +16 -0
- metadata +149 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 591861fd8ed10256e73e45730c6d86a8c604a892
|
4
|
+
data.tar.gz: c29d583cb2ed0445ba67f5f3d51ae2fc97adec32
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ad73fca9c7fa395a02f1db4bc41b8332d426941b41e8f4d511d1333ff3d18dd01c7dbb5452651f6c598f4cddf95eaba505517c48bcd7f5f687d00ad8c7b3a407
|
7
|
+
data.tar.gz: 519d7aeb2fe53bd2bb793c77d724f75066a1bafef26f1aae94775fc4f15fe01be2b44db750c03e7eda60387f182108ab7e86b27b7d5b03164bb1488fcccf86f9
|
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--colour
|
data/Gemfile
ADDED
data/Guardfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2018 Scalingo SAS
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# OmniAuth Scalingo
|
2
|
+
|
3
|
+
This is the official OmniAuth strategy for authenticating to Scalingo. To
|
4
|
+
use it, you'll need to sign up for an OAuth2 Application ID and Secret.
|
5
|
+
|
6
|
+
## Basic Usage
|
7
|
+
|
8
|
+
```ruby
|
9
|
+
use OmniAuth::Builder do
|
10
|
+
provider :scalingo, ENV['SCALINGO_APP_ID'], ENV['SCALINGO_APP_SECRET']
|
11
|
+
end
|
12
|
+
```
|
13
|
+
|
14
|
+
## Scopes
|
15
|
+
|
16
|
+
Scalingo API lets you set scopes to provide granular access to different types of data and actions.
|
17
|
+
|
18
|
+
```ruby
|
19
|
+
use OmniAuth::Builder do
|
20
|
+
provider :scalingo, ENV['SCALINGO_APP_ID'], ENV['SCALINGO_APP_SECRET'], scope: "scope1,scope2"
|
21
|
+
end
|
22
|
+
```
|
data/Rakefile
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'omniauth-oauth2'
|
2
|
+
|
3
|
+
module OmniAuth
|
4
|
+
module Strategies
|
5
|
+
class Scalingo < OmniAuth::Strategies::OAuth2
|
6
|
+
option :client_options, {
|
7
|
+
:site => 'https://auth.scalingo.com',
|
8
|
+
:authorize_url => 'https://auth.scalingo.com/oauth/authorize',
|
9
|
+
:token_url => 'https://auth.scalingo.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 { raw_info['id'].to_s }
|
27
|
+
|
28
|
+
info do
|
29
|
+
{
|
30
|
+
'uuid' => raw_info['id'],
|
31
|
+
'username' => raw_info['username'],
|
32
|
+
'email' => raw_info['email'],
|
33
|
+
'first_name' => raw_info['first_name'],
|
34
|
+
'last_name' => raw_info['last_name'],
|
35
|
+
'flags' => raw_info['flags'],
|
36
|
+
}
|
37
|
+
end
|
38
|
+
|
39
|
+
extra do
|
40
|
+
{:raw_info => raw_info, :all_emails => emails}
|
41
|
+
end
|
42
|
+
|
43
|
+
def raw_info
|
44
|
+
access_token.options[:mode] = :query
|
45
|
+
@raw_info ||= access_token.get('user').parsed
|
46
|
+
end
|
47
|
+
|
48
|
+
def callback_url
|
49
|
+
full_host + script_name + callback_path
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
OmniAuth.config.add_camelization 'scalingo', 'Scalingo'
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/omniauth-scalingo/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Léo Unbekandt"]
|
6
|
+
gem.email = ["leo@scalingo.com"]
|
7
|
+
gem.description = %q{Official OmniAuth strategy for Scalingo.}
|
8
|
+
gem.summary = %q{Official OmniAuth strategy for Scalingo.}
|
9
|
+
gem.homepage = "https://github.com/Scalingo/omniauth-scalingo"
|
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-scalingo"
|
16
|
+
gem.require_paths = ["lib"]
|
17
|
+
gem.version = OmniAuth::Scalingo::VERSION
|
18
|
+
|
19
|
+
gem.add_dependency 'omniauth', '~> 1.5'
|
20
|
+
gem.add_dependency 'omniauth-oauth2', '>= 1.4.0', '< 2.0'
|
21
|
+
gem.add_development_dependency 'rspec', '~> 3.5'
|
22
|
+
gem.add_development_dependency 'rack-test'
|
23
|
+
gem.add_development_dependency 'simplecov'
|
24
|
+
gem.add_development_dependency 'webmock'
|
25
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe OmniAuth::Strategies::Scalingo 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
|
+
subject do
|
9
|
+
OmniAuth::Strategies::Scalingo.new({})
|
10
|
+
end
|
11
|
+
|
12
|
+
before(:each) do
|
13
|
+
allow(subject).to receive(:access_token).and_return(access_token)
|
14
|
+
end
|
15
|
+
|
16
|
+
context 'client options' do
|
17
|
+
it 'should have correct site' do
|
18
|
+
expect(subject.options.client_options.site).to eq('https://auth.scalingo.com')
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'should have correct authorize url' do
|
22
|
+
expect(subject.options.client_options.authorize_url).to eq('https://auth.scalingo.com/oauth/authorize')
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'should have correct token url' do
|
26
|
+
expect(subject.options.client_options.token_url).to eq('https://auth.scalingo.com/oauth/token')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
context '#raw_info' do
|
31
|
+
it 'should use relative paths' do
|
32
|
+
expect(access_token).to receive(:get).with('user').and_return(response)
|
33
|
+
expect(subject.raw_info).to eq(parsed_response)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe '#callback_url' do
|
38
|
+
it 'is a combination of host, script name, and callback path' do
|
39
|
+
allow(subject).to receive(:full_host).and_return('https://example.com')
|
40
|
+
allow(subject).to receive(:script_name).and_return('/sub_uri')
|
41
|
+
|
42
|
+
expect(subject.callback_url).to eq('https://example.com/sub_uri/auth/scalingo/callback')
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,16 @@
|
|
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-scalingo'
|
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
|
16
|
+
|
metadata
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-scalingo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Léo Unbekandt
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-04-19 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.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
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.4.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.4.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: '3.5'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '3.5'
|
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 Scalingo.
|
104
|
+
email:
|
105
|
+
- leo@scalingo.com
|
106
|
+
executables: []
|
107
|
+
extensions: []
|
108
|
+
extra_rdoc_files: []
|
109
|
+
files:
|
110
|
+
- ".gitignore"
|
111
|
+
- ".rspec"
|
112
|
+
- Gemfile
|
113
|
+
- Guardfile
|
114
|
+
- LICENSE.txt
|
115
|
+
- README.md
|
116
|
+
- Rakefile
|
117
|
+
- lib/omniauth-scalingo.rb
|
118
|
+
- lib/omniauth-scalingo/version.rb
|
119
|
+
- lib/omniauth/strategies/scalingo.rb
|
120
|
+
- omniauth-scalingo.gemspec
|
121
|
+
- spec/omniauth/strategies/scalingo_spec.rb
|
122
|
+
- spec/spec_helper.rb
|
123
|
+
homepage: https://github.com/Scalingo/omniauth-scalingo
|
124
|
+
licenses:
|
125
|
+
- MIT
|
126
|
+
metadata: {}
|
127
|
+
post_install_message:
|
128
|
+
rdoc_options: []
|
129
|
+
require_paths:
|
130
|
+
- lib
|
131
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
|
+
requirements:
|
138
|
+
- - ">="
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
version: '0'
|
141
|
+
requirements: []
|
142
|
+
rubyforge_project:
|
143
|
+
rubygems_version: 2.6.13
|
144
|
+
signing_key:
|
145
|
+
specification_version: 4
|
146
|
+
summary: Official OmniAuth strategy for Scalingo.
|
147
|
+
test_files:
|
148
|
+
- spec/omniauth/strategies/scalingo_spec.rb
|
149
|
+
- spec/spec_helper.rb
|