52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package api
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func (a *api) newPowChallengeHandler() http.Handler {
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
|
|
|
challenge := a.params.PowManager.NewChallenge()
|
|
|
|
jsonResult(rw, r, struct {
|
|
Seed string `json:"seed"`
|
|
Target uint32 `json:"target"`
|
|
}{
|
|
Seed: hex.EncodeToString(challenge.Seed),
|
|
Target: challenge.Target,
|
|
})
|
|
})
|
|
}
|
|
|
|
func (a *api) requirePowMiddleware(h http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
|
|
|
|
seedHex := r.PostFormValue("powSeed")
|
|
seed, err := hex.DecodeString(seedHex)
|
|
if err != nil || len(seed) == 0 {
|
|
badRequest(rw, r, errors.New("invalid powSeed"))
|
|
return
|
|
}
|
|
|
|
solutionHex := r.PostFormValue("powSolution")
|
|
solution, err := hex.DecodeString(solutionHex)
|
|
if err != nil || len(seed) == 0 {
|
|
badRequest(rw, r, errors.New("invalid powSolution"))
|
|
return
|
|
}
|
|
|
|
err = a.params.PowManager.CheckSolution(seed, solution)
|
|
|
|
if err != nil {
|
|
badRequest(rw, r, fmt.Errorf("checking proof-of-work solution: %w", err))
|
|
return
|
|
}
|
|
|
|
h.ServeHTTP(rw, r)
|
|
})
|
|
}
|