OSDN Git Service

Move database.yml to template
[redminele/redminele.git] / redmine / app / controllers / settings_controller.rb
1 # redMine - project management software
2 # Copyright (C) 2006-2007  Jean-Philippe Lang
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17
18 class SettingsController < ApplicationController
19   layout 'admin'
20   
21   before_filter :require_admin
22
23   def index
24     edit
25     render :action => 'edit'
26   end
27
28   def edit
29     @notifiables = %w(issue_added issue_updated news_added document_added file_added message_posted wiki_content_added wiki_content_updated)
30     if request.post? && params[:settings] && params[:settings].is_a?(Hash)
31       settings = (params[:settings] || {}).dup.symbolize_keys
32       settings.each do |name, value|
33         # remove blank values in array settings
34         value.delete_if {|v| v.blank? } if value.is_a?(Array)
35         Setting[name] = value
36       end
37       flash[:notice] = l(:notice_successful_update)
38       redirect_to :action => 'edit', :tab => params[:tab]
39       return
40     end
41     @options = {}
42     @options[:user_format] = User::USER_FORMATS.keys.collect {|f| [User.current.name(f), f.to_s] }
43     @deliveries = ActionMailer::Base.perform_deliveries
44
45     @guessed_host_and_path = request.host_with_port.dup
46     @guessed_host_and_path << ('/'+ Redmine::Utils.relative_url_root.gsub(%r{^\/}, '')) unless Redmine::Utils.relative_url_root.blank?
47   end
48
49   def plugin
50     @plugin = Redmine::Plugin.find(params[:id])
51     if request.post?
52       Setting["plugin_#{@plugin.id}"] = params[:settings]
53       flash[:notice] = l(:notice_successful_update)
54       redirect_to :action => 'plugin', :id => @plugin.id
55     end
56     @partial = @plugin.settings[:partial]
57     @settings = Setting["plugin_#{@plugin.id}"]
58   rescue Redmine::PluginNotFound
59     render_404
60   end
61 end