Class: MyController

Inherits:
ApplicationController show all
Defined in:
app/controllers/my_controller.rb

Overview

Redmine - project management software Copyright © 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 collapse

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 collapse

Methods inherited from ApplicationController

accept_key_auth, #accept_key_auth_actions, #api_key_from_request, #api_offset_and_limit, #api_request?, #authorize, #authorize_global, #back_url, #check_if_login_required, #check_project_privacy, #check_project_uniqueness, #default_template, #delete_broken_cookies, #deny_access, #filename_for_content_disposition, #find_current_user, #find_issues, #find_model_object, #find_optional_project, #find_project, #find_project_by_project_id, #find_project_from_association, #invalid_authenticity_token, #logged_user=, model_object, #object_errors_to_json, #parse_qvalues, #per_page_option, #pick_layout, #query_statement_invalid, #redirect_back_or_default, #render_403, #render_404, #render_attachment_warning_if_needed, #render_error, #render_feed, #render_validation_errors, #require_admin, #require_login, #set_flash_from_bulk_issue_save, #set_localization, #use_layout, #user_setup

Methods included from Redmine::MenuManager::MenuController

#current_menu_item, included, #menu_items, #redirect_to_project_menu_item

Methods included from Redmine::Search::Controller

#default_search_scope, #default_search_scopes, included

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

Instance Method Details

#accountObject

Edit user’s account



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'app/controllers/my_controller.rb', line 53

def 
  @user = User.current
  @pref = @user.pref
  if request.post?
    @user.safe_attributes = params[:user]
    @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 = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : [])
      set_language_if_valid @user.language
      flash[:notice] = l(:notice_account_updated)
      redirect_to :action => 'account'
      return
    end
  end
end

#add_blockObject

Add a block to user’s page The block is added on top of the page params : id of the block to add



129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'app/controllers/my_controller.rb', line 129

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

#indexObject



41
42
43
44
# File 'app/controllers/my_controller.rb', line 41

def index
  page
  render :action => 'page'
end

#order_blocksObject

Change blocks order on user’s page params : group to order (top, left or right) params : array of block ids of the group



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# File 'app/controllers/my_controller.rb', line 159

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

#pageObject

Show user’s page



47
48
49
50
# File 'app/controllers/my_controller.rb', line 47

def page
  @user = User.current
  @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT
end

#page_layoutObject

User’s page layout configuration



119
120
121
122
123
124
# File 'app/controllers/my_controller.rb', line 119

def page_layout
  @user = User.current
  @blocks = @user.pref[:my_page_layout] || DEFAULT_LAYOUT.dup
  @block_options = []
  BLOCKS.each {|k, v| @block_options << [l("my.blocks.#{v}", :default => [v, v.to_s.humanize]), k.dasherize]}
end

#passwordObject

Manage user’s password



72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'app/controllers/my_controller.rb', line 72

def password
  @user = User.current
  unless @user.change_password_allowed?
    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

#remove_blockObject

Remove a block to user’s page params : id of the block to remove



145
146
147
148
149
150
151
152
153
154
# File 'app/controllers/my_controller.rb', line 145

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

#reset_api_keyObject

Create a new API key



106
107
108
109
110
111
112
113
114
115
116
# File 'app/controllers/my_controller.rb', line 106

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

#reset_rss_keyObject

Create a new feeds key



93
94
95
96
97
98
99
100
101
102
103
# File 'app/controllers/my_controller.rb', line 93

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