073f9ed499
We have 3 types of discounts: 1) Promotional credits/coupons 2) Bonus from depositing STORJ tokens 3) Stripe discounts (e.g. 100% off for Storjlings, 30% off for Early Adopters, etc.) So far the discounts were applied in the above order. But because the Stripe discount is applied on all of the project usage fees, this could sometimes lead to negative total in the invoice. Especially, if the Stripe discount is 100% or all of the project fees are covered by coupons and bonus. To resolve this issue, before applying promotional coupons and deposit bonuses, the Stripe discount will be applied first to the project fees. Change-Id: I5dcbec04ec3a04e7f76b11e0a228ccb3195f2db0
990 lines
27 KiB
Go
990 lines
27 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package stripecoinpayments
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math"
|
|
"math/big"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
"github.com/spacemonkeygo/monkit/v3"
|
|
"github.com/stripe/stripe-go"
|
|
"github.com/stripe/stripe-go/client"
|
|
"github.com/zeebo/errs"
|
|
"go.uber.org/zap"
|
|
|
|
"storj.io/common/memory"
|
|
"storj.io/common/uuid"
|
|
"storj.io/storj/satellite/accounting"
|
|
"storj.io/storj/satellite/console"
|
|
"storj.io/storj/satellite/payments"
|
|
"storj.io/storj/satellite/payments/coinpayments"
|
|
)
|
|
|
|
var (
|
|
// Error defines stripecoinpayments service error.
|
|
Error = errs.Class("stripecoinpayments service error")
|
|
// ErrNoCouponUsages indicates that there are no coupon usages.
|
|
ErrNoCouponUsages = errs.Class("stripecoinpayments no coupon usages")
|
|
|
|
mon = monkit.Package()
|
|
)
|
|
|
|
// fetchLimit sets the maximum amount of items before we start paging on requests
|
|
const fetchLimit = 100
|
|
|
|
// Config stores needed information for payment service initialization.
|
|
type Config struct {
|
|
StripeSecretKey string `help:"stripe API secret key" default:""`
|
|
StripePublicKey string `help:"stripe API public key" default:""`
|
|
CoinpaymentsPublicKey string `help:"coinpayments API public key" default:""`
|
|
CoinpaymentsPrivateKey string `help:"coinpayments API private key key" default:""`
|
|
TransactionUpdateInterval time.Duration `help:"amount of time we wait before running next transaction update loop" devDefault:"1m" releaseDefault:"30m"`
|
|
AccountBalanceUpdateInterval time.Duration `help:"amount of time we wait before running next account balance update loop" devDefault:"3m" releaseDefault:"1h30m"`
|
|
ConversionRatesCycleInterval time.Duration `help:"amount of time we wait before running next conversion rates update loop" devDefault:"1m" releaseDefault:"10m"`
|
|
AutoAdvance bool `help:"toogle autoadvance feature for invoice creation" default:"false"`
|
|
}
|
|
|
|
// Service is an implementation for payment service via Stripe and Coinpayments.
|
|
//
|
|
// architecture: Service
|
|
type Service struct {
|
|
log *zap.Logger
|
|
db DB
|
|
projectsDB console.Projects
|
|
usageDB accounting.ProjectAccounting
|
|
stripeClient *client.API
|
|
coinPayments *coinpayments.Client
|
|
|
|
ByteHourCents decimal.Decimal
|
|
EgressByteCents decimal.Decimal
|
|
ObjectHourCents decimal.Decimal
|
|
// BonusRate amount of percents
|
|
BonusRate int64
|
|
// Coupon Values
|
|
CouponValue int64
|
|
CouponDuration int64
|
|
CouponProjectLimit memory.Size
|
|
// Minimum CoinPayment to create a coupon
|
|
MinCoinPayment int64
|
|
|
|
//Stripe Extended Features
|
|
AutoAdvance bool
|
|
|
|
mu sync.Mutex
|
|
rates coinpayments.CurrencyRateInfos
|
|
ratesErr error
|
|
}
|
|
|
|
// NewService creates a Service instance.
|
|
func NewService(log *zap.Logger, config Config, db DB, projectsDB console.Projects, usageDB accounting.ProjectAccounting, storageTBPrice, egressTBPrice, objectPrice string, bonusRate, couponValue, couponDuration int64, couponProjectLimit memory.Size, minCoinPayment int64) (*Service, error) {
|
|
backendConfig := &stripe.BackendConfig{
|
|
LeveledLogger: log.Sugar(),
|
|
}
|
|
|
|
stripeClient := client.New(config.StripeSecretKey,
|
|
&stripe.Backends{
|
|
API: stripe.GetBackendWithConfig(stripe.APIBackend, backendConfig),
|
|
Connect: stripe.GetBackendWithConfig(stripe.ConnectBackend, backendConfig),
|
|
Uploads: stripe.GetBackendWithConfig(stripe.UploadsBackend, backendConfig),
|
|
},
|
|
)
|
|
|
|
coinPaymentsClient := coinpayments.NewClient(
|
|
coinpayments.Credentials{
|
|
PublicKey: config.CoinpaymentsPublicKey,
|
|
PrivateKey: config.CoinpaymentsPrivateKey,
|
|
},
|
|
)
|
|
|
|
tbMonthDollars, err := decimal.NewFromString(storageTBPrice)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
egressTBDollars, err := decimal.NewFromString(egressTBPrice)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
objectMonthDollars, err := decimal.NewFromString(objectPrice)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// change the precision from dollars to cents
|
|
tbMonthCents := tbMonthDollars.Shift(2)
|
|
egressTBCents := egressTBDollars.Shift(2)
|
|
objectHourCents := objectMonthDollars.Shift(2)
|
|
|
|
// get per hour prices from storage and objects
|
|
hoursPerMonth := decimal.New(30*24, 0)
|
|
|
|
tbHourCents := tbMonthCents.Div(hoursPerMonth)
|
|
objectHourCents = objectHourCents.Div(hoursPerMonth)
|
|
|
|
// convert tb to bytes for storage and egress
|
|
byteHourCents := tbHourCents.Div(decimal.New(1000000000000, 0))
|
|
egressByteCents := egressTBCents.Div(decimal.New(1000000000000, 0))
|
|
|
|
return &Service{
|
|
log: log,
|
|
db: db,
|
|
projectsDB: projectsDB,
|
|
usageDB: usageDB,
|
|
stripeClient: stripeClient,
|
|
coinPayments: coinPaymentsClient,
|
|
ByteHourCents: byteHourCents,
|
|
EgressByteCents: egressByteCents,
|
|
ObjectHourCents: objectHourCents,
|
|
BonusRate: bonusRate,
|
|
CouponValue: couponValue,
|
|
CouponDuration: couponDuration,
|
|
CouponProjectLimit: couponProjectLimit,
|
|
MinCoinPayment: minCoinPayment,
|
|
AutoAdvance: config.AutoAdvance,
|
|
}, nil
|
|
}
|
|
|
|
// Accounts exposes all needed functionality to manage payment accounts.
|
|
func (service *Service) Accounts() payments.Accounts {
|
|
return &accounts{service: service}
|
|
}
|
|
|
|
// updateTransactionsLoop updates all pending transactions in a loop.
|
|
func (service *Service) updateTransactionsLoop(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
before := time.Now()
|
|
|
|
txsPage, err := service.db.Transactions().ListPending(ctx, 0, fetchLimit, before)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := service.updateTransactions(ctx, txsPage.IDList()); err != nil {
|
|
return err
|
|
}
|
|
|
|
for txsPage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
txsPage, err = service.db.Transactions().ListPending(ctx, txsPage.NextOffset, fetchLimit, before)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := service.updateTransactions(ctx, txsPage.IDList()); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// updateTransactions updates statuses and received amount for given transactions.
|
|
func (service *Service) updateTransactions(ctx context.Context, ids TransactionAndUserList) (err error) {
|
|
defer mon.Task()(&ctx, ids)(&err)
|
|
|
|
if len(ids) == 0 {
|
|
service.log.Debug("no transactions found, skipping update")
|
|
return nil
|
|
}
|
|
|
|
infos, err := service.coinPayments.Transactions().ListInfos(ctx, ids.IDList())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var updates []TransactionUpdate
|
|
var applies coinpayments.TransactionIDList
|
|
|
|
for id, info := range infos {
|
|
updates = append(updates,
|
|
TransactionUpdate{
|
|
TransactionID: id,
|
|
Status: info.Status,
|
|
Received: info.Received,
|
|
},
|
|
)
|
|
|
|
// moment of transition to completed state, which indicates
|
|
// that customer funds were accepted and transferred to our
|
|
// account, so we can apply this amount to customer balance.
|
|
// Therefore, create intent to update customer balance in the future.
|
|
if info.Status == coinpayments.StatusCompleted {
|
|
applies = append(applies, id)
|
|
}
|
|
|
|
userID := ids[id]
|
|
|
|
rate, err := service.db.Transactions().GetLockedRate(ctx, id)
|
|
if err != nil {
|
|
service.log.Error(fmt.Sprintf("could not add promotional coupon for user %s", userID.String()), zap.Error(err))
|
|
continue
|
|
}
|
|
|
|
cents := convertToCents(rate, &info.Received)
|
|
|
|
if cents >= service.MinCoinPayment {
|
|
err = service.Accounts().Coupons().AddPromotionalCoupon(ctx, userID)
|
|
if err != nil {
|
|
service.log.Error(fmt.Sprintf("could not add promotional coupon for user %s", userID.String()), zap.Error(err))
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
return service.db.Transactions().Update(ctx, updates, applies)
|
|
}
|
|
|
|
// applyAccountBalanceLoop fetches all unapplied transaction in a loop, applying transaction
|
|
// received amount to stripe customer balance.
|
|
func (service *Service) updateAccountBalanceLoop(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
before := time.Now()
|
|
|
|
txsPage, err := service.db.Transactions().ListUnapplied(ctx, 0, fetchLimit, before)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, tx := range txsPage.Transactions {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = service.applyTransactionBalance(ctx, tx); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
for txsPage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
txsPage, err = service.db.Transactions().ListUnapplied(ctx, txsPage.NextOffset, fetchLimit, before)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, tx := range txsPage.Transactions {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = service.applyTransactionBalance(ctx, tx); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// applyTransactionBalance applies transaction received amount to stripe customer balance.
|
|
func (service *Service) applyTransactionBalance(ctx context.Context, tx Transaction) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
cusID, err := service.db.Customers().GetCustomerID(ctx, tx.AccountID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
rate, err := service.db.Transactions().GetLockedRate(ctx, tx.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = service.db.Transactions().Consume(ctx, tx.ID); err != nil {
|
|
return err
|
|
}
|
|
|
|
cents := convertToCents(rate, &tx.Received)
|
|
|
|
params := &stripe.CustomerBalanceTransactionParams{
|
|
Amount: stripe.Int64(-cents),
|
|
Customer: stripe.String(cusID),
|
|
Currency: stripe.String(string(stripe.CurrencyUSD)),
|
|
Description: stripe.String("storj token deposit"),
|
|
}
|
|
|
|
params.AddMetadata("txID", tx.ID.String())
|
|
|
|
// TODO: 0 amount will return an error, how to handle that?
|
|
_, err = service.stripeClient.CustomerBalanceTransactions.New(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
credit := payments.Credit{
|
|
UserID: tx.AccountID,
|
|
Amount: cents / 100 * service.BonusRate,
|
|
TransactionID: tx.ID,
|
|
}
|
|
|
|
return service.db.Credits().InsertCredit(ctx, credit)
|
|
}
|
|
|
|
// UpdateRates fetches new rates and updates service rate cache.
|
|
func (service *Service) UpdateRates(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
rates, err := service.coinPayments.ConversionRates().Get(ctx)
|
|
|
|
service.mu.Lock()
|
|
defer service.mu.Unlock()
|
|
|
|
service.rates = rates
|
|
service.ratesErr = err
|
|
|
|
return err
|
|
}
|
|
|
|
// GetRate returns conversion rate for specified currencies.
|
|
func (service *Service) GetRate(ctx context.Context, curr1, curr2 coinpayments.Currency) (_ *big.Float, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
service.mu.Lock()
|
|
defer service.mu.Unlock()
|
|
|
|
if service.ratesErr != nil {
|
|
return nil, Error.Wrap(err)
|
|
}
|
|
|
|
info1, ok := service.rates[curr1]
|
|
if !ok {
|
|
return nil, Error.New("no rate for currency %s", curr1)
|
|
}
|
|
info2, ok := service.rates[curr2]
|
|
if !ok {
|
|
return nil, Error.New("no rate for currency %s", curr2)
|
|
}
|
|
|
|
return new(big.Float).Quo(&info1.RateBTC, &info2.RateBTC), nil
|
|
}
|
|
|
|
// PrepareInvoiceProjectRecords iterates through all projects and creates invoice records if
|
|
// none exists.
|
|
func (service *Service) PrepareInvoiceProjectRecords(ctx context.Context, period time.Time) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
now := time.Now().UTC()
|
|
utc := period.UTC()
|
|
|
|
start := time.Date(utc.Year(), utc.Month(), 1, 0, 0, 0, 0, time.UTC)
|
|
end := time.Date(utc.Year(), utc.Month()+1, 0, 0, 0, 0, 0, time.UTC)
|
|
|
|
if end.After(now) {
|
|
return Error.New("prepare is for past periods only")
|
|
}
|
|
|
|
projsPage, err := service.projectsDB.List(ctx, 0, fetchLimit, end)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.createProjectRecords(ctx, projsPage.Projects, start, end); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
for projsPage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
projsPage, err = service.projectsDB.List(ctx, projsPage.NextOffset, fetchLimit, end)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.createProjectRecords(ctx, projsPage.Projects, start, end); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// createProjectRecords creates invoice project record if none exists.
|
|
func (service *Service) createProjectRecords(ctx context.Context, projects []console.Project, start, end time.Time) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
var records []CreateProjectRecord
|
|
var usages []CouponUsage
|
|
var creditsSpendings []CreditsSpending
|
|
for _, project := range projects {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = service.db.ProjectRecords().Check(ctx, project.ID, start, end); err != nil {
|
|
if err == ErrProjectRecordExists {
|
|
continue
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
usage, err := service.usageDB.GetProjectTotal(ctx, project.ID, start, end)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// TODO: account for usage data.
|
|
records = append(records,
|
|
CreateProjectRecord{
|
|
ProjectID: project.ID,
|
|
Storage: usage.Storage,
|
|
Egress: usage.Egress,
|
|
Objects: usage.ObjectCount,
|
|
},
|
|
)
|
|
|
|
coupons, err := service.db.Coupons().ListByProjectID(ctx, project.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
leftToCharge := service.calculateProjectUsagePrice(usage.Egress, usage.Storage, usage.ObjectCount).TotalInt64()
|
|
if leftToCharge == 0 {
|
|
continue
|
|
}
|
|
|
|
// If there is a Stripe coupon applied for the project owner, apply its
|
|
// discount first before applying other credits of this user. This
|
|
// avoids the issue with negative totals in invoices.
|
|
leftToCharge, err = service.discountedProjectUsagePrice(ctx, project, leftToCharge)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if leftToCharge == 0 {
|
|
continue
|
|
}
|
|
|
|
// Apply any promotional credits (a.k.a. coupons) on the remainder.
|
|
// TODO: if multiple coupons are available apply them in order of expiration.
|
|
for _, coupon := range coupons {
|
|
if coupon.IsExpired() {
|
|
if err = service.db.Coupons().Update(ctx, coupon.ID, payments.CouponExpired); err != nil {
|
|
return err
|
|
}
|
|
continue
|
|
}
|
|
|
|
alreadyChargedAmount, err := service.db.Coupons().TotalUsage(ctx, coupon.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
remaining := coupon.Amount - alreadyChargedAmount
|
|
|
|
amountToChargeFromCoupon := leftToCharge
|
|
if amountToChargeFromCoupon >= remaining {
|
|
amountToChargeFromCoupon = remaining
|
|
}
|
|
|
|
if amountToChargeFromCoupon > 0 {
|
|
usages = append(usages, CouponUsage{
|
|
Period: start,
|
|
Amount: amountToChargeFromCoupon,
|
|
Status: CouponUsageStatusUnapplied,
|
|
CouponID: coupon.ID,
|
|
})
|
|
|
|
leftToCharge -= amountToChargeFromCoupon
|
|
if leftToCharge == 0 {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if leftToCharge == 0 {
|
|
continue
|
|
}
|
|
|
|
// Last, apply any credits from STORJ deposit bonuses on the remainder.
|
|
userBonuses, err := service.db.Credits().Balance(ctx, project.OwnerID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if userBonuses > 0 {
|
|
amountChargedFromBonuses := leftToCharge
|
|
if amountChargedFromBonuses >= userBonuses {
|
|
amountChargedFromBonuses = userBonuses
|
|
}
|
|
|
|
creditSpendingID, err := uuid.New()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if amountChargedFromBonuses > 0 {
|
|
creditsSpendings = append(creditsSpendings, CreditsSpending{
|
|
ID: creditSpendingID,
|
|
Amount: amountChargedFromBonuses,
|
|
UserID: project.OwnerID,
|
|
ProjectID: project.ID,
|
|
Status: CreditsSpendingStatusUnapplied,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
return service.db.ProjectRecords().Create(ctx, records, usages, creditsSpendings, start, end)
|
|
}
|
|
|
|
// InvoiceApplyProjectRecords iterates through unapplied invoice project records and creates invoice line items
|
|
// for stripe customer.
|
|
func (service *Service) InvoiceApplyProjectRecords(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
before := time.Now().UTC()
|
|
|
|
recordsPage, err := service.db.ProjectRecords().ListUnapplied(ctx, 0, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.applyProjectRecords(ctx, recordsPage.Records); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
for recordsPage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
recordsPage, err = service.db.ProjectRecords().ListUnapplied(ctx, recordsPage.NextOffset, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.applyProjectRecords(ctx, recordsPage.Records); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// applyProjectRecords applies invoice intents as invoice line items to stripe customer.
|
|
func (service *Service) applyProjectRecords(ctx context.Context, records []ProjectRecord) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
for _, record := range records {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
proj, err := service.projectsDB.Get(ctx, record.ProjectID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cusID, err := service.db.Customers().GetCustomerID(ctx, proj.OwnerID)
|
|
if err != nil {
|
|
if err == ErrNoCustomer {
|
|
continue
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
if err = service.createInvoiceItems(ctx, cusID, proj.Name, record); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// createInvoiceItems consumes invoice project record and creates invoice line items for stripe customer.
|
|
func (service *Service) createInvoiceItems(ctx context.Context, cusID, projName string, record ProjectRecord) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
if err = service.db.ProjectRecords().Consume(ctx, record.ID); err != nil {
|
|
return err
|
|
}
|
|
|
|
projectPrice := service.calculateProjectUsagePrice(record.Egress, record.Storage, record.Objects)
|
|
|
|
projectItem := &stripe.InvoiceItemParams{
|
|
Currency: stripe.String(string(stripe.CurrencyUSD)),
|
|
Customer: stripe.String(cusID),
|
|
Period: &stripe.InvoiceItemPeriodParams{
|
|
Start: stripe.Int64(record.PeriodStart.Unix()),
|
|
End: stripe.Int64(record.PeriodEnd.Unix()),
|
|
},
|
|
}
|
|
projectItem.AddMetadata("projectID", record.ProjectID.String())
|
|
|
|
projectItem.Description = stripe.String(fmt.Sprintf("Project %s - Storage", projName))
|
|
projectItem.Amount = stripe.Int64(projectPrice.Storage.IntPart())
|
|
_, err = service.stripeClient.InvoiceItems.New(projectItem)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
projectItem.Description = stripe.String(fmt.Sprintf("Project %s - Egress Bandwidth", projName))
|
|
projectItem.Amount = stripe.Int64(projectPrice.Egress.IntPart())
|
|
_, err = service.stripeClient.InvoiceItems.New(projectItem)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
projectItem.Description = stripe.String(fmt.Sprintf("Project %s - Object Fee", projName))
|
|
projectItem.Amount = stripe.Int64(projectPrice.Objects.IntPart())
|
|
_, err = service.stripeClient.InvoiceItems.New(projectItem)
|
|
return err
|
|
}
|
|
|
|
// InvoiceApplyCoupons iterates through unapplied project coupons and creates invoice line items
|
|
// for stripe customer.
|
|
func (service *Service) InvoiceApplyCoupons(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
before := time.Now().UTC()
|
|
|
|
usagePage, err := service.db.Coupons().ListUnapplied(ctx, 0, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.applyCoupons(ctx, usagePage.Usages); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
for usagePage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
usagePage, err = service.db.Coupons().ListUnapplied(ctx, usagePage.NextOffset, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.applyCoupons(ctx, usagePage.Usages); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// applyCoupons applies concrete coupon usage as invoice line item.
|
|
func (service *Service) applyCoupons(ctx context.Context, usages []CouponUsage) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
for _, usage := range usages {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
coupon, err := service.db.Coupons().Get(ctx, usage.CouponID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
customerID, err := service.db.Customers().GetCustomerID(ctx, coupon.UserID)
|
|
if err != nil {
|
|
if err == ErrNoCustomer {
|
|
continue
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
if err = service.createInvoiceCouponItems(ctx, coupon, usage, customerID); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// createInvoiceCouponItems consumes invoice project record and creates invoice line items for stripe customer.
|
|
func (service *Service) createInvoiceCouponItems(ctx context.Context, coupon payments.Coupon, usage CouponUsage, customerID string) (err error) {
|
|
defer mon.Task()(&ctx, customerID, coupon)(&err)
|
|
|
|
err = service.db.Coupons().ApplyUsage(ctx, usage.CouponID, usage.Period)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
totalUsage, err := service.db.Coupons().TotalUsage(ctx, coupon.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if totalUsage == coupon.Amount {
|
|
err = service.db.Coupons().Update(ctx, coupon.ID, payments.CouponUsed)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
projectItem := &stripe.InvoiceItemParams{
|
|
Amount: stripe.Int64(-usage.Amount),
|
|
Currency: stripe.String(string(stripe.CurrencyUSD)),
|
|
Customer: stripe.String(customerID),
|
|
Description: stripe.String(coupon.Description),
|
|
Period: &stripe.InvoiceItemPeriodParams{
|
|
End: stripe.Int64(usage.Period.AddDate(0, 1, 0).Unix()),
|
|
Start: stripe.Int64(usage.Period.Unix()),
|
|
},
|
|
}
|
|
|
|
projectItem.AddMetadata("projectID", coupon.ProjectID.String())
|
|
projectItem.AddMetadata("couponID", coupon.ID.String())
|
|
|
|
_, err = service.stripeClient.InvoiceItems.New(projectItem)
|
|
|
|
return err
|
|
}
|
|
|
|
// InvoiceApplyCredits iterates through credits with status false of project and creates invoice line items
|
|
// for stripe customer.
|
|
func (service *Service) InvoiceApplyCredits(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
before := time.Now().UTC()
|
|
|
|
spendingsPage, err := service.db.Credits().ListCreditsSpendingsPaged(ctx, int(CreditsSpendingStatusUnapplied), 0, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.applySpendings(ctx, spendingsPage.Spendings); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
for spendingsPage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
spendingsPage, err = service.db.Credits().ListCreditsSpendingsPaged(ctx, int(CreditsSpendingStatusUnapplied), spendingsPage.NextOffset, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.applySpendings(ctx, spendingsPage.Spendings); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// applyCredits applies concrete spending as invoice line item.
|
|
func (service *Service) applySpendings(ctx context.Context, spendings []CreditsSpending) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
for _, spending := range spendings {
|
|
if err = ctx.Err(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = service.createInvoiceCreditItem(ctx, spending); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// createInvoiceCreditItem consumes invoice project record and creates invoice line items for stripe customer.
|
|
func (service *Service) createInvoiceCreditItem(ctx context.Context, spending CreditsSpending) (err error) {
|
|
defer mon.Task()(&ctx, spending)(&err)
|
|
|
|
err = service.db.Credits().ApplyCreditsSpending(ctx, spending.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
customerID, err := service.db.Customers().GetCustomerID(ctx, spending.UserID)
|
|
|
|
projectItem := &stripe.InvoiceItemParams{
|
|
Amount: stripe.Int64(-spending.Amount),
|
|
Currency: stripe.String(string(stripe.CurrencyUSD)),
|
|
Customer: stripe.String(customerID),
|
|
Description: stripe.String("Credits from STORJ deposit bonus"),
|
|
Period: &stripe.InvoiceItemPeriodParams{
|
|
End: stripe.Int64(spending.Created.AddDate(0, 1, 0).Unix()),
|
|
Start: stripe.Int64(spending.Created.Unix()),
|
|
},
|
|
}
|
|
|
|
projectItem.AddMetadata("projectID", spending.ProjectID.String())
|
|
projectItem.AddMetadata("userID", spending.UserID.String())
|
|
|
|
_, err = service.stripeClient.InvoiceItems.New(projectItem)
|
|
|
|
return err
|
|
}
|
|
|
|
// CreateInvoices lists through all customers and creates invoices.
|
|
func (service *Service) CreateInvoices(ctx context.Context) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
before := time.Now()
|
|
|
|
cusPage, err := service.db.Customers().List(ctx, 0, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
for _, cus := range cusPage.Customers {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.createInvoice(ctx, cus.ID); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
}
|
|
|
|
for cusPage.Next {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
cusPage, err = service.db.Customers().List(ctx, cusPage.NextOffset, fetchLimit, before)
|
|
if err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
for _, cus := range cusPage.Customers {
|
|
if err = ctx.Err(); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
if err = service.createInvoice(ctx, cus.ID); err != nil {
|
|
return Error.Wrap(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// createInvoice creates invoice for stripe customer. Returns nil error if there are no
|
|
// pending invoice line items for customer.
|
|
func (service *Service) createInvoice(ctx context.Context, cusID string) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
/*var description string
|
|
// get the first invoice item's period
|
|
params := &stripe.InvoiceItemListParams{Customer: stripe.String(cusID)}
|
|
params.Filters.AddFilter("limit", "", "1")
|
|
iter := service.stripeClient.InvoiceItems.List(params)
|
|
for iter.Next() {
|
|
//Add 12 hours to ensure we are in the correct billing month
|
|
start := time.Unix(iter.InvoiceItem().Period.Start+43200, 0)
|
|
year, month, _ := start.Date()
|
|
description = fmt.Sprintf("Billing Period %s %d", month, year)
|
|
}
|
|
if iter.Err() != nil {
|
|
return Error.Wrap(iter.Err())
|
|
}*/
|
|
description := "Tardigrade Cloud Storage"
|
|
|
|
_, err = service.stripeClient.Invoices.New(
|
|
&stripe.InvoiceParams{
|
|
Customer: stripe.String(cusID),
|
|
AutoAdvance: stripe.Bool(service.AutoAdvance),
|
|
Description: stripe.String(description),
|
|
},
|
|
)
|
|
|
|
if err != nil {
|
|
if stripeErr, ok := err.(*stripe.Error); ok {
|
|
switch stripeErr.Code {
|
|
case stripe.ErrorCodeInvoiceNoCustomerLineItems:
|
|
return nil
|
|
default:
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// projectUsagePrice represents pricing for project usage.
|
|
type projectUsagePrice struct {
|
|
Storage decimal.Decimal
|
|
Egress decimal.Decimal
|
|
Objects decimal.Decimal
|
|
}
|
|
|
|
// Total returns project usage price total.
|
|
func (price projectUsagePrice) Total() decimal.Decimal {
|
|
return price.Storage.Add(price.Egress).Add(price.Objects)
|
|
}
|
|
|
|
// Total returns project usage price total.
|
|
func (price projectUsagePrice) TotalInt64() int64 {
|
|
return price.Storage.Add(price.Egress).Add(price.Objects).IntPart()
|
|
}
|
|
|
|
// calculateProjectUsagePrice calculate project usage price.
|
|
func (service *Service) calculateProjectUsagePrice(egress int64, storage, objects float64) projectUsagePrice {
|
|
return projectUsagePrice{
|
|
Storage: service.ByteHourCents.Mul(decimal.NewFromFloat(storage)),
|
|
Egress: service.EgressByteCents.Mul(decimal.New(egress, 0)),
|
|
Objects: service.ObjectHourCents.Mul(decimal.NewFromFloat(objects)),
|
|
}
|
|
}
|
|
|
|
// discountedProjectUsagePrice reduces the project usage price with the discount applied for the Stripe customer.
|
|
// The promotional coupons and bonus credits are not applied yet.
|
|
func (service *Service) discountedProjectUsagePrice(ctx context.Context, project console.Project, projectUsagePrice int64) (int64, error) {
|
|
customerID, err := service.db.Customers().GetCustomerID(ctx, project.OwnerID)
|
|
if err != nil {
|
|
return 0, Error.Wrap(err)
|
|
}
|
|
|
|
customer, err := service.stripeClient.Customers.Get(customerID, nil)
|
|
if err != nil {
|
|
return 0, Error.Wrap(err)
|
|
}
|
|
|
|
if customer.Discount == nil {
|
|
return projectUsagePrice, nil
|
|
}
|
|
|
|
coupon := customer.Discount.Coupon
|
|
|
|
if coupon == nil {
|
|
return projectUsagePrice, nil
|
|
}
|
|
|
|
if !coupon.Valid {
|
|
return projectUsagePrice, nil
|
|
}
|
|
|
|
if coupon.AmountOff > 0 {
|
|
discounted := projectUsagePrice - coupon.AmountOff
|
|
if discounted < 0 {
|
|
return 0, nil
|
|
}
|
|
return discounted, nil
|
|
}
|
|
|
|
if coupon.PercentOff > 0 {
|
|
discount := int64(math.Round(float64(projectUsagePrice) * coupon.PercentOff / 100))
|
|
return projectUsagePrice - discount, nil
|
|
}
|
|
|
|
return projectUsagePrice, nil
|
|
}
|