| 
									
										
										
										
											2009-02-26 16:36:56 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2012-05-05 12:56:53 +00:00
										 |  |  | # Copyright (C) 2006-2012  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  | # 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 MyController < ApplicationController | 
					
						
							|  |  |  |   before_filter :require_login | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-10 15:22:54 +00:00
										 |  |  |   helper :issues | 
					
						
							| 
									
										
										
										
											2010-12-12 14:25:23 +00:00
										 |  |  |   helper :users | 
					
						
							| 
									
										
										
										
											2009-01-17 11:18:04 +00:00
										 |  |  |   helper :custom_fields | 
					
						
							| 
									
										
										
										
											2008-08-10 15:22:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-05 19:33:43 +00:00
										 |  |  |   BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues, | 
					
						
							|  |  |  |              'issuesreportedbyme' => :label_reported_issues, | 
					
						
							| 
									
										
										
										
											2007-04-21 12:28:22 +00:00
										 |  |  |              'issueswatched' => :label_watched_issues, | 
					
						
							| 
									
										
										
										
											2007-02-05 19:33:43 +00:00
										 |  |  |              'news' => :label_news_latest, | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |              'calendar' => :label_calendar, | 
					
						
							| 
									
										
										
										
											2008-03-16 12:21:54 +00:00
										 |  |  |              'documents' => :label_document_plural, | 
					
						
							|  |  |  |              'timelog' => :label_spent_time | 
					
						
							| 
									
										
										
										
											2009-02-26 16:36:56 +00:00
										 |  |  |            }.merge(Redmine::Views::MyPage::Block.additional_blocks).freeze | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  |   DEFAULT_LAYOUT = {  'left' => ['issuesassignedtome'], | 
					
						
							|  |  |  |                       'right' => ['issuesreportedbyme'] | 
					
						
							| 
									
										
										
										
											2007-02-05 19:33:43 +00:00
										 |  |  |                    }.freeze | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   def index | 
					
						
							|  |  |  |     page | 
					
						
							|  |  |  |     render :action => 'page' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Show user's page | 
					
						
							|  |  |  |   def page | 
					
						
							| 
									
										
										
										
											2007-11-20 15:40:16 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2007-02-05 19:33:43 +00:00
										 |  |  |     @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Edit user's account | 
					
						
							|  |  |  |   def account | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2006-12-03 20:51:17 +00:00
										 |  |  |     @pref = @user.pref | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |     if request.post? | 
					
						
							| 
									
										
										
										
											2010-12-12 13:19:07 +00:00
										 |  |  |       @user.safe_attributes = params[:user] | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |       @user.pref.attributes = params[:pref] | 
					
						
							| 
									
										
										
										
											2007-11-12 16:43:49 +00:00
										 |  |  |       @user.pref[:no_self_notified] = (params[:no_self_notified] == '1') | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |       if @user.save | 
					
						
							|  |  |  |         @user.pref.save | 
					
						
							| 
									
										
										
										
											2010-12-12 14:19:24 +00:00
										 |  |  |         @user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : []) | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |         set_language_if_valid @user.language | 
					
						
							|  |  |  |         flash[:notice] = l(:notice_account_updated) | 
					
						
							|  |  |  |         redirect_to :action => 'account' | 
					
						
							|  |  |  |         return | 
					
						
							|  |  |  |       end | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 14:31:54 +00:00
										 |  |  |   # Destroys user's account | 
					
						
							|  |  |  |   def destroy | 
					
						
							|  |  |  |     @user = User.current | 
					
						
							|  |  |  |     unless @user.own_account_deletable? | 
					
						
							|  |  |  |       redirect_to :action => 'account' | 
					
						
							|  |  |  |       return | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if request.post? && params[:confirm] | 
					
						
							|  |  |  |       @user.destroy | 
					
						
							|  |  |  |       if @user.destroyed? | 
					
						
							|  |  |  |         logout_user | 
					
						
							|  |  |  |         flash[:notice] = l(:notice_account_deleted) | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       redirect_to home_path | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |   # Manage user's password | 
					
						
							|  |  |  |   def password | 
					
						
							| 
									
										
										
										
											2007-11-20 15:40:16 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2010-05-23 03:16:37 +00:00
										 |  |  |     unless @user.change_password_allowed? | 
					
						
							| 
									
										
										
										
											2009-12-18 14:22:18 +00:00
										 |  |  |       flash[:error] = l(:notice_can_t_change_password) | 
					
						
							|  |  |  |       redirect_to :action => 'account' | 
					
						
							|  |  |  |       return | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |     if request.post? | 
					
						
							|  |  |  |       if @user.check_password?(params[:password]) | 
					
						
							|  |  |  |         @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation] | 
					
						
							|  |  |  |         if @user.save | 
					
						
							|  |  |  |           flash[:notice] = l(:notice_account_password_updated) | 
					
						
							|  |  |  |           redirect_to :action => 'account' | 
					
						
							|  |  |  |         end | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |       else | 
					
						
							| 
									
										
										
										
											2007-10-20 12:47:05 +00:00
										 |  |  |         flash[:error] = l(:notice_account_wrong_password) | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-08-29 20:07:28 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-29 20:07:28 +00:00
										 |  |  |   # Create a new feeds key | 
					
						
							|  |  |  |   def reset_rss_key | 
					
						
							| 
									
										
										
										
											2009-12-21 02:24:49 +00:00
										 |  |  |     if request.post? | 
					
						
							|  |  |  |       if User.current.rss_token | 
					
						
							|  |  |  |         User.current.rss_token.destroy | 
					
						
							|  |  |  |         User.current.reload | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       User.current.rss_key | 
					
						
							| 
									
										
										
										
											2007-08-29 20:07:28 +00:00
										 |  |  |       flash[:notice] = l(:notice_feeds_access_key_reseted) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     redirect_to :action => 'account' | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-23 06:27:28 +00:00
										 |  |  |   # Create a new API key | 
					
						
							|  |  |  |   def reset_api_key | 
					
						
							|  |  |  |     if request.post? | 
					
						
							|  |  |  |       if User.current.api_token | 
					
						
							|  |  |  |         User.current.api_token.destroy | 
					
						
							|  |  |  |         User.current.reload | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |       User.current.api_key | 
					
						
							|  |  |  |       flash[:notice] = l(:notice_api_access_key_reseted) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     redirect_to :action => 'account' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   # User's page layout configuration | 
					
						
							|  |  |  |   def page_layout | 
					
						
							| 
									
										
										
										
											2007-11-20 15:40:16 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2007-02-18 14:59:06 +00:00
										 |  |  |     @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |     @block_options = [] | 
					
						
							| 
									
										
										
										
											2012-07-18 18:26:10 +00:00
										 |  |  |     BLOCKS.each do |k, v| | 
					
						
							|  |  |  |       unless %w(top left right).detect {|f| (@blocks[f] ||= []).include?(k)} | 
					
						
							|  |  |  |         @block_options << [l("my.blocks.#{v}", :default => [v, v.to_s.humanize]), k.dasherize] | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   # Add a block to user's page | 
					
						
							|  |  |  |   # The block is added on top of the page | 
					
						
							|  |  |  |   # params[:block] : id of the block to add | 
					
						
							|  |  |  |   def add_block | 
					
						
							| 
									
										
										
										
											2009-02-26 16:15:07 +00:00
										 |  |  |     block = params[:block].to_s.underscore | 
					
						
							| 
									
										
										
										
											2009-12-18 14:22:18 +00:00
										 |  |  |     (render :nothing => true; return) unless block && (BLOCKS.keys.include? block) | 
					
						
							| 
									
										
										
										
											2007-11-20 15:40:16 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |     layout = @user.pref[:my_page_layout] || {} | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |     # remove if already present in a group | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |     %w(top left right).each {|f| (layout[f] ||= []).delete block } | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |     # add it on top | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |     layout['top'].unshift block | 
					
						
							|  |  |  |     @user.pref[:my_page_layout] = layout | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  |     @user.pref.save | 
					
						
							| 
									
										
										
										
											2012-07-18 18:26:10 +00:00
										 |  |  |     redirect_to :action => 'page_layout' | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   # Remove a block to user's page | 
					
						
							|  |  |  |   # params[:block] : id of the block to remove | 
					
						
							|  |  |  |   def remove_block | 
					
						
							| 
									
										
										
										
											2009-02-26 16:15:07 +00:00
										 |  |  |     block = params[:block].to_s.underscore | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |     # remove block in all groups | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |     layout = @user.pref[:my_page_layout] || {} | 
					
						
							|  |  |  |     %w(top left right).each {|f| (layout[f] ||= []).delete block } | 
					
						
							|  |  |  |     @user.pref[:my_page_layout] = layout | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  |     @user.pref.save | 
					
						
							| 
									
										
										
										
											2012-07-18 18:26:10 +00:00
										 |  |  |     redirect_to :action => 'page_layout' | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Change blocks order on user's page | 
					
						
							|  |  |  |   # params[:group] : group to order (top, left or right) | 
					
						
							|  |  |  |   # params[:list-(top|left|right)] : array of block ids of the group | 
					
						
							|  |  |  |   def order_blocks | 
					
						
							|  |  |  |     group = params[:group] | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |     @user = User.current | 
					
						
							| 
									
										
										
										
											2009-03-26 18:11:56 +00:00
										 |  |  |     if group.is_a?(String) | 
					
						
							| 
									
										
										
										
											2012-07-22 13:29:26 +00:00
										 |  |  |       group_items = (params["blocks"] || []).collect(&:underscore) | 
					
						
							|  |  |  |       group_items.each {|s| s.sub!(/^block_/, '')} | 
					
						
							| 
									
										
										
										
											2009-02-26 16:15:07 +00:00
										 |  |  |       if group_items and group_items.is_a? Array | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |         layout = @user.pref[:my_page_layout] || {} | 
					
						
							| 
									
										
										
										
											2009-02-26 16:15:07 +00:00
										 |  |  |         # remove group blocks if they are presents in other groups | 
					
						
							|  |  |  |         %w(top left right).each {|f| | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |           layout[f] = (layout[f] || []) - group_items | 
					
						
							| 
									
										
										
										
											2009-02-26 16:15:07 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-12-19 13:32:21 +00:00
										 |  |  |         layout[group] = group_items | 
					
						
							|  |  |  |         @user.pref[:my_page_layout] = layout | 
					
						
							| 
									
										
										
										
											2011-08-30 13:05:53 +00:00
										 |  |  |         @user.pref.save | 
					
						
							| 
									
										
										
										
											2009-02-26 16:15:07 +00:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2006-12-03 19:55:45 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     render :nothing => true | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |