| 
									
										
										
										
											2019-03-16 09:37:35 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2019-05-25 07:36:06 +00:00
										 |  |  | # Copyright (C) 2006-2019  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 | 
					
						
							| 
									
										
										
										
											2016-07-14 07:27:31 +00:00
										 |  |  |   before_action :find_project_by_project_id, :only => [:index, :new, :create] | 
					
						
							|  |  |  |   before_action :find_model_object, :except => [:index, :new, :create] | 
					
						
							|  |  |  |   before_action :find_project_from_association, :except => [:index, :new, :create] | 
					
						
							|  |  |  |   before_action :authorize | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-29 19:46:58 +00:00
										 |  |  |   helper :attachments | 
					
						
							| 
									
										
										
										
											2015-02-14 10:44:59 +00:00
										 |  |  |   helper :custom_fields | 
					
						
							| 
									
										
										
										
											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' | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     documents = @project.documents.includes(:attachments, :category).to_a | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |     case @sort_by | 
					
						
							|  |  |  |     when 'date' | 
					
						
							| 
									
										
										
										
											2019-03-15 10:51:22 +00:00
										 |  |  |       documents.sort!{|a,b| b.updated_on <=> a.updated_on} | 
					
						
							|  |  |  |       @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 | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     @attachments = @document.attachments.to_a | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |   def new | 
					
						
							| 
									
										
										
										
											2012-03-06 18:54:41 +00:00
										 |  |  |     @document = @project.documents.build | 
					
						
							|  |  |  |     @document.safe_attributes = params[:document] | 
					
						
							| 
									
										
										
										
											2011-11-30 19:51:16 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def create | 
					
						
							| 
									
										
										
										
											2012-03-06 18:54:41 +00:00
										 |  |  |     @document = @project.documents.build | 
					
						
							|  |  |  |     @document.safe_attributes = params[:document] | 
					
						
							| 
									
										
										
										
											2012-02-23 13:10:51 +00:00
										 |  |  |     @document.save_attachments(params[:attachments]) | 
					
						
							|  |  |  |     if @document.save | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |       redirect_to project_documents_path(@project) | 
					
						
							| 
									
										
										
										
											2011-11-30 19:51:16 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |       render :action => 'new' | 
					
						
							| 
									
										
										
										
											2007-12-18 18:50:41 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   def edit | 
					
						
							| 
									
										
										
										
											2011-11-30 19:51:16 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def update | 
					
						
							| 
									
										
										
										
											2012-03-06 18:54:41 +00:00
										 |  |  |     @document.safe_attributes = params[:document] | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     if @document.save | 
					
						
							| 
									
										
										
										
											2006-07-30 10:47:02 +00:00
										 |  |  |       flash[:notice] = l(:notice_successful_update) | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |       redirect_to document_path(@document) | 
					
						
							| 
									
										
										
										
											2011-11-30 19:51:16 +00:00
										 |  |  |     else | 
					
						
							|  |  |  |       render :action => 'edit' | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2011-08-30 13:07:52 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def destroy | 
					
						
							| 
									
										
										
										
											2011-11-30 19:51:16 +00:00
										 |  |  |     @document.destroy if request.delete? | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |     redirect_to project_documents_path(@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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-05 13:07:12 +00:00
										 |  |  |     if attachments.present? && attachments[:files].present? && Setting.notified_events.include?('document_added') | 
					
						
							| 
									
										
										
										
											2018-10-10 17:13:09 +00:00
										 |  |  |       Mailer.deliver_attachments_added(attachments[:files]) | 
					
						
							| 
									
										
										
										
											2012-05-05 13:07:12 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-12-11 17:51:30 +00:00
										 |  |  |     redirect_to document_path(@document) | 
					
						
							| 
									
										
										
										
											2007-03-12 17:59:02 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2006-06-28 18:11:03 +00:00
										 |  |  | end |