##// END OF EJS Templates
remove trailing white-spaces from app/controllers/my_controller.rb....
Toshi MARUYAMA -
r6680:b840af0db061
parent child
Show More
@@ -1,177 +1,177
1 1 # Redmine - project management software
2 # Copyright (C) 2006-2009 Jean-Philippe Lang
2 # Copyright (C) 2006-2011 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 MyController < ApplicationController
19 19 before_filter :require_login
20 20
21 21 helper :issues
22 22 helper :users
23 23 helper :custom_fields
24 24
25 25 BLOCKS = { 'issuesassignedtome' => :label_assigned_to_me_issues,
26 26 'issuesreportedbyme' => :label_reported_issues,
27 27 'issueswatched' => :label_watched_issues,
28 28 'news' => :label_news_latest,
29 29 'calendar' => :label_calendar,
30 30 'documents' => :label_document_plural,
31 31 'timelog' => :label_spent_time
32 32 }.merge(Redmine::Views::MyPage::Block.additional_blocks).freeze
33 33
34 DEFAULT_LAYOUT = { 'left' => ['issuesassignedtome'],
35 'right' => ['issuesreportedbyme']
34 DEFAULT_LAYOUT = { 'left' => ['issuesassignedtome'],
35 'right' => ['issuesreportedbyme']
36 36 }.freeze
37 37
38 38 verify :xhr => true,
39 39 :only => [:add_block, :remove_block, :order_blocks]
40 40
41 41 def index
42 42 page
43 43 render :action => 'page'
44 44 end
45 45
46 46 # Show user's page
47 47 def page
48 48 @user = User.current
49 49 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT
50 50 end
51 51
52 52 # Edit user's account
53 53 def account
54 54 @user = User.current
55 55 @pref = @user.pref
56 56 if request.post?
57 57 @user.safe_attributes = params[:user]
58 58 @user.pref.attributes = params[:pref]
59 59 @user.pref[:no_self_notified] = (params[:no_self_notified] == '1')
60 60 if @user.save
61 61 @user.pref.save
62 62 @user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : [])
63 63 set_language_if_valid @user.language
64 64 flash[:notice] = l(:notice_account_updated)
65 65 redirect_to :action => 'account'
66 66 return
67 67 end
68 68 end
69 69 end
70 70
71 71 # Manage user's password
72 72 def password
73 73 @user = User.current
74 74 unless @user.change_password_allowed?
75 75 flash[:error] = l(:notice_can_t_change_password)
76 76 redirect_to :action => 'account'
77 77 return
78 78 end
79 79 if request.post?
80 80 if @user.check_password?(params[:password])
81 81 @user.password, @user.password_confirmation = params[:new_password], params[:new_password_confirmation]
82 82 if @user.save
83 83 flash[:notice] = l(:notice_account_password_updated)
84 84 redirect_to :action => 'account'
85 85 end
86 86 else
87 87 flash[:error] = l(:notice_account_wrong_password)
88 88 end
89 89 end
90 90 end
91
91
92 92 # Create a new feeds key
93 93 def reset_rss_key
94 94 if request.post?
95 95 if User.current.rss_token
96 96 User.current.rss_token.destroy
97 97 User.current.reload
98 98 end
99 99 User.current.rss_key
100 100 flash[:notice] = l(:notice_feeds_access_key_reseted)
101 101 end
102 102 redirect_to :action => 'account'
103 103 end
104 104
105 105 # Create a new API key
106 106 def reset_api_key
107 107 if request.post?
108 108 if User.current.api_token
109 109 User.current.api_token.destroy
110 110 User.current.reload
111 111 end
112 112 User.current.api_key
113 113 flash[:notice] = l(:notice_api_access_key_reseted)
114 114 end
115 115 redirect_to :action => 'account'
116 116 end
117 117
118 118 # User's page layout configuration
119 119 def page_layout
120 120 @user = User.current
121 121 @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
122 122 @block_options = []
123 123 BLOCKS.each {|k, v| @block_options << [l("my.blocks.#{v}", :default => [v, v.to_s.humanize]), k.dasherize]}
124 124 end
125
125
126 126 # Add a block to user's page
127 127 # The block is added on top of the page
128 128 # params[:block] : id of the block to add
129 129 def add_block
130 130 block = params[:block].to_s.underscore
131 131 (render :nothing => true; return) unless block && (BLOCKS.keys.include? block)
132 132 @user = User.current
133 133 layout = @user.pref[:my_page_layout] || {}
134 134 # remove if already present in a group
135 135 %w(top left right).each {|f| (layout[f] ||= []).delete block }
136 136 # add it on top
137 137 layout['top'].unshift block
138 138 @user.pref[:my_page_layout] = layout
139 @user.pref.save
139 @user.pref.save
140 140 render :partial => "block", :locals => {:user => @user, :block_name => block}
141 141 end
142
142
143 143 # Remove a block to user's page
144 144 # params[:block] : id of the block to remove
145 145 def remove_block
146 146 block = params[:block].to_s.underscore
147 147 @user = User.current
148 148 # remove block in all groups
149 149 layout = @user.pref[:my_page_layout] || {}
150 150 %w(top left right).each {|f| (layout[f] ||= []).delete block }
151 151 @user.pref[:my_page_layout] = layout
152 @user.pref.save
152 @user.pref.save
153 153 render :nothing => true
154 154 end
155 155
156 156 # Change blocks order on user's page
157 157 # params[:group] : group to order (top, left or right)
158 158 # params[:list-(top|left|right)] : array of block ids of the group
159 159 def order_blocks
160 160 group = params[:group]
161 161 @user = User.current
162 162 if group.is_a?(String)
163 163 group_items = (params["list-#{group}"] || []).collect(&:underscore)
164 164 if group_items and group_items.is_a? Array
165 165 layout = @user.pref[:my_page_layout] || {}
166 166 # remove group blocks if they are presents in other groups
167 167 %w(top left right).each {|f|
168 168 layout[f] = (layout[f] || []) - group_items
169 169 }
170 170 layout[group] = group_items
171 171 @user.pref[:my_page_layout] = layout
172 @user.pref.save
172 @user.pref.save
173 173 end
174 174 end
175 175 render :nothing => true
176 176 end
177 177 end
General Comments 0
You need to be logged in to leave comments. Login now