2023-07-20 07:56:28 +00:00
|
|
|
import pkg/metrics
|
2023-12-19 22:12:47 +00:00
|
|
|
|
|
|
|
import ../../logutils
|
2022-09-27 14:27:40 +00:00
|
|
|
import ../statemachine
|
2023-06-05 08:48:06 +00:00
|
|
|
import ./errorhandling
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2023-11-03 15:21:54 +00:00
|
|
|
declareCounter(codex_purchases_cancelled, "codex purchases cancelled")
|
2023-07-20 07:56:28 +00:00
|
|
|
|
2023-10-19 08:12:49 +00:00
|
|
|
logScope:
|
|
|
|
topics = "marketplace purchases cancelled"
|
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
type PurchaseCancelled* = ref object of ErrorHandlingState
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
method `$`*(state: PurchaseCancelled): string =
|
|
|
|
"cancelled"
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
method run*(state: PurchaseCancelled, machine: Machine): Future[?State] {.async.} =
|
2023-11-03 15:21:54 +00:00
|
|
|
codex_purchases_cancelled.inc()
|
2023-06-05 08:48:06 +00:00
|
|
|
let purchase = Purchase(machine)
|
2023-10-19 08:12:49 +00:00
|
|
|
|
2023-12-19 22:12:47 +00:00
|
|
|
warn "Request cancelled, withdrawing remaining funds", requestId = purchase.requestId
|
2023-06-05 08:48:06 +00:00
|
|
|
await purchase.market.withdrawFunds(purchase.requestId)
|
2023-10-19 08:12:49 +00:00
|
|
|
|
2022-09-27 14:27:40 +00:00
|
|
|
let error = newException(Timeout, "Purchase cancelled due to timeout")
|
2023-10-24 10:12:54 +00:00
|
|
|
purchase.future.fail(error)
|