storj/satellite/satellitedb/storjscanwallets.go
dlamarmorgan 92be1d878f satellite/payments/stripecoinpayments: storjscan invoice generation
Add line item with unclaimed Storjscan wallet balance during invoice generation.

Change-Id: I018bfa01abfcf7bfdffba0c5a1350a69188f63d5
2022-08-03 13:24:26 -07:00

68 lines
2.1 KiB
Go

// Copyright (C) 2022 Storj Labs, Inc.
// See LICENSE for copying information.
package satellitedb
import (
"context"
"storj.io/common/uuid"
"storj.io/storj/private/blockchain"
"storj.io/storj/satellite/payments/storjscan"
"storj.io/storj/satellite/satellitedb/dbx"
)
// ensure that storjscanWalletsDB implements storjscan.WalletsDB.
var _ storjscan.WalletsDB = (*storjscanWalletsDB)(nil)
// storjscanWalletsDB is Storjscan wallets DB.
//
// architecture: Database
type storjscanWalletsDB struct {
db *satelliteDB
}
// Add creates new user/wallet association record.
func (walletsDB storjscanWalletsDB) Add(ctx context.Context, userID uuid.UUID, walletAddress blockchain.Address) (err error) {
defer mon.Task()(&ctx)(&err)
return walletsDB.db.CreateNoReturn_StorjscanWallet(ctx,
dbx.StorjscanWallet_UserId(userID[:]),
dbx.StorjscanWallet_WalletAddress(walletAddress.Bytes()))
}
// Get returns with thw wallet associated with the user.
func (walletsDB storjscanWalletsDB) Get(ctx context.Context, userID uuid.UUID) (_ blockchain.Address, err error) {
defer mon.Task()(&ctx)(&err)
wallet, err := walletsDB.db.Get_StorjscanWallet_WalletAddress_By_UserId(ctx, dbx.StorjscanWallet_UserId(userID[:]))
if err != nil {
return blockchain.Address{}, Error.Wrap(err)
}
address, err := blockchain.BytesToAddress(wallet.WalletAddress)
if err != nil {
return blockchain.Address{}, Error.Wrap(err)
}
return address, nil
}
// GetAll returns all saved wallet entries.
func (walletsDB storjscanWalletsDB) GetAll(ctx context.Context) (_ []storjscan.Wallet, err error) {
defer mon.Task()(&ctx)(&err)
entries, err := walletsDB.db.All_StorjscanWallet(ctx)
if err != nil {
return nil, Error.Wrap(err)
}
var wallets []storjscan.Wallet
for _, entry := range entries {
userID, err := uuid.FromBytes(entry.UserId)
if err != nil {
return nil, Error.Wrap(err)
}
address, err := blockchain.BytesToAddress(entry.WalletAddress)
if err != nil {
return nil, Error.Wrap(err)
}
wallets = append(wallets, storjscan.Wallet{UserID: userID, Address: address})
}
return wallets, nil
}