]> git.openstreetmap.org Git - rails.git/blob - app/models/user.rb
Add support for displaying a map covering a specified bounding box.
[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   has_many :diary_entries, :order => 'created_at DESC'
7   has_many :messages, :foreign_key => :to_user_id
8   has_many :friends
9
10   validates_confirmation_of :pass_crypt, :message => 'Password must match the confirmation password'
11   validates_uniqueness_of :display_name, :allow_nil => true
12   validates_uniqueness_of :email
13   validates_length_of :pass_crypt, :minimum => 8
14   validates_length_of :display_name, :minimum => 3, :allow_nil => true
15   validates_format_of :email, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
16   validates_format_of :display_name, :with => /^[^\/;.,?]*$/
17
18   before_save :encrypt_password
19
20   def set_defaults
21     self.creation_time = Time.now
22     self.timeout = Time.now
23     self.token = User.make_token()
24   end
25
26   def encrypt_password
27     self.pass_crypt = Digest::MD5.hexdigest(pass_crypt) unless pass_crypt_confirmation.nil?
28   end
29
30   def self.authenticate(email, passwd, active = true)
31     find(:first, :conditions => [ "email = ? AND pass_crypt = ? AND active = ?", email, Digest::MD5.hexdigest(passwd), active])
32   end 
33
34   def self.authenticate_token(token) 
35     find(:first, :conditions => [ "token = ? ", token])
36   end 
37
38   def self.make_token(length=30)
39     chars = 'abcdefghijklmnopqrtuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'
40     confirmstring = ''
41
42     length.times do
43       confirmstring += chars[(rand * chars.length).to_i].chr
44     end
45
46     return confirmstring
47   end
48
49   def to_xml
50     doc = OSM::API.new.get_xml_doc
51     doc.root << to_xml_node()
52     return doc
53   end
54
55   def to_xml_node
56     el1 = XML::Node.new 'user'
57     el1['display_name'] = self.display_name.to_s
58     el1['account_created'] = self.creation_time.xmlschema
59     return el1
60   end
61
62   def nearby(radius = 50)
63     if self.home_lon and self.home_lat 
64       gc = OSM::GreatCircle.new(self.home_lat, self.home_lon)
65       bounds = gc.bounds(radius)
66       nearby = User.find(:all, :conditions => "home_lat between #{bounds[:minlat]} and #{bounds[:maxlat]} and home_lon between #{bounds[:minlon]} and #{bounds[:maxlon]} and data_public = 1 and id != #{self.id}")
67       nearby.delete_if { |u| gc.distance(u.home_lat, u.home_lon) > radius }
68       nearby.sort! { |u1,u2| gc.distance(u1.home_lat, u1.home_lon) <=> gc.distance(u2.home_lat, u2.home_lon) }
69     else
70       nearby = []
71     end
72     return nearby
73   end
74
75   def distance(nearby_user)
76     return OSM::GreatCircle.new(self.home_lat, self.home_lon).distance(nearby_user.home_lat, nearby_user.home_lon)
77   end
78
79   def self.has_messages?
80     if Message.fdhjklsafind_by_to_user_id(self.id) 
81       return true
82     else
83       return false
84     end
85   end
86
87   def get_new_messages
88     messages = Message.find(:all, :conditions => "message_read = 0 and to_user_id = #{self.id}")
89     return messages
90   end
91
92   def get_all_messages
93     messages = Message.find(:all, :conditions => "to_user_id = #{self.id}")
94     return messages
95   end
96
97   def is_friends_with?(new_friend)
98     res = false
99     @new_friend = new_friend
100     self.friends.each do |friend|
101       if friend.user_id == @new_friend.user_id
102         return true
103       end
104     end
105     return false
106   end
107
108 end