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