X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/41a123334bc75d17335e3f242b0243ddfd3e6389..85e99d3127e5febcf4698c9d2576f653775af787:/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