2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04: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-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2010-08-31 19:12:58 +04:00
|
|
|
class FilesController < ApplicationController
|
|
|
|
menu_item :files
|
|
|
|
|
2010-09-14 20:24:07 +04:00
|
|
|
before_filter :find_project_by_project_id
|
2010-08-31 19:12:58 +04:00
|
|
|
before_filter :authorize
|
|
|
|
|
|
|
|
include SortHelper
|
|
|
|
|
|
|
|
def index
|
|
|
|
sort_init 'filename', 'asc'
|
|
|
|
sort_update 'filename' => "#{Attachment.table_name}.filename",
|
|
|
|
'created_on' => "#{Attachment.table_name}.created_on",
|
|
|
|
'size' => "#{Attachment.table_name}.filesize",
|
|
|
|
'downloads' => "#{Attachment.table_name}.downloads"
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2010-08-31 19:12:58 +04:00
|
|
|
@containers = [ Project.find(@project.id, :include => :attachments, :order => sort_clause)]
|
|
|
|
@containers += @project.versions.find(:all, :include => :attachments, :order => sort_clause).sort.reverse
|
|
|
|
render :layout => !request.xhr?
|
|
|
|
end
|
|
|
|
|
2010-09-01 19:17:45 +04:00
|
|
|
def new
|
2010-09-14 00:35:03 +04:00
|
|
|
@versions = @project.versions.sort
|
|
|
|
end
|
2010-09-01 19:17:45 +04:00
|
|
|
|
2010-09-14 00:35:03 +04:00
|
|
|
def create
|
|
|
|
container = (params[:version_id].blank? ? @project : @project.versions.find_by_id(params[:version_id]))
|
|
|
|
attachments = Attachment.attach_files(container, params[:attachments])
|
|
|
|
render_attachment_warning_if_needed(container)
|
|
|
|
|
2010-09-26 12:07:41 +04:00
|
|
|
if !attachments.empty? && !attachments[:files].blank? && Setting.notified_events.include?('file_added')
|
2011-02-24 22:10:23 +03:00
|
|
|
# TODO: refactor
|
|
|
|
recipients = attachments[:files].first.container.project.notified_users.select {|user| user.allowed_to?(:view_files, container.project)}.collect {|u| u.mail}
|
|
|
|
recipients.each do |recipient|
|
|
|
|
Mailer.deliver_attachments_added(attachments[:files], recipient)
|
|
|
|
end
|
2010-09-01 19:17:45 +04:00
|
|
|
end
|
2010-09-14 20:24:07 +04:00
|
|
|
redirect_to project_files_path(@project)
|
2010-09-01 19:17:45 +04:00
|
|
|
end
|
2010-08-31 19:12:58 +04:00
|
|
|
end
|