Grosse MàJ
This commit is contained in:
		
							
								
								
									
										2
									
								
								P5B/ruby/mon_projet/app/models/address.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								P5B/ruby/mon_projet/app/models/address.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
class Address < ActiveRecord::Base
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										3
									
								
								P5B/ruby/mon_projet/app/models/customer.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								P5B/ruby/mon_projet/app/models/customer.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
class Customer < ActiveRecord::Base
 | 
			
		||||
  has_many :products
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										5
									
								
								P5B/ruby/mon_projet/app/models/product.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								P5B/ruby/mon_projet/app/models/product.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
class Product < ActiveRecord::Base
 | 
			
		||||
belongs_to :supplier
 | 
			
		||||
belongs_to :customer
 | 
			
		||||
validates_presence_of :designation, :message => "ne peut être vide."
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										5
									
								
								P5B/ruby/mon_projet/app/models/product.rb~
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								P5B/ruby/mon_projet/app/models/product.rb~
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
			
		||||
class Product < ActiveRecord::Base
 | 
			
		||||
belongs_to :supplier
 | 
			
		||||
belongs_to :customer
 | 
			
		||||
validates_presence_of :designation, :message => "ne peut être vide."
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										3
									
								
								P5B/ruby/mon_projet/app/models/supplier.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								P5B/ruby/mon_projet/app/models/supplier.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,3 @@
 | 
			
		||||
class Supplier < ActiveRecord::Base
 | 
			
		||||
  has_many :products
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										98
									
								
								P5B/ruby/mon_projet/app/models/utilisateur.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										98
									
								
								P5B/ruby/mon_projet/app/models/utilisateur.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,98 @@
 | 
			
		||||
require 'digest/sha1'
 | 
			
		||||
