All checks were successful
Deploy / build-deploy (push) Successful in 1m48s
538 lines
29 KiB
C++
538 lines
29 KiB
C++
/*
|
|
catcrafts.net
|
|
Copyright (C) 2026 Catcrafts
|
|
|
|
The source code of this website is made available for viewing purposes only.
|
|
No permission is granted to copy, modify, distribute, or create derivative works.
|
|
*/
|
|
|
|
// The native server: server-rendered pages, order storage, and the payment
|
|
// rails.
|
|
//
|
|
// Unlike Catcrafts.Shared this module is host-only and may import whatever it
|
|
// needs — Crafter.Network here. The division of labour is that Shared decides
|
|
// what the markup IS and Server decides how it reaches a socket, where orders
|
|
// live, and how money moves.
|
|
|
|
export module Catcrafts.Server;
|
|
import std;
|
|
import Catcrafts.Shared;
|
|
|
|
export namespace Catcrafts::Server {
|
|
|
|
// Parse content/*.json and lift the wasm bundle's <script> tags.
|
|
//
|
|
// `bundleIndexHtml` is the generated index.html from the wasm build; the
|
|
// script tags are extracted from it verbatim because they carry a
|
|
// ?v=<buildId> cache buster that changes every build. Pass an empty path to
|
|
// serve no wasm at all (every page then renders as plain HTML).
|
|
//
|
|
// Call before Serve. Content is immutable afterwards: it is generated at
|
|
// build time, so nothing can change it under a running process.
|
|
void LoadContent(const std::filesystem::path& contentDir,
|
|
const std::filesystem::path& bundleIndexHtml);
|
|
|
|
std::size_t ContentPostCount();
|
|
std::size_t ContentProjectCount();
|
|
std::size_t ContentProductCount();
|
|
|
|
// ── orders ────────────────────────────────────────────────────────
|
|
//
|
|
// An append-only JSON-lines EVENT LOG, not a database. Four event types:
|
|
// "order" (the full record, written once), "status" (a transition),
|
|
// "invoice" (the number assignment) and "notified" (the confirmation
|
|
// email left). Current state is a fold over the file — later events win.
|
|
// Nothing is ever rewritten in place, so the file is also the audit
|
|
// trail, and a crash mid-append costs at most the line being written.
|
|
//
|
|
// The volume argument: this sells single-digit units per week. When that
|
|
// is wrong by two orders of magnitude, the log imports into SQLite in one
|
|
// sitting — the reverse migration would not be so kind.
|
|
|
|
struct OrderRecord {
|
|
std::string token; // 32-hex capability; the /order/<token> URL
|
|
std::string reference; // "CC-XXXXXX", quoted in bank transfers
|
|
std::string product; // product slug
|
|
std::string color; // variant slug ("green"), empty pre-variants
|
|
std::int64_t quantity = 1;
|
|
std::int64_t unitMinor = 0; // per-unit gross at order time — prices
|
|
// change; the record must not
|
|
std::string createdAt; // ISO 8601 UTC
|
|
std::string updatedAt; // of the newest event folded in
|
|
Form::Checkout buyer;
|
|
std::int64_t goodsMinor = 0;
|
|
std::int64_t shippingMinor = 0;
|
|
std::int64_t totalMinor = 0;
|
|
bool vatIncluded = false;
|
|
std::string status = "awaiting_payment"; // -> paid -> shipped | cancelled
|
|
std::string payChoice; // Form::kPayBank | Form::kPayCrypto; which
|
|
// rail issued the link, and so which one
|
|
// may confirm it. Always set: checkout
|
|
// normalises before writing.
|
|
std::string payUrl; // the provider's hosted checkout link
|
|
std::string payId; // provider payment id ("tr_…" at Mollie,
|
|
// a decimal order id at CoinGate)
|
|
std::string paidVia; // method that settled it ("ideal", "bitcoin")
|
|
std::string paidAt; // ISO 8601 of the FIRST paid event; empty =
|
|
// never paid. A later cancel (a refund)
|
|
// does not clear it: "was this ever paid"
|
|
// is what the public sales totals count.
|
|
std::string invoiceNumber; // "<customer-uuid>-<n>", set at paid
|
|
std::string invoicedAt; // ISO 8601 of the invoice event
|
|
std::string confirmationSentAt; // ISO 8601 of the confirmation-email
|
|
// event; empty = not (yet) emailed
|
|
};
|
|
|
|
void SetOrdersPath(const std::filesystem::path& path);
|
|
bool CreateOrder(const OrderRecord& order);
|
|
// Appends a status event. Never mutates prior lines; the fold applies it.
|
|
// `via` records HOW a payment settled ("ideal", "creditcard") on the paid
|
|
// transition — card money stays reversible for months, so the ledger must
|
|
// show at a glance which orders carry that tail risk.
|
|
bool AppendOrderStatus(std::string_view token, std::string_view status,
|
|
std::string_view isoTimestamp,
|
|
std::string_view via = {});
|
|
std::optional<OrderRecord> FindOrder(std::string_view token);
|
|
std::vector<OrderRecord> ListOrders();
|
|
|
|
// Assigns the next invoice number in the CUSTOMER's series and appends
|
|
// the invoice event. The scheme continues the owner's pre-shop
|
|
// administration: customer number is a random UUID, invoices count
|
|
// sequentially within it ("f57c6512-…-3"). Art. 226(2) permits "one or
|
|
// more series"; per-customer is the established practice here, and the
|
|
// ledger + payment-provider records carry the completeness proof.
|
|
// Idempotent: an order that already has a number keeps it. Fold and
|
|
// append happen under one lock, so two paid transitions cannot race the
|
|
// same number.
|
|
std::optional<std::string> AssignInvoiceNumber(std::string_view token,
|
|
std::string_view isoTimestamp);
|
|
|
|
// Appends the notified event: this order's confirmation email was
|
|
// accepted by the mail command. Written AFTER the handoff succeeds, so a
|
|
// crash between send and append errs toward a duplicate email — an
|
|
// apology — never toward a buyer who paid and heard nothing.
|
|
bool AppendOrderNotified(std::string_view token, std::string_view isoTimestamp);
|
|
|
|
// ── the public financials page ────────────────────────────────────
|
|
//
|
|
// /financials shows lifetime sales as two integers: how many orders were
|
|
// ever paid, and what they summed to. Ever-paid on purpose — a refund is
|
|
// an expense on that page, it does not un-happen the sale. Pure and
|
|
// exported for the self-test.
|
|
struct SalesSummary {
|
|
std::int64_t count = 0;
|
|
std::int64_t totalMinor = 0;
|
|
};
|
|
SalesSummary SummarizeSales(std::span<const OrderRecord> orders);
|
|
|
|
// ── the bank side of /financials ──────────────────────────────────
|
|
//
|
|
// Donations and expenses come from a bank mutation callback rather than
|
|
// from an API key on this box: a bunq key can INITIATE PAYMENTS and has
|
|
// no read-only scope, so the key stays on the owner's machine (IP-bound)
|
|
// and is used there once to register a notification filter. From then on
|
|
// bunq pushes mutations here, and the server can learn that money moved
|
|
// without being able to move any.
|
|
//
|
|
// What crosses this boundary is deliberately small. A mutation is
|
|
// classified, its amount lands in a category total, its opaque id goes in
|
|
// a dedup ledger, and the name, IBAN and description are dropped before
|
|
// anything is written. Classification is default-deny: money no rule
|
|
// claims is withheld from the page and logged, never published as a guess.
|
|
// The owner's weekly pull recomputes every total from the full bunq
|
|
// history and overwrites the aggregates file, which is what makes this
|
|
// path safe to be lossy.
|
|
|
|
struct FinancialsConfig {
|
|
std::filesystem::path publicPath; // <orders>.financials.json — what
|
|
// the page reads; also written by
|
|
// the owner's reconciliation
|
|
std::filesystem::path seenPath; // <orders>.financials-seen.json —
|
|
// ingested mutation ids, so a
|
|
// redelivery cannot double-count
|
|
std::filesystem::path rulesPath; // <orders>.financial-rules.json —
|
|
// the classifier, authored by hand
|
|
std::string callbackSecret; // BUNQ_CALLBACK_SECRET; the last
|
|
// path segment of the callback
|
|
// URL. Empty = endpoint disabled
|
|
std::filesystem::path publicKeyPem; // BUNQ_CALLBACK_PUBKEY; empty =
|
|
// signature checking off
|
|
};
|
|
void ConfigureFinancials(FinancialsConfig config);
|
|
|
|
// The published aggregates, re-read per request — live is the page's
|
|
// promise and the file is a few hundred bytes. Empty asOf = nothing
|
|
// published yet, which the page states rather than showing zeros.
|
|
Financials CurrentFinancials();
|
|
|
|
// One bank mutation, reduced to what a total needs. Everything
|
|
// identifying is dropped by the classifier and never persisted.
|
|
struct BankMutation {
|
|
std::string id; // bunq's opaque id — the dedup key
|
|
std::int64_t amountMinor = 0; // SIGNED: negative is money leaving
|
|
std::string currency; // only EUR is ever counted
|
|
std::string counterpartyIban; // classifier input; never stored
|
|
std::string description; // classifier input; never stored
|
|
std::string account; // monetary account id
|
|
std::string created; // ISO date only — the time is
|
|
// dropped at the parser
|
|
};
|
|
|
|
// One classification rule. A rule matches when every criterion it states
|
|
// matches; the first matching rule wins. `group` is "donations",
|
|
// "expense" or "ignore" — anything else is a typo and the rule is dropped
|
|
// at load rather than inventing a category. (Expenses were once split
|
|
// into recurring/one-off; see Financials::expenses for why that went.)
|
|
struct FinancialRule {
|
|
std::string iban; // exact, case-insensitive
|
|
std::string descriptionContains; // substring, case-insensitive
|
|
std::string account; // monetary account id
|
|
std::string group;
|
|
std::string label; // the page's category name
|
|
};
|
|
|
|
struct FinancialRules {
|
|
// Accounts whose INCOMING money is a donation by default. Keyed on
|
|
// the account because donors are strangers: no IBAN list can know
|
|
// them in advance.
|
|
std::vector<std::string> donationAccounts;
|
|
std::vector<FinancialRule> rules;
|
|
};
|
|
|
|
// Empty group = no rule claimed it. That is the default-deny answer, and
|
|
// the caller must withhold rather than guess.
|
|
struct MutationClass {
|
|
std::string group;
|
|
std::string label;
|
|
};
|
|
|
|
// Pure and exported for the self-test.
|
|
std::optional<std::int64_t> ParseSignedAmountToMinor(std::string_view s);
|
|
std::optional<BankMutation> ParseBunqMutation(std::string_view json);
|
|
FinancialRules LoadFinancialRules(std::string_view json);
|
|
MutationClass ClassifyMutation(const BankMutation& m, const FinancialRules& rules);
|
|
void ApplyMutation(Financials& fin, const MutationClass& cls, const BankMutation& m);
|
|
|
|
// Whether the callback endpoint exists at all. Unconfigured, the path is
|
|
// a plain 404 — an endpoint that is off should not announce itself.
|
|
bool BunqCallbackConfigured();
|
|
|
|
// Constant-time secret check, plus the RSA-SHA256 body signature when a
|
|
// public key is configured. False means 404, for the same reason an
|
|
// unknown order token is: a probe learns nothing from the shape.
|
|
bool BunqCallbackAuthorised(std::string_view pathSecret, std::string_view body,
|
|
std::string_view signatureB64);
|
|
|
|
enum class BunqIngestResult { Applied, Duplicate, Withheld, Ignored, Failed };
|
|
|
|
// Parse, classify, and fold one notification into the aggregates. Never
|
|
// reports a transport-level error for an unparseable body: bunq retries
|
|
// non-2xx, so an unknown payload shape would redeliver forever. It is
|
|
// logged and left to the weekly reconciliation instead.
|
|
BunqIngestResult IngestBunqNotification(std::string_view body);
|
|
|
|
// ── invoices ──────────────────────────────────────────────────────
|
|
//
|
|
// A paid order's invoice: plain markdown, clearsigned with the shop's
|
|
// GPG key so its authenticity outlives this server. The page invites the
|
|
// buyer to download it rather than promising to host receipts forever.
|
|
|
|
// The registered business identity — on every invoice and at the foot of
|
|
// every order email. One definition, like the rest of the compiled-in
|
|
// authored content; the selftest pins the values.
|
|
inline constexpr std::string_view kSellerName = "Catcrafts";
|
|
inline constexpr std::string_view kSellerStreet = "Chico Mendesring 256";
|
|
inline constexpr std::string_view kSellerCity = "3315NN Dordrecht";
|
|
inline constexpr std::string_view kSellerKvk = "78437059";
|
|
inline constexpr std::string_view kSellerVat = "NL003329281B38";
|
|
inline constexpr std::string_view kSellerSite = "catcrafts.net";
|
|
|
|
// Pure and exported for the self-test: everything on a Dutch invoice —
|
|
// seller identity (KVK/VAT), sequential number, dates, buyer address,
|
|
// per-line amounts, VAT treatment for EU and export.
|
|
std::string BuildInvoiceMarkdown(const OrderRecord& order,
|
|
std::string_view productName,
|
|
std::string_view colorLabel);
|
|
|
|
// The GPG key (uid or fingerprint) invoices are clearsigned with; empty
|
|
// disables signing and invoices carry an UNSIGNED marker instead —
|
|
// honest in dev, wrong in production.
|
|
void ConfigureInvoicing(std::string gpgKeyId);
|
|
|
|
// Clearsign via the gpg binary (GNUPGHOME decides the keyring). nullopt
|
|
// when signing is configured but fails — the caller must NOT serve an
|
|
// unsigned invoice in that case.
|
|
std::optional<std::string> ClearsignInvoice(const std::string& markdown);
|
|
bool InvoiceSigningConfigured();
|
|
|
|
// 128 bits of CSPRNG entropy as 32 lowercase hex — the whole capability to
|
|
// read one order. And its human-sized companion, derived (not random) so a
|
|
// record can never carry a mismatched pair.
|
|
std::string NewOrderToken();
|
|
std::string ReferenceFromToken(std::string_view token);
|
|
|
|
// ── the order confirmation email ──────────────────────────────────
|
|
//
|
|
// A paid order gets ONE email: the confirmation, with the clearsigned
|
|
// invoice attached. Delivery shells out to a sendmail-compatible command
|
|
// (msmtp -t on the server) exactly as signing shells out to gpg — TLS,
|
|
// AUTH and deliverability are the parts a hand-rolled SMTP client
|
|
// reimplements badly, and this sends a handful of messages per week.
|
|
// The command reads the complete RFC 5322 message on stdin and takes the
|
|
// recipient from its headers; the buyer's address was validated at
|
|
// checkout to be header-safe (Form::LooksLikeEmail rejects CR, LF,
|
|
// commas and angle brackets for exactly this moment).
|
|
|
|
struct MailConfig {
|
|
std::string command; // MAIL_COMMAND, e.g. "msmtp -t"; empty = no email
|
|
std::string from; // MAIL_FROM header; defaults to the shop inbox
|
|
};
|
|
void ConfigureMail(MailConfig config);
|
|
bool MailConfigured();
|
|
// The configured From header — the mailer passes it to the builder.
|
|
std::string MailFrom();
|
|
|
|
// Pure and exported for the self-test: the complete MIME message, a
|
|
// plain-text confirmation plus the invoice as a markdown attachment.
|
|
// Returns an empty string when the buyer's address fails the envelope
|
|
// shape check — the last line of defence sits where the envelope is
|
|
// built, not in the history of the record.
|
|
std::string BuildOrderConfirmationEmail(const OrderRecord& order,
|
|
std::string_view productName,
|
|
std::string_view colorLabel,
|
|
std::string_view from,
|
|
std::string_view orderUrl,
|
|
std::string_view invoiceAttachment,
|
|
std::string_view dateRfc2822);
|
|
|
|
// Pipe one message into the configured command. False means "not sent,
|
|
// keep it queued": the mailer never writes a notified event on failure.
|
|
bool SendMailMessage(const std::string& message);
|
|
|
|
// ── payments ──────────────────────────────────────────────────────
|
|
//
|
|
// A rail turns "this order wants €X" into a URL a buyer can pay at, and
|
|
// answers "has it been paid?". Everything else — storage, rendering,
|
|
// reconciling — is rail-agnostic, which is what lets two of them run side
|
|
// by side without reshaping orders.
|
|
|
|
// The buyer's choice at checkout is Form::kPayBank / Form::kPayCrypto —
|
|
// defined in Shared because the form emits those strings and this module
|
|
// stores them, and one wire format deserves one definition.
|
|
|
|
struct PaymentLink {
|
|
std::string payUrl;
|
|
std::string payId;
|
|
};
|
|
|
|
// What a poll learned about one payment. Pending and Dead are different
|
|
// answers on purpose: both providers EXPIRE unpaid orders — Mollie after
|
|
// its own window, CoinGate after two hours (twenty minutes once a coin is
|
|
// picked) — and an order whose payment can never arrive should lapse
|
|
// rather than sit "awaiting" forever.
|
|
enum class PayState { Pending, Paid, Dead };
|
|
struct PaidStatus {
|
|
PayState state = PayState::Pending;
|
|
std::string method; // "ideal" | "creditcard" | "bitcoin" | …
|
|
};
|
|
|
|
class PaymentRail {
|
|
public:
|
|
virtual ~PaymentRail() = default;
|
|
// nullopt = the provider could not be reached / refused. The checkout
|
|
// surfaces that honestly instead of creating an unpayable order.
|
|
virtual std::optional<PaymentLink> CreateLink(std::int64_t amountMinor,
|
|
const std::string& description,
|
|
const std::string& redirectUrl) = 0;
|
|
// nullopt = could not determine (network, auth) — retry later. Never
|
|
// guess Dead from a transport error: only the provider saying
|
|
// expired/canceled/failed kills an order.
|
|
virtual std::optional<PaidStatus> CheckPaid(const std::string& payId,
|
|
std::int64_t expectedMinor) = 0;
|
|
virtual std::string_view Name() const = 0;
|
|
// How often the reconciler sweeps. The fake rail returns something
|
|
// tiny so tests are fast; the real providers get a respectful cadence.
|
|
virtual std::chrono::seconds PollInterval() const = 0;
|
|
};
|
|
|
|
struct RailConfig {
|
|
std::string mode; // "off" | "fake" | "mollie" | "coingate"
|
|
std::string apiKey; // mollie: live_… or test_…; coingate: its token
|
|
bool sandbox = false; // coingate: api-sandbox.coingate.com
|
|
std::filesystem::path statePath; // fake: the paid marker
|
|
std::string redirectBase = "https://catcrafts.net";
|
|
};
|
|
|
|
// nullptr for mode "off" — that slot then offers no payment choice.
|
|
std::unique_ptr<PaymentRail> MakeRail(const RailConfig& config);
|
|
|
|
// The two slots a buyer chooses between. Either may be null, which is how
|
|
// a shop with only one provider configured offers only that one: the
|
|
// checkout form renders the choices that exist, so a page can never
|
|
// advertise a way to pay the server would then refuse.
|
|
struct PaymentRails {
|
|
std::unique_ptr<PaymentRail> bank; // Mollie: iDEAL, cards, transfer
|
|
std::unique_ptr<PaymentRail> crypto; // CoinGate: on-chain and Lightning
|
|
|
|
bool Any() const { return bank != nullptr || crypto != nullptr; }
|
|
// The rail that owns a stored order, by its recorded choice. Total on
|
|
// purpose: anything that is not the crypto choice is the bank one, so
|
|
// a hand-edited or truncated ledger line resolves somewhere safe
|
|
// instead of nowhere. Null when that slot is not configured, and the
|
|
// caller must then leave the order alone rather than ask the other
|
|
// provider about an id it never issued.
|
|
PaymentRail* For(std::string_view choice) const {
|
|
if (choice == Form::kPayCrypto) return crypto.get();
|
|
return bank.get();
|
|
}
|
|
};
|
|
|
|
// Parsed essentials of a Mollie /v2/payments object. Exported so the
|
|
// self-test can drive the parser with canned responses — the HTTP around
|
|
// it is thin.
|
|
struct MolliePayment {
|
|
std::string id;
|
|
std::string status; // open|pending|authorized|paid|canceled|expired|failed
|
|
std::string method; // may be empty until the payer picks one
|
|
std::string checkoutUrl; // present while payable
|
|
std::int64_t amountMinor = 0;
|
|
};
|
|
std::optional<MolliePayment> ParseMolliePayment(std::string_view json);
|
|
|
|
// Parsed essentials of a CoinGate /api/v2/orders object. Same shape and
|
|
// same reason as MolliePayment: the parser is the part worth testing.
|
|
//
|
|
// `id` is a JSON NUMBER on the wire ("id":538) rather than a string, so it
|
|
// is rendered to decimal here and travels through the ledger as text like
|
|
// every other payment id.
|
|
struct CoingateOrder {
|
|
std::string id;
|
|
std::string status; // new|pending|confirming|paid|invalid|
|
|
// expired|canceled|refunded|partially_refunded
|
|
std::string payCurrency; // the coin the shopper picked; empty until then
|
|
std::string payUrl; // the hosted invoice, present while payable
|
|
std::int64_t priceMinor = 0; // price_amount, and only when EUR
|
|
};
|
|
std::optional<CoingateOrder> ParseCoingateOrder(std::string_view json);
|
|
|
|
// Exact decimal-string-to-minor-units parser for the amounts both provider
|
|
// APIs quote as strings ("614.00" -> 61400). Rejects anything that is not
|
|
// a plain non-negative decimal with at most two fraction digits — no
|
|
// floats touch money on the way in either. Exported for the self-test.
|
|
std::optional<std::int64_t> ParseAmountToMinor(std::string_view s);
|
|
|
|
// ── shipping rates ────────────────────────────────────────────────
|
|
//
|
|
// Live per-country, per-weight-bracket rates from Sendcloud's
|
|
// shipping_methods API, cached to a state file and refreshed daily by a
|
|
// background thread. This table is the SOLE source of shipping prices:
|
|
// there is no compiled-in fallback, because a destination Sendcloud has no
|
|
// rate for is a destination the shop cannot actually post a parcel to, and
|
|
// inventing a price for it only sells an order that then has to be
|
|
// refunded or absorbed.
|
|
//
|
|
// The consequence is deliberate and load-bearing: with no table, checkout
|
|
// refuses everything. The disk cache is therefore the resilience layer
|
|
// rather than an optimisation — it is written on every successful fetch,
|
|
// read unconditionally at startup (credentials or not, which is also how
|
|
// dev and e2e get a table), and a Sendcloud outage merely means the last
|
|
// known prices keep selling.
|
|
|
|
struct ShippingConfig {
|
|
std::string publicKey; // SENDCLOUD_PUBLIC_KEY
|
|
std::string secretKey; // SENDCLOUD_SECRET_KEY
|
|
std::string methodName; // substring match on the method name
|
|
std::filesystem::path cachePath; // survives restarts; also the dev seed
|
|
};
|
|
|
|
// Country -> weight-bracket ladder, prices in cents EUR, already grossed up
|
|
// to consumer prices. Empty when nothing loaded, which means "cannot ship
|
|
// anywhere" and is reported loudly at startup.
|
|
struct ShippingTable {
|
|
std::string method; // the matched Sendcloud method name(s)
|
|
std::string fetchedAt; // ISO 8601, for the operator
|
|
std::vector<Money::ShipRates> perCountry;
|
|
|
|
// The rate for a parcel of `grams`, or 0 when this table cannot ship it
|
|
// to `cc` at all. The bracket rule lives in Money so the page's total
|
|
// preview picks the identical bracket.
|
|
std::int64_t Find(std::string_view cc, std::int64_t grams) const {
|
|
return Money::RateFor(Money::LadderFor(perCountry, cc), grams);
|
|
}
|
|
|
|
// Units of `unitGrams` that fit the heaviest bracket for `cc`; 0 when
|
|
// the destination is uncovered. This is the real quantity ceiling.
|
|
std::int64_t MaxUnits(std::string_view cc, std::int64_t unitGrams) const {
|
|
return Money::MaxUnitsFor(Money::LadderFor(perCountry, cc), unitGrams);
|
|
}
|
|
};
|
|
|
|
// Parse a Sendcloud /api/v2/shipping_methods response into a table.
|
|
// Exported for the self-test — the network fetch is thin around this.
|
|
ShippingTable ParseSendcloudMethods(std::string_view json, std::string_view methodName);
|
|
|
|
// Install the config and start using it. Loads the cache even without
|
|
// credentials, so a hand-placed cache file is a complete rate table.
|
|
void ConfigureShipping(const ShippingConfig& config);
|
|
|
|
// One fetch attempt; failure leaves the previous table standing. The HTTP
|
|
// layer's background thread calls this on start and daily after.
|
|
void RefreshShippingTable();
|
|
|
|
// The rate the checkout charges to send `grams` to `country`, or nullopt
|
|
// when no bracket covers it — the caller must then refuse the order rather
|
|
// than substitute a number.
|
|
std::optional<std::int64_t> ShipCostFor(std::string_view country,
|
|
std::int64_t grams);
|
|
|
|
// A snapshot of the live table for embedding into the checkout preview —
|
|
// the page must show the same numbers the server will charge.
|
|
ShippingTable CurrentShippingTable();
|
|
|
|
// Install the rails used by Serve()'s checkout handler and reconciler.
|
|
// Call before Serve. Two null rails disables checkout entirely. (Rates
|
|
// travel with the content — LoadContent reads rates.json.)
|
|
void ConfigurePayments(PaymentRails rails, std::string redirectBase);
|
|
|
|
// Whether the crypto slot is live, for the renderer: the checkout form
|
|
// offers the crypto choice only when something can actually serve it.
|
|
bool CryptoPaymentAvailable();
|
|
|
|
// ── request provenance ────────────────────────────────────────────
|
|
//
|
|
// Two questions a reverse-proxied process has to answer carefully, both
|
|
// pure string work, both exported for the self-test.
|
|
|
|
// The client address as the reverse proxy saw it, from X-Forwarded-For.
|
|
//
|
|
// Caddy APPENDS the real peer to whatever X-Forwarded-For the client sent,
|
|
// so the value reads "<anything the client claimed>, <real peer>" and only
|
|
// the RIGHTMOST entry is trustworthy. Taking the leftmost — the usual
|
|
// mistake — would hand every client an unlimited supply of free rate-limit
|
|
// identities, which is worse than not limiting at all.
|
|
//
|
|
// Trustworthy only because nothing but Caddy can reach this listener: it
|
|
// binds loopback and the Caddyfile says in as many words not to expose the
|
|
// port. Empty in, empty out — no header means nothing proxied this request
|
|
// (dev, e2e, a direct curl), and the caller must fall back to the global
|
|
// limit rather than invent a peer.
|
|
std::string_view ClientAddressFromForwarded(std::string_view forwarded);
|
|
|
|
// Whether a state-changing POST may proceed, given its Origin header.
|
|
//
|
|
// A MISSING Origin is allowed: browsers have sent it on form POSTs for
|
|
// years, so a request without one is a non-browser client (curl, the e2e
|
|
// suite), and a non-browser client cannot be a cross-site forgery — there
|
|
// is no victim's session to ride on. A PRESENT but mismatched Origin is
|
|
// precisely the forgery case, and that is refused. "null" — a sandboxed
|
|
// iframe or a privacy-stripped origin — is refused too: it is present, and
|
|
// it is not us.
|
|
bool OriginAllowed(std::string_view origin, std::string_view redirectBase);
|
|
|
|
// Bind and serve until killed. Blocks. Starts the payment reconciler
|
|
// thread when a rail is configured.
|
|
//
|
|
// Plaintext HTTP/1.1 by design: Caddy terminates TLS and reverse-proxies to
|
|
// localhost. Do not expose this port directly.
|
|
int Serve(std::uint16_t port);
|
|
}
|