summaryrefslogtreecommitdiff
path: root/merchant-spec
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-08-08 18:38:18 +0200
committerFlorian Dold <florian@dold.me>2021-08-08 18:38:18 +0200
commit45c5cae232f6a9717590a9eae3474cee337cb3f4 (patch)
tree0bd00f84c6841ef6fca4e02ad7a206dacad1eb33 /merchant-spec
parente28129903772b99ad63613ba203c2d0dd20937c9 (diff)
downloaddocs-45c5cae232f6a9717590a9eae3474cee337cb3f4.tar.gz
docs-45c5cae232f6a9717590a9eae3474cee337cb3f4.tar.bz2
docs-45c5cae232f6a9717590a9eae3474cee337cb3f4.zip
allow h_contract as auth once order is claimed
Diffstat (limited to 'merchant-spec')
-rw-r--r--merchant-spec/public-orders-get.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/merchant-spec/public-orders-get.ts b/merchant-spec/public-orders-get.ts
index 20b893a6..225cc253 100644
--- a/merchant-spec/public-orders-get.ts
+++ b/merchant-spec/public-orders-get.ts
@@ -65,7 +65,8 @@ function handlePublicOrdersGet(mos: MerchantOrderStore, req: Req): Resp {
}
if (!ord.paid) {
- if (ord.requireClaimToken && ord.claimToken !== req.claimToken) {
+ const hcOk = ord.contractHash === req.contractHash;
+ if (!hcOk && ord.requireClaimToken && ord.claimToken !== req.claimToken) {
// This can happen when the fulfillment URL page detects
// the user has not paid under the current session.
return {
@@ -109,8 +110,8 @@ function handlePublicOrdersGet(mos: MerchantOrderStore, req: Req): Resp {
responseType: "StatusGotoResponse",
response: {
already_paid_order_id: alreadyPaidOrd.orderId,
- }
- }
+ },
+ };
}
return {
httpStatus: "402 Payment Required",