]> git.openstreetmap.org Git - rails.git/blob - app/models/user.rb
Removed debugging statements accidentally committed.
[rails.git] / app / models / user.rb
1 class User < ActiveRecord::Base
2   require 'xml/libxml'
3
4   has_many :traces, :conditions => { :visible => true }
5   has_many :diary_entries, :order => 'created_at DESC'
6   has_many :messages, :foreign_key => :to_user_id, :conditions => { :to_user_visible => true }, :order => 'sent_on DESC'
7   has_many :new_messages, :class_name => "Message", :foreign_key => :to_user_id, :conditions => { :message_read => false }, :order => 'sent_on DESC'
8   has_many :sent_messages, :class_name => "Message", :foreign_key => :from_user_id, :conditions => { :from_user_visible => true }, :order => 'sent_on DESC'
9   has_many :friends, :include => :befriendee, :conditions => ["users.visible = ?", true]
10   has_many :tokens, :class_name => "UserToken"
11   has_many :preferences, :class_name => "UserPreference"
12   has_many :changesets
13
14   has_many :client_applications
15   has_many :oauth_tokens, :class_name => "OauthToken", :order => "authorized_at desc", :include => [:client_application]
16
17   validates_presence_of :email, :display_name
18   validates_confirmation_of :email#, :message => ' addresses must match'
19   validates_confirmation_of :pass_crypt#, :message => ' must match the confirmation password'
20   validates_uniqueness_of :display_name, :allow_nil => true
21   validates_uniqueness_of :email
22   validates_length_of :pass_crypt, :within => 8..255
23   validates_length_of :display_name, :within => 3..255, :allow_nil => true
24   validates_length_of :email, :within => 6..255
25   validates_format_of :email, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
26   validates_format_of :display_name, :with => /^[^\/;.,?]*$/
27   validates_numericality_of :home_lat, :allow_nil => true
28   validates_numericality_of :home_lon, :allow_nil => true
29   validates_numericality_of :home_zoom, :only_integer => true, :allow_nil => true
30
31   before_save :encrypt_password
32
33   file_column :image, :magick => { :geometry => "100x100>" }
34
35   def after_initialize
36     self.creation_time = Time.now.getutc if self.creation_time.nil?
37   end
38
39   def encrypt_password
40     if pass_crypt_confirmation
41       self.pass_salt = OSM::make_token(8)
42       self.pass_crypt = OSM::encrypt_password(pass_crypt, pass_salt)
43     end
44   end
45
46   def self.authenticate(options)
47     if options[:username] and options[:password]
48       user = find(:first, :conditions => ["email = ? OR display_name = ?", options[:username], options[:username]])
49       user = nil if user and user.pass_crypt != OSM::encrypt_password(options[:password], user.pass_salt)
50     elsif options[:token]
51       token = UserToken.find(:first, :include => :user, :conditions => ["user_tokens.token = ?", options[:token]])
52       user = token.user if token
53     end
54
55     if user
56       user = nil unless user.visible? and (user.active? or options[:inactive])
57     end
58
59     token.update_attribute(:expiry, 1.week.from_now) if token and user
60
61     return user
62   end 
63
64   def to_xml
65     doc = OSM::API.new.get_xml_doc
66     doc.root << to_xml_node()
67     return doc
68   end
69
70   def to_xml_node
71     el1 = XML::Node.new 'user'
72     el1['display_name'] = self.display_name.to_s
73     el1['account_created'] = self.creation_time.xmlschema
74     if self.home_lat and self.home_lon
75       home = XML::Node.new 'home'
76       home['lat'] = self.home_lat.to_s
77       home['lon'] = self.home_lon.to_s
78       home['zoom'] = self.home_zoom.to_s
79       el1 << home
80     end
81     return el1
82   end
83
84   def languages
85     attribute_present?(:languages) ? read_attribute(:languages).split(",") : []
86   end
87
88   def languages=(languages)
89     write_attribute(:languages, languages.join(","))
90   end
91
92   def preferred_language
93     languages.find { |l| Language.find(:first, :conditions => { :code => l }) }
94   end
95
96   def preferred_language_from(array)
97     (languages & array.collect { |i| i.to_s }).first
98   end
99
100   def nearby(radius = 50, num = 10)
101     if self.home_lon and self.home_lat 
102       gc = OSM::GreatCircle.new(self.home_lat, self.home_lon)
103       bounds = gc.bounds(radius)
104       sql_for_distance = gc.sql_for_distance("home_lat", "home_lon")
105       nearby = User.find(:all, 
106                          :conditions => ["id != ? AND visible = ? AND data_public = ? AND #{sql_for_distance} <= ?", id, true, true, radius], :order => sql_for_distance, :limit => num)
107     else
108       nearby = []
109     end
110     return nearby
111   end
112
113   def distance(nearby_user)
114     return OSM::GreatCircle.new(self.home_lat, self.home_lon).distance(nearby_user.home_lat, nearby_user.home_lon)
115   end
116
117   def is_friends_with?(new_friend)
118     res = false
119     @new_friend = new_friend
120     self.friends.each do |friend|
121       if friend.friend_user_id == @new_friend.id
122         return true
123       end
124     end
125     return false
126   end
127
128   def trace_public_default
129     return self.preferences.find(:first, :conditions => {:k => "gps.trace.public", :v => "default"})
130   end
131
132   def delete
133     self.active = false
134     self.display_name = "user_#{self.id}"
135     self.description = ""
136     self.home_lat = nil
137     self.home_lon = nil
138     self.image = nil
139     self.email_valid = false
140     self.new_email = nil
141     self.visible = false
142     self.save
143   end
144
145 end