An atproto PDS written in Go

Revert "support multiple cids in getblocks (#23)"

This reverts commit 9fbd74c10e490237e8beb34e8e9732843b6bada3.

Changed files
+6 -7
server
+6 -7
server/handle_sync_get_blocks.go
···
import (
"bytes"
+
"context"
+
"strings"
"github.com/bluesky-social/indigo/carstore"
"github.com/haileyok/cocoon/internal/helpers"
···
)
func (s *Server) handleGetBlocks(e echo.Context) error {
-
ctx := e.Request().Context()
did := e.QueryParam("did")
+
cidsstr := e.QueryParam("cids")
if did == "" {
return helpers.InputError(e, nil)
}
-
cidstrs, ok := e.QueryParams()["cids"]
-
if !ok {
-
return helpers.InputError(e, nil)
-
}
-
var cids []cid.Cid
+
cidstrs := strings.Split(cidsstr, ",")
+
cids := []cid.Cid{}
for _, cs := range cidstrs {
c, err := cid.Cast([]byte(cs))
···
bs := s.getBlockstore(urepo.Repo.Did)
for _, c := range cids {
-
b, err := bs.Get(ctx, c)
+
b, err := bs.Get(context.TODO(), c)
if err != nil {
return err
}