]> git.openstreetmap.org Git - rails.git/blob - app/models/user.rb
fixes for search
[rails.git] / app / models / user.rb
1 class User < ActiveRecord::Base
2   require 'xml/libxml'
3   require 'digest/md5'
4
5   has_many :traces
6
7   validates_confirmation_of :pass_crypt, :message => 'Password must match the confirmation password'
8   validates_uniqueness_of :display_name, :allow_nil => true
9   validates_uniqueness_of :email
10   validates_length_of :pass_crypt, :minimum => 8
11   validates_length_of :display_name, :minimum => 3, :allow_nil => true
12   validates_format_of :email, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
13
14   def set_defaults
15     self.creation_time = Time.now
16     self.timeout = Time.now
17     self.token = User.make_token()
18   end
19   
20   def pass_crypt=(str) 
21     write_attribute("pass_crypt", Digest::MD5.hexdigest(str)) 
22   end
23
24   def pass_crypt_confirmation=(str) 
25     write_attribute("pass_crypt_confirm", Digest::MD5.hexdigest(str)) 
26   end
27   
28   def self.authenticate(email, passwd) \r
29     find(:first, :conditions => [ "email = ? AND pass_crypt = ?", email, Digest::MD5.hexdigest(passwd)])\r
30   end 
31
32   def self.authenticate_token(token) 
33     find(:first, :conditions => [ "token = ? ", token])
34   end 
35   
36   def self.make_token(length=30)
37     chars = 'abcdefghijklmnopqrtuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
38     confirmstring = ''
39
40     length.times do
41       confirmstring += chars[(rand * chars.length).to_i].chr
42     end
43
44     return confirmstring
45   end
46
47   def to_xml
48     doc = OSM::API.new.get_xml_doc
49     doc.root << to_xml_node()
50     return doc
51   end
52
53   def to_xml_node
54     el1 = XML::Node.new 'user'
55     el1['display_name'] = self.display_name.to_s
56     el1['account_created'] = self.creation_time.xmlschema
57     return el1
58   end
59 end