Skip to content

Commit

Permalink
wallet - nut05 state changes
Browse files Browse the repository at this point in the history
  • Loading branch information
elnosh committed Jun 27, 2024
1 parent fdddb78 commit 5975e9f
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 14 deletions.
58 changes: 47 additions & 11 deletions cashu/nuts/nut05/nut05.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package nut05

import (
"encoding/json"
"errors"

"github.com/elnosh/gonuts/cashu"
)
Expand All @@ -31,6 +32,18 @@ func (state State) String() string {
}
}

func StringToState(state string) State {
switch state {
case "UNPAID":
return Unpaid
case "PENDING":
return Pending
case "PAID":
return Paid
}
return Unknown
}

type PostMeltQuoteBolt11Request struct {
Request string `json:"request"`
Unit string `json:"unit"`
Expand All @@ -51,17 +64,18 @@ type PostMeltBolt11Request struct {
Inputs cashu.Proofs `json:"inputs"`
}

// Custom marshaler to display state as string
type TempQuote struct {
Quote string `json:"quote"`
Amount uint64 `json:"amount"`
FeeReserve uint64 `json:"fee_reserve"`
State string `json:"state"`
Paid bool `json:"paid"` // DEPRECATED: use state instead
Expiry int64 `json:"expiry"`
Preimage string `json:"payment_preimage,omitempty"`
}

func (quoteResponse *PostMeltQuoteBolt11Response) MarshalJSON() ([]byte, error) {
var response = struct {
Quote string `json:"quote"`
Amount uint64 `json:"amount"`
FeeReserve uint64 `json:"fee_reserve"`
State string `json:"state"`
Paid bool `json:"paid"` // DEPRECATED: use state instead
Expiry int64 `json:"expiry"`
Preimage string `json:"payment_preimage,omitempty"`
}{
var tempQuote = TempQuote{
Quote: quoteResponse.Quote,
Amount: quoteResponse.Amount,
FeeReserve: quoteResponse.FeeReserve,
Expand All @@ -70,5 +84,27 @@ func (quoteResponse *PostMeltQuoteBolt11Response) MarshalJSON() ([]byte, error)
Expiry: quoteResponse.Expiry,
Preimage: quoteResponse.Preimage,
}
return json.Marshal(response)
return json.Marshal(tempQuote)
}

func (quoteResponse *PostMeltQuoteBolt11Response) UnmarshalJSON(data []byte) error {
tempQuote := &TempQuote{}

if err := json.Unmarshal(data, tempQuote); err != nil {
return err
}

quoteResponse.Quote = tempQuote.Quote
quoteResponse.Amount = tempQuote.Amount
quoteResponse.FeeReserve = tempQuote.FeeReserve
state := StringToState(tempQuote.State)
if state == Unknown {
return errors.New("invalid state")
}
quoteResponse.State = state
quoteResponse.Paid = tempQuote.Paid
quoteResponse.Expiry = tempQuote.Expiry
quoteResponse.Preimage = tempQuote.Preimage

return nil
}
1 change: 0 additions & 1 deletion mint/mint_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ func TestMelt(t *testing.T) {

// test already used proofs
_, err = testMint.MeltTokens(testutils.BOLT11_METHOD, meltQuote.Id, validProofs)
//if !errors.Is(err, cashu.ProofAlreadyUsedErr) {
if !errors.Is(err, cashu.QuoteAlreadyPaid) {
t.Fatalf("expected error '%v' but got '%v' instead", cashu.QuoteAlreadyPaid, err)
}
Expand Down
12 changes: 10 additions & 2 deletions wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -540,10 +540,18 @@ func (w *Wallet) Melt(invoice string, mint string) (*nut05.PostMeltQuoteBolt11Re

meltBolt11Request := nut05.PostMeltBolt11Request{Quote: meltQuoteResponse.Quote, Inputs: proofs}
meltBolt11Response, err := PostMeltBolt11(selectedMint.mintURL, meltBolt11Request)
if err != nil || !meltBolt11Response.Paid {
if err != nil {
w.saveProofs(proofs)
return nil, err
}

// TODO: deprecate paid field and only use State
// TODO: check for PENDING as well
paid := meltBolt11Response.Paid && meltBolt11Response.State == nut05.Paid
if !paid {
// save proofs if invoice was not paid
w.saveProofs(proofs)
} else if meltBolt11Response.Paid { // TODO: USE STATE FIELD INSTEAD OF PAID
} else if paid {
bolt11, err := decodepay.Decodepay(invoice)
if err != nil {
return nil, fmt.Errorf("error decoding bolt11 invoice: %v", err)
Expand Down

0 comments on commit 5975e9f

Please sign in to comment.