Sha256: c7880a22af67513b8bfa20b836deb0710a20a4377fd6a98e05c5fe5c59d68ebb

Contents?: true

Size: 1.73 KB

Versions: 14

Compression:

Stored size: 1.73 KB

Contents

class <%= @model_name %>
  include DataMapper::Resource
  include DataMapper::Validate
  attr_accessor :password, :password_confirmation

  # Properties
  property :id,               Serial
  property :name,             String
  property :surname,          String
  property :email,            String
  property :crypted_password, String, :length => 70
  property :role,             String

  # Validations
  validates_presence_of      :email, :role
  validates_presence_of      :password,                          :if => :password_required
  validates_presence_of      :password_confirmation,             :if => :password_required
  validates_length_of        :password, :min => 4, :max => 40,   :if => :password_required
  validates_confirmation_of  :password,                          :if => :password_required
  validates_length_of        :email,    :min => 3, :max => 100
  validates_uniqueness_of    :email,    :case_sensitive => false
  validates_format_of        :email,    :with => :email_address
  validates_format_of        :role,     :with => /[A-Za-z]/

  # Callbacks
  before :save, :encrypt_password

  ##
  # This method is for authentication purpose
  #
  def self.authenticate(email, password)
    account = first(:conditions => { :email => email }) if email.present?
    account && account.has_password?(password) ? account : nil
  end

  ##
  # This method is used by AuthenticationHelper
  #
  def self.find_by_id(id)
    get(id) rescue nil
  end

  def has_password?(password)
    ::BCrypt::Password.new(crypted_password) == password
  end

  private
  def password_required
    crypted_password.blank? || password.present?
  end

  def encrypt_password
    self.crypted_password = ::BCrypt::Password.create(password) if password.present?
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
padrino-admin-0.11.2 lib/padrino-admin/generators/templates/account/datamapper.rb.tt
padrino-admin-0.11.1 lib/padrino-admin/generators/templates/account/datamapper.rb.tt
bootstrap-on-0.0.9 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.8 lib/bootstrap-on/templates/account/datamapper.rb.tt
padrino-admin-0.11.0 lib/padrino-admin/generators/templates/account/datamapper.rb.tt
bootstrap-on-0.0.7 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.6 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.5 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.4 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.3 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.2 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.1 lib/bootstrap-on/templates/account/datamapper.rb.tt
bootstrap-on-0.0.0 lib/bootstrap-on/templates/account/datamapper.rb.tt
padrino-admin-0.10.7 lib/padrino-admin/generators/templates/account/datamapper.rb.tt