Chris@0
|
1 # Redmine - project management software
|
Chris@441
|
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
|
Chris@0
|
3 #
|
Chris@0
|
4 # This program is free software; you can redistribute it and/or
|
Chris@0
|
5 # modify it under the terms of the GNU General Public License
|
Chris@0
|
6 # as published by the Free Software Foundation; either version 2
|
Chris@0
|
7 # of the License, or (at your option) any later version.
|
Chris@909
|
8 #
|
Chris@0
|
9 # This program is distributed in the hope that it will be useful,
|
Chris@0
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Chris@0
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Chris@0
|
12 # GNU General Public License for more details.
|
Chris@909
|
13 #
|
Chris@0
|
14 # You should have received a copy of the GNU General Public License
|
Chris@0
|
15 # along with this program; if not, write to the Free Software
|
Chris@0
|
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
Chris@0
|
17
|
Chris@0
|
18 require "digest/sha1"
|
Chris@0
|
19
|
Chris@0
|
20 class User < Principal
|
Chris@119
|
21 include Redmine::SafeAttributes
|
Chris@909
|
22
|
Chris@0
|
23 # Account statuses
|
Chris@0
|
24 STATUS_ANONYMOUS = 0
|
Chris@0
|
25 STATUS_ACTIVE = 1
|
Chris@0
|
26 STATUS_REGISTERED = 2
|
Chris@0
|
27 STATUS_LOCKED = 3
|
Chris@909
|
28
|
Chris@909
|
29 # Different ways of displaying/sorting users
|
Chris@0
|
30 USER_FORMATS = {
|
Chris@909
|
31 :firstname_lastname => {:string => '#{firstname} #{lastname}', :order => %w(firstname lastname id)},
|
Chris@909
|
32 :firstname => {:string => '#{firstname}', :order => %w(firstname id)},
|
Chris@909
|
33 :lastname_firstname => {:string => '#{lastname} #{firstname}', :order => %w(lastname firstname id)},
|
Chris@909
|
34 :lastname_coma_firstname => {:string => '#{lastname}, #{firstname}', :order => %w(lastname firstname id)},
|
Chris@909
|
35 :username => {:string => '#{login}', :order => %w(login id)},
|
Chris@0
|
36 }
|
Chris@0
|
37
|
chris@37
|
38 MAIL_NOTIFICATION_OPTIONS = [
|
Chris@119
|
39 ['all', :label_user_mail_option_all],
|
Chris@119
|
40 ['selected', :label_user_mail_option_selected],
|
Chris@119
|
41 ['only_my_events', :label_user_mail_option_only_my_events],
|
Chris@119
|
42 ['only_assigned', :label_user_mail_option_only_assigned],
|
Chris@119
|
43 ['only_owner', :label_user_mail_option_only_owner],
|
Chris@119
|
44 ['none', :label_user_mail_option_none]
|
Chris@119
|
45 ]
|
chris@37
|
46
|
Chris@0
|
47 has_and_belongs_to_many :groups, :after_add => Proc.new {|user, group| group.user_added(user)},
|
Chris@0
|
48 :after_remove => Proc.new {|user, group| group.user_removed(user)}
|
Chris@0
|
49 has_many :changesets, :dependent => :nullify
|
Chris@0
|
50 has_one :preference, :dependent => :destroy, :class_name => 'UserPreference'
|
Chris@128
|
51 has_one :rss_token, :class_name => 'Token', :conditions => "action='feeds'"
|
Chris@128
|
52 has_one :api_token, :class_name => 'Token', :conditions => "action='api'"
|
Chris@0
|
53 belongs_to :auth_source
|
Chris@909
|
54
|
luisf@55
|
55 has_one :ssamr_user_detail, :dependent => :destroy, :class_name => 'SsamrUserDetail'
|
luisf@65
|
56 accepts_nested_attributes_for :ssamr_user_detail
|
luis@403
|
57
|
luis@403
|
58 has_one :author
|
luisf@64
|
59
|
Chris@0
|
60 # Active non-anonymous users scope
|
Chris@0
|
61 named_scope :active, :conditions => "#{User.table_name}.status = #{STATUS_ACTIVE}"
|
Chris@909
|
62
|
Chris@0
|
63 acts_as_customizable
|
Chris@909
|
64
|
Chris@0
|
65 attr_accessor :password, :password_confirmation
|
Chris@0
|
66 attr_accessor :last_before_login_on
|
Chris@0
|
67 # Prevents unauthorized assignments
|
Chris@119
|
68 attr_protected :login, :admin, :password, :password_confirmation, :hashed_password
|
Chris@0
|
69
|
Chris@0
|
70 validates_presence_of :login, :firstname, :lastname, :mail, :if => Proc.new { |user| !user.is_a?(AnonymousUser) }
|
luisf@60
|
71
|
luisf@60
|
72 # TODO: is this validation correct validates_presence_of :ssamr_user_detail
|
luisf@60
|
73
|
Chris@0
|
74 validates_uniqueness_of :login, :if => Proc.new { |user| !user.login.blank? }, :case_sensitive => false
|
Chris@0
|
75 validates_uniqueness_of :mail, :if => Proc.new { |user| !user.mail.blank? }, :case_sensitive => false
|
Chris@0
|
76 # Login must contain lettres, numbers, underscores only
|
Chris@0
|
77 validates_format_of :login, :with => /^[a-z0-9_\-@\.]*$/i
|
Chris@0
|
78 validates_length_of :login, :maximum => 30
|
Chris@0
|
79 validates_length_of :firstname, :lastname, :maximum => 30
|
Chris@909
|
80 validates_format_of :mail, :with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i, :allow_blank => true
|
Chris@0
|
81 validates_length_of :mail, :maximum => 60, :allow_nil => true
|
Chris@0
|
82 validates_confirmation_of :password, :allow_nil => true
|
Chris@119
|
83 validates_inclusion_of :mail_notification, :in => MAIL_NOTIFICATION_OPTIONS.collect(&:first), :allow_blank => true
|
Chris@909
|
84 validate :validate_password_length
|
Chris@0
|
85
|
Chris@909
|
86 before_create :set_mail_notification
|
Chris@909
|
87 before_save :update_hashed_password
|
Chris@128
|
88 before_destroy :remove_references_before_destroy
|
Chris@909
|
89
|
luisf@190
|
90 validates_acceptance_of :terms_and_conditions, :on => :create, :message => :must_accept_terms_and_conditions
|
luisf@190
|
91
|
Chris@441
|
92 named_scope :in_group, lambda {|group|
|
Chris@441
|
93 group_id = group.is_a?(Group) ? group.id : group.to_i
|
Chris@441
|
94 { :conditions => ["#{User.table_name}.id IN (SELECT gu.user_id FROM #{table_name_prefix}groups_users#{table_name_suffix} gu WHERE gu.group_id = ?)", group_id] }
|
Chris@441
|
95 }
|
Chris@441
|
96 named_scope :not_in_group, lambda {|group|
|
Chris@441
|
97 group_id = group.is_a?(Group) ? group.id : group.to_i
|
Chris@441
|
98 { :conditions => ["#{User.table_name}.id NOT IN (SELECT gu.user_id FROM #{table_name_prefix}groups_users#{table_name_suffix} gu WHERE gu.group_id = ?)", group_id] }
|
Chris@441
|
99 }
|
Chris@909
|
100
|
Chris@909
|
101 def set_mail_notification
|
chris@37
|
102 self.mail_notification = Setting.default_notification_option if self.mail_notification.blank?
|
Chris@0
|
103 true
|
Chris@0
|
104 end
|
Chris@909
|
105
|
Chris@909
|
106 def update_hashed_password
|
Chris@0
|
107 # update hashed_password if password was set
|
Chris@245
|
108 if self.password && self.auth_source_id.blank?
|
Chris@245
|
109 salt_password(password)
|
Chris@245
|
110 end
|
Chris@0
|
111 end
|
Chris@909
|
112
|
Chris@0
|
113 def reload(*args)
|
Chris@0
|
114 @name = nil
|
Chris@441
|
115 @projects_by_role = nil
|
Chris@0
|
116 super
|
Chris@0
|
117 end
|
Chris@909
|
118
|
Chris@1
|
119 def mail=(arg)
|
Chris@1
|
120 write_attribute(:mail, arg.to_s.strip)
|
Chris@1
|
121 end
|
Chris@909
|
122
|
luisf@59
|
123 def description=(arg)
|
luisf@59
|
124 write_attribute(:description, arg.to_s.strip)
|
luisf@59
|
125 end
|
luisf@59
|
126
|
Chris@0
|
127 def identity_url=(url)
|
Chris@0
|
128 if url.blank?
|
Chris@0
|
129 write_attribute(:identity_url, '')
|
Chris@0
|
130 else
|
Chris@0
|
131 begin
|
Chris@0
|
132 write_attribute(:identity_url, OpenIdAuthentication.normalize_identifier(url))
|
Chris@0
|
133 rescue OpenIdAuthentication::InvalidOpenId
|
Chris@0
|
134 # Invlaid url, don't save
|
Chris@0
|
135 end
|
Chris@0
|
136 end
|
Chris@0
|
137 self.read_attribute(:identity_url)
|
Chris@0
|
138 end
|
Chris@909
|
139
|
Chris@0
|
140 # Returns the user that matches provided login and password, or nil
|
Chris@0
|
141 def self.try_to_login(login, password)
|
Chris@0
|
142 # Make sure no one can sign in with an empty password
|
Chris@0
|
143 return nil if password.to_s.empty?
|
Chris@0
|
144 user = find_by_login(login)
|
Chris@0
|
145 if user
|
Chris@0
|
146 # user is already in local database
|
Chris@0
|
147 return nil if !user.active?
|
Chris@0
|
148 if user.auth_source
|
Chris@0
|
149 # user has an external authentication method
|
Chris@0
|
150 return nil unless user.auth_source.authenticate(login, password)
|
Chris@0
|
151 else
|
Chris@0
|
152 # authentication with local password
|
Chris@245
|
153 return nil unless user.check_password?(password)
|
Chris@0
|
154 end
|
Chris@0
|
155 else
|
Chris@0
|
156 # user is not yet registered, try to authenticate with available sources
|
Chris@0
|
157 attrs = AuthSource.authenticate(login, password)
|
Chris@0
|
158 if attrs
|
Chris@0
|
159 user = new(attrs)
|
Chris@0
|
160 user.login = login
|
Chris@0
|
161 user.language = Setting.default_language
|
Chris@0
|
162 if user.save
|
Chris@0
|
163 user.reload
|
Chris@0
|
164 logger.info("User '#{user.login}' created from external auth source: #{user.auth_source.type} - #{user.auth_source.name}") if logger && user.auth_source
|
Chris@0
|
165 end
|
Chris@0
|
166 end
|
Chris@909
|
167 end
|
Chris@0
|
168 user.update_attribute(:last_login_on, Time.now) if user && !user.new_record?
|
Chris@0
|
169 user
|
Chris@0
|
170 rescue => text
|
Chris@0
|
171 raise text
|
Chris@0
|
172 end
|
Chris@909
|
173
|
Chris@0
|
174 # Returns the user who matches the given autologin +key+ or nil
|
Chris@0
|
175 def self.try_to_autologin(key)
|
Chris@0
|
176 tokens = Token.find_all_by_action_and_value('autologin', key)
|
Chris@0
|
177 # Make sure there's only 1 token that matches the key
|
Chris@0
|
178 if tokens.size == 1
|
Chris@0
|
179 token = tokens.first
|
Chris@0
|
180 if (token.created_on > Setting.autologin.to_i.day.ago) && token.user && token.user.active?
|
Chris@0
|
181 token.user.update_attribute(:last_login_on, Time.now)
|
Chris@0
|
182 token.user
|
Chris@0
|
183 end
|
Chris@0
|
184 end
|
Chris@0
|
185 end
|
Chris@909
|
186
|
Chris@909
|
187 def self.name_formatter(formatter = nil)
|
Chris@909
|
188 USER_FORMATS[formatter || Setting.user_format] || USER_FORMATS[:firstname_lastname]
|
Chris@909
|
189 end
|
Chris@909
|
190
|
Chris@909
|
191 # Returns an array of fields names than can be used to make an order statement for users
|
Chris@909
|
192 # according to how user names are displayed
|
Chris@909
|
193 # Examples:
|
Chris@909
|
194 #
|
Chris@909
|
195 # User.fields_for_order_statement => ['users.login', 'users.id']
|
Chris@909
|
196 # User.fields_for_order_statement('authors') => ['authors.login', 'authors.id']
|
Chris@909
|
197 def self.fields_for_order_statement(table=nil)
|
Chris@909
|
198 table ||= table_name
|
Chris@909
|
199 name_formatter[:order].map {|field| "#{table}.#{field}"}
|
Chris@909
|
200 end
|
Chris@909
|
201
|
Chris@0
|
202 # Return user's full name for display
|
Chris@0
|
203 def name(formatter = nil)
|
Chris@909
|
204 f = self.class.name_formatter(formatter)
|
Chris@0
|
205 if formatter
|
Chris@909
|
206 eval('"' + f[:string] + '"')
|
Chris@0
|
207 else
|
Chris@909
|
208 @name ||= eval('"' + f[:string] + '"')
|
Chris@0
|
209 end
|
Chris@0
|
210 end
|
Chris@909
|
211
|
Chris@0
|
212 def active?
|
Chris@0
|
213 self.status == STATUS_ACTIVE
|
Chris@0
|
214 end
|
Chris@0
|
215
|
Chris@0
|
216 def registered?
|
Chris@0
|
217 self.status == STATUS_REGISTERED
|
Chris@0
|
218 end
|
Chris@909
|
219
|
Chris@0
|
220 def locked?
|
Chris@0
|
221 self.status == STATUS_LOCKED
|
Chris@0
|
222 end
|
Chris@0
|
223
|
Chris@14
|
224 def activate
|
Chris@14
|
225 self.status = STATUS_ACTIVE
|
Chris@14
|
226 end
|
Chris@14
|
227
|
Chris@14
|
228 def register
|
Chris@14
|
229 self.status = STATUS_REGISTERED
|
Chris@14
|
230 end
|
Chris@14
|
231
|
Chris@14
|
232 def lock
|
Chris@14
|
233 self.status = STATUS_LOCKED
|
Chris@14
|
234 end
|
Chris@14
|
235
|
Chris@14
|
236 def activate!
|
Chris@14
|
237 update_attribute(:status, STATUS_ACTIVE)
|
Chris@14
|
238 end
|
Chris@14
|
239
|
Chris@14
|
240 def register!
|
Chris@14
|
241 update_attribute(:status, STATUS_REGISTERED)
|
Chris@14
|
242 end
|
Chris@14
|
243
|
Chris@14
|
244 def lock!
|
Chris@14
|
245 update_attribute(:status, STATUS_LOCKED)
|
Chris@14
|
246 end
|
Chris@14
|
247
|
Chris@245
|
248 # Returns true if +clear_password+ is the correct user's password, otherwise false
|
Chris@0
|
249 def check_password?(clear_password)
|
Chris@0
|
250 if auth_source_id.present?
|
Chris@0
|
251 auth_source.authenticate(self.login, clear_password)
|
Chris@0
|
252 else
|
Chris@245
|
253 User.hash_password("#{salt}#{User.hash_password clear_password}") == hashed_password
|
Chris@0
|
254 end
|
Chris@0
|
255 end
|
Chris@909
|
256
|
Chris@245
|
257 # Generates a random salt and computes hashed_password for +clear_password+
|
Chris@245
|
258 # The hashed password is stored in the following form: SHA1(salt + SHA1(password))
|
Chris@245
|
259 def salt_password(clear_password)
|
Chris@245
|
260 self.salt = User.generate_salt
|
Chris@245
|
261 self.hashed_password = User.hash_password("#{salt}#{User.hash_password clear_password}")
|
Chris@245
|
262 end
|
Chris@0
|
263
|
Chris@0
|
264 # Does the backend storage allow this user to change their password?
|
Chris@0
|
265 def change_password_allowed?
|
Chris@0
|
266 return true if auth_source_id.blank?
|
Chris@0
|
267 return auth_source.allow_password_changes?
|
Chris@0
|
268 end
|
Chris@0
|
269
|
Chris@0
|
270 # Generate and set a random password. Useful for automated user creation
|
Chris@0
|
271 # Based on Token#generate_token_value
|
Chris@0
|
272 #
|
Chris@0
|
273 def random_password
|
Chris@0
|
274 chars = ("a".."z").to_a + ("A".."Z").to_a + ("0".."9").to_a
|
Chris@0
|
275 password = ''
|
Chris@0
|
276 40.times { |i| password << chars[rand(chars.size-1)] }
|
Chris@0
|
277 self.password = password
|
Chris@0
|
278 self.password_confirmation = password
|
Chris@0
|
279 self
|
Chris@0
|
280 end
|
Chris@909
|
281
|
Chris@0
|
282 def pref
|
Chris@0
|
283 self.preference ||= UserPreference.new(:user => self)
|
Chris@0
|
284 end
|
Chris@909
|
285
|
Chris@0
|
286 def time_zone
|
Chris@0
|
287 @time_zone ||= (self.pref.time_zone.blank? ? nil : ActiveSupport::TimeZone[self.pref.time_zone])
|
Chris@0
|
288 end
|
Chris@909
|
289
|
Chris@0
|
290 def wants_comments_in_reverse_order?
|
Chris@0
|
291 self.pref[:comments_sorting] == 'desc'
|
Chris@0
|
292 end
|
Chris@909
|
293
|
Chris@0
|
294 # Return user's RSS key (a 40 chars long string), used to access feeds
|
Chris@0
|
295 def rss_key
|
Chris@0
|
296 token = self.rss_token || Token.create(:user => self, :action => 'feeds')
|
Chris@0
|
297 token.value
|
Chris@0
|
298 end
|
Chris@0
|
299
|
Chris@0
|
300 # Return user's API key (a 40 chars long string), used to access the API
|
Chris@0
|
301 def api_key
|
Chris@0
|
302 token = self.api_token || self.create_api_token(:action => 'api')
|
Chris@0
|
303 token.value
|
Chris@0
|
304 end
|
Chris@909
|
305
|
Chris@0
|
306 # Return an array of project ids for which the user has explicitly turned mail notifications on
|
Chris@0
|
307 def notified_projects_ids
|
Chris@0
|
308 @notified_projects_ids ||= memberships.select {|m| m.mail_notification?}.collect(&:project_id)
|
Chris@0
|
309 end
|
Chris@909
|
310
|
Chris@0
|
311 def notified_project_ids=(ids)
|
Chris@0
|
312 Member.update_all("mail_notification = #{connection.quoted_false}", ['user_id = ?', id])
|
Chris@0
|
313 Member.update_all("mail_notification = #{connection.quoted_true}", ['user_id = ? AND project_id IN (?)', id, ids]) if ids && !ids.empty?
|
Chris@0
|
314 @notified_projects_ids = nil
|
Chris@0
|
315 notified_projects_ids
|
Chris@0
|
316 end
|
Chris@0
|
317
|
Chris@128
|
318 def valid_notification_options
|
Chris@128
|
319 self.class.valid_notification_options(self)
|
Chris@128
|
320 end
|
Chris@128
|
321
|
chris@37
|
322 # Only users that belong to more than 1 project can select projects for which they are notified
|
Chris@128
|
323 def self.valid_notification_options(user=nil)
|
chris@37
|
324 # Note that @user.membership.size would fail since AR ignores
|
chris@37
|
325 # :include association option when doing a count
|
Chris@128
|
326 if user.nil? || user.memberships.length < 1
|
Chris@128
|
327 MAIL_NOTIFICATION_OPTIONS.reject {|option| option.first == 'selected'}
|
chris@37
|
328 else
|
chris@37
|
329 MAIL_NOTIFICATION_OPTIONS
|
chris@37
|
330 end
|
chris@37
|
331 end
|
chris@37
|
332
|
Chris@0
|
333 # Find a user account by matching the exact login and then a case-insensitive
|
Chris@0
|
334 # version. Exact matches will be given priority.
|
Chris@0
|
335 def self.find_by_login(login)
|
Chris@0
|
336 # force string comparison to be case sensitive on MySQL
|
Chris@0
|
337 type_cast = (ActiveRecord::Base.connection.adapter_name == 'MySQL') ? 'BINARY' : ''
|
Chris@909
|
338
|
Chris@0
|
339 # First look for an exact match
|
Chris@0
|
340 user = first(:conditions => ["#{type_cast} login = ?", login])
|
Chris@0
|
341 # Fail over to case-insensitive if none was found
|
Chris@0
|
342 user ||= first(:conditions => ["#{type_cast} LOWER(login) = ?", login.to_s.downcase])
|
Chris@0
|
343 end
|
Chris@0
|
344
|
Chris@0
|
345 def self.find_by_rss_key(key)
|
Chris@0
|
346 token = Token.find_by_value(key)
|
Chris@0
|
347 token && token.user.active? ? token.user : nil
|
Chris@0
|
348 end
|
Chris@909
|
349
|
Chris@0
|
350 def self.find_by_api_key(key)
|
Chris@0
|
351 token = Token.find_by_action_and_value('api', key)
|
Chris@0
|
352 token && token.user.active? ? token.user : nil
|
Chris@0
|
353 end
|
Chris@909
|
354
|
Chris@0
|
355 # Makes find_by_mail case-insensitive
|
Chris@0
|
356 def self.find_by_mail(mail)
|
Chris@0
|
357 find(:first, :conditions => ["LOWER(mail) = ?", mail.to_s.downcase])
|
Chris@0
|
358 end
|
Chris@909
|
359
|
Chris@929
|
360 # Returns true if the default admin account can no longer be used
|
Chris@929
|
361 def self.default_admin_account_changed?
|
Chris@929
|
362 !User.active.find_by_login("admin").try(:check_password?, "admin")
|
Chris@929
|
363 end
|
Chris@929
|
364
|
Chris@0
|
365 def to_s
|
Chris@0
|
366 name
|
Chris@0
|
367 end
|
Chris@909
|
368
|
Chris@0
|
369 # Returns the current day according to user's time zone
|
Chris@0
|
370 def today
|
Chris@0
|
371 if time_zone.nil?
|
Chris@0
|
372 Date.today
|
Chris@0
|
373 else
|
Chris@0
|
374 Time.now.in_time_zone(time_zone).to_date
|
Chris@0
|
375 end
|
Chris@0
|
376 end
|
Chris@909
|
377
|
Chris@0
|
378 def logged?
|
Chris@0
|
379 true
|
Chris@0
|
380 end
|
Chris@909
|
381
|
Chris@0
|
382 def anonymous?
|
Chris@0
|
383 !logged?
|
Chris@0
|
384 end
|
Chris@909
|
385
|
Chris@0
|
386 # Return user's roles for project
|
Chris@0
|
387 def roles_for_project(project)
|
Chris@0
|
388 roles = []
|
Chris@0
|
389 # No role on archived projects
|
Chris@0
|
390 return roles unless project && project.active?
|
Chris@0
|
391 if logged?
|
Chris@0
|
392 # Find project membership
|
Chris@0
|
393 membership = memberships.detect {|m| m.project_id == project.id}
|
Chris@0
|
394 if membership
|
Chris@0
|
395 roles = membership.roles
|
Chris@0
|
396 else
|
Chris@0
|
397 @role_non_member ||= Role.non_member
|
Chris@0
|
398 roles << @role_non_member
|
Chris@0
|
399 end
|
Chris@0
|
400 else
|
Chris@0
|
401 @role_anonymous ||= Role.anonymous
|
Chris@0
|
402 roles << @role_anonymous
|
Chris@0
|
403 end
|
Chris@0
|
404 roles
|
Chris@0
|
405 end
|
Chris@909
|
406
|
Chris@0
|
407 # Return true if the user is a member of project
|
Chris@0
|
408 def member_of?(project)
|
Chris@0
|
409 !roles_for_project(project).detect {|role| role.member?}.nil?
|
Chris@0
|
410 end
|
Chris@909
|
411
|
Chris@441
|
412 # Returns a hash of user's projects grouped by roles
|
Chris@441
|
413 def projects_by_role
|
Chris@441
|
414 return @projects_by_role if @projects_by_role
|
Chris@909
|
415
|
Chris@441
|
416 @projects_by_role = Hash.new {|h,k| h[k]=[]}
|
Chris@441
|
417 memberships.each do |membership|
|
Chris@441
|
418 membership.roles.each do |role|
|
Chris@441
|
419 @projects_by_role[role] << membership.project if membership.project
|
Chris@441
|
420 end
|
Chris@441
|
421 end
|
Chris@441
|
422 @projects_by_role.each do |role, projects|
|
Chris@441
|
423 projects.uniq!
|
Chris@441
|
424 end
|
Chris@909
|
425
|
Chris@441
|
426 @projects_by_role
|
Chris@441
|
427 end
|
Chris@909
|
428
|
Chris@909
|
429 # Returns true if user is arg or belongs to arg
|
Chris@909
|
430 def is_or_belongs_to?(arg)
|
Chris@909
|
431 if arg.is_a?(User)
|
Chris@909
|
432 self == arg
|
Chris@909
|
433 elsif arg.is_a?(Group)
|
Chris@909
|
434 arg.users.include?(self)
|
Chris@909
|
435 else
|
Chris@909
|
436 false
|
Chris@909
|
437 end
|
Chris@909
|
438 end
|
Chris@909
|
439
|
chris@37
|
440 # Return true if the user is allowed to do the specified action on a specific context
|
chris@37
|
441 # Action can be:
|
Chris@0
|
442 # * a parameter-like Hash (eg. :controller => 'projects', :action => 'edit')
|
Chris@0
|
443 # * a permission Symbol (eg. :edit_project)
|
chris@37
|
444 # Context can be:
|
chris@37
|
445 # * a project : returns true if user is allowed to do the specified action on this project
|
Chris@441
|
446 # * an array of projects : returns true if user is allowed on every project
|
Chris@909
|
447 # * nil with options[:global] set : check if user has at least one role allowed for this action,
|
chris@37
|
448 # or falls back to Non Member / Anonymous permissions depending if the user is logged
|
Chris@441
|
449 def allowed_to?(action, context, options={}, &block)
|
chris@37
|
450 if context && context.is_a?(Project)
|
Chris@0
|
451 # No action allowed on archived projects
|
chris@37
|
452 return false unless context.active?
|
Chris@0
|
453 # No action allowed on disabled modules
|
chris@37
|
454 return false unless context.allows_to?(action)
|
Chris@0
|
455 # Admin users are authorized for anything else
|
Chris@0
|
456 return true if admin?
|
Chris@909
|
457
|
chris@37
|
458 roles = roles_for_project(context)
|
Chris@0
|
459 return false unless roles
|
Chris@441
|
460 roles.detect {|role|
|
Chris@441
|
461 (context.is_public? || role.member?) &&
|
Chris@441
|
462 role.allowed_to?(action) &&
|
Chris@441
|
463 (block_given? ? yield(role, self) : true)
|
Chris@441
|
464 }
|
chris@37
|
465 elsif context && context.is_a?(Array)
|
chris@37
|
466 # Authorize if user is authorized on every element of the array
|
chris@37
|
467 context.map do |project|
|
Chris@441
|
468 allowed_to?(action, project, options, &block)
|
chris@37
|
469 end.inject do |memo,allowed|
|
chris@37
|
470 memo && allowed
|
chris@37
|
471 end
|
Chris@0
|
472 elsif options[:global]
|
Chris@0
|
473 # Admin users are always authorized
|
Chris@0
|
474 return true if admin?
|
Chris@909
|
475
|
Chris@0
|
476 # authorize if user has at least one role that has this permission
|
Chris@0
|
477 roles = memberships.collect {|m| m.roles}.flatten.uniq
|
Chris@441
|
478 roles << (self.logged? ? Role.non_member : Role.anonymous)
|
Chris@441
|
479 roles.detect {|role|
|
Chris@441
|
480 role.allowed_to?(action) &&
|
Chris@441
|
481 (block_given? ? yield(role, self) : true)
|
Chris@441
|
482 }
|
Chris@0
|
483 else
|
Chris@0
|
484 false
|
Chris@0
|
485 end
|
Chris@0
|
486 end
|
chris@22
|
487
|
chris@22
|
488 # Is the user allowed to do the specified action on any project?
|
chris@22
|
489 # See allowed_to? for the actions and valid options.
|
Chris@441
|
490 def allowed_to_globally?(action, options, &block)
|
Chris@441
|
491 allowed_to?(action, nil, options.reverse_merge(:global => true), &block)
|
chris@22
|
492 end
|
Chris@119
|
493
|
Chris@119
|
494 safe_attributes 'login',
|
Chris@119
|
495 'firstname',
|
Chris@119
|
496 'lastname',
|
Chris@119
|
497 'mail',
|
Chris@119
|
498 'mail_notification',
|
Chris@119
|
499 'language',
|
Chris@119
|
500 'custom_field_values',
|
Chris@119
|
501 'custom_fields',
|
Chris@119
|
502 'identity_url'
|
Chris@909
|
503
|
Chris@119
|
504 safe_attributes 'status',
|
Chris@119
|
505 'auth_source_id',
|
Chris@119
|
506 :if => lambda {|user, current_user| current_user.admin?}
|
Chris@909
|
507
|
Chris@119
|
508 safe_attributes 'group_ids',
|
Chris@119
|
509 :if => lambda {|user, current_user| current_user.admin? && !user.new_record?}
|
Chris@909
|
510
|
chris@37
|
511 # Utility method to help check if a user should be notified about an
|
chris@37
|
512 # event.
|
chris@37
|
513 #
|
chris@37
|
514 # TODO: only supports Issue events currently
|
chris@37
|
515 def notify_about?(object)
|
Chris@119
|
516 case mail_notification
|
Chris@119
|
517 when 'all'
|
chris@37
|
518 true
|
Chris@119
|
519 when 'selected'
|
Chris@210
|
520 # user receives notifications for created/assigned issues on unselected projects
|
Chris@909
|
521 if object.is_a?(Issue) && (object.author == self || is_or_belongs_to?(object.assigned_to))
|
Chris@210
|
522 true
|
Chris@210
|
523 else
|
Chris@210
|
524 false
|
Chris@210
|
525 end
|
Chris@119
|
526 when 'none'
|
chris@37
|
527 false
|
Chris@119
|
528 when 'only_my_events'
|
Chris@909
|
529 if object.is_a?(Issue) && (object.author == self || is_or_belongs_to?(object.assigned_to))
|
chris@37
|
530 true
|
chris@37
|
531 else
|
chris@37
|
532 false
|
chris@37
|
533 end
|
Chris@119
|
534 when 'only_assigned'
|
Chris@909
|
535 if object.is_a?(Issue) && is_or_belongs_to?(object.assigned_to)
|
chris@37
|
536 true
|
chris@37
|
537 else
|
chris@37
|
538 false
|
chris@37
|
539 end
|
Chris@119
|
540 when 'only_owner'
|
chris@37
|
541 if object.is_a?(Issue) && object.author == self
|
chris@37
|
542 true
|
chris@37
|
543 else
|
chris@37
|
544 false
|
chris@37
|
545 end
|
chris@37
|
546 else
|
chris@37
|
547 false
|
chris@37
|
548 end
|
chris@37
|
549 end
|
Chris@909
|
550
|
Chris@0
|
551 def self.current=(user)
|
Chris@0
|
552 @current_user = user
|
Chris@0
|
553 end
|
Chris@909
|
554
|
Chris@0
|
555 def self.current
|
Chris@0
|
556 @current_user ||= User.anonymous
|
Chris@0
|
557 end
|
Chris@909
|
558
|
Chris@0
|
559 # Returns the anonymous user. If the anonymous user does not exist, it is created. There can be only
|
Chris@0
|
560 # one anonymous user per database.
|
Chris@0
|
561 def self.anonymous
|
Chris@0
|
562 anonymous_user = AnonymousUser.find(:first)
|
Chris@0
|
563 if anonymous_user.nil?
|
Chris@0
|
564 anonymous_user = AnonymousUser.create(:lastname => 'Anonymous', :firstname => '', :mail => '', :login => '', :status => 0)
|
Chris@0
|
565 raise 'Unable to create the anonymous user.' if anonymous_user.new_record?
|
Chris@0
|
566 end
|
Chris@0
|
567 anonymous_user
|
Chris@0
|
568 end
|
Chris@245
|
569
|
Chris@245
|
570 # Salts all existing unsalted passwords
|
Chris@245
|
571 # It changes password storage scheme from SHA1(password) to SHA1(salt + SHA1(password))
|
Chris@245
|
572 # This method is used in the SaltPasswords migration and is to be kept as is
|
Chris@245
|
573 def self.salt_unsalted_passwords!
|
Chris@245
|
574 transaction do
|
Chris@245
|
575 User.find_each(:conditions => "salt IS NULL OR salt = ''") do |user|
|
Chris@245
|
576 next if user.hashed_password.blank?
|
Chris@245
|
577 salt = User.generate_salt
|
Chris@245
|
578 hashed_password = User.hash_password("#{salt}#{user.hashed_password}")
|
Chris@245
|
579 User.update_all("salt = '#{salt}', hashed_password = '#{hashed_password}'", ["id = ?", user.id] )
|
Chris@245
|
580 end
|
Chris@245
|
581 end
|
Chris@245
|
582 end
|
Chris@909
|
583
|
Chris@0
|
584 protected
|
Chris@909
|
585
|
Chris@909
|
586 def validate_password_length
|
Chris@0
|
587 # Password length validation based on setting
|
Chris@0
|
588 if !password.nil? && password.size < Setting.password_min_length.to_i
|
Chris@0
|
589 errors.add(:password, :too_short, :count => Setting.password_min_length.to_i)
|
Chris@0
|
590 end
|
Chris@0
|
591 end
|
Chris@909
|
592
|
Chris@0
|
593 private
|
Chris@909
|
594
|
Chris@128
|
595 # Removes references that are not handled by associations
|
Chris@128
|
596 # Things that are not deleted are reassociated with the anonymous user
|
Chris@128
|
597 def remove_references_before_destroy
|
Chris@128
|
598 return if self.id.nil?
|
Chris@909
|
599
|
Chris@128
|
600 substitute = User.anonymous
|
Chris@128
|
601 Attachment.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
602 Comment.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
603 Issue.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
604 Issue.update_all 'assigned_to_id = NULL', ['assigned_to_id = ?', id]
|
Chris@128
|
605 Journal.update_all ['user_id = ?', substitute.id], ['user_id = ?', id]
|
Chris@128
|
606 JournalDetail.update_all ['old_value = ?', substitute.id.to_s], ["property = 'attr' AND prop_key = 'assigned_to_id' AND old_value = ?", id.to_s]
|
Chris@128
|
607 JournalDetail.update_all ['value = ?', substitute.id.to_s], ["property = 'attr' AND prop_key = 'assigned_to_id' AND value = ?", id.to_s]
|
Chris@128
|
608 Message.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
609 News.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
610 # Remove private queries and keep public ones
|
Chris@128
|
611 Query.delete_all ['user_id = ? AND is_public = ?', id, false]
|
Chris@128
|
612 Query.update_all ['user_id = ?', substitute.id], ['user_id = ?', id]
|
Chris@128
|
613 TimeEntry.update_all ['user_id = ?', substitute.id], ['user_id = ?', id]
|
Chris@128
|
614 Token.delete_all ['user_id = ?', id]
|
Chris@128
|
615 Watcher.delete_all ['user_id = ?', id]
|
Chris@128
|
616 WikiContent.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
617 WikiContent::Version.update_all ['author_id = ?', substitute.id], ['author_id = ?', id]
|
Chris@128
|
618 end
|
Chris@909
|
619
|
Chris@0
|
620 # Return password digest
|
Chris@0
|
621 def self.hash_password(clear_password)
|
Chris@0
|
622 Digest::SHA1.hexdigest(clear_password || "")
|
Chris@0
|
623 end
|
Chris@909
|
624
|
Chris@245
|
625 # Returns a 128bits random salt as a hex string (32 chars long)
|
Chris@245
|
626 def self.generate_salt
|
Chris@245
|
627 ActiveSupport::SecureRandom.hex(16)
|
Chris@245
|
628 end
|
Chris@909
|
629
|
Chris@0
|
630 end
|
Chris@0
|
631
|
Chris@0
|
632 class AnonymousUser < User
|
Chris@909
|
633
|
Chris@0
|
634 def validate_on_create
|
Chris@0
|
635 # There should be only one AnonymousUser in the database
|
Chris@909
|
636 errors.add :base, 'An anonymous user already exists.' if AnonymousUser.find(:first)
|
Chris@0
|
637 end
|
Chris@909
|
638
|
Chris@0
|
639 def available_custom_fields
|
Chris@0
|
640 []
|
Chris@0
|
641 end
|
Chris@909
|
642
|
Chris@0
|
643 # Overrides a few properties
|
Chris@0
|
644 def logged?; false end
|
Chris@0
|
645 def admin; false end
|
Chris@0
|
646 def name(*args); I18n.t(:label_user_anonymous) end
|
Chris@0
|
647 def mail; nil end
|
Chris@0
|
648 def time_zone; nil end
|
Chris@0
|
649 def rss_key; nil end
|
Chris@909
|
650
|
Chris@128
|
651 # Anonymous user can not be destroyed
|
Chris@128
|
652 def destroy
|
Chris@128
|
653 false
|
Chris@128
|
654 end
|
Chris@0
|
655 end
|