41 lines
1,019 B
Ruby
41 lines
1,019 B
Ruby
class OauthToken < ActiveRecord::Base
|
|
belongs_to :client_application
|
|
belongs_to :user
|
|
validates_uniqueness_of :token
|
|
validates_presence_of :client_application, :token, :secret
|
|
before_validation :generate_keys, :on => :create
|
|
|
|
def self.find_token(token_key)
|
|
token = OauthToken.find_by_token(token_key, :include => :client_application)
|
|
if token && token.authorized?
|
|
logger.info "Loaded #{token.token} which was authorized by (user_id=#{token.user_id}) on the #{token.authorized_at}"
|
|
token
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
def invalidated?
|
|
invalidated_at != nil
|
|
end
|
|
|
|
def invalidate!
|
|
update_attribute(:invalidated_at, Time.now)
|
|
end
|
|
|
|
def authorized?
|
|
authorized_at != nil && !invalidated?
|
|
end
|
|
|
|
def to_query
|
|
"oauth_token=#{token}&oauth_token_secret=#{secret}"
|
|
end
|
|
|
|
protected
|
|
|
|
def generate_keys
|
|
@oauth_token = client_application.oauth_server.generate_credentials
|
|
self.token = @oauth_token[0]
|
|
self.secret = @oauth_token[1]
|
|
end
|
|
end
|