Skip to content

Instantly share code, notes, and snippets.

@madhums
Created November 15, 2010 12:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madhums/700308 to your computer and use it in GitHub Desktop.
Save madhums/700308 to your computer and use it in GitHub Desktop.
authlogic configuration : If you want to have password and password confirmation required on signup form AND optional (i.e, leave it blank) in profile update, this is the configuration
class User < ActiveRecord::Base
attr_accessor :password_confirmation
acts_as_authentic do |c|
c.validates_length_of_login_field_options :within=>1..30 #username can be 1 to 30 characters long
c.validates_format_of_login_field_options = {:with => /^[a-zA-Z0-9_]+$/, :message => I18n.t('error_messages.login_invalid', :default => "should use only alphabets, numbers and underscores no other characters.")} #username can only contain alphabets, numbers and "_" no other characters permitted
#the below two would make password and password_confirmation optional i.e, you don't have to fill it.
c.ignore_blank_passwords = true #ignoring passwords
c.validate_password_field = false #ignoring validations for password fields
end
#here we add required validations for a new record and pre-existing record
validate do |user|
if user.new_record? #adds validation if it is a new record
user.errors.add(:password, "is required") if user.password.blank?
user.errors.add(:password_confirmation, "is required") if user.password_confirmation.blank?
user.errors.add(:password, "Password and confirmation must match") if user.password != user.password_confirmation
elsif !(!user.new_record? && user.password.blank? && user.password_confirmation.blank?) #adds validation only if password or password_confirmation are modified
user.errors.add(:password, "is required") if user.password.blank?
user.errors.add(:password_confirmation, "is required") if user.password_confirmation.blank?
user.errors.add(:password, " and confirmation must match.") if user.password != user.password_confirmation
user.errors.add(:password, " and confirmation should be atleast 4 characters long.") if user.password.length < 4 || user.password_confirmation.length < 4
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment