6778caf846
* setup referral route * referredBy * add user id * modify user query * separate optional field from userInfo * get current reward on init of satellite gui * remove unsed code * fix format * only apply 0 credit on registration * only pass required information for rewards * fix time parsing * fix test and linter * rename method * add todo * remove user referral logic * add null check and fix format * get current offer * remove partnerID on CreateUser struct * fix storj-sim user creation * only redeem credit when there's an offer * fix default offer configuration * fix migration * Add helper function for get correct credit duration * add comment * only store userid into user_credit table * add check for partner id to set correct offer type * change free credit to use invitee credits * remove unecessary code
184 lines
5.8 KiB
Go
184 lines
5.8 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package satellitedb
|
|
|
|
import (
|
|
"context"
|
|
"database/sql"
|
|
"time"
|
|
|
|
"github.com/lib/pq"
|
|
"github.com/mattn/go-sqlite3"
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
|
"github.com/zeebo/errs"
|
|
|
|
"storj.io/storj/internal/currency"
|
|
"storj.io/storj/satellite/console"
|
|
"storj.io/storj/satellite/rewards"
|
|
dbx "storj.io/storj/satellite/satellitedb/dbx"
|
|
)
|
|
|
|
type usercredits struct {
|
|
db *dbx.DB
|
|
}
|
|
|
|
// GetCreditUsage returns the total amount of referral a user has made based on user id, total available credits, and total used credits based on user id
|
|
func (c *usercredits) GetCreditUsage(ctx context.Context, userID uuid.UUID, expirationEndDate time.Time) (*console.UserCreditUsage, error) {
|
|
usageRows, err := c.db.DB.QueryContext(ctx, c.db.Rebind(`SELECT a.used_credit, b.available_credit, c.referred
|
|
FROM (SELECT SUM(credits_used_in_cents) AS used_credit FROM user_credits WHERE user_id = ?) AS a,
|
|
(SELECT SUM(credits_earned_in_cents - credits_used_in_cents) AS available_credit FROM user_credits WHERE expires_at > ? AND user_id = ?) AS b,
|
|
(SELECT count(id) AS referred FROM user_credits WHERE user_credits.referred_by = ?) AS c;`), userID[:], expirationEndDate, userID[:], userID[:])
|
|
if err != nil {
|
|
return nil, errs.Wrap(err)
|
|
}
|
|
|
|
usage := console.UserCreditUsage{}
|
|
|
|
for usageRows.Next() {
|
|
|
|
var (
|
|
usedCreditInCents sql.NullInt64
|
|
availableCreditInCents sql.NullInt64
|
|
referred sql.NullInt64
|
|
)
|
|
err = usageRows.Scan(&usedCreditInCents, &availableCreditInCents, &referred)
|
|
if err != nil {
|
|
return nil, errs.Wrap(err)
|
|
}
|
|
|
|
usage.Referred += referred.Int64
|
|
usage.UsedCredits = usage.UsedCredits.Add(currency.Cents(int(usedCreditInCents.Int64)))
|
|
usage.AvailableCredits = usage.AvailableCredits.Add(currency.Cents(int(availableCreditInCents.Int64)))
|
|
}
|
|
|
|
return &usage, nil
|
|
}
|
|
|
|
// Create insert a new record of user credit
|
|
func (c *usercredits) Create(ctx context.Context, userCredit console.UserCredit) error {
|
|
var statement string
|
|
|
|
if userCredit.ExpiresAt.Before(time.Now().UTC()) {
|
|
return errs.New("user credit is already expired")
|
|
}
|
|
|
|
switch t := c.db.Driver().(type) {
|
|
case *sqlite3.SQLiteDriver:
|
|
statement = `
|
|
INSERT INTO user_credits (user_id, offer_id, credits_earned_in_cents, credits_used_in_cents, expires_at, referred_by, created_at)
|
|
SELECT * FROM (VALUES (?, ?, ?, 0, ?, ?, time('now'))) AS v
|
|
WHERE COALESCE((SELECT COUNT(offer_id) FROM user_credits WHERE offer_id = ? ) < (SELECT redeemable_cap FROM offers WHERE id = ?), TRUE);
|
|
`
|
|
case *pq.Driver:
|
|
statement = `
|
|
INSERT INTO user_credits (user_id, offer_id, credits_earned_in_cents, credits_used_in_cents, expires_at, referred_by, created_at)
|
|
SELECT * FROM (VALUES (?::bytea, ?::int, ?::int, 0, ?::timestamp, NULLIF(?::bytea, ?::bytea), now())) AS v
|
|
WHERE COALESCE((SELECT COUNT(offer_id) FROM user_credits WHERE offer_id = ? ) < (SELECT redeemable_cap FROM offers WHERE id = ?), TRUE);
|
|
`
|
|
default:
|
|
return errs.New("Unsupported database %t", t)
|
|
}
|
|
|
|
var referrerID []byte
|
|
if userCredit.ReferredBy != nil {
|
|
referrerID = userCredit.ReferredBy[:]
|
|
}
|
|
|
|
result, err := c.db.DB.ExecContext(ctx, c.db.Rebind(statement), userCredit.UserID[:], userCredit.OfferID, userCredit.CreditsEarned.Cents(), userCredit.ExpiresAt, referrerID, new([]byte), userCredit.OfferID, userCredit.OfferID)
|
|
if err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
|
|
rows, err := result.RowsAffected()
|
|
if err != nil {
|
|
return errs.Wrap(err)
|
|
}
|
|
|
|
if rows != 1 {
|
|
return errs.New(rewards.MaxRedemptionErr)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// UpdateAvailableCredits updates user's available credits based on their spending and the time of their spending
|
|
func (c *usercredits) UpdateAvailableCredits(ctx context.Context, creditsToCharge int, id uuid.UUID, expirationEndDate time.Time) (remainingCharge int, err error) {
|
|
tx, err := c.db.Open(ctx)
|
|
if err != nil {
|
|
return creditsToCharge, errs.Wrap(err)
|
|
}
|
|
|
|
availableCredits, err := tx.All_UserCredit_By_UserId_And_ExpiresAt_Greater_And_CreditsUsedInCents_Less_CreditsEarnedInCents_OrderBy_Asc_ExpiresAt(ctx,
|
|
dbx.UserCredit_UserId(id[:]),
|
|
dbx.UserCredit_ExpiresAt(expirationEndDate),
|
|
)
|
|
if err != nil {
|
|
return creditsToCharge, errs.Wrap(errs.Combine(err, tx.Rollback()))
|
|
}
|
|
if len(availableCredits) == 0 {
|
|
return creditsToCharge, errs.Combine(errs.New("No available credits"), tx.Commit())
|
|
}
|
|
|
|
values := make([]interface{}, len(availableCredits)*2)
|
|
rowIds := make([]interface{}, len(availableCredits))
|
|
|
|
remainingCharge = creditsToCharge
|
|
for i, credit := range availableCredits {
|
|
if remainingCharge == 0 {
|
|
break
|
|
}
|
|
|
|
creditsForUpdateInCents := credit.CreditsEarnedInCents - credit.CreditsUsedInCents
|
|
|
|
if remainingCharge < creditsForUpdateInCents {
|
|
creditsForUpdateInCents = remainingCharge
|
|
}
|
|
|
|
values[i%2] = credit.Id
|
|
values[(i%2 + 1)] = creditsForUpdateInCents
|
|
rowIds[i] = credit.Id
|
|
|
|
remainingCharge -= creditsForUpdateInCents
|
|
}
|
|
|
|
values = append(values, rowIds...)
|
|
|
|
var statement string
|
|
switch t := c.db.Driver().(type) {
|
|
case *sqlite3.SQLiteDriver:
|
|
statement = generateQuery(len(availableCredits), false)
|
|
case *pq.Driver:
|
|
statement = generateQuery(len(availableCredits), true)
|
|
default:
|
|
return creditsToCharge, errs.New("Unsupported database %t", t)
|
|
}
|
|
|
|
_, err = tx.Tx.ExecContext(ctx, c.db.Rebind(`UPDATE user_credits SET
|
|
credits_used_in_cents = CASE `+statement), values...)
|
|
if err != nil {
|
|
return creditsToCharge, errs.Wrap(errs.Combine(err, tx.Rollback()))
|
|
}
|
|
return remainingCharge, errs.Wrap(tx.Commit())
|
|
}
|
|
|
|
func generateQuery(totalRows int, toInt bool) (query string) {
|
|
whereClause := `WHERE id IN (`
|
|
condition := `WHEN id=? THEN ? `
|
|
if toInt {
|
|
condition = `WHEN id=? THEN ?::int `
|
|
}
|
|
|
|
for i := 0; i < totalRows; i++ {
|
|
query += condition
|
|
|
|
if i == totalRows-1 {
|
|
query += ` END ` + whereClause + ` ?);`
|
|
break
|
|
}
|
|
whereClause += `?, `
|
|
}
|
|
|
|
return query
|
|
}
|