X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/05e212027339733cf39aa9b7536c3f5f69ba0962..406b46e49b786fab879286d77735b2a16c1cfcc5:/app/models/oauth_token.rb diff --git a/app/models/oauth_token.rb b/app/models/oauth_token.rb index 5fca40ce2..f64ec53db 100644 --- a/app/models/oauth_token.rb +++ b/app/models/oauth_token.rb @@ -5,6 +5,16 @@ class OauthToken < ActiveRecord::Base validates_presence_of :client_application, :token, :secret before_validation_on_create :generate_keys + 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