lib/omniauth/strategies/linked_in.rb in oa-oauth-0.2.4 vs lib/omniauth/strategies/linked_in.rb in oa-oauth-0.2.5
- old
+ new
@@ -1,6 +1,6 @@
-require 'nokogiri'
+require 'multi_xml'
require 'omniauth/oauth'
module OmniAuth
module Strategies
class LinkedIn < OmniAuth::Strategies::OAuth
@@ -13,42 +13,42 @@
:scheme => :header
}
client_options[:authorize_path] = '/uas/oauth/authenticate' unless options[:sign_in] == false
- '/uas/oauth/authorize'
super(app, :linked_in, consumer_key, consumer_secret, client_options, options, &block)
end
-
+
def auth_hash
hash = user_hash(@access_token)
-
+
OmniAuth::Utils.deep_merge(super, {
'uid' => hash.delete('id'),
'user_info' => hash
})
end
-
+
def user_hash(access_token)
- person = Nokogiri::XML::Document.parse(@access_token.get('/v1/people/~:(id,first-name,last-name,headline,member-url-resources,picture-url,location,public-profile-url)').body).xpath('person')
-
+ person = MulitXml.parse(@access_token.get('/v1/people/~:(id,first-name,last-name,headline,member-url-resources,picture-url,location,public-profile-url)').body).xpath('person')
+
hash = {
'id' => person.xpath('id').text,
'first_name' => person.xpath('first-name').text,
'last_name' => person.xpath('last-name').text,
'nickname' => person.xpath('public-profile-url').text.split('/').last,
'location' => person.xpath('location/name').text,
'image' => person.xpath('picture-url').text,
'description' => person.xpath('headline').text,
+ 'public_profile_url' => person.xpath('public-profile-url').text,
'urls' => person.css('member-url-resources member-url').inject({}) do |h,element|
h[element.xpath('name').text] = element.xpath('url').text
h
end
}
-
+
hash['urls']['LinkedIn'] = person.xpath('public-profile-url').text
hash['name'] = "#{hash['first_name']} #{hash['last_name']}"
-
+
hash
end
end
end
end