omniauth-affinitylive 0.0.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 +7 -0
- data/.gitignore +18 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +66 -0
- data/Rakefile +8 -0
- data/lib/omniauth/affinitylive.rb +2 -0
- data/lib/omniauth/affinitylive/version.rb +5 -0
- data/lib/omniauth/strategies/affinitylive.rb +45 -0
- data/omniauth-affinitylive.gemspec +28 -0
- data/spec/omniauth/strategies/affinitylive_spec.rb +17 -0
- data/spec/spec_helper.rb +10 -0
- metadata +127 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 66525ef8db0aa79846334694081e7d5d15d7f25a
|
4
|
+
data.tar.gz: 40ae38ab9d8952ff41a3913479d45bb0156fa106
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 29b416d02a84386cb82370d42fa5b61db9367a39b89ed92f7d3b1e0cf02aa3bf494f1c305a137fac8c2bbb187e6b3eccd592e92466ad5bf7a0a89ed605f826d6
|
7
|
+
data.tar.gz: 56c602cf0e30ce0c3c348cd37c8a08ae1dcf1de2eb0c9ae99e31dee9918a3a49417926f15c0b34860ce0456ccd89e8ed1751aad42132044643d75625269c009c
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Rikki Pitt
|
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,66 @@
|
|
1
|
+
# Omniauth AffinityLive
|
2
|
+
|
3
|
+
[Omniauth AffinityLive](https://github.com/rikkipitt/omniauth-affinitylive) is an [OmniAuth](https://github.com/intridea/omniauth) authentication strategy for [AffinityLive](http://www.affinitylive.com).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'omniauth'
|
11
|
+
gem 'omniauth-affinitylive'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
```bash
|
17
|
+
bundle
|
18
|
+
```
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
```bash
|
23
|
+
gem install omniauth-affinitylive
|
24
|
+
```
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
Create an AffinityLive application as an administrator user. YOUR_DEPLOYMENT = the subdomain you use to login with on AffinityLive.
|
29
|
+
|
30
|
+
For a Rack application:
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
use OmniAuth::Builder do
|
34
|
+
provider :affinitylive, CLIENT_ID, CLIENT_SECRET, :client_options => {:site => "https://YOUR_DEPLOYMENT.api.affinitylive.com"}
|
35
|
+
end
|
36
|
+
```
|
37
|
+
|
38
|
+
For a Rails application:
|
39
|
+
|
40
|
+
```ruby
|
41
|
+
# config/intializers/omniauth.rb
|
42
|
+
Rails.application.config.middleware.use OmniAuth::Builder do
|
43
|
+
provider :affinitylive, CLIENT_ID, CLIENT_SECRET, :client_options => {:site => "https://YOUR_DEPLOYMENT.api.affinitylive.com"}
|
44
|
+
end
|
45
|
+
```
|
46
|
+
|
47
|
+
Or, if you use [devise](https://github.com/plataformatec/devise) for authentication:
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
# config/initializers/devise.rb
|
51
|
+
Devise.setup do |config|
|
52
|
+
config.omniauth :affinitylive, CLIENT_ID, CLIENT_SECRET, :client_options => {:site => "https://YOUR_DEPLOYMENT.api.affinitylive.com"}
|
53
|
+
end
|
54
|
+
```
|
55
|
+
|
56
|
+
## Contributing
|
57
|
+
|
58
|
+
1. Fork it
|
59
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
60
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
61
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
62
|
+
5. Create new Pull Request
|
63
|
+
|
64
|
+
## Copyright
|
65
|
+
|
66
|
+
Copyright (c) 2015 Rikki Pitt. See [LICENSE.txt](LICENSE.txt) for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'omniauth-oauth2'
|
2
|
+
|
3
|
+
require "omniauth/strategies/oauth"
|
4
|
+
require "multi_xml"
|
5
|
+
|
6
|
+
module OmniAuth
|
7
|
+
module Strategies
|
8
|
+
class Affinitylive < OmniAuth::Strategies::OAuth2
|
9
|
+
option :name, "affinitylive"
|
10
|
+
|
11
|
+
option :client_options, {
|
12
|
+
:authorize_url => "/oauth2/v0/authorize",
|
13
|
+
:token_url => "/oauth2/v0/token"
|
14
|
+
}
|
15
|
+
|
16
|
+
option :authorize_params, {
|
17
|
+
:scope =>"read(all)"
|
18
|
+
}
|
19
|
+
|
20
|
+
# These are called after authentication has succeeded. If
|
21
|
+
# possible, you should try to set the UID without making
|
22
|
+
# additional calls (if the user id is returned with the token
|
23
|
+
# or as a URI parameter). This may not be possible with all
|
24
|
+
# providers.
|
25
|
+
uid{ raw_info['id'] }
|
26
|
+
|
27
|
+
info do
|
28
|
+
{
|
29
|
+
:name => raw_info['name'],
|
30
|
+
:email => raw_info['email']
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
extra do
|
35
|
+
{
|
36
|
+
'raw_info' => raw_info
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
def raw_info
|
41
|
+
@raw_info ||= access_token.get('/api/v0/user').parsed
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require "omniauth/affinitylive/version"
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "omniauth-affinitylive"
|
8
|
+
spec.version = Omniauth::Affinitylive::VERSION
|
9
|
+
spec.authors = ["Rikki pitt"]
|
10
|
+
spec.email = ["rikkipitt@gmail.com"]
|
11
|
+
spec.description = "AffinityLive authentication strategy for OmniAuth."
|
12
|
+
spec.summary = "AffinityLive authentication strategy for OmniAuth."
|
13
|
+
spec.homepage = "http://github.com/rikkipitt/omniauth-affinitylive"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_runtime_dependency "omniauth-oauth2"
|
22
|
+
spec.add_runtime_dependency "multi_xml", "~> 0.5"
|
23
|
+
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
spec.add_development_dependency "rspec", "~> 2.0"
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe "OmniAuth::Strategies::AffinityLive" do
|
4
|
+
subject do
|
5
|
+
OmniAuth::Strategies::Affinitylive.new(nil, {})
|
6
|
+
end
|
7
|
+
|
8
|
+
context 'client options' do
|
9
|
+
it 'has correct authorize url' do
|
10
|
+
subject.options.client_options.authorize_url.should eq('/oauth2/v0/authorize')
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'has correct access token url' do
|
14
|
+
subject.options.client_options.token_url.should eq('/oauth2/v0/token')
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
$:.unshift File.expand_path('..', __FILE__)
|
2
|
+
$:.unshift File.expand_path('../../lib', __FILE__)
|
3
|
+
|
4
|
+
require 'rspec'
|
5
|
+
require 'omniauth'
|
6
|
+
require 'omniauth/affinitylive'
|
7
|
+
|
8
|
+
RSpec.configure do |config|
|
9
|
+
config.extend OmniAuth::Test::StrategyMacros, :type => :strategy
|
10
|
+
end
|
metadata
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-affinitylive
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rikki pitt
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: omniauth-oauth2
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: multi_xml
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.5'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.5'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.0'
|
83
|
+
description: AffinityLive authentication strategy for OmniAuth.
|
84
|
+
email:
|
85
|
+
- rikkipitt@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- lib/omniauth/affinitylive.rb
|
96
|
+
- lib/omniauth/affinitylive/version.rb
|
97
|
+
- lib/omniauth/strategies/affinitylive.rb
|
98
|
+
- omniauth-affinitylive.gemspec
|
99
|
+
- spec/omniauth/strategies/affinitylive_spec.rb
|
100
|
+
- spec/spec_helper.rb
|
101
|
+
homepage: http://github.com/rikkipitt/omniauth-affinitylive
|
102
|
+
licenses:
|
103
|
+
- MIT
|
104
|
+
metadata: {}
|
105
|
+
post_install_message:
|
106
|
+
rdoc_options: []
|
107
|
+
require_paths:
|
108
|
+
- lib
|
109
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ">="
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: '0'
|
114
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0'
|
119
|
+
requirements: []
|
120
|
+
rubyforge_project:
|
121
|
+
rubygems_version: 2.4.5
|
122
|
+
signing_key:
|
123
|
+
specification_version: 4
|
124
|
+
summary: AffinityLive authentication strategy for OmniAuth.
|
125
|
+
test_files:
|
126
|
+
- spec/omniauth/strategies/affinitylive_spec.rb
|
127
|
+
- spec/spec_helper.rb
|