mirror of https://github.com/perkeep/perkeep.git
74 lines
2.0 KiB
Go
74 lines
2.0 KiB
Go
/*
|
|
Copyright 2011 Google Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package server
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
"camlistore.org/pkg/blobref"
|
|
"camlistore.org/pkg/httputil"
|
|
"camlistore.org/pkg/schema"
|
|
)
|
|
|
|
type FileTreeHandler struct {
|
|
Fetcher blobref.StreamingFetcher
|
|
file *blobref.BlobRef
|
|
}
|
|
|
|
func (fth *FileTreeHandler) storageSeekFetcher() blobref.SeekFetcher {
|
|
return blobref.SeekerFromStreamingFetcher(fth.Fetcher) // TODO: pass ih.Cache?
|
|
}
|
|
|
|
func (fth *FileTreeHandler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
|
if req.Method != "GET" && req.Method != "HEAD" {
|
|
http.Error(rw, "Invalid method", 400)
|
|
return
|
|
}
|
|
ret := make(map[string]interface{})
|
|
defer httputil.ReturnJSON(rw, ret)
|
|
|
|
de, err := schema.NewDirectoryEntryFromBlobRef(fth.storageSeekFetcher(), fth.file)
|
|
if err != nil {
|
|
http.Error(rw, "Error reading directory", 500)
|
|
log.Printf("Error reading directory from blobref %s: %v\n", fth.file, err)
|
|
return
|
|
}
|
|
dir, err := de.Directory()
|
|
if err != nil {
|
|
http.Error(rw, "Error reading directory", 500)
|
|
log.Printf("Error reading directory from blobref %s: %v\n", fth.file, err)
|
|
return
|
|
}
|
|
entries, err := dir.Readdir(-1)
|
|
if err != nil {
|
|
http.Error(rw, "Error reading directory", 500)
|
|
log.Printf("reading dir from blobref %s: %v\n", fth.file, err)
|
|
return
|
|
}
|
|
children := make([]map[string]interface{}, 0)
|
|
for _, v := range entries {
|
|
child := map[string]interface{}{
|
|
"name": v.FileName(),
|
|
"type": v.CamliType(),
|
|
"blobRef": v.BlobRef(),
|
|
}
|
|
children = append(children, child)
|
|
}
|
|
ret["children"] = children
|
|
}
|