| 
									
										
										
										
											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 | 
					
						
							|  |  |  |   layout 'base'	 | 
					
						
							|  |  |  |   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' | 
					
						
							|  |  |  |     sort_update | 
					
						
							| 
									
										
										
										
											2007-03-18 20:44:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2008-02-03 19:53:52 +00:00
										 |  |  |     @status = params[:status] ? params[:status].to_i : 1
 | 
					
						
							|  |  |  |     conditions = "status <> 0" | 
					
						
							| 
									
										
										
										
											2007-03-18 20:44:33 +00:00
										 |  |  |     conditions = ["status=?", @status] unless @status == 0
 | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     @user_count = User.count(:conditions => 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, | 
					
						
							| 
									
										
										
										
											2007-03-18 20:44:33 +00:00
										 |  |  |                         :conditions => 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) | 
					
						
							| 
									
										
										
										
											2007-11-12 17:23:14 +00:00
										 |  |  |       @custom_values = UserCustomField.find(:all, :order => "#{CustomField.table_name}.position").collect { |x| CustomValue.new(:custom_field => x, :customized => @user) } | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2007-11-12 17:23:14 +00:00
										 |  |  |       @custom_values = UserCustomField.find(:all, :order => "#{CustomField.table_name}.position").collect { |x| CustomValue.new(:custom_field => x, :customized => @user, :value => (params[:custom_fields] ? params["custom_fields"][x.id.to_s] : nil)) } | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |       @user.custom_values = @custom_values			 | 
					
						
							| 
									
										
										
										
											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]) | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     if request.get? | 
					
						
							| 
									
										
										
										
											2007-11-12 17:23:14 +00:00
										 |  |  |       @custom_values = UserCustomField.find(:all, :order => "#{CustomField.table_name}.position").collect { |x| @user.custom_values.find_by_custom_field_id(x.id) || CustomValue.new(:custom_field => x) } | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |       @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 | 
					
						
							|  |  |  |       if params[:custom_fields] | 
					
						
							| 
									
										
										
										
											2007-11-12 17:23:14 +00:00
										 |  |  |         @custom_values = UserCustomField.find(:all, :order => "#{CustomField.table_name}.position").collect { |x| CustomValue.new(:custom_field => x, :customized => @user, :value => params["custom_fields"][x.id.to_s]) } | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |         @user.custom_values = @custom_values | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |       if @user.update_attributes(params[:user]) | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2007-05-27 17:42:04 +00:00
										 |  |  |     @projects = Project.find(:all, :order => 'name', :conditions => "status=#{Project::STATUS_ACTIVE}") - @user.projects | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     @membership ||= Member.new | 
					
						
							|  |  |  |   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] | 
					
						
							|  |  |  |     if request.post? and @membership.save | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     redirect_to :action => 'edit', :id => @user and return | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  |   def destroy_membership | 
					
						
							|  |  |  |     @user = User.find(params[:id]) | 
					
						
							|  |  |  |     if request.post? and Member.find(params[:membership_id]).destroy | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     redirect_to :action => 'edit', :id => @user and return | 
					
						
							| 
									
										
										
										
											2006-07-09 16:30:01 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |