2007-05-26 19:42:37 +04:00
|
|
|
# redMine - project management software
|
|
|
|
# Copyright (C) 2006-2007 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
class AttachmentsController < ApplicationController
|
2008-07-22 21:20:02 +04:00
|
|
|
before_filter :find_project
|
2007-05-26 19:42:37 +04:00
|
|
|
|
2008-06-08 22:26:39 +04:00
|
|
|
def show
|
|
|
|
if @attachment.is_diff?
|
|
|
|
@diff = File.new(@attachment.diskfile, "rb").read
|
|
|
|
render :action => 'diff'
|
2008-06-09 22:40:59 +04:00
|
|
|
elsif @attachment.is_text?
|
|
|
|
@content = File.new(@attachment.diskfile, "rb").read
|
|
|
|
render :action => 'file'
|
|
|
|
elsif
|
2008-06-08 22:26:39 +04:00
|
|
|
download
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-05-26 19:42:37 +04:00
|
|
|
def download
|
2008-07-22 21:20:02 +04:00
|
|
|
@attachment.increment_download if @attachment.container.is_a?(Version)
|
|
|
|
|
2007-08-15 19:36:15 +04:00
|
|
|
# images are sent inline
|
2008-01-11 01:42:41 +03:00
|
|
|
send_file @attachment.diskfile, :filename => filename_for_content_disposition(@attachment.filename),
|
2007-08-15 19:36:15 +04:00
|
|
|
:type => @attachment.content_type,
|
|
|
|
:disposition => (@attachment.image? ? 'inline' : 'attachment')
|
2007-05-26 19:42:37 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def find_project
|
|
|
|
@attachment = Attachment.find(params[:id])
|
2008-07-22 21:55:19 +04:00
|
|
|
# Show 404 if the filename in the url is wrong
|
|
|
|
raise ActiveRecord::RecordNotFound if params[:filename] && params[:filename] != @attachment.filename
|
|
|
|
|
2007-05-26 19:42:37 +04:00
|
|
|
@project = @attachment.project
|
2008-07-22 21:20:02 +04:00
|
|
|
permission = @attachment.container.is_a?(Version) ? :view_files : "view_#{@attachment.container.class.name.underscore.pluralize}".to_sym
|
|
|
|
allowed = User.current.allowed_to?(permission, @project)
|
|
|
|
allowed ? true : (User.current.logged? ? render_403 : require_login)
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
render_404
|
2007-05-26 19:42:37 +04:00
|
|
|
end
|
|
|
|
end
|