| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | # redMine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2007  Jean-Philippe Lang | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							|  |  |  | #  | 
					
						
							|  |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class UsersController < ApplicationController | 
					
						
							|  |  |  |   before_filter :require_admin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   helper :sort | 
					
						
							|  |  |  |   include SortHelper | 
					
						
							|  |  |  |   helper :custom_fields | 
					
						
							|  |  |  |   include CustomFieldsHelper    | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def index | 
					
						
							|  |  |  |     list | 
					
						
							| 
									
										
										
										
											2006-10-21 10:38:53 +00:00
										 |  |  |     render :action => 'list' unless request.xhr? | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def list | 
					
						
							|  |  |  |     sort_init 'login', 'asc' | 
					
						
							| 
									
										
										
										
											2008-12-24 10:03:13 +00:00
										 |  |  |     sort_update %w(login firstname lastname mail admin created_on last_login_on) | 
					
						
							| 
									
										
										
										
											2007-03-18 20:44:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2008-02-03 19:53:52 +00:00
										 |  |  |     @status = params[:status] ? params[:status].to_i : 1
 | 
					
						
							| 
									
										
										
										
											2008-10-24 16:59:15 +00:00
										 |  |  |     c = ARCondition.new(@status == 0 ? "status <> 0" : ["status = ?", @status]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unless params[:name].blank? | 
					
						
							|  |  |  |       name = "%#{params[:name].strip.downcase}%" | 
					
						
							|  |  |  |       c << ["LOWER(login) LIKE ? OR LOWER(firstname) LIKE ? OR LOWER(lastname) LIKE ?", name, name, name] | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-03-18 20:44:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2008-10-24 16:59:15 +00:00
										 |  |  |     @user_count = User.count(:conditions => c.conditions) | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     @user_pages = Paginator.new self, @user_count, | 
					
						
							| 
									
										
										
										
											2007-12-29 11:36:30 +00:00
										 |  |  | 								per_page_option, | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | 								params['page']								 | 
					
						
							|  |  |  |     @users =  User.find :all,:order => sort_clause, | 
					
						
							| 
									
										
										
										
											2008-10-24 16:59:15 +00:00
										 |  |  |                         :conditions => c.conditions, | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | 						:limit  =>  @user_pages.items_per_page, | 
					
						
							|  |  |  | 						:offset =>  @user_pages.current.offset | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-21 10:38:53 +00:00
										 |  |  |     render :action => "list", :layout => false if request.xhr?	 | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   def add | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     if request.get? | 
					
						
							|  |  |  |       @user = User.new(:language => Setting.default_language) | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @user = User.new(params[:user]) | 
					
						
							|  |  |  |       @user.admin = params[:user][:admin] || false | 
					
						
							|  |  |  |       @user.login = params[:user][:login] | 
					
						
							|  |  |  |       @user.password, @user.password_confirmation = params[:password], params[:password_confirmation] unless @user.auth_source_id | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |       if @user.save | 
					
						
							| 
									
										
										
										
											2007-05-27 10:57:13 +00:00
										 |  |  |         Mailer.deliver_account_information(@user, params[:password]) if params[:send_information] | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |         flash[:notice] = l(:notice_successful_create) | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |         redirect_to :action => 'list' | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2006-11-12 18:50:30 +00:00
										 |  |  |     @auth_sources = AuthSource.find(:all) | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   def edit | 
					
						
							|  |  |  |     @user = User.find(params[:id]) | 
					
						
							| 
									
										
										
										
											2008-06-27 20:13:56 +00:00
										 |  |  |     if request.post? | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @user.admin = params[:user][:admin] if params[:user][:admin] | 
					
						
							|  |  |  |       @user.login = params[:user][:login] if params[:user][:login] | 
					
						
							|  |  |  |       @user.password, @user.password_confirmation = params[:password], params[:password_confirmation] unless params[:password].nil? or params[:password].empty? or @user.auth_source_id | 
					
						
							| 
									
										
										
										
											2009-02-20 17:04:47 +00:00
										 |  |  |       @user.attributes = params[:user] | 
					
						
							|  |  |  |       # Was the account actived ? (do it before User#save clears the change) | 
					
						
							|  |  |  |       was_activated = (@user.status_change == [User::STATUS_REGISTERED, User::STATUS_ACTIVE]) | 
					
						
							|  |  |  |       if @user.save | 
					
						
							|  |  |  |         Mailer.deliver_account_activated(@user) if was_activated | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |         flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2008-04-06 13:15:09 +00:00
										 |  |  |         # Give a string to redirect_to otherwise it would use status param as the response code | 
					
						
							|  |  |  |         redirect_to(url_for(:action => 'list', :status => params[:status], :page => params[:page])) | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     @auth_sources = AuthSource.find(:all) | 
					
						
							| 
									
										
										
										
											2007-08-29 16:52:35 +00:00
										 |  |  |     @roles = Role.find_all_givable | 
					
						
							| 
									
										
										
										
											2009-01-24 11:31:15 +00:00
										 |  |  |     @projects = Project.active.find(:all, :order => 'lft') | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     @membership ||= Member.new | 
					
						
							| 
									
										
										
										
											2008-05-02 15:21:21 +00:00
										 |  |  |     @memberships = @user.memberships | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def edit_membership | 
					
						
							|  |  |  |     @user = User.find(params[:id]) | 
					
						
							|  |  |  |     @membership = params[:membership_id] ? Member.find(params[:membership_id]) : Member.new(:user => @user) | 
					
						
							|  |  |  |     @membership.attributes = params[:membership] | 
					
						
							| 
									
										
										
										
											2008-05-02 15:21:21 +00:00
										 |  |  |     @membership.save if request.post? | 
					
						
							|  |  |  |     redirect_to :action => 'edit', :id => @user, :tab => 'memberships' | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def destroy_membership | 
					
						
							|  |  |  |     @user = User.find(params[:id]) | 
					
						
							| 
									
										
										
										
											2008-05-02 15:21:21 +00:00
										 |  |  |     Member.find(params[:membership_id]).destroy if request.post? | 
					
						
							|  |  |  |     redirect_to :action => 'edit', :id => @user, :tab => 'memberships' | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |