omniauth-stripe-connect 2.0.0
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.
- data/.gitignore +19 -0
- data/Gemfile +5 -0
- data/LICENSE +22 -0
- data/README.md +86 -0
- data/Rakefile +2 -0
- data/lib/omniauth-stripe-connect.rb +2 -0
- data/lib/omniauth-stripe-connect/version.rb +5 -0
- data/lib/omniauth/strategies/stripe_connect.rb +43 -0
- data/lib/omniauth/stripe_connect.rb +1 -0
- data/omniauth-stripe-connect.gemspec +23 -0
- metadata +94 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Isaac Sanders
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,86 @@
|
|
1
|
+
# Omniauth::StripeConnect
|
2
|
+
|
3
|
+
Stripe Connect OAuth2 Strategy for OmniAuth 1.0.
|
4
|
+
|
5
|
+
Supports the OAuth 2.0 server-side and client-side flows.
|
6
|
+
Read the Stripe Connect docs for more details: https://stripe.com/connect
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
gem 'omniauth-stripe-connect'
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install omniauth-stripe-connect
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
OmniAuth::Strategies::StripeConnect is simply a Rack middleware. Read the OmniAuth
|
25
|
+
1.0 docs for detailed instructions: https://github.com/intridea/omniauth.
|
26
|
+
|
27
|
+
Here's a quick example, adding the middleware to a Rails app in
|
28
|
+
`config/initializers/omniauth.rb`:
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
Rails.application.config.middleware.use OmniAuth::Builder do
|
32
|
+
provider :stripe_connect, ENV['STRIPE_CONNECT_CLIENT_ID'], ENV['STRIPE_SECRET']
|
33
|
+
end
|
34
|
+
```
|
35
|
+
|
36
|
+
Your `STRIPE_CONNECT_CLIENT_ID` is application-specific and your `STRIPE_SECRET` is account-specific and may also be known as your Stripe API key or Stripe Private key.
|
37
|
+
|
38
|
+
Then you can hit `/auth/stripe_connect`
|
39
|
+
|
40
|
+
### Ruby on Rails apps with Devise
|
41
|
+
|
42
|
+
After setting up Devise to use OmniAuth, you only need to add the following line of code to handle the OAuth2 part of Stripe Connect.
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
# Put this in config/initializers/devise.rb with the rest of your Devise configuration
|
46
|
+
config.omniauth :stripe_connect, ENV['STRIPE_CONNECT_CLIENT_ID'], ENV['STRIPE_SECRET_KEY'], {:scope => 'read_write'} # or :scope => 'read_only'
|
47
|
+
```
|
48
|
+
|
49
|
+
Now your done!
|
50
|
+
|
51
|
+
## Auth Hash
|
52
|
+
|
53
|
+
Here is an example of the Auth Hash you get back from calling `request.env['omniauth.auth']`:
|
54
|
+
|
55
|
+
```ruby
|
56
|
+
{
|
57
|
+
"provider"=>"stripe_connect",
|
58
|
+
"uid"=>"<STRIPE_USER_ID>",
|
59
|
+
"info"=> {
|
60
|
+
"scope"=>"read_write", # or "read_only"
|
61
|
+
"livemode"=>false,
|
62
|
+
"stripe_publishable_key"=>"<STRIPE_PUBLISHABLE_KEY>",
|
63
|
+
},
|
64
|
+
"credentials"=> {
|
65
|
+
"token"=>"<STRIPE_ACCESS_TOKEN>",
|
66
|
+
"expires"=>false
|
67
|
+
},
|
68
|
+
"extra"=> {
|
69
|
+
"raw_info"=> {
|
70
|
+
"token_type"=>"bearer",
|
71
|
+
"stripe_user_id"=>"<STRIPE_USER_ID>",
|
72
|
+
"scope"=>"read_only",
|
73
|
+
"stripe_publishable_key"=>"<STRIPE_PUBLISHABLE_KEY>",
|
74
|
+
"livemode"=>false
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
```
|
79
|
+
|
80
|
+
## Contributing
|
81
|
+
|
82
|
+
1. Fork it
|
83
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
84
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
85
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
86
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
require 'omniauth/strategies/oauth2'
|
2
|
+
|
3
|
+
module OmniAuth
|
4
|
+
module Strategies
|
5
|
+
class StripeConnect < OmniAuth::Strategies::OAuth2
|
6
|
+
option :name, 'stripe_connect'
|
7
|
+
|
8
|
+
option :client_options, {
|
9
|
+
:site => 'https://connect.stripe.com'
|
10
|
+
}
|
11
|
+
|
12
|
+
uid { raw_info[:stripe_user_id] }
|
13
|
+
|
14
|
+
info do
|
15
|
+
{
|
16
|
+
:scope => raw_info[:scope],
|
17
|
+
:livemode => raw_info[:livemode],
|
18
|
+
:stripe_publishable_key => raw_info[:stripe_publishable_key]
|
19
|
+
}
|
20
|
+
end
|
21
|
+
|
22
|
+
extra do
|
23
|
+
{
|
24
|
+
:raw_info => raw_info
|
25
|
+
}
|
26
|
+
end
|
27
|
+
|
28
|
+
def raw_info
|
29
|
+
@raw_info ||= deep_symbolize(access_token.params)
|
30
|
+
end
|
31
|
+
|
32
|
+
def build_access_token
|
33
|
+
headers = {
|
34
|
+
:headers => {
|
35
|
+
'Authorization' => "Bearer #{client.secret}"
|
36
|
+
}
|
37
|
+
}
|
38
|
+
verifier = request.params['code']
|
39
|
+
client.auth_code.get_token(verifier, {:redirect_uri => callback_url}.merge(token_params.to_hash(:symbolize_keys => true)).merge(headers))
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'omniauth/strategies/stripe_connect'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/omniauth-stripe-connect/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Isaac Sanders"]
|
6
|
+
gem.email = ["isaac@isaacbfsanders.com"]
|
7
|
+
gem.description = %q{Stripe Connect OAuth2 Strategy for OmniAuth 1.0.}
|
8
|
+
gem.summary = %q{
|
9
|
+
Supports the OAuth 2.0 server-side and client-side flows.
|
10
|
+
Read the Stripe Connect docs for more details: https://stripe.com/docs/connect
|
11
|
+
}
|
12
|
+
gem.homepage = "https://stripe.com/docs/connect"
|
13
|
+
|
14
|
+
gem.files = `git ls-files | grep -v example`.split($\)
|
15
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
16
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
17
|
+
gem.name = "omniauth-stripe-connect"
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
gem.version = Omniauth::StripeConnect::VERSION
|
20
|
+
|
21
|
+
gem.add_dependency 'omniauth', '~> 1.0'
|
22
|
+
gem.add_dependency 'omniauth-oauth2', '>= 1.0.3'
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,94 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-stripe-connect
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Isaac Sanders
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-10-09 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: omniauth
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: omniauth-oauth2
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 1.0.3
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 1.0.3
|
46
|
+
description: Stripe Connect OAuth2 Strategy for OmniAuth 1.0.
|
47
|
+
email:
|
48
|
+
- isaac@isaacbfsanders.com
|
49
|
+
executables: []
|
50
|
+
extensions: []
|
51
|
+
extra_rdoc_files: []
|
52
|
+
files:
|
53
|
+
- .gitignore
|
54
|
+
- Gemfile
|
55
|
+
- LICENSE
|
56
|
+
- README.md
|
57
|
+
- Rakefile
|
58
|
+
- lib/omniauth-stripe-connect.rb
|
59
|
+
- lib/omniauth-stripe-connect/version.rb
|
60
|
+
- lib/omniauth/strategies/stripe_connect.rb
|
61
|
+
- lib/omniauth/stripe_connect.rb
|
62
|
+
- omniauth-stripe-connect.gemspec
|
63
|
+
homepage: https://stripe.com/docs/connect
|
64
|
+
licenses: []
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
71
|
+
requirements:
|
72
|
+
- - ! '>='
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
hash: -4300220504531359114
|
78
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
79
|
+
none: false
|
80
|
+
requirements:
|
81
|
+
- - ! '>='
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
segments:
|
85
|
+
- 0
|
86
|
+
hash: -4300220504531359114
|
87
|
+
requirements: []
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.8.24
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: ! 'Supports the OAuth 2.0 server-side and client-side flows. Read the Stripe
|
93
|
+
Connect docs for more details: https://stripe.com/docs/connect'
|
94
|
+
test_files: []
|