| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							|  |  |  | # Copyright (C) 2006-2011  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00: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 13:07:52 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00: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 13:07:52 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00: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. | 
					
						
							| 
									
										
										
										
											2006-10-08 10:42:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  | class DocumentsController < ApplicationController | 
					
						
							| 
									
										
										
										
											2009-10-21 17:07:18 +00:00
										 |  |  |   default_search_scope :documents | 
					
						
							| 
									
										
										
										
											2010-03-17 15:41:58 +00:00
										 |  |  |   model_object Document | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |   before_filter :find_project, :only => [:index, :new] | 
					
						
							| 
									
										
										
										
											2010-03-17 15:41:58 +00:00
										 |  |  |   before_filter :find_model_object, :except => [:index, :new] | 
					
						
							| 
									
										
										
										
											2010-03-16 15:17:47 +00:00
										 |  |  |   before_filter :find_project_from_association, :except => [:index, :new] | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |   before_filter :authorize | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-29 19:46:58 +00:00
										 |  |  |   helper :attachments | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |   def index | 
					
						
							|  |  |  |     @sort_by = %w(category date title author).include?(params[:sort_by]) ? params[:sort_by] : 'category' | 
					
						
							|  |  |  |     documents = @project.documents.find :all, :include => [:attachments, :category] | 
					
						
							|  |  |  |     case @sort_by | 
					
						
							|  |  |  |     when 'date' | 
					
						
							| 
									
										
										
										
											2009-11-26 20:12:20 +00:00
										 |  |  |       @grouped = documents.group_by {|d| d.updated_on.to_date } | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |     when 'title' | 
					
						
							|  |  |  |       @grouped = documents.group_by {|d| d.title.first.upcase} | 
					
						
							|  |  |  |     when 'author' | 
					
						
							|  |  |  |       @grouped = documents.select{|d| d.attachments.any?}.group_by {|d| d.attachments.last.author} | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       @grouped = documents.group_by(&:category) | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-12-12 13:49:14 +00:00
										 |  |  |     @document = @project.documents.build | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |     render :layout => false if request.xhr? | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def show | 
					
						
							| 
									
										
										
										
											2006-10-08 10:42:50 +00:00
										 |  |  |     @attachments = @document.attachments.find(:all, :order => "created_on DESC") | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |   def new | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  |     @document = @project.documents.build(params[:document]) | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |     if request.post? and @document.save	 | 
					
						
							| 
									
										
										
										
											2010-03-02 19:26:03 +00:00
										 |  |  |       attachments = Attachment.attach_files(@document, params[:attachments]) | 
					
						
							| 
									
										
										
										
											2010-03-03 17:05:00 +00:00
										 |  |  |       render_attachment_warning_if_needed(@document) | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |       flash[:notice] = l(:notice_successful_create) | 
					
						
							|  |  |  |       redirect_to :action => 'index', :project_id => @project | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def edit | 
					
						
							| 
									
										
										
										
											2011-06-13 20:33:06 +00:00
										 |  |  |     @categories = DocumentCategory.active #TODO: use it in the views | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     if request.post? and @document.update_attributes(params[:document]) | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |       redirect_to :action => 'show', :id => @document | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def destroy | 
					
						
							|  |  |  |     @document.destroy | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |     redirect_to :controller => 'documents', :action => 'index', :project_id => @project | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def add_attachment | 
					
						
							| 
									
										
										
										
											2010-03-02 19:26:03 +00:00
										 |  |  |     attachments = Attachment.attach_files(@document, params[:attachments]) | 
					
						
							| 
									
										
										
										
											2010-03-03 17:05:00 +00:00
										 |  |  |     render_attachment_warning_if_needed(@document) | 
					
						
							| 
									
										
										
										
											2010-03-02 19:26:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Mailer.deliver_attachments_added(attachments[:files]) if attachments.present? && attachments[:files].present? && Setting.notified_events.include?('document_added') | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |     redirect_to :action => 'show', :id => @document | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |