-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into task-list-invoices
- Loading branch information
Showing
13 changed files
with
431 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"fmt" | ||
|
||
"github.com/nbd-wtf/go-nostr" | ||
"github.com/sirupsen/logrus" | ||
) | ||
|
||
func (svc *Service) HandlePayKeysendEvent(ctx context.Context, request *Nip47Request, event *nostr.Event, app App, ss []byte) (result *nostr.Event, err error) { | ||
|
||
nostrEvent := NostrEvent{App: app, NostrId: event.ID, Content: event.Content, State: "received"} | ||
err = svc.db.Create(&nostrEvent).Error | ||
if err != nil { | ||
svc.Logger.WithFields(logrus.Fields{ | ||
"eventId": event.ID, | ||
"eventKind": event.Kind, | ||
"appId": app.ID, | ||
}).Errorf("Failed to save nostr event: %v", err) | ||
return nil, err | ||
} | ||
|
||
payParams := &Nip47KeysendParams{} | ||
err = json.Unmarshal(request.Params, payParams) | ||
if err != nil { | ||
svc.Logger.WithFields(logrus.Fields{ | ||
"eventId": event.ID, | ||
"eventKind": event.Kind, | ||
"appId": app.ID, | ||
}).Errorf("Failed to decode nostr event: %v", err) | ||
return nil, err | ||
} | ||
|
||
// We use pay_invoice permissions for budget and max amount | ||
hasPermission, code, message := svc.hasPermission(&app, event, NIP_47_PAY_INVOICE_METHOD, payParams.Amount) | ||
|
||
if !hasPermission { | ||
svc.Logger.WithFields(logrus.Fields{ | ||
"eventId": event.ID, | ||
"eventKind": event.Kind, | ||
"appId": app.ID, | ||
"senderPubkey": payParams.Pubkey, | ||
}).Errorf("App does not have permission: %s %s", code, message) | ||
|
||
return svc.createResponse(event, Nip47Response{ | ||
ResultType: request.Method, | ||
Error: &Nip47Error{ | ||
Code: code, | ||
Message: message, | ||
}}, ss) | ||
} | ||
|
||
payment := Payment{App: app, NostrEvent: nostrEvent, Amount: uint(payParams.Amount / 1000)} | ||
insertPaymentResult := svc.db.Create(&payment) | ||
if insertPaymentResult.Error != nil { | ||
return nil, insertPaymentResult.Error | ||
} | ||
|
||
svc.Logger.WithFields(logrus.Fields{ | ||
"eventId": event.ID, | ||
"eventKind": event.Kind, | ||
"appId": app.ID, | ||
"senderPubkey": payParams.Pubkey, | ||
}).Info("Sending payment") | ||
|
||
preimage, err := svc.lnClient.SendKeysend(ctx, event.PubKey, payParams.Amount/1000, payParams.Pubkey, payParams.Preimage, payParams.TLVRecords) | ||
if err != nil { | ||
svc.Logger.WithFields(logrus.Fields{ | ||
"eventId": event.ID, | ||
"eventKind": event.Kind, | ||
"appId": app.ID, | ||
"senderPubkey": payParams.Pubkey, | ||
}).Infof("Failed to send payment: %v", err) | ||
nostrEvent.State = NOSTR_EVENT_STATE_HANDLER_ERROR | ||
svc.db.Save(&nostrEvent) | ||
return svc.createResponse(event, Nip47Response{ | ||
ResultType: request.Method, | ||
Error: &Nip47Error{ | ||
Code: NIP_47_ERROR_INTERNAL, | ||
Message: fmt.Sprintf("Something went wrong while paying invoice: %s", err.Error()), | ||
}, | ||
}, ss) | ||
} | ||
payment.Preimage = &preimage | ||
nostrEvent.State = NOSTR_EVENT_STATE_HANDLER_EXECUTED | ||
svc.db.Save(&nostrEvent) | ||
svc.db.Save(&payment) | ||
return svc.createResponse(event, Nip47Response{ | ||
ResultType: request.Method, | ||
Result: Nip47PayResponse{ | ||
Preimage: preimage, | ||
}, | ||
}, ss) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.