##// END OF EJS Templates
Add responders to UsersController....
Jean-Philippe Lang -
r4337:483133285e96
parent child
Show More
@@ -1,197 +1,216
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2009 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class UsersController < ApplicationController
19 19 layout 'admin'
20 20
21 21 before_filter :require_admin, :except => :show
22 22
23 23 helper :sort
24 24 include SortHelper
25 25 helper :custom_fields
26 26 include CustomFieldsHelper
27 27
28 28 def index
29 29 sort_init 'login', 'asc'
30 30 sort_update %w(login firstname lastname mail admin created_on last_login_on)
31 31
32 32 @status = params[:status] ? params[:status].to_i : 1
33 33 c = ARCondition.new(@status == 0 ? "status <> 0" : ["status = ?", @status])
34 34
35 35 unless params[:name].blank?
36 36 name = "%#{params[:name].strip.downcase}%"
37 37 c << ["LOWER(login) LIKE ? OR LOWER(firstname) LIKE ? OR LOWER(lastname) LIKE ? OR LOWER(mail) LIKE ?", name, name, name, name]
38 38 end
39 39
40 40 @user_count = User.count(:conditions => c.conditions)
41 41 @user_pages = Paginator.new self, @user_count,
42 42 per_page_option,
43 43 params['page']
44 44 @users = User.find :all,:order => sort_clause,
45 45 :conditions => c.conditions,
46 46 :limit => @user_pages.items_per_page,
47 47 :offset => @user_pages.current.offset
48 48
49 render :layout => !request.xhr?
49 respond_to do |format|
50 format.html { render :layout => !request.xhr? }
51 end
50 52 end
51 53
52 54 def show
53 55 @user = User.find(params[:id])
54 56
55 57 # show projects based on current user visibility
56 58 @memberships = @user.memberships.all(:conditions => Project.visible_by(User.current))
57 59
58 60 events = Redmine::Activity::Fetcher.new(User.current, :author => @user).events(nil, nil, :limit => 10)
59 61 @events_by_day = events.group_by(&:event_date)
60 62
61 63 unless User.current.admin?
62 64 if !@user.active? || (@user != User.current && @memberships.empty? && events.empty?)
63 65 render_404
64 66 return
65 67 end
66 68 end
67 render :layout => 'base'
68
69
70 respond_to do |format|
71 format.html { render :layout => 'base' }
72 end
69 73 rescue ActiveRecord::RecordNotFound
70 74 render_404
71 75 end
72 76
73 77 def new
74 78 @notification_options = User::MAIL_NOTIFICATION_OPTIONS
75 79 @notification_option = Setting.default_notification_option
76 80
77 81 @user = User.new(:language => Setting.default_language)
78 82 @auth_sources = AuthSource.find(:all)
79 83 end
80 84
81 85 verify :method => :post, :only => :create, :render => {:nothing => true, :status => :method_not_allowed }
82 86 def create
83 87 @notification_options = User::MAIL_NOTIFICATION_OPTIONS
84 88 @notification_option = Setting.default_notification_option
85 89
86 90 @user = User.new(params[:user])
87 91 @user.admin = params[:user][:admin] || false
88 92 @user.login = params[:user][:login]
89 93 @user.password, @user.password_confirmation = params[:password], params[:password_confirmation] unless @user.auth_source_id
90 94
91 95 # TODO: Similar to My#account
92 96 @user.mail_notification = params[:notification_option] || 'only_my_events'
93 97 @user.pref.attributes = params[:pref]
94 98 @user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
95 99
96 100 if @user.save
97 101 @user.pref.save
98 102 @user.notified_project_ids = (params[:notification_option] == 'selected' ? params[:notified_project_ids] : [])
99 103
100 104 Mailer.deliver_account_information(@user, params[:password]) if params[:send_information]
101 flash[:notice] = l(:notice_successful_create)
102 redirect_to(params[:continue] ? {:controller => 'users', :action => 'new'} :
103 {:controller => 'users', :action => 'edit', :id => @user})
104 return
105
106 respond_to do |format|
107 format.html {
108 flash[:notice] = l(:notice_successful_create)
109 redirect_to(params[:continue] ?
110 {:controller => 'users', :action => 'new'} :
111 {:controller => 'users', :action => 'edit', :id => @user}
112 )
113 }
114 end
105 115 else
106 116 @auth_sources = AuthSource.find(:all)
107 117 @notification_option = @user.mail_notification
108 118
109 render :action => 'new'
119 respond_to do |format|
120 format.html { render :action => 'new' }
121 end
110 122 end
111 123 end
112 124
113 125 def edit
114 126 @user = User.find(params[:id])
115 127 @notification_options = @user.valid_notification_options
116 128 @notification_option = @user.mail_notification
117 129
118 130 @auth_sources = AuthSource.find(:all)
119 131 @membership ||= Member.new
120 132 end
121 133
122 134 verify :method => :put, :only => :update, :render => {:nothing => true, :status => :method_not_allowed }
123 135 def update
124 136 @user = User.find(params[:id])
125 137 @notification_options = @user.valid_notification_options
126 138 @notification_option = @user.mail_notification
127 139
128 140 @user.admin = params[:user][:admin] if params[:user][:admin]
129 141 @user.login = params[:user][:login] if params[:user][:login]
130 142 if params[:password].present? && (@user.auth_source_id.nil? || params[:user][:auth_source_id].blank?)
131 143 @user.password, @user.password_confirmation = params[:password], params[:password_confirmation]
132 144 end
133 145 @user.group_ids = params[:user][:group_ids] if params[:user][:group_ids]
134 146 @user.attributes = params[:user]
135 147 # Was the account actived ? (do it before User#save clears the change)
136 148 was_activated = (@user.status_change == [User::STATUS_REGISTERED, User::STATUS_ACTIVE])
137 149 # TODO: Similar to My#account
138 150 @user.mail_notification = params[:notification_option] || 'only_my_events'
139 151 @user.pref.attributes = params[:pref]
140 152 @user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
141 153
142 154 if @user.save
143 155 @user.pref.save
144 156 @user.notified_project_ids = (params[:notification_option] == 'selected' ? params[:notified_project_ids] : [])
145 157
146 158 if was_activated
147 159 Mailer.deliver_account_activated(@user)
148 160 elsif @user.active? && params[:send_information] && !params[:password].blank? && @user.auth_source_id.nil?
149 161 Mailer.deliver_account_information(@user, params[:password])
150 162 end
151 flash[:notice] = l(:notice_successful_update)
152 redirect_to :back
163
164 respond_to do |format|
165 format.html {
166 flash[:notice] = l(:notice_successful_update)
167 redirect_to :back
168 }
169 end
153 170 else
154 171 @auth_sources = AuthSource.find(:all)
155 172 @membership ||= Member.new
156 173
157 render :action => :edit
174 respond_to do |format|
175 format.html { render :action => :edit }
176 end
158 177 end
159 178 rescue ::ActionController::RedirectBackError
160 179 redirect_to :controller => 'users', :action => 'edit', :id => @user
161 180 end
162 181
163 182 def edit_membership
164 183 @user = User.find(params[:id])
165 184 @membership = Member.edit_membership(params[:membership_id], params[:membership], @user)
166 185 @membership.save if request.post?
167 186 respond_to do |format|
168 187 if @membership.valid?
169 188 format.html { redirect_to :controller => 'users', :action => 'edit', :id => @user, :tab => 'memberships' }
170 189 format.js {
171 190 render(:update) {|page|
172 191 page.replace_html "tab-content-memberships", :partial => 'users/memberships'
173 192 page.visual_effect(:highlight, "member-#{@membership.id}")
174 193 }
175 194 }
176 195 else
177 196 format.js {
178 197 render(:update) {|page|
179 198 page.alert(l(:notice_failed_to_save_members, :errors => @membership.errors.full_messages.join(', ')))
180 199 }
181 200 }
182 201 end
183 202 end
184 203 end
185 204
186 205 def destroy_membership
187 206 @user = User.find(params[:id])
188 207 @membership = Member.find(params[:membership_id])
189 208 if request.post? && @membership.deletable?
190 209 @membership.destroy
191 210 end
192 211 respond_to do |format|
193 212 format.html { redirect_to :controller => 'users', :action => 'edit', :id => @user, :tab => 'memberships' }
194 213 format.js { render(:update) {|page| page.replace_html "tab-content-memberships", :partial => 'users/memberships'} }
195 214 end
196 215 end
197 216 end
General Comments 0
You need to be logged in to leave comments. Login now