2017-06-30 18:14:22 -04:00
|
|
|
require "fileutils"
|
|
|
|
require "pathname"
|
|
|
|
|
2017-07-04 10:44:50 -04:00
|
|
|
class ActiveFile::Site::DiskSite < ActiveFile::Site
|
2017-06-30 18:04:19 -04:00
|
|
|
attr_reader :root
|
|
|
|
|
2017-07-03 10:02:05 -04:00
|
|
|
def initialize(root:)
|
2017-06-30 18:04:19 -04:00
|
|
|
@root = root
|
|
|
|
end
|
|
|
|
|
2017-07-04 10:05:06 -04:00
|
|
|
def upload(key, io)
|
2017-06-30 18:04:19 -04:00
|
|
|
File.open(make_path_for(key), "wb") do |file|
|
2017-07-04 10:05:06 -04:00
|
|
|
while chunk = io.read(65536)
|
2017-06-30 18:04:19 -04:00
|
|
|
file.write(chunk)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def download(key)
|
|
|
|
if block_given?
|
2017-07-01 06:05:58 -04:00
|
|
|
File.open(path_for(key)) do |file|
|
2017-06-30 18:04:19 -04:00
|
|
|
while data = file.read(65536)
|
|
|
|
yield data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
2017-07-01 06:05:58 -04:00
|
|
|
File.open path_for(key), &:read
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete(key)
|
2017-07-04 09:28:47 -04:00
|
|
|
File.delete path_for(key) rescue Errno::ENOENT # Ignore files already deleted
|
2017-07-01 06:05:58 -04:00
|
|
|
end
|
|
|
|
|
2017-07-03 15:08:36 -04:00
|
|
|
def exist?(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
File.exist? path_for(key)
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:25 -04:00
|
|
|
|
2017-07-04 11:34:37 -04:00
|
|
|
def url(key, expires_in:, disposition:, filename:)
|
2017-07-03 15:06:09 -04:00
|
|
|
verified_key_with_expiration = ActiveFile::VerifiedKeyWithExpiration.encode(key, expires_in: expires_in)
|
|
|
|
|
2017-07-03 14:14:28 -04:00
|
|
|
if defined?(Rails)
|
2017-07-04 11:34:37 -04:00
|
|
|
Rails.application.routes.url_helpers.rails_disk_blob_path(verified_key_with_expiration, disposition: disposition)
|
2017-07-03 14:14:28 -04:00
|
|
|
else
|
2017-07-04 11:34:37 -04:00
|
|
|
"/rails/blobs/#{verified_key_with_expiration}?disposition=#{disposition}"
|
2017-07-03 14:14:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:25 -04:00
|
|
|
def byte_size(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
File.size path_for(key)
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def checksum(key)
|
|
|
|
Digest::MD5.file(path_for(key)).hexdigest
|
|
|
|
end
|
|
|
|
|
2017-07-01 08:24:50 -04:00
|
|
|
|
2017-06-30 18:04:19 -04:00
|
|
|
private
|
|
|
|
def path_for(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
File.join root, folder_for(key), key
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def folder_for(key)
|
2017-07-01 06:05:58 -04:00
|
|
|
[ key[0..1], key[2..3] ].join("/")
|
2017-06-30 18:04:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def make_path_for(key)
|
|
|
|
path_for(key).tap { |path| FileUtils.mkdir_p File.dirname(path) }
|
|
|
|
end
|
|
|
|
end
|