oauth2-me 0.0.1a

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f0a2840365a25e30eb6b8333263c2f5accfc6ebe
4
+ data.tar.gz: 90a2fe6cf51c6adffab4756496e6b2a7197cc6f7
5
+ SHA512:
6
+ metadata.gz: 1b99dbd84abb6327397351cb3e7ba5d9e8b66d2612750854ad321e7f86b3dace36affa0fdf3f49f7799d0960d26b73caf1227068f4451d25b11ae00748435cd0
7
+ data.tar.gz: 36ddc52e0e9ac64cdea69629d491880d984edfc58b1d34d2aedcbf57f75b6feff955dffe59e2285c83a675bdd48f3ab07acc6054e43c081e9c9d20497209d8d7
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in oauth2-me-me-ruby.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Dmitriy Dudkin
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,39 @@
1
+ # OAuth2Me
2
+
3
+ OAuth2Me is a ruby client for the [oauth2.me](http://oauth2.me/) service.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'oauth2-me', github: 'jetthoughts/oauth2-me-ruby'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```
16
+ $ bundle
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ ### Devise
22
+
23
+ If you are using devise in your application, you should add this to your `initializers/devise.rb`:
24
+
25
+ ```ruby
26
+ OAuth2Me.setup_devise! unless Rails.env.production?
27
+ ```
28
+
29
+ ### Omniauth
30
+
31
+ The work is still in progress.
32
+
33
+ ## Contributing
34
+
35
+ 1. Fork it ( https://github.com/tmwh/oauth2-me-ruby/fork )
36
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
37
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
38
+ 4. Push to the branch (`git push origin my-new-feature`)
39
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,28 @@
1
+ module OAuth2Me
2
+ class OmniauthStrategyUpdater
3
+ def setup_omniauth_strategy(strategy_class)
4
+ if strategy_class < OmniAuth::Strategies::OAuth2
5
+ redefine_callback_url(strategy_class)
6
+ redefine_options_for(strategy_class)
7
+ end
8
+ strategy_class
9
+ end
10
+
11
+ private
12
+ def redefine_callback_url(strategy_class)
13
+ strategy_class.send :define_method, :callback_url_with_redirect do
14
+ OAuth2Me.redirect_url
15
+ end
16
+ strategy_class.alias_method_chain :callback_url, :redirect
17
+ end
18
+
19
+ def redefine_options_for(strategy_class)
20
+ strategy_class.send :define_method, :options_for_with_redirect do |option|
21
+ return options_for_without_redirect(option) unless option == 'authorize'
22
+ encoded_callback_url = Base64.strict_encode64(callback_url_without_redirect)
23
+ options_for_without_redirect(option).merge(state: encoded_callback_url)
24
+ end
25
+ strategy_class.alias_method_chain :options_for, :redirect
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,3 @@
1
+ module OAuth2Me
2
+ VERSION = '0.0.1a'
3
+ end
data/lib/oauth2-me.rb ADDED
@@ -0,0 +1,32 @@
1
+ require 'base64'
2
+ require 'oauth2-me/omniauth_strategy_updater'
3
+
4
+ module OAuth2Me
5
+ class BannedEnvironmentError < StandardError; end
6
+ mattr_accessor :redirect_url
7
+ self.redirect_url= 'http://oauth2.me/redirect'
8
+
9
+ class << self
10
+ def banned_environments
11
+ @@banned_environments = ['production']
12
+ end
13
+
14
+ def omniauth_strategy_updater
15
+ @@omniauth_strategy_updater ||= OAuth2Me::OmniauthStrategyUpdater.new
16
+ end
17
+
18
+ def setup_devise!
19
+ check_setup!
20
+ Devise::OmniAuth::Config.send :define_method, :strategy_class_with_redirect do
21
+ strategy_class = strategy_class_without_redirect
22
+ OAuth2Me.omniauth_strategy_updater.setup_omniauth_strategy(strategy_class)
23
+ end
24
+ Devise::OmniAuth::Config.alias_method_chain :strategy_class, :redirect
25
+ end
26
+
27
+ def check_setup!
28
+ environment = ENV['RAILS_ENV'] || ENV['RACK_ENV']
29
+ raise BannedEnvironmentError.new if environment && banned_environments.include?(environment)
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'oauth2-me/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'oauth2-me'
8
+ spec.version = OAuth2Me::VERSION
9
+ spec.authors = ['Dmitriy Dudkin']
10
+ spec.email = ['dudkin.dmitriy@gmail.com']
11
+ spec.summary = %q{A gem for integrating oauth2.me into your ruby application}
12
+ spec.description = ''
13
+ spec.homepage = 'http://oauth2.me/'
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_development_dependency 'bundler', '~> 1.7'
22
+ spec.add_development_dependency 'rake', '~> 10.0'
23
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: oauth2-me
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1a
5
+ platform: ruby
6
+ authors:
7
+ - Dmitriy Dudkin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-01-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: ''
42
+ email:
43
+ - dudkin.dmitriy@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - lib/oauth2-me.rb
54
+ - lib/oauth2-me/omniauth_strategy_updater.rb
55
+ - lib/oauth2-me/version.rb
56
+ - oauth2-me-ruby.gemspec
57
+ homepage: http://oauth2.me/
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">"
73
+ - !ruby/object:Gem::Version
74
+ version: 1.3.1
75
+ requirements: []
76
+ rubyforge_project:
77
+ rubygems_version: 2.2.2
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: A gem for integrating oauth2.me into your ruby application
81
+ test_files: []