|
|
|
@ -69,9 +69,12 @@ class AttachmentsController < ApplicationController
|
|
|
|
|
if candown || User.current.admin? || User.current.id == @attachment.author_id
|
|
|
|
|
@attachment.increment_download
|
|
|
|
|
if stale?(:etag => @attachment.digest)
|
|
|
|
|
send_file @attachment.diskfile, :filename => filename_for_content_disposition(@attachment.filename),
|
|
|
|
|
:type => detect_content_type(@attachment),
|
|
|
|
|
:disposition => 'attachment' #inline can open in browser
|
|
|
|
|
req = RestClient.post 'http://192.168.80.107/Any2HtmlHandler.ashx', :txtDes => File.new(@attachment.diskfile, 'rb')
|
|
|
|
|
render :text => req.body
|
|
|
|
|
|
|
|
|
|
# send_file @attachment.diskfile, :filename => filename_for_content_disposition(@attachment.filename),
|
|
|
|
|
# :type => detect_content_type(@attachment),
|
|
|
|
|
# :disposition => 'attachment' #inline can open in browser
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|