Save documents on disk

This commit is contained in:
Martin Lensment 2015-04-22 17:42:51 +03:00
parent a99d36f683
commit 79f76b2ccf
6 changed files with 41 additions and 6 deletions

View file

@ -3,7 +3,7 @@ class Admin::LegalDocumentsController < AdminController
def show
@ld = LegalDocument.find(params[:id])
file = Base64.decode64(@ld.body)
send_data file, filename: "#{@ld.created_at}.#{@ld.document_type}"
filename = @ld.path.split('/').last
send_data File.open(@ld.path).read, filename: filename
end
end

View file

@ -3,4 +3,19 @@ class LegalDocument < ActiveRecord::Base
belongs_to :documentable, polymorphic: true
TYPES = %w(pdf bdoc ddoc zip rar gz tar 7z)
attr_accessor :body
before_save :save_to_filesystem
def save_to_filesystem
loop do
rand = SecureRandom.random_number.to_s.last(4)
self.path = "#{ENV['legal_documents_dir']}/#{Time.zone.now.to_formatted_s(:number)}_#{rand}.#{document_type}"
break unless File.file?(path)
end
# TODO: Change path for test env
File.open(path, 'wb') { |f| f.write(Base64.decode64(body)) } unless Rails.env.test?
self.path = path
end
end