Class: MyController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- MyController
- Defined in:
- app/controllers/my_controller.rb
Overview
Redmine - project management software Copyright (C) 2006-2009 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.
Constant Summary
- BLOCKS =
{ 'issuesassignedtome' => :label_assigned_to_me_issues, 'issuesreportedbyme' => :label_reported_issues, 'issueswatched' => :label_watched_issues, 'news' => :label_news_latest, 'calendar' => :label_calendar, 'documents' => :label_document_plural, 'timelog' => :label_spent_time }.merge(Redmine::Views::MyPage::Block.additional_blocks).freeze
- DEFAULT_LAYOUT =
{ 'left' => ['issuesassignedtome'], 'right' => ['issuesreportedbyme'] }.freeze
Instance Method Summary
-
- (Object) account
Edit user’s account.
-
- (Object) add_block
Add a block to user’s page The block is added on top of the page params[:block] : id of the block to add.
- - (Object) index
-
- (Object) order_blocks
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.
-
- (Object) page
Show user’s page.
-
- (Object) page_layout
User’s page layout configuration.
-
- (Object) password
Manage user’s password.
-
- (Object) remove_block
Remove a block to user’s page params[:block] : id of the block to remove.
-
- (Object) reset_api_key
Create a new API key.
-
- (Object) reset_rss_key
Create a new feeds key.
Methods inherited from ApplicationController
accept_key_auth, #accept_key_auth_actions, #api_request?, #authorize, #authorize_global, #check_if_login_required, #check_project_privacy, #delete_broken_cookies, #deny_access, #filename_for_content_disposition, #find_current_user, #find_model_object, #find_project, #find_project_from_association, #invalid_authenticity_token, #logged_user=, model_object, #parse_qvalues, #per_page_option, #redirect_back_or_default, #render_403, #render_404, #render_attachment_warning_if_needed, #render_error, #render_feed, #require_admin, #require_login, #set_localization, #user_setup
Methods included from Redmine::I18n
#current_language, #day_name, #find_language, #format_date, #format_time, included, #l, #l_hours, #l_or_humanize, #ll, #month_name, #set_language_if_valid, #valid_languages
Methods included from Redmine::Search::Controller
#default_search_scope, #default_search_scopes, included
Methods included from Redmine::MenuManager::MenuController
#current_menu_item, included, #menu_items, #redirect_to_project_menu_item
Instance Method Details
- (Object) account
Edit user’s account
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'app/controllers/my_controller.rb', line 52 def account @user = User.current @pref = @user.pref if request.post? @user.attributes = params[:user] @user.mail_notification = (params[:notification_option] == 'all') @user.pref.attributes = params[:pref] @user.pref[:no_self_notified] = (params[:no_self_notified] == '1') if @user.save @user.pref.save @user.notified_project_ids = (params[:notification_option] == 'selected' ? params[:notified_project_ids] : []) set_language_if_valid @user.language flash[:notice] = l(:notice_account_updated) redirect_to :action => 'account' return end end = [[l(:label_user_mail_option_all), 'all'], [l(:label_user_mail_option_none), 'none']] # Only users that belong to more than 1 project can select projects for which they are notified # Note that @user.membership.size would fail since AR ignores :include association option when doing a count .insert 1, [l(:label_user_mail_option_selected), 'selected'] if @user.memberships.length > 1 @notification_option = @user.mail_notification? ? 'all' : (@user.notified_projects_ids.empty? ? 'none' : 'selected') end |
- (Object) add_block
Add a block to user’s page The block is added on top of the page params[:block] : id of the block to add
135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'app/controllers/my_controller.rb', line 135 def add_block block = params[:block].to_s.underscore (render :nothing => true; return) unless block && (BLOCKS.keys.include? block) @user = User.current layout = @user.pref[:my_page_layout] || {} # remove if already present in a group %w(top left right).each {|f| (layout[f] ||= []).delete block } # add it on top layout['top'].unshift block @user.pref[:my_page_layout] = layout @user.pref.save render :partial => "block", :locals => {:user => @user, :block_name => block} end |
- (Object) index
40 41 42 43 |
# File 'app/controllers/my_controller.rb', line 40 def index page render :action => 'page' end |
- (Object) order_blocks
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
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'app/controllers/my_controller.rb', line 165 def order_blocks group = params[:group] @user = User.current if group.is_a?(String) group_items = (params["list-#{group}"] || []).collect(&:underscore) if group_items and group_items.is_a? Array layout = @user.pref[:my_page_layout] || {} # remove group blocks if they are presents in other groups %w(top left right).each {|f| layout[f] = (layout[f] || []) - group_items } layout[group] = group_items @user.pref[:my_page_layout] = layout @user.pref.save end end render :nothing => true end |
- (Object) page
Show user’s page
46 47 48 49 |
# File 'app/controllers/my_controller.rb', line 46 def page @user = User.current @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT end |
- (Object) page_layout
User’s page layout configuration
125 126 127 128 129 130 |
# File 'app/controllers/my_controller.rb', line 125 def page_layout @user = User.current @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup = [] BLOCKS.each {|k, v| << [l("my.blocks.#{v}", :default => [v, v.to_s.humanize]), k.dasherize]} end |
- (Object) password
Manage user’s password
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'app/controllers/my_controller.rb', line 78 def password @user = User.current if @user.auth_source_id flash[:error] = l(:notice_can_t_change_password) redirect_to :action => 'account' return end 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 else flash[:error] = l(:notice_account_wrong_password) end end end |
- (Object) remove_block
Remove a block to user’s page params[:block] : id of the block to remove
151 152 153 154 155 156 157 158 159 160 |
# File 'app/controllers/my_controller.rb', line 151 def remove_block block = params[:block].to_s.underscore @user = User.current # remove block in all groups layout = @user.pref[:my_page_layout] || {} %w(top left right).each {|f| (layout[f] ||= []).delete block } @user.pref[:my_page_layout] = layout @user.pref.save render :nothing => true end |
- (Object) reset_api_key
Create a new API key
112 113 114 115 116 117 118 119 120 121 122 |
# File 'app/controllers/my_controller.rb', line 112 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 |
- (Object) reset_rss_key
Create a new feeds key
99 100 101 102 103 104 105 106 107 108 109 |
# File 'app/controllers/my_controller.rb', line 99 def reset_rss_key if request.post? if User.current.rss_token User.current.rss_token.destroy User.current.reload end User.current.rss_key flash[:notice] = l(:notice_feeds_access_key_reseted) end redirect_to :action => 'account' end |