omniauth-naver 0.0.1

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: 22a223f93c8462df74e136551f2a8ba976e1f0aa
4
+ data.tar.gz: 6bebf42eeabe6e887506162bebcfbfd42320f202
5
+ SHA512:
6
+ metadata.gz: ce6ceb5be9c40bcf9088aaae3bdca1790976fd793b1cc2c32e7ce1457b7fe8d84f8483781daee6d75ffa1fea4c50b9520d5cea90656b12e46abb87df206177bc
7
+ data.tar.gz: d14a434b1b08e303fe7d8675c87dc7de0943f300ffd74a276eae6d0c1435dc2719a38f1e1fb44693e56fcd83e6b1a029b3dd37e817406a92779ca2588151a0c4
data/.gitignore ADDED
@@ -0,0 +1,22 @@
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
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in omniauth-naver.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Surim Kim
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,71 @@
1
+ # OmniAuth Naver
2
+
3
+ This is the OmniAuth strategy for authenticating to Naver. To
4
+ use it, you'll need to sign up for an OAuth2 Application ID and Secret
5
+ on the [Naver](http://developer.naver.com/wiki/pages/NaverLogin).
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'omniauth-naver'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install omniauth-naver
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ use OmniAuth::Builder do
27
+ provider :naver, ENV['NAVER_KEY'], ENV['NAVER_SECRET']
28
+ end
29
+ ```
30
+
31
+ ## Auth Hash
32
+
33
+ Here's an example *Auth Hash* available in `request.env['omniauth.auth']`:
34
+
35
+ ```ruby
36
+ {
37
+ provider: naver
38
+ uid: 86744e27d4bfdb3cddb478293d295cf783ce9ed41f0ad7687bac26e97a1ed1b4
39
+ info: !ruby/hash:OmniAuth::AuthHash::InfoHash
40
+ name: "foobar"
41
+ email: foobar@naver.com
42
+ gender: male
43
+ image: https://ssl.pstatic.net/static/pwe/address/nodata_33x33.gif
44
+ credentials: !ruby/hash:OmniAuth::AuthHash
45
+ token: AAAAOpVbMMMRWuRxewGhFqvGu92+Ri8hZ+i3QIId2vq/nDRHhzIbFXCEuGoWsjeZt9VV1KA+6IAB6lQtWidEYSjpgYU=
46
+ refresh_token: 2hHBogSApL4Z2tDW1ippPmrPiiWMiiiseId6LcJRmFTzARYkSzQmHbqAlqBgkIvYisS0tjisTCEBDaMmyaKZwuKo3ATGBsoQjzLmOB9PVp91cd28s2LRDisPxnaUG6NQ0fmRHFD
47
+ expires_at: 1407165161
48
+ expires: true
49
+ extra: !ruby/hash:OmniAuth::AuthHash
50
+ raw_info: !ruby/hash:OmniAuth::AuthHash
51
+ data: !ruby/hash:OmniAuth::AuthHash
52
+ result: !ruby/hash:OmniAuth::AuthHash
53
+ resultcode: '00'
54
+ message: success
55
+ response: !ruby/hash:OmniAuth::AuthHash
56
+ email: foobar@naver.com
57
+ nickname: "foobar"
58
+ enc_id: 86744e27d4bfdb3cddb478293d295cf783ce9ed41f0ad7687bac26e97a1ed1b4
59
+ profile_image: https://ssl.pstatic.net/static/pwe/address/nodata_33x33.gif
60
+ age: 30-39
61
+ birthday: 01-08
62
+ gender: M
63
+ ```
64
+
65
+ ## Contributing
66
+
67
+ 1. Fork it ( https://github.com/[my-github-username]/omniauth-naver/fork )
68
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
69
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
70
+ 4. Push to the branch (`git push origin my-new-feature`)
71
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,3 @@
1
+ require "omniauth-naver/version"
2
+ require 'omniauth/strategies/naver'
3
+
@@ -0,0 +1,5 @@
1
+ module Omniauth
2
+ module Naver
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,52 @@
1
+ require 'omniauth-oauth2'
2
+
3
+ module OmniAuth
4
+ module Strategies
5
+ class Naver < OmniAuth::Strategies::OAuth2
6
+ option :name, 'naver'
7
+
8
+ option :client_options, {
9
+ :site => 'https://nid.naver.com',
10
+ :authorize_url => 'https://nid.naver.com/oauth2.0/authorize',
11
+ :token_url => 'https://nid.naver.com/oauth2.0/token',
12
+ }
13
+
14
+ uid { raw_properties['enc_id'].to_s }
15
+
16
+ info do
17
+ {
18
+ 'name' => raw_properties['nickname'],
19
+ 'email' => raw_properties['email'],
20
+ 'gender' => gender,
21
+ 'image' => image,
22
+ }
23
+ end
24
+
25
+ extra do
26
+ {:raw_info => raw_info}
27
+ end
28
+
29
+
30
+ private
31
+
32
+ def gender
33
+ return 'male' if raw_properties['gender'].include? 'M'
34
+ return 'female' if raw_properties['gender'].include? 'F'
35
+ end
36
+
37
+ def image
38
+ return raw_properties['profile_image'].sub('?type=s80', '') unless raw_properties['profile_image'].include? 'nodata_33x33.gif'
39
+ end
40
+
41
+ def raw_info
42
+ @raw_info ||= access_token.get('https://apis.naver.com/nidlogin/nid/getUserProfile.json').parsed
43
+ end
44
+
45
+ def raw_properties
46
+ @raw_properties ||= raw_info['data']['response']
47
+ end
48
+ end
49
+ end
50
+ end
51
+
52
+ OmniAuth.config.add_camelization 'naver', 'Naver'
@@ -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-naver/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "omniauth-naver"
8
+ spec.version = Omniauth::Naver::VERSION
9
+ spec.authors = ["Surim Kim"]
10
+ spec.email = ["kimsuelim@gmail.com"]
11
+ spec.summary = %q{OmniAuth strategy for Naver}
12
+ spec.description = %q{OmniAuth strategy for Naver(http://developer.naver.com/)}
13
+ spec.homepage = ""
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', '~> 1.0'
22
+ spec.add_dependency 'omniauth-oauth2', '~> 1.1'
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.6"
25
+ spec.add_development_dependency "rake"
26
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-naver
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Surim Kim
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-08-04 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
+ - !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.1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.1'
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.6'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.6'
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
+ description: OmniAuth strategy for Naver(http://developer.naver.com/)
70
+ email:
71
+ - kimsuelim@gmail.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-naver.rb
82
+ - lib/omniauth-naver/version.rb
83
+ - lib/omniauth/strategies/naver.rb
84
+ - omniauth-naver.gemspec
85
+ homepage: ''
86
+ licenses:
87
+ - MIT
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 2.2.2
106
+ signing_key:
107
+ specification_version: 4
108
+ summary: OmniAuth strategy for Naver
109
+ test_files: []