a57fd355ba
Introduce a minimum-supported-client gate so a future incompatible wire change can turn away installed builds too old to speak it, cleanly, instead of letting them crash on decode. It rides the outermost stable layer (an HTTP header), never the FlatBuffers payload. Gateway: - New internal/clientver: dependency-free parse + compare of the leading MAJOR.MINOR.PATCH (a git-describe suffix is tolerated). - GATEWAY_MIN_CLIENT_VERSION config (empty => gate dormant; validated at load). - connectsrv checks the X-Client-Version header before decoding the payload: Execute returns result_code="update_required" (before the registry lookup), Subscribe returns FailedPrecondition. It fails open on an absent or garbled header — the header is a client-controlled compatibility signal, not an access control. Client: - Attach X-Client-Version on every call. - A terminal update.svelte.ts store + a non-dismissable UpdateOverlay (native opens VITE_STORE_URL, web reloads); retry.ts maps FailedPrecondition to the update_required sentinel; a mock __update hook drives the e2e. Wire-additive and contour-safe: no FBS/proto regen, no schema migration; the gate stays dormant until GATEWAY_MIN_CLIENT_VERSION is deliberately set, so web / VK / Telegram behaviour is unchanged. The silent reconciliation seam is deferred to the offline-first work (its only caller). Tests: Go clientver/config/connectsrv gate tests, retry.test.ts, Playwright update.spec.ts.
22 lines
667 B
Go
22 lines
667 B
Go
package connectsrv
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
)
|
|
|
|
// Edge-level error values wrapped in Connect status codes. Domain outcomes are
|
|
// not here — they ride back in the ExecuteResponse result_code.
|
|
var (
|
|
errRateLimited = errors.New("rate limit exceeded")
|
|
errInternal = errors.New("internal error")
|
|
errMissingToken = errors.New("missing session token")
|
|
errInvalidSession = errors.New("invalid or expired session")
|
|
errUpdateRequired = errors.New("client too old, update required")
|
|
)
|
|
|
|
// errUnknownMessageType reports an unregistered message type.
|
|
func errUnknownMessageType(msgType string) error {
|
|
return fmt.Errorf("unknown message type %q", msgType)
|
|
}
|