Sha256: 4bb600ffab663c7c88c928702092af6a60b55a41ed19b189db883242f543948b

Contents?: true

Size: 1015 Bytes

Versions: 1

Compression:

Stored size: 1015 Bytes

Contents

require 'facemock/database/table'
require 'facemock/permission'
require 'facemock/authorization_code'

module Facemock
  class User < Database::Table
    TABLE_NAME = :users
    COLUMN_NAMES = [:id, :name, :email, :password, :installed, :access_token, :application_id, :created_at]
    CHILDREN = [ Permission, AuthorizationCode ]

    def initialize(options={})
      opts = Hashie::Mash.new(options)
      @id             = (opts.id.to_i > 0) ? opts.id.to_i : ("10000" + (0..9).to_a.shuffle[0..10].join).to_i
      @name           = opts.name         || rand(36**10).to_s(36)
      @email          = opts.email        || name.gsub(" ", "_") + "@example.com"
      @password       = opts.password     || rand(36**10).to_s(36)
      @installed      = opts.installed    || false
      @access_token   = opts.access_token || Digest::SHA512.hexdigest(identifier.to_s)
      app_id = opts.application_id.to_i
      @application_id = (app_id > 0) ? app_id : nil
      @created_at     = opts.created_at
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facemock-0.0.8 lib/facemock/user.rb