perkeep/pkg/blobserver/handlers/enumerate.go

137 lines
3.5 KiB
Go

/*
Copyright 2011 The Perkeep Authors
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 handlers
import (
"context"
"fmt"
"io"
"log"
"net/http"
"strconv"
"time"
"perkeep.org/pkg/blob"
"perkeep.org/pkg/blobserver"
)
const defaultMaxEnumerate = 10000
const defaultEnumerateSize = 100
func CreateEnumerateHandler(storage blobserver.BlobEnumerator) http.Handler {
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
handleEnumerateBlobs(rw, req, storage)
})
}
const errMsgMaxWaitSecWithAfter = "Can't use 'maxwaitsec' with 'after'.\n"
func handleEnumerateBlobs(rw http.ResponseWriter, req *http.Request, storage blobserver.BlobEnumerator) {
// Potential input parameters
formValueLimit := req.FormValue("limit")
formValueMaxWaitSec := req.FormValue("maxwaitsec")
formValueAfter := req.FormValue("after")
maxEnumerate := defaultMaxEnumerate
if config, ok := storage.(blobserver.MaxEnumerateConfig); ok {
maxEnumerate = config.MaxEnumerate()
}
limit := defaultEnumerateSize
if formValueLimit != "" {
n, err := strconv.ParseUint(formValueLimit, 10, 32)
if err != nil || n > uint64(maxEnumerate) {
limit = maxEnumerate
} else {
limit = int(n)
}
}
waitSeconds := 0
if formValueMaxWaitSec != "" {
waitSeconds, _ = strconv.Atoi(formValueMaxWaitSec)
if waitSeconds != 0 && formValueAfter != "" {
rw.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(rw, errMsgMaxWaitSecWithAfter)
return
}
switch {
case waitSeconds < 0:
waitSeconds = 0
case waitSeconds > 30:
// TODO: don't hard-code 30. push this up into a blobserver interface
// for getting the configuration of the server (ultimately a flag in
// in the binary)
waitSeconds = 30
}
}
rw.Header().Set("Content-Type", "text/javascript; charset=utf-8")
io.WriteString(rw, "{\n \"blobs\": [\n")
loop := true
needsComma := false
deadline := time.Now().Add(time.Duration(waitSeconds) * time.Second)
after := ""
for loop && (waitSeconds == 0 || time.Now().After(deadline)) {
if waitSeconds == 0 {
loop = false
}
blobch := make(chan blob.SizedRef, 100)
resultch := make(chan error, 1)
go func() {
resultch <- storage.EnumerateBlobs(context.TODO(), blobch, formValueAfter, limit)
}()
gotBlobs := 0
for sb := range blobch {
gotBlobs++
loop = false
blobName := sb.Ref.String()
if needsComma {
io.WriteString(rw, ",\n")
}
fmt.Fprintf(rw, " {\"blobRef\": \"%s\", \"size\": %d}",
blobName, sb.Size)
after = blobName
needsComma = true
}
if gotBlobs < limit {
after = ""
}
if err := <-resultch; err != nil {
log.Printf("Error during enumerate: %v", err)
fmt.Fprintf(rw, "{{{ SERVER ERROR }}}")
return
}
if loop {
blobserver.WaitForBlob(storage, deadline, nil)
}
}
io.WriteString(rw, "\n ]")
if after != "" {
fmt.Fprintf(rw, ",\n \"continueAfter\": \"%s\"", after)
}
const longPollSupported = true
if longPollSupported {
io.WriteString(rw, ",\n \"canLongPoll\": true")
}
io.WriteString(rw, "\n}\n")
}