prysm-pulse/monitoring/backup/http_backup_handler.go
terencechain 9387a36b66
Refactor Exported Names to Follow Golang Best Practices (#13075)
* Fix exported names that start with a package name

* A few more renames

* Fix exported names that start with a package name

* A few more renames

* Radek's feedback

* Fix conflict

* fix keymanager test

* Fix comments

---------

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2023-10-20 16:45:33 +00:00

37 lines
967 B
Go

package backup
import (
"context"
"fmt"
"net/http"
"github.com/sirupsen/logrus"
)
// Exporter defines a backup exporter methods.
type Exporter interface {
Backup(ctx context.Context, outputPath string, permissionOverride bool) error
}
// Handler for accepting requests to initiate a new database backup.
func Handler(bk Exporter, outputDir string) func(http.ResponseWriter, *http.Request) {
log := logrus.WithField("prefix", "db")
return func(w http.ResponseWriter, r *http.Request) {
log.Debug("Creating database backup from HTTP webhook")
_, permissionOverride := r.URL.Query()["permissionOverride"]
if err := bk.Backup(context.Background(), outputDir, permissionOverride); err != nil {
log.WithError(err).Error("Failed to create backup")
w.WriteHeader(http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusOK)
_, err := fmt.Fprint(w, "OK")
if err != nil {
log.WithError(err).Error("Failed to write OK")
}
}
}