Sha256: 6dca394f5787bd7c21ac7cdd5de1fb61f02b6b5035414884c877f2b0c99a8935

Contents?: true

Size: 1.9 KB

Versions: 4

Compression:

Stored size: 1.9 KB

Contents

#--
# Copyright (c) 2011 Michael Berkovich
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++

class Platform::Oauth::AccessToken < Platform::Oauth::OauthToken
  validates_presence_of :user_id 
  
  before_create :set_authorized_at
  
  # Implement this to return a hash or array of the capabilities the access token has
  # This is particularly useful if you have implemented user defined permissions.
  # def capabilities
  #   {:invalidate=>"/oauth/invalidate",:capabilities=>"/oauth/capabilities"}
  # end

  def to_json(options={})
    hash = {:access_token => token}
    hash[:expires_in] = valid_to.to_i - Time.now.to_i
    hash.to_json(options)
  end

protected

  def set_authorized_at
    self.authorized_at = Time.now
  end

  # Ticket 19802
  before_create :set_valid_to
  def set_valid_to
    self.valid_to ||= Time.now + lifetime
  end

  def lifetime
    @lifetime ||= Platform::Config.api_token_lifetime.to_i
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
platform-3.1.4 app/models/platform/oauth/access_token.rb
platform-3.1.3 app/models/platform/oauth/access_token.rb
platform-3.1.2 app/models/platform/oauth/access_token.rb
platform-3.1.1 app/models/platform/oauth/access_token.rb