checker: expose standalone /check route via CheckerInteractive

Implements RenderForm/ParseForm on the provider: users can hit /check
with just a domain name; ParseForm resolves CAA records via direct DNS
queries (walking up the label tree per RFC 8659) and hands the SDK a
synthetic service payload so the standard Collect → Evaluate pipeline
runs without a happyDomain host. TLS probes are not gathered here, so
the rule reports StatusUnknown for the TLS cross-check in this mode.
This commit is contained in:
nemunaire 2026-04-23 11:29:39 +07:00
commit 2c1eb7560c
3 changed files with 140 additions and 0 deletions

9
go.mod
View file

@ -3,3 +3,12 @@ module git.happydns.org/checker-caa
go 1.25.0
require git.happydns.org/checker-sdk-go v1.1.0
require (
github.com/miekg/dns v1.1.72 // indirect
golang.org/x/mod v0.31.0 // indirect
golang.org/x/net v0.48.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/tools v0.40.0 // indirect
)