Some checks failed
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package notifications
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
messaging "github.com/tech/sendico/pkg/messaging/envelope"
|
|
"github.com/tech/sendico/pkg/model"
|
|
nm "github.com/tech/sendico/pkg/model/notification"
|
|
"github.com/tech/sendico/pkg/mservice"
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
type confirmationCodePayload struct {
|
|
AccountRef string `json:"accountRef"`
|
|
Destination string `json:"destination"`
|
|
Target string `json:"target"`
|
|
Code string `json:"code"`
|
|
}
|
|
|
|
type ConfirmationCodeNotification struct {
|
|
messaging.Envelope
|
|
payload confirmationCodePayload
|
|
}
|
|
|
|
func (ccn *ConfirmationCodeNotification) Serialize() ([]byte, error) {
|
|
data, err := json.Marshal(ccn.payload)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return ccn.Envelope.Wrap(data)
|
|
}
|
|
|
|
func newConfirmationEvent(action nm.NotificationAction) model.NotificationEvent {
|
|
return model.NewNotification(mservice.Confirmations, action)
|
|
}
|
|
|
|
func NewConfirmationCodeEnvelope(sender string, accountRef primitive.ObjectID, destination string, target model.ConfirmationTarget, code string) messaging.Envelope {
|
|
return &ConfirmationCodeNotification{
|
|
Envelope: messaging.CreateEnvelope(sender, newConfirmationEvent(nm.NAPending)),
|
|
payload: confirmationCodePayload{
|
|
AccountRef: accountRef.Hex(),
|
|
Destination: destination,
|
|
Target: string(target),
|
|
Code: code,
|
|
},
|
|
}
|
|
}
|