##// END OF EJS Templates
Use safe_attributes= just like in #create....
Jean-Philippe Lang -
r9015:0ee1de568697
parent child
Show More
@@ -1,256 +1,257
1 # Redmine - project management software
1 # Redmine - project management software
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
3 #
3 #
4 # This program is free software; you can redistribute it and/or
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
7 # of the License, or (at your option) any later version.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU General Public License
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
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.
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
17
18 class ProjectsController < ApplicationController
18 class ProjectsController < ApplicationController
19 menu_item :overview
19 menu_item :overview
20 menu_item :roadmap, :only => :roadmap
20 menu_item :roadmap, :only => :roadmap
21 menu_item :settings, :only => :settings
21 menu_item :settings, :only => :settings
22
22
23 before_filter :find_project, :except => [ :index, :list, :new, :create, :copy ]
23 before_filter :find_project, :except => [ :index, :list, :new, :create, :copy ]
24 before_filter :authorize, :except => [ :index, :list, :new, :create, :copy, :archive, :unarchive, :destroy]
24 before_filter :authorize, :except => [ :index, :list, :new, :create, :copy, :archive, :unarchive, :destroy]
25 before_filter :authorize_global, :only => [:new, :create]
25 before_filter :authorize_global, :only => [:new, :create]
26 before_filter :require_admin, :only => [ :copy, :archive, :unarchive, :destroy ]
26 before_filter :require_admin, :only => [ :copy, :archive, :unarchive, :destroy ]
27 accept_rss_auth :index
27 accept_rss_auth :index
28 accept_api_auth :index, :show, :create, :update, :destroy
28 accept_api_auth :index, :show, :create, :update, :destroy
29
29
30 after_filter :only => [:create, :edit, :update, :archive, :unarchive, :destroy] do |controller|
30 after_filter :only => [:create, :edit, :update, :archive, :unarchive, :destroy] do |controller|
31 if controller.request.post?
31 if controller.request.post?
32 controller.send :expire_action, :controller => 'welcome', :action => 'robots'
32 controller.send :expire_action, :controller => 'welcome', :action => 'robots'
33 end
33 end
34 end
34 end
35
35
36 helper :sort
36 helper :sort
37 include SortHelper
37 include SortHelper
38 helper :custom_fields
38 helper :custom_fields
39 include CustomFieldsHelper
39 include CustomFieldsHelper
40 helper :issues
40 helper :issues
41 helper :queries
41 helper :queries
42 include QueriesHelper
42 include QueriesHelper
43 helper :repositories
43 helper :repositories
44 include RepositoriesHelper
44 include RepositoriesHelper
45 include ProjectsHelper
45 include ProjectsHelper
46
46
47 # Lists visible projects
47 # Lists visible projects
48 def index
48 def index
49 respond_to do |format|
49 respond_to do |format|
50 format.html {
50 format.html {
51 @projects = Project.visible.find(:all, :order => 'lft')
51 @projects = Project.visible.find(:all, :order => 'lft')
52 }
52 }
53 format.api {
53 format.api {
54 @offset, @limit = api_offset_and_limit
54 @offset, @limit = api_offset_and_limit
55 @project_count = Project.visible.count
55 @project_count = Project.visible.count
56 @projects = Project.visible.all(:offset => @offset, :limit => @limit, :order => 'lft')
56 @projects = Project.visible.all(:offset => @offset, :limit => @limit, :order => 'lft')
57 }
57 }
58 format.atom {
58 format.atom {
59 projects = Project.visible.find(:all, :order => 'created_on DESC',
59 projects = Project.visible.find(:all, :order => 'created_on DESC',
60 :limit => Setting.feeds_limit.to_i)
60 :limit => Setting.feeds_limit.to_i)
61 render_feed(projects, :title => "#{Setting.app_title}: #{l(:label_project_latest)}")
61 render_feed(projects, :title => "#{Setting.app_title}: #{l(:label_project_latest)}")
62 }
62 }
63 end
63 end
64 end
64 end
65
65
66 def new
66 def new
67 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
67 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
68 @trackers = Tracker.all
68 @trackers = Tracker.all
69 @project = Project.new(params[:project])
69 @project = Project.new
70 @project.safe_attributes = params[:project]
70 end
71 end
71
72
72 def create
73 def create
73 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
74 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
74 @trackers = Tracker.all
75 @trackers = Tracker.all
75 @project = Project.new
76 @project = Project.new
76 @project.safe_attributes = params[:project]
77 @project.safe_attributes = params[:project]
77
78
78 if validate_parent_id && @project.save
79 if validate_parent_id && @project.save
79 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
80 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
80 # Add current user as a project member if he is not admin
81 # Add current user as a project member if he is not admin
81 unless User.current.admin?
82 unless User.current.admin?
82 r = Role.givable.find_by_id(Setting.new_project_user_role_id.to_i) || Role.givable.first
83 r = Role.givable.find_by_id(Setting.new_project_user_role_id.to_i) || Role.givable.first
83 m = Member.new(:user => User.current, :roles => [r])
84 m = Member.new(:user => User.current, :roles => [r])
84 @project.members << m
85 @project.members << m
85 end
86 end
86 respond_to do |format|
87 respond_to do |format|
87 format.html {
88 format.html {
88 flash[:notice] = l(:notice_successful_create)
89 flash[:notice] = l(:notice_successful_create)
89 redirect_to(params[:continue] ?
90 redirect_to(params[:continue] ?
90 {:controller => 'projects', :action => 'new', :project => {:parent_id => @project.parent_id}.reject {|k,v| v.nil?}} :
91 {:controller => 'projects', :action => 'new', :project => {:parent_id => @project.parent_id}.reject {|k,v| v.nil?}} :
91 {:controller => 'projects', :action => 'settings', :id => @project}
92 {:controller => 'projects', :action => 'settings', :id => @project}
92 )
93 )
93 }
94 }
94 format.api { render :action => 'show', :status => :created, :location => url_for(:controller => 'projects', :action => 'show', :id => @project.id) }
95 format.api { render :action => 'show', :status => :created, :location => url_for(:controller => 'projects', :action => 'show', :id => @project.id) }
95 end
96 end
96 else
97 else
97 respond_to do |format|
98 respond_to do |format|
98 format.html { render :action => 'new' }
99 format.html { render :action => 'new' }
99 format.api { render_validation_errors(@project) }
100 format.api { render_validation_errors(@project) }
100 end
101 end
101 end
102 end
102
103
103 end
104 end
104
105
105 def copy
106 def copy
106 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
107 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
107 @trackers = Tracker.all
108 @trackers = Tracker.all
108 @root_projects = Project.find(:all,
109 @root_projects = Project.find(:all,
109 :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}",
110 :conditions => "parent_id IS NULL AND status = #{Project::STATUS_ACTIVE}",
110 :order => 'name')
111 :order => 'name')
111 @source_project = Project.find(params[:id])
112 @source_project = Project.find(params[:id])
112 if request.get?
113 if request.get?
113 @project = Project.copy_from(@source_project)
114 @project = Project.copy_from(@source_project)
114 if @project
115 if @project
115 @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers?
116 @project.identifier = Project.next_identifier if Setting.sequential_project_identifiers?
116 else
117 else
117 redirect_to :controller => 'admin', :action => 'projects'
118 redirect_to :controller => 'admin', :action => 'projects'
118 end
119 end
119 else
120 else
120 Mailer.with_deliveries(params[:notifications] == '1') do
121 Mailer.with_deliveries(params[:notifications] == '1') do
121 @project = Project.new
122 @project = Project.new
122 @project.safe_attributes = params[:project]
123 @project.safe_attributes = params[:project]
123 if validate_parent_id && @project.copy(@source_project, :only => params[:only])
124 if validate_parent_id && @project.copy(@source_project, :only => params[:only])
124 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
125 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
125 flash[:notice] = l(:notice_successful_create)
126 flash[:notice] = l(:notice_successful_create)
126 redirect_to :controller => 'projects', :action => 'settings', :id => @project
127 redirect_to :controller => 'projects', :action => 'settings', :id => @project
127 elsif !@project.new_record?
128 elsif !@project.new_record?
128 # Project was created
129 # Project was created
129 # But some objects were not copied due to validation failures
130 # But some objects were not copied due to validation failures
130 # (eg. issues from disabled trackers)
131 # (eg. issues from disabled trackers)
131 # TODO: inform about that
132 # TODO: inform about that
132 redirect_to :controller => 'projects', :action => 'settings', :id => @project
133 redirect_to :controller => 'projects', :action => 'settings', :id => @project
133 end
134 end
134 end
135 end
135 end
136 end
136 rescue ActiveRecord::RecordNotFound
137 rescue ActiveRecord::RecordNotFound
137 redirect_to :controller => 'admin', :action => 'projects'
138 redirect_to :controller => 'admin', :action => 'projects'
138 end
139 end
139
140
140 # Show @project
141 # Show @project
141 def show
142 def show
142 if params[:jump]
143 if params[:jump]
143 # try to redirect to the requested menu item
144 # try to redirect to the requested menu item
144 redirect_to_project_menu_item(@project, params[:jump]) && return
145 redirect_to_project_menu_item(@project, params[:jump]) && return
145 end
146 end
146
147
147 @users_by_role = @project.users_by_role
148 @users_by_role = @project.users_by_role
148 @subprojects = @project.children.visible.all
149 @subprojects = @project.children.visible.all
149 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
150 @news = @project.news.find(:all, :limit => 5, :include => [ :author, :project ], :order => "#{News.table_name}.created_on DESC")
150 @trackers = @project.rolled_up_trackers
151 @trackers = @project.rolled_up_trackers
151
152
152 cond = @project.project_condition(Setting.display_subprojects_issues?)
153 cond = @project.project_condition(Setting.display_subprojects_issues?)
153
154
154 @open_issues_by_tracker = Issue.visible.count(:group => :tracker,
155 @open_issues_by_tracker = Issue.visible.count(:group => :tracker,
155 :include => [:project, :status, :tracker],
156 :include => [:project, :status, :tracker],
156 :conditions => ["(#{cond}) AND #{IssueStatus.table_name}.is_closed=?", false])
157 :conditions => ["(#{cond}) AND #{IssueStatus.table_name}.is_closed=?", false])
157 @total_issues_by_tracker = Issue.visible.count(:group => :tracker,
158 @total_issues_by_tracker = Issue.visible.count(:group => :tracker,
158 :include => [:project, :status, :tracker],
159 :include => [:project, :status, :tracker],
159 :conditions => cond)
160 :conditions => cond)
160
161
161 if User.current.allowed_to?(:view_time_entries, @project)
162 if User.current.allowed_to?(:view_time_entries, @project)
162 @total_hours = TimeEntry.visible.sum(:hours, :include => :project, :conditions => cond).to_f
163 @total_hours = TimeEntry.visible.sum(:hours, :include => :project, :conditions => cond).to_f
163 end
164 end
164
165
165 @key = User.current.rss_key
166 @key = User.current.rss_key
166
167
167 respond_to do |format|
168 respond_to do |format|
168 format.html
169 format.html
169 format.api
170 format.api
170 end
171 end
171 end
172 end
172
173
173 def settings
174 def settings
174 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
175 @issue_custom_fields = IssueCustomField.find(:all, :order => "#{CustomField.table_name}.position")
175 @issue_category ||= IssueCategory.new
176 @issue_category ||= IssueCategory.new
176 @member ||= @project.members.new
177 @member ||= @project.members.new
177 @trackers = Tracker.all
178 @trackers = Tracker.all
178 @wiki ||= @project.wiki
179 @wiki ||= @project.wiki
179 end
180 end
180
181
181 def edit
182 def edit
182 end
183 end
183
184
184 def update
185 def update
185 @project.safe_attributes = params[:project]
186 @project.safe_attributes = params[:project]
186 if validate_parent_id && @project.save
187 if validate_parent_id && @project.save
187 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
188 @project.set_allowed_parent!(params[:project]['parent_id']) if params[:project].has_key?('parent_id')
188 respond_to do |format|
189 respond_to do |format|
189 format.html {
190 format.html {
190 flash[:notice] = l(:notice_successful_update)
191 flash[:notice] = l(:notice_successful_update)
191 redirect_to :action => 'settings', :id => @project
192 redirect_to :action => 'settings', :id => @project
192 }
193 }
193 format.api { head :ok }
194 format.api { head :ok }
194 end
195 end
195 else
196 else
196 respond_to do |format|
197 respond_to do |format|
197 format.html {
198 format.html {
198 settings
199 settings
199 render :action => 'settings'
200 render :action => 'settings'
200 }
201 }
201 format.api { render_validation_errors(@project) }
202 format.api { render_validation_errors(@project) }
202 end
203 end
203 end
204 end
204 end
205 end
205
206
206 def modules
207 def modules
207 @project.enabled_module_names = params[:enabled_module_names]
208 @project.enabled_module_names = params[:enabled_module_names]
208 flash[:notice] = l(:notice_successful_update)
209 flash[:notice] = l(:notice_successful_update)
209 redirect_to :action => 'settings', :id => @project, :tab => 'modules'
210 redirect_to :action => 'settings', :id => @project, :tab => 'modules'
210 end
211 end
211
212
212 def archive
213 def archive
213 if request.post?
214 if request.post?
214 unless @project.archive
215 unless @project.archive
215 flash[:error] = l(:error_can_not_archive_project)
216 flash[:error] = l(:error_can_not_archive_project)
216 end
217 end
217 end
218 end
218 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
219 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
219 end
220 end
220
221
221 def unarchive
222 def unarchive
222 @project.unarchive if request.post? && !@project.active?
223 @project.unarchive if request.post? && !@project.active?
223 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
224 redirect_to(url_for(:controller => 'admin', :action => 'projects', :status => params[:status]))
224 end
225 end
225
226
226 # Delete @project
227 # Delete @project
227 def destroy
228 def destroy
228 @project_to_destroy = @project
229 @project_to_destroy = @project
229 if api_request? || params[:confirm]
230 if api_request? || params[:confirm]
230 @project_to_destroy.destroy
231 @project_to_destroy.destroy
231 respond_to do |format|
232 respond_to do |format|
232 format.html { redirect_to :controller => 'admin', :action => 'projects' }
233 format.html { redirect_to :controller => 'admin', :action => 'projects' }
233 format.api { head :ok }
234 format.api { head :ok }
234 end
235 end
235 end
236 end
236 # hide project in layout
237 # hide project in layout
237 @project = nil
238 @project = nil
238 end
239 end
239
240
240 private
241 private
241
242
242 # Validates parent_id param according to user's permissions
243 # Validates parent_id param according to user's permissions
243 # TODO: move it to Project model in a validation that depends on User.current
244 # TODO: move it to Project model in a validation that depends on User.current
244 def validate_parent_id
245 def validate_parent_id
245 return true if User.current.admin?
246 return true if User.current.admin?
246 parent_id = params[:project] && params[:project][:parent_id]
247 parent_id = params[:project] && params[:project][:parent_id]
247 if parent_id || @project.new_record?
248 if parent_id || @project.new_record?
248 parent = parent_id.blank? ? nil : Project.find_by_id(parent_id.to_i)
249 parent = parent_id.blank? ? nil : Project.find_by_id(parent_id.to_i)
249 unless @project.allowed_parents.include?(parent)
250 unless @project.allowed_parents.include?(parent)
250 @project.errors.add :parent_id, :invalid
251 @project.errors.add :parent_id, :invalid
251 return false
252 return false
252 end
253 end
253 end
254 end
254 true
255 true
255 end
256 end
256 end
257 end
General Comments 0
You need to be logged in to leave comments. Login now