trabajo-afectivo/app/models/store/provider/file.rb

102 lines
2.6 KiB
Ruby
Raw Normal View History

# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
class Store::Provider::File
2015-04-27 21:44:41 +00:00
# write file to fs
def self.add(data, sha)
2015-04-27 21:44:41 +00:00
# install file
location = get_location(sha)
permission = '600'
if !File.exist?(location)
Rails.logger.debug "storge write '#{location}' (#{permission})"
file = File.new(location, 'wb')
2016-02-02 12:50:49 +00:00
file.write(data)
file.close
end
File.chmod(permission.to_i(8), location)
2015-04-27 21:44:41 +00:00
# check sha
2016-02-02 12:50:49 +00:00
local_sha = Digest::SHA256.hexdigest(get(sha))
if sha != local_sha
fail "ERROR: Corrupt file in fs #{location}, sha should be #{sha} but is #{local_sha}"
end
true
end
2015-04-27 21:44:41 +00:00
# read file from fs
def self.get(sha)
location = get_location(sha)
Rails.logger.debug "read from fs #{location}"
if !File.exist?(location)
fail "ERROR: No such file #{location}"
end
data = File.open(location, 'rb')
content = data.read
2015-04-27 21:44:41 +00:00
# check sha
2016-02-02 12:50:49 +00:00
local_sha = Digest::SHA256.hexdigest(content)
if local_sha != sha
fail "ERROR: Corrupt file in fs #{location}, sha should be #{sha} but is #{local_sha}"
end
content
end
2015-04-27 21:44:41 +00:00
# unlink file from fs
def self.delete(sha)
location = get_location(sha)
if File.exist?(location)
Rails.logger.info "storge remove '#{location}'"
File.delete(location)
end
# check if dir need to be removed
base = "#{Rails.root}/storage/fs"
locations = location.split('/')
(0..locations.count).reverse_each {|count|
local_location = locations[0, count].join('/')
break if local_location =~ %r{storage/fs/{0,4}$}
break if !Dir["#{local_location}/*"].empty?
FileUtils.rmdir(local_location)
}
end
2015-04-27 21:44:41 +00:00
# generate file location
def self.get_location(sha)
# generate directory
base = "#{Rails.root}/storage/fs/"
parts = []
length1 = 4
length2 = 5
length3 = 7
last_position = 0
(0..1).each {|_count|
end_position = last_position + length1
parts.push sha[last_position, length1]
last_position = end_position
}
(0..1).each {|_count|
end_position = last_position + length2
parts.push sha[last_position, length2]
last_position = end_position
}
(0..1).each {|_count|
end_position = last_position + length3
parts.push sha[last_position, length3]
last_position = end_position
}
path = parts[ 0..6 ].join('/') + '/'
file = sha[last_position, sha.length]
location = "#{base}/#{path}"
# create directory if not exists
2016-02-02 12:50:49 +00:00
if !File.exist?(location)
FileUtils.mkdir_p(location)
end
full_path = location += file
full_path.gsub('//', '/')
end
end