2023-10-03 13:49:18 +02:00
|
|
|
package http
|
2022-11-19 21:34:49 +01:00
|
|
|
|
|
|
|
import (
|
2023-09-18 15:51:39 +02:00
|
|
|
"context"
|
2022-11-19 21:34:49 +01:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2023-09-22 15:38:10 +02:00
|
|
|
castorev1pb "code.tvl.fyi/tvix/castore/protos"
|
2022-11-19 21:34:49 +01:00
|
|
|
storev1pb "code.tvl.fyi/tvix/store/protos"
|
|
|
|
"github.com/go-chi/chi/middleware"
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Server struct {
|
2023-09-18 15:51:39 +02:00
|
|
|
srv *http.Server
|
2022-11-19 21:34:49 +01:00
|
|
|
handler chi.Router
|
|
|
|
|
2023-09-22 15:38:10 +02:00
|
|
|
directoryServiceClient castorev1pb.DirectoryServiceClient
|
|
|
|
blobServiceClient castorev1pb.BlobServiceClient
|
2022-11-19 21:34:49 +01:00
|
|
|
pathInfoServiceClient storev1pb.PathInfoServiceClient
|
|
|
|
|
|
|
|
// When uploading NAR files to a HTTP binary cache, the .nar
|
|
|
|
// files are uploaded before the .narinfo files.
|
|
|
|
// We need *both* to be able to fully construct a PathInfo object.
|
|
|
|
// Keep a in-memory map of narhash(es) (in SRI) to sparse PathInfo.
|
|
|
|
// This is necessary until we can ask a PathInfoService for a node with a given
|
|
|
|
// narSha256.
|
|
|
|
narHashToPathInfoMu sync.Mutex
|
|
|
|
narHashToPathInfo map[string]*storev1pb.PathInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(
|
2023-09-22 15:38:10 +02:00
|
|
|
directoryServiceClient castorev1pb.DirectoryServiceClient,
|
|
|
|
blobServiceClient castorev1pb.BlobServiceClient,
|
2022-11-19 21:34:49 +01:00
|
|
|
pathInfoServiceClient storev1pb.PathInfoServiceClient,
|
|
|
|
enableAccessLog bool,
|
|
|
|
priority int,
|
|
|
|
) *Server {
|
|
|
|
r := chi.NewRouter()
|
|
|
|
|
|
|
|
if enableAccessLog {
|
|
|
|
r.Use(middleware.Logger)
|
|
|
|
}
|
|
|
|
|
|
|
|
r.Get("/", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, err := w.Write([]byte("nar-bridge"))
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Unable to write response: %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
r.Get("/nix-cache-info", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, err := w.Write([]byte(fmt.Sprintf("StoreDir: /nix/store\nWantMassQuery: 1\nPriority: %d\n", priority)))
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("Unable to write response: %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
s := &Server{
|
|
|
|
handler: r,
|
|
|
|
directoryServiceClient: directoryServiceClient,
|
|
|
|
blobServiceClient: blobServiceClient,
|
|
|
|
pathInfoServiceClient: pathInfoServiceClient,
|
|
|
|
narHashToPathInfo: make(map[string]*storev1pb.PathInfo),
|
|
|
|
}
|
|
|
|
|
|
|
|
registerNarPut(s)
|
|
|
|
registerNarinfoPut(s)
|
|
|
|
|
|
|
|
registerNarinfoGet(s)
|
|
|
|
registerNarGet(s)
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2023-09-18 15:51:39 +02:00
|
|
|
func (s *Server) Shutdown(ctx context.Context) error {
|
|
|
|
return s.srv.Shutdown(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ListenAndServer starts the webserver, and waits for it being closed or
|
|
|
|
// shutdown, after which it'll return ErrServerClosed.
|
2022-11-19 21:34:49 +01:00
|
|
|
func (s *Server) ListenAndServe(addr string) error {
|
2023-09-18 15:51:39 +02:00
|
|
|
s.srv = &http.Server{
|
2022-11-19 21:34:49 +01:00
|
|
|
Addr: addr,
|
|
|
|
Handler: s.handler,
|
2022-11-27 11:08:41 +01:00
|
|
|
ReadTimeout: 500 * time.Second,
|
|
|
|
WriteTimeout: 500 * time.Second,
|
|
|
|
IdleTimeout: 500 * time.Second,
|
2022-11-19 21:34:49 +01:00
|
|
|
}
|
|
|
|
|
2023-09-18 15:51:39 +02:00
|
|
|
return s.srv.ListenAndServe()
|
2022-11-19 21:34:49 +01:00
|
|
|
}
|