Two wasm-era regressions fixed: Routes: the wasm host forwards the FULL request path with no prefix strip, but every route was registered relative — the plugin's entire HTTP surface (slots/book/cancel/date-grid/admin) 404'd at runtime on every instance since 2.0.0. All routes now register under /api/plugins/calcomblock (testplugin's httpBase convention), pinned by a route-matching test. Captcha requirement: blockConfig was hardcoded nil (no capability exposed published block content), so bookingRequiresCaptcha always reported false — the widget never rendered and the gate never ran. publishedBlockResolver now answers it via pluginsdk v0.2.4's content.published_block_configs: any currently-published calcom:booking block matching the posted username+eventTypeSlug with captchaEnabled=true demands the host-stamped X-Bn-Verified-Captcha header; an empty config username applies to any posted username. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
23 lines
645 B
Modula-2
23 lines
645 B
Modula-2
module git.dev.alexdunmow.com/block/calcomblock
|
|
|
|
go 1.26.4
|
|
|
|
require (
|
|
git.dev.alexdunmow.com/block/pluginsdk v0.2.4
|
|
github.com/a-h/templ v0.3.1020
|
|
github.com/go-chi/chi/v5 v5.3.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/jackc/pgx/v5 v5.10.0
|
|
github.com/nyaruka/phonenumbers v1.8.0
|
|
)
|
|
|
|
require (
|
|
connectrpc.com/connect v1.20.0 // indirect
|
|
github.com/BurntSushi/toml v1.6.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
golang.org/x/mod v0.37.0 // indirect
|
|
golang.org/x/text v0.36.0 // indirect
|
|
google.golang.org/protobuf v1.36.11 // indirect
|
|
)
|