omniauth-onedrive 0.0.4
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 +15 -0
- data/.gitignore +15 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +38 -0
- data/Rakefile +1 -0
- data/lib/omniauth/onedrive/version.rb +6 -0
- data/lib/omniauth/onedrive.rb +2 -0
- data/lib/omniauth/strategies/onedrive.rb +40 -0
- data/lib/omniauth-onedrive.rb +1 -0
- data/omniauth-onedrive.gemspec +26 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZGRiMTQyYjg3YzY3ODVhOTQ5ZTY2MTViZDY3YWIwM2NkYzU1NjBkNw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MDUxYjAxMTRlNjYyZTAyMDUxY2NmZTE3ZTkwNTFjMTUyYzU3N2RjMQ==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MTM4NzJjYjBmMDdjNWM2ZDlkYzBlODg3YzJiZGYwYTM5YjI5MWRlOWJhOTc2
|
10
|
+
YmU1ZTVjMTliNjhjOWU5ZjU3OTY2NDAyNDkxYzhlMDhjMDZhNTg1N2ViMjAx
|
11
|
+
MzBmNTE1ZTJlYzJlODYwZDE5OGZjYjUxNTVlYTE3YjdhZjdlNjE=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MWRkOWQ3NThkNDViNGVmNWQ2Nzk5M2RhMjNmMGEyMmIzYjkzNDFmNjJkZDI3
|
14
|
+
YzMxOWM4MDI0MmUxYzA1MTQ1MzM3ZmM3OGE2OWE3MTQ0YjZlMDUzNmExN2Ey
|
15
|
+
N2E0ZTRhMmEzMGQyM2ZhOTVkYjFjMzViNTgyMWVmOTdjNjhhMzE=
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2016 VvanGemert
|
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,38 @@
|
|
1
|
+
# Omniauth Onedrive
|
2
|
+
|
3
|
+
A OneDrive / Windows Live strategy for OmniAuth. Created according the OneDrive documentation. A Windows Live app needs to be created in the Developer Center - https://dev.onedrive.com/app-registration.htm.
|
4
|
+
|
5
|
+
More information about the OAuth authentication method can be found here:
|
6
|
+
https://dev.onedrive.com/auth/msa_oauth.htm
|
7
|
+
|
8
|
+
This gem is slighty based on the version of Plexinc (https://github.com/plexinc/omniauth-live-connect), but I found out after I completed and implemented the gem.
|
9
|
+
|
10
|
+
## Installation
|
11
|
+
|
12
|
+
Add this line to your application's Gemfile:
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
gem 'omniauth-onedrive'
|
16
|
+
```
|
17
|
+
|
18
|
+
And then execute:
|
19
|
+
|
20
|
+
$ bundle
|
21
|
+
|
22
|
+
Or install it yourself as:
|
23
|
+
|
24
|
+
$ gem install omniauth-onedrive
|
25
|
+
|
26
|
+
## Usage
|
27
|
+
|
28
|
+
# Add to OmniAuth::Builder do
|
29
|
+
provider :onedrive, ENV['live_client_id'], ENV['live_secret_key'],
|
30
|
+
{ :scope => 'wl.signin wl.basic' }
|
31
|
+
|
32
|
+
## Contributing
|
33
|
+
|
34
|
+
1. Fork it ( https://github.com/[my-github-username]/omniauth-onedrive/fork )
|
35
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
36
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
37
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
38
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'omniauth/strategies/oauth2'
|
2
|
+
require 'open-uri'
|
3
|
+
require 'uri'
|
4
|
+
|
5
|
+
module OmniAuth
|
6
|
+
module Strategies
|
7
|
+
# Based on https://dev.onedrive.com/auth/msa_oauth.htm
|
8
|
+
class Onedrive < OmniAuth::Strategies::OAuth2
|
9
|
+
# Options
|
10
|
+
option :name, 'onedrive'
|
11
|
+
option :authorize_options, [:scope]
|
12
|
+
option :client_options, {
|
13
|
+
:site => 'https://login.live.com',
|
14
|
+
:authorize_url => 'https://login.live.com/oauth20_authorize.srf',
|
15
|
+
:token_url => 'https://login.live.com/oauth20_token.srf' }
|
16
|
+
|
17
|
+
uid { raw_info['id'] }
|
18
|
+
|
19
|
+
info do
|
20
|
+
{
|
21
|
+
:id => raw_info['id'],
|
22
|
+
:email => raw_info['emails']['preferred'],
|
23
|
+
:name => raw_info['name']
|
24
|
+
}
|
25
|
+
end
|
26
|
+
|
27
|
+
extra do
|
28
|
+
{ :raw_info => raw_info }
|
29
|
+
end
|
30
|
+
|
31
|
+
def raw_info
|
32
|
+
@raw_info ||= access_token.get('https://apis.live.net/v5.0/me').parsed
|
33
|
+
end
|
34
|
+
|
35
|
+
def callback_url
|
36
|
+
options[:redirect_uri] || (full_host + script_name + callback_path)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'omniauth/onedrive'
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'omniauth/onedrive/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'omniauth-onedrive'
|
8
|
+
spec.version = Omniauth::Onedrive::VERSION
|
9
|
+
spec.authors = ['VvanGemert']
|
10
|
+
spec.email = ['vincent@floorplanner.com']
|
11
|
+
spec.summary = 'Omniauth OneDrive strategy'
|
12
|
+
spec.description = 'This strategy will allow you to connect with OneDrive'
|
13
|
+
spec.homepage = 'https://github.com/VvanGemert/omniauth-onedrive'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
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_dependency 'omniauth-oauth2', '~> 1.2'
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.7'
|
24
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
25
|
+
spec.add_development_dependency 'rubocop'
|
26
|
+
end
|
metadata
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: omniauth-onedrive
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- VvanGemert
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-03-30 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: '1.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.7'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.7'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubocop
|
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
|
+
description: This strategy will allow you to connect with OneDrive
|
70
|
+
email:
|
71
|
+
- vincent@floorplanner.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE.txt
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- lib/omniauth-onedrive.rb
|
82
|
+
- lib/omniauth/onedrive.rb
|
83
|
+
- lib/omniauth/onedrive/version.rb
|
84
|
+
- lib/omniauth/strategies/onedrive.rb
|
85
|
+
- omniauth-onedrive.gemspec
|
86
|
+
homepage: https://github.com/VvanGemert/omniauth-onedrive
|
87
|
+
licenses:
|
88
|
+
- MIT
|
89
|
+
metadata: {}
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ! '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.4.4
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: Omniauth OneDrive strategy
|
110
|
+
test_files: []
|