Delete obsolete method
This commit is contained in:
parent
43ff83d26b
commit
1c0bd18915
@ -221,35 +221,6 @@ module RemoteStorage
|
|||||||
permission
|
permission
|
||||||
end
|
end
|
||||||
|
|
||||||
def directory_listing(res_body)
|
|
||||||
listing = {
|
|
||||||
"@context" => "http://remotestorage.io/spec/folder-description",
|
|
||||||
"items" => {}
|
|
||||||
}
|
|
||||||
|
|
||||||
res_body.each do |entry|
|
|
||||||
name = entry["name"]
|
|
||||||
name.sub!("#{File.dirname(entry["name"])}/", '')
|
|
||||||
if name[-1] == "/" # It's a directory
|
|
||||||
listing["items"].merge!({
|
|
||||||
name => {
|
|
||||||
"ETag" => entry["hash"],
|
|
||||||
}
|
|
||||||
})
|
|
||||||
else # It's a file
|
|
||||||
listing["items"].merge!({
|
|
||||||
name => {
|
|
||||||
"ETag" => entry["hash"],
|
|
||||||
"Content-Type" => entry["content_type"],
|
|
||||||
"Content-Length" => entry["bytes"]
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
listing
|
|
||||||
end
|
|
||||||
|
|
||||||
def has_name_collision?(user, directory, key)
|
def has_name_collision?(user, directory, key)
|
||||||
lua_script = <<-EOF
|
lua_script = <<-EOF
|
||||||
local user = ARGV[1]
|
local user = ARGV[1]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user