2012-04-16 11:57:33 +00:00
|
|
|
class Authorization < ApplicationModel
|
2012-07-29 19:32:37 +00:00
|
|
|
belongs_to :user
|
2012-04-16 08:04:49 +00:00
|
|
|
validates_presence_of :user_id, :uid, :provider
|
|
|
|
validates_uniqueness_of :uid, :scope => :provider
|
2012-04-10 14:06:46 +00:00
|
|
|
|
|
|
|
def self.find_from_hash(hash)
|
2012-04-18 07:40:37 +00:00
|
|
|
auth = Authorization.where( :provider => hash['provider'], :uid => hash['uid'] ).first
|
|
|
|
if auth
|
2012-04-10 14:06:46 +00:00
|
|
|
|
|
|
|
# update auth tokens
|
2012-04-18 07:40:37 +00:00
|
|
|
auth.update_attributes(
|
2012-04-10 14:06:46 +00:00
|
|
|
:token => hash['credentials']['token'],
|
|
|
|
:secret => hash['credentials']['secret']
|
|
|
|
)
|
2012-04-18 07:40:37 +00:00
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
# update image if needed
|
|
|
|
if hash['info']['image']
|
2012-04-18 07:40:37 +00:00
|
|
|
user = User.find( auth.user_id )
|
2012-04-10 14:06:46 +00:00
|
|
|
user.update_attributes(
|
2012-04-16 08:04:49 +00:00
|
|
|
:image => hash['info']['image']
|
2012-04-10 14:06:46 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2012-04-18 07:40:37 +00:00
|
|
|
return auth
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.create_from_hash(hash, user = nil)
|
|
|
|
if user then
|
|
|
|
user.update_attributes(
|
2012-04-18 07:40:37 +00:00
|
|
|
# :username => hash['username'],
|
|
|
|
:image => hash['info']['image']
|
2012-04-10 14:06:46 +00:00
|
|
|
)
|
2012-04-18 07:40:37 +00:00
|
|
|
|
|
|
|
# fillup empty attributes
|
|
|
|
# TODO
|
|
|
|
|
2012-04-10 14:06:46 +00:00
|
|
|
else
|
|
|
|
user = User.create_from_hash!(hash)
|
|
|
|
end
|
2012-04-18 07:40:37 +00:00
|
|
|
|
|
|
|
auth = Authorization.create(
|
2012-04-10 14:06:46 +00:00
|
|
|
:user => user,
|
|
|
|
:uid => hash['uid'],
|
|
|
|
:username => hash['username'],
|
|
|
|
:provider => hash['provider'],
|
|
|
|
:token => hash['credentials']['token'],
|
|
|
|
:secret => hash['credentials']['secret']
|
|
|
|
)
|
2012-04-18 07:40:37 +00:00
|
|
|
return auth
|
2012-04-16 08:04:49 +00:00
|
|
|
end
|
2012-04-10 14:06:46 +00:00
|
|
|
end
|