2007-03-12 20:59:02 +03: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 20:30:01 +04:00
|
|
|
|
|
|
|
def index
|
|
|
|
list
|
2006-10-21 14:38:53 +04:00
|
|
|
render :action => 'list' unless request.xhr?
|
2006-07-09 20:30:01 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
def list
|
|
|
|
sort_init 'login', 'asc'
|
|
|
|
sort_update
|
2007-03-18 23:44:33 +03:00
|
|
|
|
2008-02-03 22:53:52 +03:00
|
|
|
@status = params[:status] ? params[:status].to_i : 1
|
|
|
|
conditions = "status <> 0"
|
2007-03-18 23:44:33 +03:00
|
|
|
conditions = ["status=?", @status] unless @status == 0
|
|
|
|
|
|
|
|
@user_count = User.count(:conditions => conditions)
|
2007-03-12 20:59:02 +03:00
|
|
|
@user_pages = Paginator.new self, @user_count,
|
2007-12-29 14:36:30 +03:00
|
|
|
per_page_option,
|
2007-03-12 20:59:02 +03:00
|
|
|
params['page']
|
|
|
|
@users = User.find :all,:order => sort_clause,
|
2007-03-18 23:44:33 +03:00
|
|
|
:conditions => conditions,
|
2007-03-12 20:59:02 +03:00
|
|
|
:limit => @user_pages.items_per_page,
|
|
|
|
:offset => @user_pages.current.offset
|
|
|
|
|
2006-10-21 14:38:53 +04:00
|
|
|
render :action => "list", :layout => false if request.xhr?
|
2006-07-09 20:30:01 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-07-09 20:30:01 +04:00
|
|
|
def add
|
2007-03-12 20:59:02 +03:00
|
|
|
if request.get?
|
|
|
|
@user = User.new(:language => Setting.default_language)
|
2006-07-09 20:30:01 +04:00
|
|
|
else
|
2007-03-12 20:59:02 +03: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 20:30:01 +04:00
|
|
|
if @user.save
|
2007-05-27 14:57:13 +04:00
|
|
|
Mailer.deliver_account_information(@user, params[:password]) if params[:send_information]
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_create)
|
2006-07-09 20:30:01 +04:00
|
|
|
redirect_to :action => 'list'
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
|
|
|
end
|
2006-11-12 21:50:30 +03:00
|
|
|
@auth_sources = AuthSource.find(:all)
|
2006-07-09 20:30:01 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-07-09 20:30:01 +04:00
|
|
|
def edit
|
|
|
|
@user = User.find(params[:id])
|
2008-06-28 00:13:56 +04:00
|
|
|
if request.post?
|
2007-03-12 20:59:02 +03: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
|
2006-07-09 20:30:01 +04:00
|
|
|
if @user.update_attributes(params[:user])
|
2006-07-30 14:47:02 +04:00
|
|
|
flash[:notice] = l(:notice_successful_update)
|
2008-04-06 17:15:09 +04: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 20:59:02 +03:00
|
|
|
end
|
2006-07-09 20:30:01 +04:00
|
|
|
end
|
2007-03-12 20:59:02 +03:00
|
|
|
@auth_sources = AuthSource.find(:all)
|
2007-08-29 20:52:35 +04:00
|
|
|
@roles = Role.find_all_givable
|
2007-05-27 21:42:04 +04:00
|
|
|
@projects = Project.find(:all, :order => 'name', :conditions => "status=#{Project::STATUS_ACTIVE}") - @user.projects
|
2007-03-12 20:59:02 +03:00
|
|
|
@membership ||= Member.new
|
2008-05-02 19:21:21 +04:00
|
|
|
@memberships = @user.memberships
|
2007-03-12 20:59:02 +03: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 19:21:21 +04:00
|
|
|
@membership.save if request.post?
|
|
|
|
redirect_to :action => 'edit', :id => @user, :tab => 'memberships'
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_membership
|
|
|
|
@user = User.find(params[:id])
|
2008-05-02 19:21:21 +04:00
|
|
|
Member.find(params[:membership_id]).destroy if request.post?
|
|
|
|
redirect_to :action => 'edit', :id => @user, :tab => 'memberships'
|
2006-07-09 20:30:01 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|