annotate app/controllers/my_controller.rb @ 1296:038ba2d95de8 redmine-2.2

Fix redmine-2.2 branch update (add missing svn files)
author Chris Cannam
date Fri, 14 Jun 2013 09:05:06 +0100
parents 3e4c3460b6ca
children 622f24f53b42 0a574315af3e 261b3d9a4903
rev   line source
Chris@0 1 # Redmine - project management software
Chris@1115 2 # Copyright (C) 2006-2012 Jean-Philippe Lang
Chris@0 3 #
Chris@0 4 # This program is free software; you can redistribute it and/or
Chris@0 5 # modify it under the terms of the GNU General Public License
Chris@0 6 # as published by the Free Software Foundation; either version 2
Chris@0 7 # of the License, or (at your option) any later version.
Chris@909 8 #
Chris@0 9 # This program is distributed in the hope that it will be useful,
Chris@0 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@0 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@0 12 # GNU General Public License for more details.
Chris@909 13 #
Chris@0 14 # You should have received a copy of the GNU General Public License
Chris@0 15 # along with this program; if not, write to the Free Software
Chris@0 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@0 17
Chris@0 18 class MyController < ApplicationController
Chris@0 19 before_filter :require_login
Chris@0 20
Chris@0 21 helper :issues
Chris@119 22 helper :users
Chris@0 23 helper :custom_fields
Chris@0 24
Chris@0 25 BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues,
Chris@0 26 'issuesreportedbyme' => :label_reported_issues,
Chris@0 27 'issueswatched' => :label_watched_issues,
Chris@0 28 'news' => :label_news_latest,
Chris@0 29 'calendar' => :label_calendar,
Chris@0 30 'documents' => :label_document_plural,
Chris@0 31 'timelog' => :label_spent_time
Chris@0 32 }.merge(Redmine::Views::MyPage::Block.additional_blocks).freeze
Chris@0 33
Chris@909 34 DEFAULT_LAYOUT = { 'left' => ['issuesassignedtome'],
Chris@909 35 'right' => ['issuesreportedbyme']
Chris@0 36 }.freeze
Chris@0 37
Chris@0 38 def index
Chris@0 39 page
Chris@0 40 render :action => 'page'
Chris@0 41 end
Chris@0 42
Chris@0 43 # Show user's page
Chris@0 44 def page
Chris@0 45 @user = User.current
Chris@0 46 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT
Chris@0 47 end
Chris@0 48
Chris@0 49 # Edit user's account
Chris@0 50 def account
Chris@0 51 @user = User.current
Chris@0 52 @pref = @user.pref
Chris@0 53 if request.post?
Chris@119 54 @user.safe_attributes = params[:user]
Chris@0 55 @user.pref.attributes = params[:pref]
Chris@0 56 @user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
Chris@0 57 if @user.save
Chris@0 58 @user.pref.save
Chris@119 59 @user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : [])
Chris@0 60 set_language_if_valid @user.language
Chris@0 61 flash[:notice] = l(:notice_account_updated)
Chris@0 62 redirect_to :action => 'account'
Chris@0 63 return
Chris@0 64 end
Chris@0 65 end
Chris@0 66 end
Chris@0 67
Chris@1115 68 # Destroys user's account
Chris@1115 69 def destroy
Chris@1115 70 @user = User.current
Chris@1115 71 unless @user.own_account_deletable?
Chris@1115 72 redirect_to :action => 'account'
Chris@1115 73 return
Chris@1115 74 end
Chris@1115 75
Chris@1115 76 if request.post? && params[:confirm]
Chris@1115 77 @user.destroy
Chris@1115 78 if @user.destroyed?
Chris@1115 79 logout_user
Chris@1115 80 flash[:notice] = l(:notice_account_deleted)
Chris@1115 81 end
Chris@1115 82 redirect_to home_path
Chris@1115 83 end
Chris@1115 84 end
Chris@1115 85
Chris@0 86 # Manage user's password
Chris@0 87 def password
Chris@0 88 @user = User.current
Chris@0 89 unless @user.change_password_allowed?
Chris@0 90 flash[:error] = l(:notice_can_t_change_password)
Chris@0 91 redirect_to :action => 'account'
Chris@0 92 return
Chris@0 93 end
Chris@0 94 if request.post?
Chris@0 95 if @user.check_password?(params[:password])
Chris@0 96 @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation]
Chris@0 97 if @user.save
Chris@0 98 flash[:notice] = l(:notice_account_password_updated)
Chris@0 99 redirect_to :action => 'account'
Chris@0 100 end
Chris@0 101 else
Chris@0 102 flash[:error] = l(:notice_account_wrong_password)
Chris@0 103 end
Chris@0 104 end
Chris@0 105 end
Chris@909 106
Chris@0 107 # Create a new feeds key
Chris@0 108 def reset_rss_key
Chris@0 109 if request.post?
Chris@0 110 if User.current.rss_token
Chris@0 111 User.current.rss_token.destroy
Chris@0 112 User.current.reload
Chris@0 113 end
Chris@0 114 User.current.rss_key
Chris@0 115 flash[:notice] = l(:notice_feeds_access_key_reseted)
Chris@0 116 end
Chris@0 117 redirect_to :action => 'account'
Chris@0 118 end
Chris@0 119
Chris@0 120 # Create a new API key
Chris@0 121 def reset_api_key
Chris@0 122 if request.post?
Chris@0 123 if User.current.api_token
Chris@0 124 User.current.api_token.destroy
Chris@0 125 User.current.reload
Chris@0 126 end
Chris@0 127 User.current.api_key
Chris@0 128 flash[:notice] = l(:notice_api_access_key_reseted)
Chris@0 129 end
Chris@0 130 redirect_to :action => 'account'
Chris@0 131 end
Chris@0 132
Chris@0 133 # User's page layout configuration
Chris@0 134 def page_layout
Chris@0 135 @user = User.current
Chris@0 136 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
Chris@0 137 @block_options = []
Chris@1115 138 BLOCKS.each do |k, v|
Chris@1115 139 unless %w(top left right).detect {|f| (@blocks[f] ||= []).include?(k)}
Chris@1115 140 @block_options << [l("my.blocks.#{v}", :default => [v, v.to_s.humanize]), k.dasherize]
Chris@1115 141 end
Chris@1115 142 end
Chris@0 143 end
Chris@909 144
Chris@0 145 # Add a block to user's page
Chris@0 146 # The block is added on top of the page
Chris@0 147 # params[:block] : id of the block to add
Chris@0 148 def add_block
Chris@0 149 block = params[:block].to_s.underscore
Chris@1294 150 if block.present? && BLOCKS.key?(block)
Chris@1294 151 @user = User.current
Chris@1294 152 layout = @user.pref[:my_page_layout] || {}
Chris@1294 153 # remove if already present in a group
Chris@1294 154 %w(top left right).each {|f| (layout[f] ||= []).delete block }
Chris@1294 155 # add it on top
Chris@1294 156 layout['top'].unshift block
Chris@1294 157 @user.pref[:my_page_layout] = layout
Chris@1294 158 @user.pref.save
Chris@1294 159 end
Chris@1115 160 redirect_to :action => 'page_layout'
Chris@0 161 end
Chris@909 162
Chris@0 163 # Remove a block to user's page
Chris@0 164 # params[:block] : id of the block to remove
Chris@0 165 def remove_block
Chris@0 166 block = params[:block].to_s.underscore
Chris@0 167 @user = User.current
Chris@0 168 # remove block in all groups
Chris@0 169 layout = @user.pref[:my_page_layout] || {}
Chris@0 170 %w(top left right).each {|f| (layout[f] ||= []).delete block }
Chris@0 171 @user.pref[:my_page_layout] = layout
Chris@909 172 @user.pref.save
Chris@1115 173 redirect_to :action => 'page_layout'
Chris@0 174 end
Chris@0 175
Chris@0 176 # Change blocks order on user's page
Chris@0 177 # params[:group] : group to order (top, left or right)
Chris@0 178 # params[:list-(top|left|right)] : array of block ids of the group
Chris@0 179 def order_blocks
Chris@0 180 group = params[:group]
Chris@0 181 @user = User.current
Chris@0 182 if group.is_a?(String)
Chris@1115 183 group_items = (params["blocks"] || []).collect(&:underscore)
Chris@1115 184 group_items.each {|s| s.sub!(/^block_/, '')}
Chris@0 185 if group_items and group_items.is_a? Array
Chris@0 186 layout = @user.pref[:my_page_layout] || {}
Chris@0 187 # remove group blocks if they are presents in other groups
Chris@0 188 %w(top left right).each {|f|
Chris@0 189 layout[f] = (layout[f] || []) - group_items
Chris@0 190 }
Chris@0 191 layout[group] = group_items
Chris@0 192 @user.pref[:my_page_layout] = layout
Chris@909 193 @user.pref.save
Chris@0 194 end
Chris@0 195 end
Chris@0 196 render :nothing => true
Chris@0 197 end
Chris@0 198 end