omniauth-mvc 1.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a916e4a0f539d96538cdd6bf305206a53c5c1811
4
+ data.tar.gz: 6730d3cb5f3baccb44936e57fd8369c019b0ce02
5
+ SHA512:
6
+ metadata.gz: 4374d569f0a501fae4b7d3f6d960d182348504483900e8ff369a990f21d48a4a657f58ccede0952166dc7ad63f61d637b035833eb81afc031aeb1bd7533c526d
7
+ data.tar.gz: ddc910e22cca2c53648c237b448ee173e79eaae88efcfd6e480c61c7268aee175d54808ed306a8dea1b7c2c0f1c488e5f6b29a2e3502db3d41f8e3a03ae5cf5d
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ sftp-config.json
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.3
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in omniauth-mvc.gemspec
4
+ gemspec
5
+
6
+ group :test do
7
+ gem 'rspec', '~> 3.2'
8
+ gem 'rack-test'
9
+ gem 'simplecov'
10
+ gem 'webmock'
11
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Yasuhiro Manai
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # Omniauth::Mvc
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/omniauth/mvc`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'omniauth-mvc'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install omniauth-mvc
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/omniauth-mvc.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "omniauth/mvc"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,130 @@
1
+ require 'omniauth/strategies/oauth2'
2
+ require 'json'
3
+
4
+ module OmniAuth
5
+ module Strategies
6
+ class MVC < OmniAuth::Strategies::OAuth2
7
+ class NoAuthorizationCodeError < StandardError; end
8
+ option :name, 'mvc'
9
+
10
+ option :client_options, {
11
+ site: 'https://www.mvc-online.com',
12
+ authorize_path: '/oauth/authorize'
13
+ }
14
+
15
+ option :authorize_options, [:scope, :display, :auth_type]
16
+
17
+ uid { raw_info['id'] }
18
+
19
+ info do
20
+ {
21
+ :name => raw_info['screen_name'],
22
+ :email => raw_info['email'],
23
+ :location => raw_info['location'],
24
+ :profile_image_url => raw_info['profile_image_url'],
25
+ :urrent_user_url => raw_info['urrent_user_url']
26
+ }
27
+ end
28
+
29
+ extra do
30
+ skip_info? ? {} : { :raw_info => raw_info }
31
+ end
32
+
33
+ def raw_info
34
+ @raw_info ||= access_token.get('api/me', info_options).parsed || {}
35
+ rescue ::Errno::ETIMEDOUT
36
+ raise ::Timeout::Error
37
+ end
38
+
39
+ def info_options
40
+ params = {:appsecret_proof => appsecret_proof}
41
+ params.merge!({:fields => (options[:info_fields] || 'name,email')})
42
+ params.merge!({:locale => options[:locale]}) if options[:locale]
43
+
44
+ { :params => params }
45
+ end
46
+
47
+ alias :old_request_phase :request_phase
48
+
49
+ def request_phase
50
+ %w[force_login lang screen_name].each do |v|
51
+ if request.params[v]
52
+ options[:authorize_params][v.to_sym] = request.params[v]
53
+ end
54
+ end
55
+
56
+ %w[x_auth_access_type].each do |v|
57
+ if request.params[v]
58
+ options[:request_params][v.to_sym] = request.params[v]
59
+ end
60
+ end
61
+
62
+ if options[:use_authorize] || request.params['use_authorize'] == 'true'
63
+ options[:client_options][:authorize_path] = '/oauth/authorize'
64
+ else
65
+ options[:client_options][:authorize_path] = '/oauth/authenticate'
66
+ end
67
+
68
+ old_request_phase
69
+ end
70
+
71
+ def callback_url
72
+ if @authorization_code_from_signed_request_in_cookie
73
+ ''
74
+ else
75
+ # Fixes regression in omniauth-oauth2 v1.4.0 by https://github.com/intridea/omniauth-oauth2/commit/85fdbe117c2a4400d001a6368cc359d88f40abc7
76
+ options[:callback_url] || (full_host + script_name + callback_path)
77
+ end
78
+ end
79
+
80
+ def access_token_options
81
+ options.access_token_options.inject({}) { |h,(k,v)| h[k.to_sym] = v; h }
82
+ end
83
+
84
+ # You can pass +display+, +scope+, or +auth_type+ params to the auth request, if you need to set them dynamically.
85
+ # You can also set these options in the OmniAuth config :authorize_params option.
86
+ #
87
+ # For example: /auth/facebook?display=popup
88
+ def authorize_params
89
+ super.tap do |params|
90
+ %w[display scope auth_type].each do |v|
91
+ if request.params[v]
92
+ params[v.to_sym] = request.params[v]
93
+ end
94
+ end
95
+ end
96
+ end
97
+
98
+ def appsecret_proof
99
+ @appsecret_proof ||= OpenSSL::HMAC.hexdigest(OpenSSL::Digest::SHA256.new, client.secret, access_token.token)
100
+ end
101
+ end
102
+ end
103
+ end
104
+
105
+ OmniAuth.config.add_camelization 'mvc', 'MVC'
106
+
107
+ module OAuth2
108
+ class Error < StandardError
109
+ attr_reader :response, :code, :description
110
+
111
+ # standard error values include:
112
+ # :invalid_request, :invalid_client, :invalid_token, :invalid_grant, :unsupported_grant_type, :invalid_scope
113
+ def initialize(response)
114
+ response.error = self
115
+ @response = response
116
+
117
+ message = []
118
+
119
+ if response.parsed.is_a?(Hash)
120
+ @code = response.parsed['error']
121
+ @description = response.parsed['error_description']
122
+ message << "#{@code}: #{@description}"
123
+ end
124
+
125
+ message << response.body.force_encoding("UTF-8")
126
+
127
+ super(message.join("\n"))
128
+ end
129
+ end
130
+ end
@@ -0,0 +1,5 @@
1
+ module OmniAuth
2
+ module MVC
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ require "omniauth-mvc/version"
2
+ require 'omniauth/strategies/mvc'
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require 'omniauth-mvc/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "omniauth-mvc"
7
+ s.version = OmniAuth::MVC::VERSION
8
+ s.authors = ["Yasuhiro Manai"]
9
+ s.email = ["yasuhiro.manai@gmail.com"]
10
+ s.summary = %q{MVC-online OAuth2 Strategy for OmniAuth}
11
+ s.description = s.summary
12
+ s.homepage = "https://github.com/yasu/omniauth-mvc"
13
+ s.license = "MIT"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.add_runtime_dependency 'omniauth', '~> 1.2'
21
+ s.add_runtime_dependency 'omniauth-oauth2', '~> 1.4'
22
+
23
+ s.add_development_dependency "bundler", "~> 1.10"
24
+ s.add_development_dependency "rake", "~> 10.0"
25
+ s.add_development_dependency "rs"
26
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe Omniauth::Mvc do
4
+ it 'has a version number' do
5
+ expect(Omniauth::Mvc::VERSION).not_to be nil
6
+ end
7
+
8
+ it 'does something useful' do
9
+ expect(false).to eq(true)
10
+ end
11
+ end
@@ -0,0 +1,2 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+ require 'omniauth/mvc'
metadata ADDED
@@ -0,0 +1,133 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-mvc
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Yasuhiro Manai
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-14 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.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: omniauth-oauth2
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.4'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.4'
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.10'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.10'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rs
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: MVC-online OAuth2 Strategy for OmniAuth
84
+ email:
85
+ - yasuhiro.manai@gmail.com
86
+ executables:
87
+ - console
88
+ - setup
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - ".gitignore"
93
+ - ".rspec"
94
+ - ".travis.yml"
95
+ - Gemfile
96
+ - LICENSE.txt
97
+ - README.md
98
+ - Rakefile
99
+ - bin/console
100
+ - bin/setup
101
+ - lib/omniauth-mvc.rb
102
+ - lib/omniauth-mvc/version.rb
103
+ - lib/omniauth/strategies/mvc.rb
104
+ - omniauth-mvc.gemspec
105
+ - spec/omniauth/mvc_spec.rb
106
+ - spec/spec_helper.rb
107
+ homepage: https://github.com/yasu/omniauth-mvc
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 2.4.8
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: MVC-online OAuth2 Strategy for OmniAuth
131
+ test_files:
132
+ - spec/omniauth/mvc_spec.rb
133
+ - spec/spec_helper.rb