class Utilisateur < ActiveRecord::Base
 | 
			
		||||
  # Virtual attribute for the unencrypted password
 | 
			
		||||
  attr_accessor :password
 | 
			
		||||
 | 
			
		||||
  validates_presence_of     :login, :email
 | 
			
		||||
  validates_presence_of     :password,                   :if => :password_required?
 | 
			
		||||
  validates_presence_of     :password_confirmation,      :if => :password_required?
 | 
			
		||||
  validates_length_of       :password, :within => 4..40, :if => :password_required?
 | 
			
		||||
  validates_confirmation_of :password,                   :if => :password_required?
 | 
			
		||||
  validates_length_of       :login,    :within => 3..40
 | 
			
		||||
  validates_length_of       :email,    :within => 3..100
 | 
			
		||||
  validates_uniqueness_of   :login, :email, :case_sensitive => false
 | 
			
		||||
  before_save :encrypt_password
 | 
			
		||||
  before_create :make_activation_code 
 | 
			
		||||
  # prevents a user from submitting a crafted form that bypasses activation
 | 
			
		||||
  # anything else you want your user to change should be added here.
 | 
			
		||||
  attr_accessible :login, :email, :password, :password_confirmation
 | 
			
		||||
  
 | 
			
		||||
  # Activates the user in the database.
 | 
			
		||||
  def activate
 | 
			
		||||
    @activated = true
 | 
			
		||||
    self.activated_at = Time.now.utc
 | 
			
		||||
    self.activation_code = nil
 | 
			
		||||
    save(false)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def activated?
 | 
			
		||||
    # the existence of an activation code means they have not activated yet
 | 
			
		||||
    activation_code.nil?
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  # Returns true if the user has just been activated.
 | 
			
		||||
  def recently_activated?
 | 
			
		||||
    @activated
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  # Authenticates a user by their login name and unencrypted password.  Returns the user or nil.
 | 
			
		||||
  def self.authenticate(login, password)
 | 
			
		||||
    u = find :first, :conditions => ['login = ? and activated_at IS NOT NULL', login] # need to get the salt
 | 
			
		||||
    u && u.authenticated?(password) ? u : nil
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  # Encrypts some data with the salt.
 | 
			
		||||
  def self.encrypt(password, salt)
 | 
			
		||||
    Digest::SHA1.hexdigest("--#{salt}--#{password}--")
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  # Encrypts the password with the user salt
 | 
			
		||||
  def encrypt(password)
 | 
			
		||||
    self.class.encrypt(password, salt)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def authenticated?(password)
 | 
			
		||||
    crypted_password == encrypt(password)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def remember_token?
 | 
			
		||||
    remember_token_expires_at && Time.now.utc < remember_token_expires_at 
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  # These create and unset the fields required for remembering users between browser closes
 | 
			
		||||
  def remember_me
 | 
			
		||||
    remember_me_for 2.weeks
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def remember_me_for(time)
 | 
			
		||||
    remember_me_until time.from_now.utc
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def remember_me_until(time)
 | 
			
		||||
    self.remember_token_expires_at = time
 | 
			
		||||
    self.remember_token            = encrypt("#{email}--#{remember_token_expires_at}")
 | 
			
		||||
    save(false)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def forget_me
 | 
			
		||||
    self.remember_token_expires_at = nil
 | 
			
		||||
    self.remember_token            = nil
 | 
			
		||||
    save(false)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  protected
 | 
			
		||||
    # before filter 
 | 
			
		||||
    def encrypt_password
 | 
			
		||||
      return if password.blank?
 | 
			
		||||
      self.salt = Digest::SHA1.hexdigest("--#{Time.now.to_s}--#{login}--") if new_record?
 | 
			
		||||
      self.crypted_password = encrypt(password)
 | 
			
		||||
    end
 | 
			
		||||
    
 | 
			
		||||
    def password_required?
 | 
			
		||||
      crypted_password.blank? || !password.blank?
 | 
			
		||||
    end
 | 
			
		||||
    
 | 
			
		||||
    def make_activation_code
 | 
			
		||||
      self.activation_code = Digest::SHA1.hexdigest( Time.now.to_s.split(//).sort_by {rand}.join )
 | 
			
		||||
    end 
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										24
									
								
								P5B/ruby/mon_projet/app/models/utilisateur_mailer.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								P5B/ruby/mon_projet/app/models/utilisateur_mailer.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
class UtilisateurMailer < ActionMailer::Base
 | 
			
		||||
  def signup_notification(utilisateur)
 | 
			
		||||
    setup_email(utilisateur)
 | 
			
		||||
    @subject    += 'Please activate your new account'
 | 
			
		||||
  
 | 
			
		||||
    @body[:url]  = "http://YOURSITE/activate/#{utilisateur.activation_code}"
 | 
			
		||||
  
 | 
			
		||||
  end
 | 
			
		||||
  
 | 
			
		||||
  def activation(utilisateur)
 | 
			
		||||
    setup_email(utilisateur)
 | 
			
		||||
    @subject    += 'Your account has been activated!'
 | 
			
		||||
    @body[:url]  = "http://YOURSITE/"
 | 
			
		||||
  end
 | 
			
		||||
  
 | 
			
		||||
  protected
 | 
			
		||||
    def setup_email(utilisateur)
 | 
			
		||||
      @recipients  = "#{utilisateur.email}"
 | 
			
		||||
      @from        = "ADMINEMAIL"
 | 
			
		||||
      @subject     = "[YOURSITE] "
 | 
			
		||||
      @sent_on     = Time.now
 | 
			
		||||
      @body[:utilisateur] = utilisateur
 | 
			
		||||
    end
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										11
									
								
								P5B/ruby/mon_projet/app/models/utilisateur_observer.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								P5B/ruby/mon_projet/app/models/utilisateur_observer.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,11 @@
 | 
			
		||||
class UtilisateurObserver < ActiveRecord::Observer
 | 
			
		||||
  def after_create(utilisateur)
 | 
			
		||||
    UtilisateurMailer.deliver_signup_notification(utilisateur)
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def after_save(utilisateur)
 | 
			
		||||
  
 | 
			
		||||
    UtilisateurMailer.deliver_activation(utilisateur) if utilisateur.recently_activated?
 | 
			
		||||
  
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										2
									
								
								P5B/ruby/mon_projet/app/models/velo.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								P5B/ruby/mon_projet/app/models/velo.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
class Velo < Product
 | 
			
		||||
end
 | 
			
		||||
							
								
								
									
										2
									
								
								P5B/ruby/mon_projet/app/models/voiture.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								P5B/ruby/mon_projet/app/models/voiture.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
class Voiture < Product
 | 
			
		||||
end
 | 
			
		||||
		Reference in New Issue
	
	Block a user