omniauth-ubuntu 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2766d7d2de8d6d9e6f060a174c745a8b422ebfb2
4
+ data.tar.gz: f70aa8cfb7bdb00fda967ae20adcfe71c6238cfa
5
+ SHA512:
6
+ metadata.gz: f87d40dc65fee151b6a763125dbcb49229c73b3476b165f80ea64b8238ec956f510f233835d1be42e4e0727114fafbd11ddbfb52f59efabd8a5e0dabddff65b0
7
+ data.tar.gz: 8de35b3c58d96e73c8264934088cc4d5a13c3c43ee153b769aef6c48269d8fa9e12ff8e85d059deea6bc68b9066f66e749a1d9cbfc02b50cddee362182cc3dbc
@@ -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/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in omniauth-ubuntu.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Claudio Poli
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.
@@ -0,0 +1,29 @@
1
+ # OmniAuth Box Strategy
2
+
3
+ This gem provides a simple way to authenticate to Box using OmniAuth with OAuth2.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'omniauth-ubuntu'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install omniauth-ubuntu
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,52 @@
1
+ require 'omniauth/strategies/oauth'
2
+ require 'oauth/signature/plaintext'
3
+
4
+ module OmniAuth
5
+ module Strategies
6
+ class Ubuntu < OmniAuth::Strategies::OAuth
7
+ # Give your strategy a name.
8
+ option :name, "ubuntu"
9
+
10
+ option :consumer_key, 'ubuntuone'
11
+ option :consumer_secret, 'hammertime'
12
+
13
+ # This is where you pass the options you would pass when
14
+ # initializing your consumer from the OAuth gem.
15
+ option :client_options, {
16
+ :site => 'https://one.ubuntu.com',
17
+ :request_token_path => '/oauth/request',
18
+ :authorize_path => '/oauth/authorize',
19
+ :access_token_path => '/oauth/access',
20
+ :scheme => :query_string,
21
+ :signature_method => 'PLAINTEXT'
22
+ }
23
+
24
+ # These are called after authentication has succeeded. If
25
+ # possible, you should try to set the UID without making
26
+ # additional calls (if the user id is returned with the token
27
+ # or as a URI parameter). This may not be possible with all
28
+ # providers.
29
+ uid{ raw_info['id'] }
30
+
31
+ info do
32
+ {
33
+ :name => raw_info['name'],
34
+ :email => raw_info['email'],
35
+ :nickname => raw_info['nickname'],
36
+ :first_name => raw_info['first_name'],
37
+ :last_name => raw_info['last_name']
38
+ }
39
+ end
40
+
41
+ extra do
42
+ {
43
+ 'raw_info' => raw_info
44
+ }
45
+ end
46
+
47
+ def raw_info
48
+ @raw_info ||= MultiJson.decode(access_token.get('/api/account/').body)
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,5 @@
1
+ module Omniauth
2
+ module Ubuntu
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'omniauth-ubuntu/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "omniauth-ubuntu"
8
+ gem.version = Omniauth::Ubuntu::VERSION
9
+ gem.authors = ["Claudio Poli"]
10
+ gem.email = ["masterkain@gmail.com\n"]
11
+ gem.description = %q{OmniAuth strategy for Ubuntu}
12
+ gem.summary = %q{OmniAuth strategy for Ubuntu}
13
+ gem.homepage = "https://github.com/masterkain/omniauth-ubuntu"
14
+
15
+ gem.files = `git ls-files`.split($/)
16
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.add_dependency 'omniauth', '~> 1.0'
21
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-ubuntu
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Claudio Poli
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-04-27 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.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ description: OmniAuth strategy for Ubuntu
28
+ email:
29
+ - |
30
+ masterkain@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - .gitignore
36
+ - Gemfile
37
+ - LICENSE.txt
38
+ - README.md
39
+ - Rakefile
40
+ - lib/omniauth-ubuntu.rb
41
+ - lib/omniauth-ubuntu/version.rb
42
+ - omniauth-ubuntu.gemspec
43
+ homepage: https://github.com/masterkain/omniauth-ubuntu
44
+ licenses: []
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.0.3
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: OmniAuth strategy for Ubuntu
66
+ test_files: []