satellite/satellitedb: get active offer for partners (#2664)
* get partner offer * fix lint * fix deleting user account * fix sqlite query * add comments * fix migration * fix query_test * add error logs * add tests for user credits
This commit is contained in:
parent
b74d4198f0
commit
51833d0650
@ -129,6 +129,6 @@ func QuerySchema(db dbschema.Queryer) (*dbschema.Schema, error) {
|
||||
var rxPostgresForeignKey = regexp.MustCompile(
|
||||
`^FOREIGN KEY \([[:word:]]+\) ` +
|
||||
`REFERENCES ([[:word:]]+)\(([[:word:]]+)\)` +
|
||||
`(?:\s*ON UPDATE ([[:word:]]+))?` +
|
||||
`(?:\s*ON DELETE ([[:word:]]+))?$`,
|
||||
`(?:\s*ON UPDATE (CASCADE|RESTRICT|SET NULL|SET DEFAULT|NO ACTION))?` +
|
||||
`(?:\s*ON DELETE (CASCADE|RESTRICT|SET NULL|SET DEFAULT|NO ACTION))?$`,
|
||||
)
|
||||
|
@ -16,6 +16,7 @@ import (
|
||||
"github.com/stretchr/testify/require"
|
||||
"go.uber.org/zap/zaptest"
|
||||
|
||||
"storj.io/storj/internal/currency"
|
||||
"storj.io/storj/internal/post"
|
||||
"storj.io/storj/internal/testcontext"
|
||||
"storj.io/storj/pkg/auth"
|
||||
@ -25,6 +26,7 @@ import (
|
||||
"storj.io/storj/satellite/console/consoleweb/consoleql"
|
||||
"storj.io/storj/satellite/mailservice"
|
||||
"storj.io/storj/satellite/payments/localpayments"
|
||||
"storj.io/storj/satellite/rewards"
|
||||
"storj.io/storj/satellite/satellitedb/satellitedbtest"
|
||||
)
|
||||
|
||||
@ -75,12 +77,26 @@ func TestGrapqhlMutation(t *testing.T) {
|
||||
FullName: "John Roll",
|
||||
ShortName: "Roll",
|
||||
Email: "test@mail.test",
|
||||
PartnerID: "310bc643-684f-44b7-ac9f-3380373b45a1",
|
||||
PartnerID: "e1b3e8a6-b9a2-4fd0-bb87-3ae87828264c",
|
||||
},
|
||||
Password: "123a123",
|
||||
}
|
||||
refUserID := ""
|
||||
|
||||
_, err = db.Rewards().Create(ctx, &rewards.NewOffer{
|
||||
Name: "Couchbase",
|
||||
Description: "",
|
||||
AwardCredit: currency.Cents(0),
|
||||
InviteeCredit: currency.Cents(20),
|
||||
RedeemableCap: 0,
|
||||
AwardCreditDurationDays: 0,
|
||||
InviteeCreditDurationDays: 14,
|
||||
ExpiresAt: time.Now().UTC().Add(time.Hour * 1),
|
||||
Status: rewards.Active,
|
||||
Type: rewards.Partner,
|
||||
})
|
||||
require.NoError(t, err)
|
||||
|
||||
regToken, err := service.CreateRegToken(ctx, 1)
|
||||
require.NoError(t, err)
|
||||
|
||||
@ -117,7 +133,7 @@ func TestGrapqhlMutation(t *testing.T) {
|
||||
require.NoError(t, err)
|
||||
|
||||
query := fmt.Sprintf(
|
||||
"mutation {createUser(input:{email:\"%s\",password:\"%s\", fullName:\"%s\", shortName:\"%s\", partnerId:\"%s\"}, secret: \"%s\"){id,shortName,fullName,email,partnerId,createdAt}}",
|
||||
"mutation {createUser(input:{email:\"%s\",password:\"%s\", fullName:\"%s\", shortName:\"%s\", partnerId:\"%s\"}, secret: \"%s\", referrerUserId: \"\"){id,shortName,fullName,email,partnerId,createdAt}}",
|
||||
newUser.Email,
|
||||
newUser.Password,
|
||||
newUser.FullName,
|
||||
@ -134,6 +150,9 @@ func TestGrapqhlMutation(t *testing.T) {
|
||||
})
|
||||
|
||||
for _, err := range result.Errors {
|
||||
if rewards.NoMatchPartnerIDErr.Has(err) {
|
||||
assert.Error(t, err)
|
||||
}
|
||||
assert.NoError(t, err)
|
||||
}
|
||||
require.False(t, result.HasErrors())
|
||||
|
@ -125,11 +125,19 @@ func (s *Service) CreateUser(ctx context.Context, user CreateUser, tokenSecret R
|
||||
}
|
||||
if user.PartnerID != "" {
|
||||
offerType = rewards.Partner
|
||||
} else if refUserID != "" {
|
||||
offerType = rewards.Referral
|
||||
}
|
||||
|
||||
//TODO: Create a current offer cache to replace database call
|
||||
currentReward, err := s.rewards.GetCurrentByType(ctx, offerType)
|
||||
offers, err := s.rewards.GetActiveOffersByType(ctx, offerType)
|
||||
if err != nil && !rewards.NoCurrentOfferErr.Has(err) {
|
||||
s.log.Error("internal error", zap.Error(err))
|
||||
return nil, errs.New(internalErrMsg)
|
||||
}
|
||||
currentReward, err := offers.GetActiveOffer(offerType, user.PartnerID)
|
||||
if err != nil && !rewards.NoCurrentOfferErr.Has(err) {
|
||||
s.log.Error("internal error", zap.Error(err))
|
||||
return nil, errs.New(internalErrMsg)
|
||||
}
|
||||
|
||||
@ -657,15 +665,15 @@ func (s *Service) GetUsersProjects(ctx context.Context) (ps []Project, err error
|
||||
}
|
||||
|
||||
// GetCurrentRewardByType is a method for querying current active reward offer based on its type
|
||||
func (s *Service) GetCurrentRewardByType(ctx context.Context, offerType rewards.OfferType) (reward *rewards.Offer, err error) {
|
||||
func (s *Service) GetCurrentRewardByType(ctx context.Context, offerType rewards.OfferType) (offer *rewards.Offer, err error) {
|
||||
defer mon.Task()(&ctx)(&err)
|
||||
|
||||
reward, err = s.rewards.GetCurrentByType(ctx, offerType)
|
||||
offers, err := s.rewards.GetActiveOffersByType(ctx, offerType)
|
||||
if err != nil {
|
||||
s.log.Error("internal error", zap.Error(err))
|
||||
return nil, errs.New(internalErrMsg)
|
||||
}
|
||||
|
||||
return reward, nil
|
||||
return offers.GetActiveOffer(offerType, "")
|
||||
}
|
||||
|
||||
// GetUserCreditUsage is a method for querying users' credit information up until now
|
||||
|
@ -24,12 +24,23 @@ type UserCredits interface {
|
||||
UpdateAvailableCredits(ctx context.Context, creditsToCharge int, id uuid.UUID, billingStartDate time.Time) (remainingCharge int, err error)
|
||||
}
|
||||
|
||||
// CreditType indicates a type of a credit
|
||||
type CreditType string
|
||||
|
||||
const (
|
||||
// Invitee is a type of credits earned by invitee
|
||||
Invitee CreditType = "invitee"
|
||||
// Referrer is a type of credits earned by referrer
|
||||
Referrer CreditType = "referrer"
|
||||
)
|
||||
|
||||
// UserCredit holds information about an user's credit
|
||||
type UserCredit struct {
|
||||
ID int
|
||||
UserID uuid.UUID
|
||||
OfferID int
|
||||
ReferredBy *uuid.UUID
|
||||
Type CreditType
|
||||
CreditsEarned currency.USD
|
||||
CreditsUsed currency.USD
|
||||
ExpiresAt time.Time
|
||||
|
@ -11,6 +11,11 @@ import (
|
||||
"github.com/zeebo/errs"
|
||||
)
|
||||
|
||||
var (
|
||||
// NoMatchPartnerIDErr is the error class used when an offer has reached its redemption capacity
|
||||
NoMatchPartnerIDErr = errs.Class("partner not exist")
|
||||
)
|
||||
|
||||
// PartnerInfo contains the name and ID of an Open Source Partner
|
||||
type PartnerInfo struct {
|
||||
ID, Name string
|
||||
@ -22,7 +27,7 @@ type Partners map[string]PartnerInfo
|
||||
// LoadPartnerInfos returns our current Open Source Partners.
|
||||
func LoadPartnerInfos() Partners {
|
||||
return Partners{
|
||||
"OSPP001": PartnerInfo{
|
||||
"e1b3e8a6-b9a2-4fd0-bb87-3ae87828264c": PartnerInfo{
|
||||
Name: "Couchbase",
|
||||
ID: "OSPP001",
|
||||
},
|
||||
|
@ -22,7 +22,7 @@ var (
|
||||
// DB holds information about offer
|
||||
type DB interface {
|
||||
ListAll(ctx context.Context) (Offers, error)
|
||||
GetCurrentByType(ctx context.Context, offerType OfferType) (*Offer, error)
|
||||
GetActiveOffersByType(ctx context.Context, offerType OfferType) (Offers, error)
|
||||
Create(ctx context.Context, offer *NewOffer) (*Offer, error)
|
||||
Finish(ctx context.Context, offerID int) error
|
||||
}
|
||||
@ -108,5 +108,34 @@ func (o Offer) IsEmpty() bool {
|
||||
return o.Name == ""
|
||||
}
|
||||
|
||||
// GetActiveOffer returns an offer that is active based on its type
|
||||
func (offers Offers) GetActiveOffer(offerType OfferType, partnerID string) (offer *Offer, err error) {
|
||||
if len(offers) < 1 {
|
||||
return nil, NoCurrentOfferErr.New("no active offers")
|
||||
}
|
||||
switch offerType {
|
||||
case Partner:
|
||||
if partnerID == "" {
|
||||
return nil, errs.New("partner ID is empty")
|
||||
}
|
||||
partnerInfo, ok := LoadPartnerInfos()[partnerID]
|
||||
if !ok {
|
||||
return nil, NoMatchPartnerIDErr.New("no partnerInfo found")
|
||||
}
|
||||
for i := range offers {
|
||||
if offers[i].Name == partnerInfo.Name {
|
||||
offer = &offers[i]
|
||||
}
|
||||
}
|
||||
default:
|
||||
if len(offers) > 1 {
|
||||
return nil, errs.New("multiple active offers found")
|
||||
}
|
||||
offer = &offers[0]
|
||||
}
|
||||
|
||||
return offer, nil
|
||||
}
|
||||
|
||||
// Offers contains a slice of offers.
|
||||
type Offers []Offer
|
||||
|
@ -46,8 +46,8 @@ func TestOffer_Database(t *testing.T) {
|
||||
Type: rewards.FreeCredit,
|
||||
},
|
||||
{
|
||||
Name: "partner",
|
||||
Description: "test offer 2",
|
||||
Name: "Zenko",
|
||||
Description: "partner offer",
|
||||
AwardCredit: currency.Cents(0),
|
||||
InviteeCredit: currency.Cents(50),
|
||||
AwardCreditDurationDays: 0,
|
||||
@ -67,7 +67,14 @@ func TestOffer_Database(t *testing.T) {
|
||||
require.NoError(t, err)
|
||||
require.Contains(t, all, *new)
|
||||
|
||||
c, err := planet.Satellites[0].DB.Rewards().GetCurrentByType(ctx, new.Type)
|
||||
offers, err := planet.Satellites[0].DB.Rewards().GetActiveOffersByType(ctx, new.Type)
|
||||
require.NoError(t, err)
|
||||
var pID string
|
||||
if new.Type == rewards.Partner {
|
||||
pID, err = rewards.GetPartnerID(new.Name)
|
||||
require.NoError(t, err)
|
||||
}
|
||||
c, err := offers.GetActiveOffer(new.Type, pID)
|
||||
require.NoError(t, err)
|
||||
require.Equal(t, new, c)
|
||||
|
||||
|
@ -732,9 +732,10 @@ model user_credit (
|
||||
|
||||
field id serial
|
||||
|
||||
field user_id user.id restrict
|
||||
field user_id user.id cascade
|
||||
field offer_id offer.id restrict
|
||||
field referred_by user.id restrict ( nullable )
|
||||
field referred_by user.id setnull ( nullable )
|
||||
field type text
|
||||
|
||||
field credits_earned_in_cents int
|
||||
field credits_used_in_cents int ( updatable, autoinsert )
|
||||
|
@ -18,9 +18,8 @@ import (
|
||||
|
||||
"github.com/lib/pq"
|
||||
|
||||
"math/rand"
|
||||
|
||||
"github.com/mattn/go-sqlite3"
|
||||
"math/rand"
|
||||
)
|
||||
|
||||
// Prevent conditional imports from causing build failures
|
||||
@ -524,9 +523,10 @@ CREATE TABLE used_serials (
|
||||
);
|
||||
CREATE TABLE user_credits (
|
||||
id serial NOT NULL,
|
||||
user_id bytea NOT NULL REFERENCES users( id ),
|
||||
user_id bytea NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
offer_id integer NOT NULL REFERENCES offers( id ),
|
||||
referred_by bytea REFERENCES users( id ),
|
||||
referred_by bytea REFERENCES users( id ) ON DELETE SET NULL,
|
||||
type text NOT NULL,
|
||||
credits_earned_in_cents integer NOT NULL,
|
||||
credits_used_in_cents integer NOT NULL,
|
||||
expires_at timestamp with time zone NOT NULL,
|
||||
@ -870,9 +870,10 @@ CREATE TABLE used_serials (
|
||||
);
|
||||
CREATE TABLE user_credits (
|
||||
id INTEGER NOT NULL,
|
||||
user_id BLOB NOT NULL REFERENCES users( id ),
|
||||
user_id BLOB NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
offer_id INTEGER NOT NULL REFERENCES offers( id ),
|
||||
referred_by BLOB REFERENCES users( id ),
|
||||
referred_by BLOB REFERENCES users( id ) ON DELETE SET NULL,
|
||||
type TEXT NOT NULL,
|
||||
credits_earned_in_cents INTEGER NOT NULL,
|
||||
credits_used_in_cents INTEGER NOT NULL,
|
||||
expires_at TIMESTAMP NOT NULL,
|
||||
@ -4854,6 +4855,7 @@ type UserCredit struct {
|
||||
UserId []byte
|
||||
OfferId int
|
||||
ReferredBy []byte
|
||||
Type string
|
||||
CreditsEarnedInCents int
|
||||
CreditsUsedInCents int
|
||||
ExpiresAt time.Time
|
||||
@ -4960,6 +4962,25 @@ func (f UserCredit_ReferredBy_Field) value() interface{} {
|
||||
|
||||
func (UserCredit_ReferredBy_Field) _Column() string { return "referred_by" }
|
||||
|
||||
type UserCredit_Type_Field struct {
|
||||
_set bool
|
||||
_null bool
|
||||
_value string
|
||||
}
|
||||
|
||||
func UserCredit_Type(v string) UserCredit_Type_Field {
|
||||
return UserCredit_Type_Field{_set: true, _value: v}
|
||||
}
|
||||
|
||||
func (f UserCredit_Type_Field) value() interface{} {
|
||||
if !f._set || f._null {
|
||||
return nil
|
||||
}
|
||||
return f._value
|
||||
}
|
||||
|
||||
func (UserCredit_Type_Field) _Column() string { return "type" }
|
||||
|
||||
type UserCredit_CreditsEarnedInCents_Field struct {
|
||||
_set bool
|
||||
_null bool
|
||||
@ -6134,6 +6155,7 @@ func (obj *postgresImpl) Create_Offer(ctx context.Context,
|
||||
func (obj *postgresImpl) Create_UserCredit(ctx context.Context,
|
||||
user_credit_user_id UserCredit_UserId_Field,
|
||||
user_credit_offer_id UserCredit_OfferId_Field,
|
||||
user_credit_type UserCredit_Type_Field,
|
||||
user_credit_credits_earned_in_cents UserCredit_CreditsEarnedInCents_Field,
|
||||
user_credit_expires_at UserCredit_ExpiresAt_Field,
|
||||
optional UserCredit_Create_Fields) (
|
||||
@ -6143,18 +6165,19 @@ func (obj *postgresImpl) Create_UserCredit(ctx context.Context,
|
||||
__user_id_val := user_credit_user_id.value()
|
||||
__offer_id_val := user_credit_offer_id.value()
|
||||
__referred_by_val := optional.ReferredBy.value()
|
||||
__type_val := user_credit_type.value()
|
||||
__credits_earned_in_cents_val := user_credit_credits_earned_in_cents.value()
|
||||
__credits_used_in_cents_val := int(0)
|
||||
__expires_at_val := user_credit_expires_at.value()
|
||||
__created_at_val := __now
|
||||
|
||||
var __embed_stmt = __sqlbundle_Literal("INSERT INTO user_credits ( user_id, offer_id, referred_by, credits_earned_in_cents, credits_used_in_cents, expires_at, created_at ) VALUES ( ?, ?, ?, ?, ?, ?, ? ) RETURNING user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at")
|
||||
var __embed_stmt = __sqlbundle_Literal("INSERT INTO user_credits ( user_id, offer_id, referred_by, type, credits_earned_in_cents, credits_used_in_cents, expires_at, created_at ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? ) RETURNING user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.type, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at")
|
||||
|
||||
var __stmt = __sqlbundle_Render(obj.dialect, __embed_stmt)
|
||||
obj.logStmt(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val)
|
||||
obj.logStmt(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __type_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val)
|
||||
|
||||
user_credit = &UserCredit{}
|
||||
err = obj.driver.QueryRow(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val).Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
err = obj.driver.QueryRow(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __type_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val).Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.Type, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
if err != nil {
|
||||
return nil, obj.makeErr(err)
|
||||
}
|
||||
@ -7621,7 +7644,7 @@ func (obj *postgresImpl) All_UserCredit_By_UserId_And_ExpiresAt_Greater_And_Cred
|
||||
user_credit_expires_at_greater UserCredit_ExpiresAt_Field) (
|
||||
rows []*UserCredit, err error) {
|
||||
|
||||
var __embed_stmt = __sqlbundle_Literal("SELECT user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at FROM user_credits WHERE user_credits.user_id = ? AND user_credits.expires_at > ? AND user_credits.credits_used_in_cents < user_credits.credits_earned_in_cents ORDER BY user_credits.expires_at")
|
||||
var __embed_stmt = __sqlbundle_Literal("SELECT user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.type, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at FROM user_credits WHERE user_credits.user_id = ? AND user_credits.expires_at > ? AND user_credits.credits_used_in_cents < user_credits.credits_earned_in_cents ORDER BY user_credits.expires_at")
|
||||
|
||||
var __values []interface{}
|
||||
__values = append(__values, user_credit_user_id.value(), user_credit_expires_at_greater.value())
|
||||
@ -7637,7 +7660,7 @@ func (obj *postgresImpl) All_UserCredit_By_UserId_And_ExpiresAt_Greater_And_Cred
|
||||
|
||||
for __rows.Next() {
|
||||
user_credit := &UserCredit{}
|
||||
err = __rows.Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
err = __rows.Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.Type, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
if err != nil {
|
||||
return nil, obj.makeErr(err)
|
||||
}
|
||||
@ -9957,6 +9980,7 @@ func (obj *sqlite3Impl) Create_Offer(ctx context.Context,
|
||||
func (obj *sqlite3Impl) Create_UserCredit(ctx context.Context,
|
||||
user_credit_user_id UserCredit_UserId_Field,
|
||||
user_credit_offer_id UserCredit_OfferId_Field,
|
||||
user_credit_type UserCredit_Type_Field,
|
||||
user_credit_credits_earned_in_cents UserCredit_CreditsEarnedInCents_Field,
|
||||
user_credit_expires_at UserCredit_ExpiresAt_Field,
|
||||
optional UserCredit_Create_Fields) (
|
||||
@ -9966,17 +9990,18 @@ func (obj *sqlite3Impl) Create_UserCredit(ctx context.Context,
|
||||
__user_id_val := user_credit_user_id.value()
|
||||
__offer_id_val := user_credit_offer_id.value()
|
||||
__referred_by_val := optional.ReferredBy.value()
|
||||
__type_val := user_credit_type.value()
|
||||
__credits_earned_in_cents_val := user_credit_credits_earned_in_cents.value()
|
||||
__credits_used_in_cents_val := int(0)
|
||||
__expires_at_val := user_credit_expires_at.value()
|
||||
__created_at_val := __now
|
||||
|
||||
var __embed_stmt = __sqlbundle_Literal("INSERT INTO user_credits ( user_id, offer_id, referred_by, credits_earned_in_cents, credits_used_in_cents, expires_at, created_at ) VALUES ( ?, ?, ?, ?, ?, ?, ? )")
|
||||
var __embed_stmt = __sqlbundle_Literal("INSERT INTO user_credits ( user_id, offer_id, referred_by, type, credits_earned_in_cents, credits_used_in_cents, expires_at, created_at ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )")
|
||||
|
||||
var __stmt = __sqlbundle_Render(obj.dialect, __embed_stmt)
|
||||
obj.logStmt(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val)
|
||||
obj.logStmt(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __type_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val)
|
||||
|
||||
__res, err := obj.driver.Exec(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val)
|
||||
__res, err := obj.driver.Exec(__stmt, __user_id_val, __offer_id_val, __referred_by_val, __type_val, __credits_earned_in_cents_val, __credits_used_in_cents_val, __expires_at_val, __created_at_val)
|
||||
if err != nil {
|
||||
return nil, obj.makeErr(err)
|
||||
}
|
||||
@ -11450,7 +11475,7 @@ func (obj *sqlite3Impl) All_UserCredit_By_UserId_And_ExpiresAt_Greater_And_Credi
|
||||
user_credit_expires_at_greater UserCredit_ExpiresAt_Field) (
|
||||
rows []*UserCredit, err error) {
|
||||
|
||||
var __embed_stmt = __sqlbundle_Literal("SELECT user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at FROM user_credits WHERE user_credits.user_id = ? AND user_credits.expires_at > ? AND user_credits.credits_used_in_cents < user_credits.credits_earned_in_cents ORDER BY user_credits.expires_at")
|
||||
var __embed_stmt = __sqlbundle_Literal("SELECT user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.type, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at FROM user_credits WHERE user_credits.user_id = ? AND user_credits.expires_at > ? AND user_credits.credits_used_in_cents < user_credits.credits_earned_in_cents ORDER BY user_credits.expires_at")
|
||||
|
||||
var __values []interface{}
|
||||
__values = append(__values, user_credit_user_id.value(), user_credit_expires_at_greater.value())
|
||||
@ -11466,7 +11491,7 @@ func (obj *sqlite3Impl) All_UserCredit_By_UserId_And_ExpiresAt_Greater_And_Credi
|
||||
|
||||
for __rows.Next() {
|
||||
user_credit := &UserCredit{}
|
||||
err = __rows.Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
err = __rows.Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.Type, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
if err != nil {
|
||||
return nil, obj.makeErr(err)
|
||||
}
|
||||
@ -13280,13 +13305,13 @@ func (obj *sqlite3Impl) getLastUserCredit(ctx context.Context,
|
||||
pk int64) (
|
||||
user_credit *UserCredit, err error) {
|
||||
|
||||
var __embed_stmt = __sqlbundle_Literal("SELECT user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at FROM user_credits WHERE _rowid_ = ?")
|
||||
var __embed_stmt = __sqlbundle_Literal("SELECT user_credits.id, user_credits.user_id, user_credits.offer_id, user_credits.referred_by, user_credits.type, user_credits.credits_earned_in_cents, user_credits.credits_used_in_cents, user_credits.expires_at, user_credits.created_at FROM user_credits WHERE _rowid_ = ?")
|
||||
|
||||
var __stmt = __sqlbundle_Render(obj.dialect, __embed_stmt)
|
||||
obj.logStmt(__stmt, pk)
|
||||
|
||||
user_credit = &UserCredit{}
|
||||
err = obj.driver.QueryRow(__stmt, pk).Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
err = obj.driver.QueryRow(__stmt, pk).Scan(&user_credit.Id, &user_credit.UserId, &user_credit.OfferId, &user_credit.ReferredBy, &user_credit.Type, &user_credit.CreditsEarnedInCents, &user_credit.CreditsUsedInCents, &user_credit.ExpiresAt, &user_credit.CreatedAt)
|
||||
if err != nil {
|
||||
return nil, obj.makeErr(err)
|
||||
}
|
||||
@ -14166,6 +14191,7 @@ func (rx *Rx) Create_User(ctx context.Context,
|
||||
func (rx *Rx) Create_UserCredit(ctx context.Context,
|
||||
user_credit_user_id UserCredit_UserId_Field,
|
||||
user_credit_offer_id UserCredit_OfferId_Field,
|
||||
user_credit_type UserCredit_Type_Field,
|
||||
user_credit_credits_earned_in_cents UserCredit_CreditsEarnedInCents_Field,
|
||||
user_credit_expires_at UserCredit_ExpiresAt_Field,
|
||||
optional UserCredit_Create_Fields) (
|
||||
@ -14174,7 +14200,7 @@ func (rx *Rx) Create_UserCredit(ctx context.Context,
|
||||
if tx, err = rx.getTx(ctx); err != nil {
|
||||
return
|
||||
}
|
||||
return tx.Create_UserCredit(ctx, user_credit_user_id, user_credit_offer_id, user_credit_credits_earned_in_cents, user_credit_expires_at, optional)
|
||||
return tx.Create_UserCredit(ctx, user_credit_user_id, user_credit_offer_id, user_credit_type, user_credit_credits_earned_in_cents, user_credit_expires_at, optional)
|
||||
|
||||
}
|
||||
|
||||
@ -15153,6 +15179,7 @@ type Methods interface {
|
||||
Create_UserCredit(ctx context.Context,
|
||||
user_credit_user_id UserCredit_UserId_Field,
|
||||
user_credit_offer_id UserCredit_OfferId_Field,
|
||||
user_credit_type UserCredit_Type_Field,
|
||||
user_credit_credits_earned_in_cents UserCredit_CreditsEarnedInCents_Field,
|
||||
user_credit_expires_at UserCredit_ExpiresAt_Field,
|
||||
optional UserCredit_Create_Fields) (
|
||||
|
@ -251,9 +251,10 @@ CREATE TABLE used_serials (
|
||||
);
|
||||
CREATE TABLE user_credits (
|
||||
id serial NOT NULL,
|
||||
user_id bytea NOT NULL REFERENCES users( id ),
|
||||
user_id bytea NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
offer_id integer NOT NULL REFERENCES offers( id ),
|
||||
referred_by bytea REFERENCES users( id ),
|
||||
referred_by bytea REFERENCES users( id ) ON DELETE SET NULL,
|
||||
type text NOT NULL,
|
||||
credits_earned_in_cents integer NOT NULL,
|
||||
credits_used_in_cents integer NOT NULL,
|
||||
expires_at timestamp with time zone NOT NULL,
|
||||
|
@ -251,9 +251,10 @@ CREATE TABLE used_serials (
|
||||
);
|
||||
CREATE TABLE user_credits (
|
||||
id INTEGER NOT NULL,
|
||||
user_id BLOB NOT NULL REFERENCES users( id ),
|
||||
user_id BLOB NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
offer_id INTEGER NOT NULL REFERENCES offers( id ),
|
||||
referred_by BLOB REFERENCES users( id ),
|
||||
referred_by BLOB REFERENCES users( id ) ON DELETE SET NULL,
|
||||
type TEXT NOT NULL,
|
||||
credits_earned_in_cents INTEGER NOT NULL,
|
||||
credits_used_in_cents INTEGER NOT NULL,
|
||||
expires_at TIMESTAMP NOT NULL,
|
||||
|
@ -1083,10 +1083,10 @@ func (m *lockedRewards) Finish(ctx context.Context, offerID int) error {
|
||||
return m.db.Finish(ctx, offerID)
|
||||
}
|
||||
|
||||
func (m *lockedRewards) GetCurrentByType(ctx context.Context, offerType rewards.OfferType) (*rewards.Offer, error) {
|
||||
func (m *lockedRewards) GetActiveOffersByType(ctx context.Context, offerType rewards.OfferType) (rewards.Offers, error) {
|
||||
m.Lock()
|
||||
defer m.Unlock()
|
||||
return m.db.GetCurrentByType(ctx, offerType)
|
||||
return m.db.GetActiveOffersByType(ctx, offerType)
|
||||
}
|
||||
|
||||
func (m *lockedRewards) ListAll(ctx context.Context) (rewards.Offers, error) {
|
||||
|
@ -1057,6 +1057,21 @@ func (db *DB) PostgresMigration() *migrate.Migration {
|
||||
WHERE credits_earned_in_cents=0;`,
|
||||
},
|
||||
},
|
||||
{
|
||||
Description: "Add cascade to user_id for deleting an account",
|
||||
Version: 49,
|
||||
Action: migrate.SQL{
|
||||
`ALTER TABLE user_credits DROP CONSTRAINT user_credits_referred_by_fkey;
|
||||
ALTER TABLE user_credits ADD CONSTRAINT user_credits_referred_by_fkey
|
||||
FOREIGN KEY (referred_by) REFERENCES users(id) ON DELETE SET NULL;
|
||||
ALTER TABLE user_credits DROP CONSTRAINT user_credits_user_id_fkey;
|
||||
ALTER TABLE user_credits ADD CONSTRAINT user_credits_user_id_fkey
|
||||
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE;
|
||||
ALTER TABLE user_credits ADD COLUMN type text;
|
||||
UPDATE user_credits SET type='invalid';
|
||||
ALTER TABLE user_credits ALTER COLUMN type SET NOT NULL;`,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -34,8 +34,8 @@ func (db *offersDB) ListAll(ctx context.Context) (rewards.Offers, error) {
|
||||
return offersFromDBX(offersDbx)
|
||||
}
|
||||
|
||||
// GetCurrent returns an offer that has not expired based on offer type
|
||||
func (db *offersDB) GetCurrentByType(ctx context.Context, offerType rewards.OfferType) (*rewards.Offer, error) {
|
||||
// GetCurrent returns offers that has not expired based on offer type
|
||||
func (db *offersDB) GetActiveOffersByType(ctx context.Context, offerType rewards.OfferType) (rewards.Offers, error) {
|
||||
var statement string
|
||||
const columns = "id, name, description, award_credit_in_cents, invitee_credit_in_cents, award_credit_duration_days, invitee_credit_duration_days, redeemable_cap, expires_at, created_at, status, type"
|
||||
statement = `
|
||||
@ -50,7 +50,10 @@ func (db *offersDB) GetCurrentByType(ctx context.Context, offerType rewards.Offe
|
||||
SELECT id FROM o
|
||||
) order by created_at desc;`
|
||||
|
||||
rows := db.db.DB.QueryRowContext(ctx, db.db.Rebind(statement), rewards.Active, offerType, time.Now().UTC(), offerType, rewards.Default)
|
||||
rows, err := db.db.DB.QueryContext(ctx, db.db.Rebind(statement), rewards.Active, offerType, time.Now().UTC(), offerType, rewards.Default)
|
||||
if err != nil {
|
||||
return nil, rewards.NoCurrentOfferErr.Wrap(err)
|
||||
}
|
||||
|
||||
var (
|
||||
awardCreditInCents int
|
||||
@ -60,27 +63,32 @@ func (db *offersDB) GetCurrentByType(ctx context.Context, offerType rewards.Offe
|
||||
redeemableCap sql.NullInt64
|
||||
)
|
||||
|
||||
o := rewards.Offer{}
|
||||
err := rows.Scan(&o.ID, &o.Name, &o.Description, &awardCreditInCents, &inviteeCreditInCents, &awardCreditDurationDays, &inviteeCreditDurationDays, &redeemableCap, &o.ExpiresAt, &o.CreatedAt, &o.Status, &o.Type)
|
||||
if err == sql.ErrNoRows {
|
||||
return nil, rewards.NoCurrentOfferErr.New("offerType=%d", offerType)
|
||||
}
|
||||
if err != nil {
|
||||
return nil, offerErr.Wrap(err)
|
||||
}
|
||||
o.AwardCredit = currency.Cents(awardCreditInCents)
|
||||
o.InviteeCredit = currency.Cents(inviteeCreditInCents)
|
||||
if redeemableCap.Valid {
|
||||
o.RedeemableCap = int(redeemableCap.Int64)
|
||||
}
|
||||
if awardCreditDurationDays.Valid {
|
||||
o.AwardCreditDurationDays = int(awardCreditDurationDays.Int64)
|
||||
}
|
||||
if inviteeCreditDurationDays.Valid {
|
||||
o.InviteeCreditDurationDays = int(inviteeCreditDurationDays.Int64)
|
||||
defer func() { err = errs.Combine(err, rows.Close()) }()
|
||||
results := make(rewards.Offers, 0, 0)
|
||||
for rows.Next() {
|
||||
o := rewards.Offer{}
|
||||
err := rows.Scan(&o.ID, &o.Name, &o.Description, &awardCreditInCents, &inviteeCreditInCents, &awardCreditDurationDays, &inviteeCreditDurationDays, &redeemableCap, &o.ExpiresAt, &o.CreatedAt, &o.Status, &o.Type)
|
||||
if err != nil {
|
||||
return results, Error.Wrap(err)
|
||||
}
|
||||
o.AwardCredit = currency.Cents(awardCreditInCents)
|
||||
o.InviteeCredit = currency.Cents(inviteeCreditInCents)
|
||||
if redeemableCap.Valid {
|
||||
o.RedeemableCap = int(redeemableCap.Int64)
|
||||
}
|
||||
if awardCreditDurationDays.Valid {
|
||||
o.AwardCreditDurationDays = int(awardCreditDurationDays.Int64)
|
||||
}
|
||||
if inviteeCreditDurationDays.Valid {
|
||||
o.InviteeCreditDurationDays = int(inviteeCreditDurationDays.Int64)
|
||||
}
|
||||
results = append(results, o)
|
||||
}
|
||||
|
||||
return &o, nil
|
||||
if len(results) < 1 {
|
||||
return results, rewards.NoCurrentOfferErr.New("offerType: %d", offerType)
|
||||
}
|
||||
return results, nil
|
||||
}
|
||||
|
||||
// Create inserts a new offer into the db
|
||||
|
352
satellite/satellitedb/testdata/postgres.v49.sql
vendored
Normal file
352
satellite/satellitedb/testdata/postgres.v49.sql
vendored
Normal file
@ -0,0 +1,352 @@
|
||||
-- AUTOGENERATED BY gopkg.in/spacemonkeygo/dbx.v1
|
||||
-- DO NOT EDIT
|
||||
CREATE TABLE accounting_rollups (
|
||||
id bigserial NOT NULL,
|
||||
node_id bytea NOT NULL,
|
||||
start_time timestamp with time zone NOT NULL,
|
||||
put_total bigint NOT NULL,
|
||||
get_total bigint NOT NULL,
|
||||
get_audit_total bigint NOT NULL,
|
||||
get_repair_total bigint NOT NULL,
|
||||
put_repair_total bigint NOT NULL,
|
||||
at_rest_total double precision NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE accounting_timestamps (
|
||||
name text NOT NULL,
|
||||
value timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( name )
|
||||
);
|
||||
CREATE TABLE bucket_bandwidth_rollups (
|
||||
bucket_name bytea NOT NULL,
|
||||
project_id bytea NOT NULL,
|
||||
interval_start timestamp NOT NULL,
|
||||
interval_seconds integer NOT NULL,
|
||||
action integer NOT NULL,
|
||||
inline bigint NOT NULL,
|
||||
allocated bigint NOT NULL,
|
||||
settled bigint NOT NULL,
|
||||
PRIMARY KEY ( bucket_name, project_id, interval_start, action )
|
||||
);
|
||||
CREATE TABLE bucket_storage_tallies (
|
||||
bucket_name bytea NOT NULL,
|
||||
project_id bytea NOT NULL,
|
||||
interval_start timestamp NOT NULL,
|
||||
inline bigint NOT NULL,
|
||||
remote bigint NOT NULL,
|
||||
remote_segments_count integer NOT NULL,
|
||||
inline_segments_count integer NOT NULL,
|
||||
object_count integer NOT NULL,
|
||||
metadata_size bigint NOT NULL,
|
||||
PRIMARY KEY ( bucket_name, project_id, interval_start )
|
||||
);
|
||||
CREATE TABLE bucket_usages (
|
||||
id bytea NOT NULL,
|
||||
bucket_id bytea NOT NULL,
|
||||
rollup_end_time timestamp with time zone NOT NULL,
|
||||
remote_stored_data bigint NOT NULL,
|
||||
inline_stored_data bigint NOT NULL,
|
||||
remote_segments integer NOT NULL,
|
||||
inline_segments integer NOT NULL,
|
||||
objects integer NOT NULL,
|
||||
metadata_size bigint NOT NULL,
|
||||
repair_egress bigint NOT NULL,
|
||||
get_egress bigint NOT NULL,
|
||||
audit_egress bigint NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE certRecords (
|
||||
publickey bytea NOT NULL,
|
||||
id bytea NOT NULL,
|
||||
update_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE injuredsegments (
|
||||
path bytea NOT NULL,
|
||||
data bytea NOT NULL,
|
||||
attempted timestamp,
|
||||
PRIMARY KEY ( path )
|
||||
);
|
||||
CREATE TABLE irreparabledbs (
|
||||
segmentpath bytea NOT NULL,
|
||||
segmentdetail bytea NOT NULL,
|
||||
pieces_lost_count bigint NOT NULL,
|
||||
seg_damaged_unix_sec bigint NOT NULL,
|
||||
repair_attempt_count bigint NOT NULL,
|
||||
PRIMARY KEY ( segmentpath )
|
||||
);
|
||||
CREATE TABLE nodes (
|
||||
id bytea NOT NULL,
|
||||
address text NOT NULL,
|
||||
last_net text NOT NULL,
|
||||
protocol integer NOT NULL,
|
||||
type integer NOT NULL,
|
||||
email text NOT NULL,
|
||||
wallet text NOT NULL,
|
||||
free_bandwidth bigint NOT NULL,
|
||||
free_disk bigint NOT NULL,
|
||||
major bigint NOT NULL,
|
||||
minor bigint NOT NULL,
|
||||
patch bigint NOT NULL,
|
||||
hash text NOT NULL,
|
||||
timestamp timestamp with time zone NOT NULL,
|
||||
release boolean NOT NULL,
|
||||
latency_90 bigint NOT NULL,
|
||||
audit_success_count bigint NOT NULL,
|
||||
total_audit_count bigint NOT NULL,
|
||||
uptime_success_count bigint NOT NULL,
|
||||
total_uptime_count bigint NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
updated_at timestamp with time zone NOT NULL,
|
||||
last_contact_success timestamp with time zone NOT NULL,
|
||||
last_contact_failure timestamp with time zone NOT NULL,
|
||||
contained boolean NOT NULL,
|
||||
disqualified timestamp with time zone,
|
||||
audit_reputation_alpha double precision NOT NULL,
|
||||
audit_reputation_beta double precision NOT NULL,
|
||||
uptime_reputation_alpha double precision NOT NULL,
|
||||
uptime_reputation_beta double precision NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE offers (
|
||||
id serial NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL,
|
||||
award_credit_in_cents integer NOT NULL,
|
||||
invitee_credit_in_cents integer NOT NULL,
|
||||
award_credit_duration_days integer,
|
||||
invitee_credit_duration_days integer,
|
||||
redeemable_cap integer,
|
||||
expires_at timestamp with time zone NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
status integer NOT NULL,
|
||||
type integer NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE pending_audits (
|
||||
node_id bytea NOT NULL,
|
||||
piece_id bytea NOT NULL,
|
||||
stripe_index bigint NOT NULL,
|
||||
share_size bigint NOT NULL,
|
||||
expected_share_hash bytea NOT NULL,
|
||||
reverify_count bigint NOT NULL,
|
||||
path bytea NOT NULL,
|
||||
PRIMARY KEY ( node_id )
|
||||
);
|
||||
CREATE TABLE projects (
|
||||
id bytea NOT NULL,
|
||||
name text NOT NULL,
|
||||
description text NOT NULL,
|
||||
usage_limit bigint NOT NULL,
|
||||
partner_id bytea,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE registration_tokens (
|
||||
secret bytea NOT NULL,
|
||||
owner_id bytea,
|
||||
project_limit integer NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( secret ),
|
||||
UNIQUE ( owner_id )
|
||||
);
|
||||
CREATE TABLE reset_password_tokens (
|
||||
secret bytea NOT NULL,
|
||||
owner_id bytea NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( secret ),
|
||||
UNIQUE ( owner_id )
|
||||
);
|
||||
CREATE TABLE serial_numbers (
|
||||
id serial NOT NULL,
|
||||
serial_number bytea NOT NULL,
|
||||
bucket_id bytea NOT NULL,
|
||||
expires_at timestamp NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE storagenode_bandwidth_rollups (
|
||||
storagenode_id bytea NOT NULL,
|
||||
interval_start timestamp NOT NULL,
|
||||
interval_seconds integer NOT NULL,
|
||||
action integer NOT NULL,
|
||||
allocated bigint NOT NULL,
|
||||
settled bigint NOT NULL,
|
||||
PRIMARY KEY ( storagenode_id, interval_start, action )
|
||||
);
|
||||
CREATE TABLE storagenode_storage_tallies (
|
||||
id bigserial NOT NULL,
|
||||
node_id bytea NOT NULL,
|
||||
interval_end_time timestamp with time zone NOT NULL,
|
||||
data_total double precision NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE users (
|
||||
id bytea NOT NULL,
|
||||
email text NOT NULL,
|
||||
full_name text NOT NULL,
|
||||
short_name text,
|
||||
password_hash bytea NOT NULL,
|
||||
status integer NOT NULL,
|
||||
partner_id bytea,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE value_attributions (
|
||||
project_id bytea NOT NULL,
|
||||
bucket_name bytea NOT NULL,
|
||||
partner_id bytea NOT NULL,
|
||||
last_updated timestamp NOT NULL,
|
||||
PRIMARY KEY ( project_id, bucket_name )
|
||||
);
|
||||
CREATE TABLE api_keys (
|
||||
id bytea NOT NULL,
|
||||
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
||||
head bytea NOT NULL,
|
||||
name text NOT NULL,
|
||||
secret bytea NOT NULL,
|
||||
partner_id bytea,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( id ),
|
||||
UNIQUE ( head ),
|
||||
UNIQUE ( name, project_id )
|
||||
);
|
||||
CREATE TABLE bucket_metainfos (
|
||||
id bytea NOT NULL,
|
||||
project_id bytea NOT NULL REFERENCES projects( id ),
|
||||
name bytea NOT NULL,
|
||||
partner_id bytea,
|
||||
path_cipher integer NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
default_segment_size integer NOT NULL,
|
||||
default_encryption_cipher_suite integer NOT NULL,
|
||||
default_encryption_block_size integer NOT NULL,
|
||||
default_redundancy_algorithm integer NOT NULL,
|
||||
default_redundancy_share_size integer NOT NULL,
|
||||
default_redundancy_required_shares integer NOT NULL,
|
||||
default_redundancy_repair_shares integer NOT NULL,
|
||||
default_redundancy_optimal_shares integer NOT NULL,
|
||||
default_redundancy_total_shares integer NOT NULL,
|
||||
PRIMARY KEY ( id ),
|
||||
UNIQUE ( name, project_id )
|
||||
);
|
||||
CREATE TABLE project_invoice_stamps (
|
||||
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
||||
invoice_id bytea NOT NULL,
|
||||
start_date timestamp with time zone NOT NULL,
|
||||
end_date timestamp with time zone NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( project_id, start_date, end_date ),
|
||||
UNIQUE ( invoice_id )
|
||||
);
|
||||
CREATE TABLE project_members (
|
||||
member_id bytea NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( member_id, project_id )
|
||||
);
|
||||
CREATE TABLE used_serials (
|
||||
serial_number_id integer NOT NULL REFERENCES serial_numbers( id ) ON DELETE CASCADE,
|
||||
storage_node_id bytea NOT NULL,
|
||||
PRIMARY KEY ( serial_number_id, storage_node_id )
|
||||
);
|
||||
CREATE TABLE user_credits (
|
||||
id serial NOT NULL,
|
||||
user_id bytea NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
offer_id integer NOT NULL REFERENCES offers( id ),
|
||||
referred_by bytea REFERENCES users( id ) ON DELETE SET NULL,
|
||||
type text NOT NULL,
|
||||
credits_earned_in_cents integer NOT NULL,
|
||||
credits_used_in_cents integer NOT NULL,
|
||||
expires_at timestamp with time zone NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
CREATE TABLE user_payments (
|
||||
user_id bytea NOT NULL REFERENCES users( id ) ON DELETE CASCADE,
|
||||
customer_id bytea NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( user_id ),
|
||||
UNIQUE ( customer_id )
|
||||
);
|
||||
CREATE TABLE project_payments (
|
||||
id bytea NOT NULL,
|
||||
project_id bytea NOT NULL REFERENCES projects( id ) ON DELETE CASCADE,
|
||||
payer_id bytea NOT NULL REFERENCES user_payments( user_id ) ON DELETE CASCADE,
|
||||
payment_method_id bytea NOT NULL,
|
||||
is_default boolean NOT NULL,
|
||||
created_at timestamp with time zone NOT NULL,
|
||||
PRIMARY KEY ( id )
|
||||
);
|
||||
|
||||
CREATE INDEX bucket_name_project_id_interval_start_interval_seconds ON bucket_bandwidth_rollups ( bucket_name, project_id, interval_start, interval_seconds );
|
||||
CREATE UNIQUE INDEX bucket_id_rollup ON bucket_usages ( bucket_id, rollup_end_time );
|
||||
CREATE INDEX node_last_ip ON nodes ( last_net );
|
||||
CREATE UNIQUE INDEX serial_number ON serial_numbers ( serial_number );
|
||||
CREATE INDEX serial_numbers_expires_at_index ON serial_numbers ( expires_at );
|
||||
CREATE INDEX storagenode_id_interval_start_interval_seconds ON storagenode_bandwidth_rollups ( storagenode_id, interval_start, interval_seconds );
|
||||
CREATE UNIQUE INDEX credits_earned_user_id_offer_id ON user_credits (id, offer_id) WHERE credits_earned_in_cents=0;
|
||||
---
|
||||
|
||||
INSERT INTO "accounting_rollups"("id", "node_id", "start_time", "put_total", "get_total", "get_audit_total", "get_repair_total", "put_repair_total", "at_rest_total") VALUES (1, E'\\367M\\177\\251]t/\\022\\256\\214\\265\\025\\224\\204:\\217\\212\\0102<\\321\\374\\020&\\271Qc\\325\\261\\354\\246\\233'::bytea, '2019-02-09 00:00:00+00', 1000, 2000, 3000, 4000, 0, 5000);
|
||||
|
||||
INSERT INTO "accounting_timestamps" VALUES ('LastAtRestTally', '0001-01-01 00:00:00+00');
|
||||
INSERT INTO "accounting_timestamps" VALUES ('LastRollup', '0001-01-01 00:00:00+00');
|
||||
INSERT INTO "accounting_timestamps" VALUES ('LastBandwidthTally', '0001-01-01 00:00:00+00');
|
||||
|
||||
INSERT INTO "nodes"("id", "address", "last_net", "protocol", "type", "email", "wallet", "free_bandwidth", "free_disk", "major", "minor", "patch", "hash", "timestamp", "release","latency_90", "audit_success_count", "total_audit_count", "uptime_success_count", "total_uptime_count", "created_at", "updated_at", "last_contact_success", "last_contact_failure", "contained", "disqualified", "audit_reputation_alpha", "audit_reputation_beta", "uptime_reputation_alpha", "uptime_reputation_beta") VALUES (E'\\153\\313\\233\\074\\327\\177\\136\\070\\346\\001', '127.0.0.1:55516', '', 0, 4, '', '', -1, -1, 0, 1, 0, '', 'epoch', false, 0, 0, 5, 0, 5, '2019-02-14 08:07:31.028103+00', '2019-02-14 08:07:31.108963+00', 'epoch', 'epoch', false, NULL, 50, 5, 100, 5);
|
||||
INSERT INTO "nodes"("id", "address", "last_net", "protocol", "type", "email", "wallet", "free_bandwidth", "free_disk", "major", "minor", "patch", "hash", "timestamp", "release","latency_90", "audit_success_count", "total_audit_count", "uptime_success_count", "total_uptime_count", "created_at", "updated_at", "last_contact_success", "last_contact_failure", "contained", "disqualified", "audit_reputation_alpha", "audit_reputation_beta", "uptime_reputation_alpha", "uptime_reputation_beta") VALUES (E'\\006\\223\\250R\\221\\005\\365\\377v>0\\266\\365\\216\\255?\\347\\244\\371?2\\264\\262\\230\\007<\\001\\262\\263\\237\\247n', '127.0.0.1:55518', '', 0, 4, '', '', -1, -1, 0, 1, 0, '', 'epoch', false, 0, 0, 0, 3, 3, '2019-02-14 08:07:31.028103+00', '2019-02-14 08:07:31.108963+00', 'epoch', 'epoch', false, NULL, 50, 0, 100, 0);
|
||||
INSERT INTO "nodes"("id", "address", "last_net", "protocol", "type", "email", "wallet", "free_bandwidth", "free_disk", "major", "minor", "patch", "hash", "timestamp", "release","latency_90", "audit_success_count", "total_audit_count", "uptime_success_count", "total_uptime_count", "created_at", "updated_at", "last_contact_success", "last_contact_failure", "contained", "disqualified", "audit_reputation_alpha", "audit_reputation_beta", "uptime_reputation_alpha", "uptime_reputation_beta") VALUES (E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014', '127.0.0.1:55517', '', 0, 4, '', '', -1, -1, 0, 1, 0, '', 'epoch', false, 0, 0, 0, 0, 0, '2019-02-14 08:07:31.028103+00', '2019-02-14 08:07:31.108963+00', 'epoch', 'epoch', false, NULL, 50, 0, 100, 0);
|
||||
INSERT INTO "nodes"("id", "address", "last_net", "protocol", "type", "email", "wallet", "free_bandwidth", "free_disk", "major", "minor", "patch", "hash", "timestamp", "release","latency_90", "audit_success_count", "total_audit_count", "uptime_success_count", "total_uptime_count", "created_at", "updated_at", "last_contact_success", "last_contact_failure", "contained", "disqualified", "audit_reputation_alpha", "audit_reputation_beta", "uptime_reputation_alpha", "uptime_reputation_beta") VALUES (E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\015', '127.0.0.1:55519', '', 0, 4, '', '', -1, -1, 0, 1, 0, '', 'epoch', false, 0, 1, 2, 1, 2, '2019-02-14 08:07:31.028103+00', '2019-02-14 08:07:31.108963+00', 'epoch', 'epoch', false, NULL, 50, 1, 100, 1);
|
||||
INSERT INTO "nodes"("id", "address", "last_net", "protocol", "type", "email", "wallet", "free_bandwidth", "free_disk", "major", "minor", "patch", "hash", "timestamp", "release","latency_90", "audit_success_count", "total_audit_count", "uptime_success_count", "total_uptime_count", "created_at", "updated_at", "last_contact_success", "last_contact_failure", "contained", "disqualified", "audit_reputation_alpha", "audit_reputation_beta", "uptime_reputation_alpha", "uptime_reputation_beta") VALUES (E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\016', '127.0.0.1:55520', '', 0, 4, '', '', -1, -1, 0, 1, 0, '', 'epoch', false, 0, 300, 400, 300, 400, '2019-02-14 08:07:31.028103+00', '2019-02-14 08:07:31.108963+00', 'epoch', 'epoch', false, NULL, 300, 100, 300, 100);
|
||||
|
||||
INSERT INTO "projects"("id", "name", "description", "usage_limit", "partner_id", "created_at") VALUES (E'\\022\\217/\\014\\376!K\\023\\276\\031\\311}m\\236\\205\\300'::bytea, 'ProjectName', 'projects description', 0, NULL, '2019-02-14 08:28:24.254934+00');
|
||||
|
||||
INSERT INTO "users"("id", "full_name", "short_name", "email", "password_hash", "status", "partner_id", "created_at") VALUES (E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, 'Noahson', 'William', '1email1@mail.test', E'some_readable_hash'::bytea, 1, NULL, '2019-02-14 08:28:24.614594+00');
|
||||
INSERT INTO "projects"("id", "name", "description", "usage_limit", "partner_id", "created_at") VALUES (E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014'::bytea, 'projName1', 'Test project 1', 0, NULL, '2019-02-14 08:28:24.636949+00');
|
||||
INSERT INTO "project_members"("member_id", "project_id", "created_at") VALUES (E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014'::bytea, '2019-02-14 08:28:24.677953+00');
|
||||
|
||||
INSERT INTO "irreparabledbs" ("segmentpath", "segmentdetail", "pieces_lost_count", "seg_damaged_unix_sec", "repair_attempt_count") VALUES ('\x49616d5365676d656e746b6579696e666f30', '\x49616d5365676d656e7464657461696c696e666f30', 10, 1550159554, 10);
|
||||
|
||||
INSERT INTO "injuredsegments" ("path", "data") VALUES ('0', '\x0a0130120100');
|
||||
INSERT INTO "injuredsegments" ("path", "data") VALUES ('here''s/a/great/path', '\x0a136865726527732f612f67726561742f70617468120a0102030405060708090a');
|
||||
INSERT INTO "injuredsegments" ("path", "data") VALUES ('yet/another/cool/path', '\x0a157965742f616e6f746865722f636f6f6c2f70617468120a0102030405060708090a');
|
||||
INSERT INTO "injuredsegments" ("path", "data") VALUES ('so/many/iconic/paths/to/choose/from', '\x0a23736f2f6d616e792f69636f6e69632f70617468732f746f2f63686f6f73652f66726f6d120a0102030405060708090a');
|
||||
|
||||
INSERT INTO "certrecords" VALUES (E'0Y0\\023\\006\\007*\\206H\\316=\\002\\001\\006\\010*\\206H\\316=\\003\\001\\007\\003B\\000\\004\\360\\267\\227\\377\\253u\\222\\337Y\\324C:GQ\\010\\277v\\010\\315D\\271\\333\\337.\\203\\023=C\\343\\014T%6\\027\\362?\\214\\326\\017U\\334\\000\\260\\224\\260J\\221\\304\\331F\\304\\221\\236zF,\\325\\326l\\215\\306\\365\\200\\022', E'L\\301|\\200\\247}F|1\\320\\232\\037n\\335\\241\\206\\244\\242\\207\\204.\\253\\357\\326\\352\\033Dt\\202`\\022\\325', '2019-02-14 08:07:31.335028+00');
|
||||
|
||||
INSERT INTO "bucket_usages" ("id", "bucket_id", "rollup_end_time", "remote_stored_data", "inline_stored_data", "remote_segments", "inline_segments", "objects", "metadata_size", "repair_egress", "get_egress", "audit_egress") VALUES (E'\\153\\313\\233\\074\\327\\177\\136\\070\\346\\001",'::bytea, E'\\366\\146\\032\\321\\316\\161\\070\\133\\302\\271",'::bytea, '2019-03-06 08:28:24.677953+00', 10, 11, 12, 13, 14, 15, 16, 17, 18);
|
||||
|
||||
INSERT INTO "registration_tokens" ("secret", "owner_id", "project_limit", "created_at") VALUES (E'\\070\\127\\144\\013\\332\\344\\102\\376\\306\\056\\303\\130\\106\\132\\321\\276\\321\\274\\170\\264\\054\\333\\221\\116\\154\\221\\335\\070\\220\\146\\344\\216'::bytea, null, 1, '2019-02-14 08:28:24.677953+00');
|
||||
|
||||
INSERT INTO "serial_numbers" ("id", "serial_number", "bucket_id", "expires_at") VALUES (1, E'0123456701234567'::bytea, E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014/testbucket'::bytea, '2019-03-06 08:28:24.677953+00');
|
||||
INSERT INTO "used_serials" ("serial_number_id", "storage_node_id") VALUES (1, E'\\006\\223\\250R\\221\\005\\365\\377v>0\\266\\365\\216\\255?\\347\\244\\371?2\\264\\262\\230\\007<\\001\\262\\263\\237\\247n');
|
||||
|
||||
INSERT INTO "storagenode_bandwidth_rollups" ("storagenode_id", "interval_start", "interval_seconds", "action", "allocated", "settled") VALUES (E'\\006\\223\\250R\\221\\005\\365\\377v>0\\266\\365\\216\\255?\\347\\244\\371?2\\264\\262\\230\\007<\\001\\262\\263\\237\\247n', '2019-03-06 08:00:00.000000+00', 3600, 1, 1024, 2024);
|
||||
INSERT INTO "storagenode_storage_tallies" VALUES (1, E'\\3510\\323\\225"~\\036<\\342\\330m\\0253Jhr\\246\\233K\\246#\\2303\\351\\256\\275j\\212UM\\362\\207', '2019-02-14 08:16:57.812849+00', 1000);
|
||||
|
||||
INSERT INTO "bucket_bandwidth_rollups" ("bucket_name", "project_id", "interval_start", "interval_seconds", "action", "inline", "allocated", "settled") VALUES (E'testbucket'::bytea, E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014'::bytea,'2019-03-06 08:00:00.000000+00', 3600, 1, 1024, 2024, 3024);
|
||||
INSERT INTO "bucket_storage_tallies" ("bucket_name", "project_id", "interval_start", "inline", "remote", "remote_segments_count", "inline_segments_count", "object_count", "metadata_size") VALUES (E'testbucket'::bytea, E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014'::bytea,'2019-03-06 08:00:00.000000+00', 4024, 5024, 0, 0, 0, 0);
|
||||
INSERT INTO "bucket_bandwidth_rollups" ("bucket_name", "project_id", "interval_start", "interval_seconds", "action", "inline", "allocated", "settled") VALUES (E'testbucket'::bytea, E'\\170\\160\\157\\370\\274\\366\\113\\364\\272\\235\\301\\243\\321\\102\\321\\136'::bytea,'2019-03-06 08:00:00.000000+00', 3600, 1, 1024, 2024, 3024);
|
||||
INSERT INTO "bucket_storage_tallies" ("bucket_name", "project_id", "interval_start", "inline", "remote", "remote_segments_count", "inline_segments_count", "object_count", "metadata_size") VALUES (E'testbucket'::bytea, E'\\170\\160\\157\\370\\274\\366\\113\\364\\272\\235\\301\\243\\321\\102\\321\\136'::bytea,'2019-03-06 08:00:00.000000+00', 4024, 5024, 0, 0, 0, 0);
|
||||
|
||||
INSERT INTO "reset_password_tokens" ("secret", "owner_id", "created_at") VALUES (E'\\070\\127\\144\\013\\332\\344\\102\\376\\306\\056\\303\\130\\106\\132\\321\\276\\321\\274\\170\\264\\054\\333\\221\\116\\154\\221\\335\\070\\220\\146\\344\\216'::bytea, E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, '2019-05-08 08:28:24.677953+00');
|
||||
|
||||
INSERT INTO "offers" ("name", "description", "award_credit_in_cents", "invitee_credit_in_cents", "award_credit_duration_days", "invitee_credit_duration_days", "redeemable_cap", "expires_at", "created_at", "status", "type") VALUES ('testOffer', 'Test offer 1', 0, 0, 14, 14, 50, '2019-03-14 08:28:24.636949+00', '2019-02-14 08:28:24.636949+00', 0, 0);
|
||||
INSERT INTO "offers" ("name","description","award_credit_in_cents","award_credit_duration_days", "invitee_credit_in_cents","invitee_credit_duration_days", "expires_at","created_at","status","type") VALUES ('Default free credit offer','Is active when no active free credit offer',0, NULL,300, 14, '2119-03-14 08:28:24.636949+00','2019-07-14 08:28:24.636949+00',1,1);
|
||||
|
||||
INSERT INTO "api_keys" ("id", "project_id", "head", "name", "secret", "partner_id", "created_at") VALUES (E'\\334/\\302;\\225\\355O\\323\\276f\\247\\354/6\\241\\033'::bytea, E'\\022\\217/\\014\\376!K\\023\\276\\031\\311}m\\236\\205\\300'::bytea, E'\\111\\142\\147\\304\\132\\375\\070\\163\\270\\160\\251\\370\\126\\063\\351\\037\\257\\071\\143\\375\\351\\320\\253\\232\\220\\260\\075\\173\\306\\307\\115\\136'::bytea, 'key 2', E'\\254\\011\\315\\333\\273\\365\\001\\071\\024\\154\\253\\332\\301\\216\\361\\074\\221\\367\\251\\231\\274\\333\\300\\367\\001\\272\\327\\111\\315\\123\\042\\016'::bytea, NULL, '2019-02-14 08:28:24.267934+00');
|
||||
|
||||
INSERT INTO "user_payments" ("user_id", "customer_id", "created_at") VALUES (E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, E'\\022\\217/\\014\\376!K\\023\\276'::bytea, '2019-06-01 08:28:24.267934+00');
|
||||
INSERT INTO "project_invoice_stamps" ("project_id", "invoice_id", "start_date", "end_date", "created_at") VALUES (E'\\022\\217/\\014\\376!K\\023\\276\\031\\311}m\\236\\205\\300'::bytea, E'\\363\\311\\033w\\222\\303,'::bytea, '2019-06-01 08:28:24.267934+00', '2019-06-29 08:28:24.267934+00', '2019-06-01 08:28:24.267934+00');
|
||||
|
||||
INSERT INTO "value_attributions" ("project_id", "bucket_name", "partner_id", "last_updated") VALUES (E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, E''::bytea, E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014'::bytea,'2019-02-14 08:07:31.028103+00');
|
||||
|
||||
INSERT INTO "user_credits" ("id", "user_id", "offer_id", "referred_by", "credits_earned_in_cents", "credits_used_in_cents", "type", "expires_at", "created_at") VALUES (1, E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, 1, E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, 200, 0, 'invalid', '2019-10-01 08:28:24.267934+00', '2019-06-01 08:28:24.267934+00');
|
||||
|
||||
INSERT INTO "bucket_metainfos" ("id", "project_id", "name", "partner_id", "created_at", "path_cipher", "default_segment_size", "default_encryption_cipher_suite", "default_encryption_block_size", "default_redundancy_algorithm", "default_redundancy_share_size", "default_redundancy_required_shares", "default_redundancy_repair_shares", "default_redundancy_optimal_shares", "default_redundancy_total_shares") VALUES (E'\\334/\\302;\\225\\355O\\323\\276f\\247\\354/6\\241\\033'::bytea, E'\\022\\217/\\014\\376!K\\023\\276\\031\\311}m\\236\\205\\300'::bytea, E'testbucketuniquename'::bytea, NULL, '2019-06-14 08:28:24.677953+00', 1, 65536, 1, 8192, 1, 4096, 4, 6, 8, 10);
|
||||
|
||||
INSERT INTO "project_payments" ("id", "project_id", "payer_id", "payment_method_id", "is_default","created_at") VALUES (E'\\334/\\302;\\225\\355O\\323\\276f\\247\\354/6\\241\\033'::bytea, E'\\363\\342\\363\\371>+F\\256\\263\\300\\273|\\342N\\347\\014'::bytea, E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, E'\\022\\217/\\014\\376!K\\023\\276'::bytea, true, '2019-06-01 08:28:24.267934+00');
|
||||
|
||||
INSERT INTO "pending_audits" ("node_id", "piece_id", "stripe_index", "share_size", "expected_share_hash", "reverify_count", "path") VALUES (E'\\153\\313\\233\\074\\327\\177\\136\\070\\346\\001'::bytea, E'\\363\\311\\033w\\222\\303Ci\\265\\343U\\303\\312\\204",'::bytea, 5, 1024, E'\\070\\127\\144\\013\\332\\344\\102\\376\\306\\056\\303\\130\\106\\132\\321\\276\\321\\274\\170\\264\\054\\333\\221\\116\\154\\221\\335\\070\\220\\146\\344\\216'::bytea, 1, 'not null');
|
||||
|
||||
-- NEW DATA --
|
@ -29,7 +29,7 @@ func (c *usercredits) GetCreditUsage(ctx context.Context, userID uuid.UUID, expi
|
||||
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[:])
|
||||
(SELECT count(id) AS referred FROM user_credits WHERE user_credits.user_id = ? AND user_credits.type = ?) AS c;`), userID[:], expirationEndDate, userID[:], userID[:], console.Referrer)
|
||||
if err != nil {
|
||||
return nil, errs.Wrap(err)
|
||||
}
|
||||
@ -65,23 +65,6 @@ func (c *usercredits) Create(ctx context.Context, userCredit console.UserCredit)
|
||||
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 = ? AND redeemable_cap > 0), 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 = ? AND redeemable_cap > 0), TRUE);
|
||||
`
|
||||
default:
|
||||
return errs.New("Unsupported database %t", t)
|
||||
}
|
||||
|
||||
var referrerID []byte
|
||||
if userCredit.ReferredBy != nil {
|
||||
referrerID = userCredit.ReferredBy[:]
|
||||
@ -89,11 +72,34 @@ func (c *usercredits) Create(ctx context.Context, userCredit console.UserCredit)
|
||||
|
||||
var result sql.Result
|
||||
var err error
|
||||
if c.tx != nil {
|
||||
result, err = c.tx.Tx.ExecContext(ctx, c.db.Rebind(statement), userCredit.UserID[:], userCredit.OfferID, userCredit.CreditsEarned.Cents(), userCredit.ExpiresAt, referrerID, new([]byte), userCredit.OfferID, userCredit.OfferID)
|
||||
} else {
|
||||
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)
|
||||
|
||||
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, type, 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 = ? AND redeemable_cap > 0), TRUE);
|
||||
`
|
||||
if c.tx != nil {
|
||||
result, err = c.tx.Tx.ExecContext(ctx, c.db.Rebind(statement), userCredit.UserID[:], userCredit.OfferID, userCredit.CreditsEarned.Cents(), userCredit.ExpiresAt, referrerID, userCredit.Type, userCredit.OfferID, userCredit.OfferID)
|
||||
} else {
|
||||
result, err = c.db.DB.ExecContext(ctx, c.db.Rebind(statement), userCredit.UserID[:], userCredit.OfferID, userCredit.CreditsEarned.Cents(), userCredit.ExpiresAt, referrerID, userCredit.Type, userCredit.OfferID, userCredit.OfferID)
|
||||
}
|
||||
case *pq.Driver:
|
||||
statement = `
|
||||
INSERT INTO user_credits (user_id, offer_id, credits_earned_in_cents, credits_used_in_cents, expires_at, referred_by, type, created_at)
|
||||
SELECT * FROM (VALUES (?::bytea, ?::int, ?::int, 0, ?::timestamp, NULLIF(?::bytea, ?::bytea), ?::text, now())) AS v
|
||||
WHERE COALESCE((SELECT COUNT(offer_id) FROM user_credits WHERE offer_id = ? ) < (SELECT redeemable_cap FROM offers WHERE id = ? AND redeemable_cap > 0), TRUE);
|
||||
`
|
||||
if c.tx != nil {
|
||||
result, err = c.tx.Tx.ExecContext(ctx, c.db.Rebind(statement), userCredit.UserID[:], userCredit.OfferID, userCredit.CreditsEarned.Cents(), userCredit.ExpiresAt, referrerID, new([]byte), userCredit.Type, userCredit.OfferID, userCredit.OfferID)
|
||||
} else {
|
||||
result, err = c.db.DB.ExecContext(ctx, c.db.Rebind(statement), userCredit.UserID[:], userCredit.OfferID, userCredit.CreditsEarned.Cents(), userCredit.ExpiresAt, referrerID, new([]byte), userCredit.Type, userCredit.OfferID, userCredit.OfferID)
|
||||
}
|
||||
default:
|
||||
return errs.New("Unsupported database %t", t)
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
return errs.Wrap(err)
|
||||
}
|
||||
@ -110,7 +116,7 @@ func (c *usercredits) Create(ctx context.Context, userCredit console.UserCredit)
|
||||
return nil
|
||||
}
|
||||
|
||||
// UpdateEarnedCredits updates user credits after
|
||||
// UpdateEarnedCredits updates user credits after user activated their account
|
||||
func (c *usercredits) UpdateEarnedCredits(ctx context.Context, userID uuid.UUID) error {
|
||||
var statement string
|
||||
|
||||
|
@ -78,6 +78,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UserID: user.ID,
|
||||
OfferID: activeOffer.ID,
|
||||
ReferredBy: &referrer.ID,
|
||||
Type: console.Invitee,
|
||||
CreditsEarned: currency.Cents(100),
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 1, 0),
|
||||
},
|
||||
@ -90,7 +91,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UsedCredits: currency.Cents(100),
|
||||
Referred: 0,
|
||||
},
|
||||
referred: 1,
|
||||
referred: 0,
|
||||
},
|
||||
},
|
||||
{
|
||||
@ -99,6 +100,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UserID: user.ID,
|
||||
OfferID: activeOffer.ID,
|
||||
ReferredBy: &referrer.ID,
|
||||
Type: console.Invitee,
|
||||
CreditsEarned: currency.Cents(100),
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 0, -5),
|
||||
},
|
||||
@ -111,7 +113,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UsedCredits: currency.Cents(100),
|
||||
Referred: 0,
|
||||
},
|
||||
referred: 1,
|
||||
referred: 0,
|
||||
hasCreateErr: true,
|
||||
hasUpdateErr: true,
|
||||
},
|
||||
@ -122,6 +124,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UserID: user.ID,
|
||||
OfferID: activeOffer.ID,
|
||||
ReferredBy: &referrer.ID,
|
||||
Type: console.Invitee,
|
||||
CreditsEarned: currency.Cents(100),
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 0, 5),
|
||||
},
|
||||
@ -134,7 +137,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UsedCredits: currency.Cents(180),
|
||||
Referred: 0,
|
||||
},
|
||||
referred: 2,
|
||||
referred: 0,
|
||||
},
|
||||
},
|
||||
{
|
||||
@ -143,6 +146,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UserID: user.ID,
|
||||
OfferID: activeOffer.ID,
|
||||
ReferredBy: &randomID,
|
||||
Type: console.Invitee,
|
||||
CreditsEarned: currency.Cents(100),
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 1, 0),
|
||||
},
|
||||
@ -153,7 +157,7 @@ func TestUsercredits(t *testing.T) {
|
||||
AvailableCredits: currency.Cents(20),
|
||||
UsedCredits: currency.Cents(180),
|
||||
},
|
||||
referred: 2,
|
||||
referred: 0,
|
||||
hasCreateErr: true,
|
||||
},
|
||||
},
|
||||
@ -163,6 +167,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UserID: user.ID,
|
||||
OfferID: defaultOffer.ID,
|
||||
ReferredBy: nil,
|
||||
Type: console.Invitee,
|
||||
CreditsEarned: currency.Cents(100),
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 1, 0),
|
||||
},
|
||||
@ -173,7 +178,7 @@ func TestUsercredits(t *testing.T) {
|
||||
AvailableCredits: currency.Cents(120),
|
||||
UsedCredits: currency.Cents(180),
|
||||
},
|
||||
referred: 2,
|
||||
referred: 0,
|
||||
hasCreateErr: false,
|
||||
},
|
||||
},
|
||||
@ -183,6 +188,7 @@ func TestUsercredits(t *testing.T) {
|
||||
UserID: user.ID,
|
||||
OfferID: defaultOffer.ID,
|
||||
ReferredBy: &referrer.ID,
|
||||
Type: console.Invitee,
|
||||
CreditsEarned: currency.Cents(0),
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 1, 0),
|
||||
},
|
||||
@ -193,7 +199,28 @@ func TestUsercredits(t *testing.T) {
|
||||
AvailableCredits: currency.Cents(220),
|
||||
UsedCredits: currency.Cents(180),
|
||||
},
|
||||
referred: 3,
|
||||
referred: 0,
|
||||
hasCreateErr: false,
|
||||
},
|
||||
},
|
||||
{
|
||||
// simulate credit redemption for referrer
|
||||
userCredit: console.UserCredit{
|
||||
UserID: referrer.ID,
|
||||
OfferID: activeOffer.ID,
|
||||
ReferredBy: nil,
|
||||
Type: console.Referrer,
|
||||
CreditsEarned: activeOffer.AwardCredit,
|
||||
ExpiresAt: time.Now().UTC().AddDate(0, 0, activeOffer.AwardCreditDurationDays),
|
||||
},
|
||||
redeemableCap: activeOffer.RedeemableCap,
|
||||
expected: result{
|
||||
usage: console.UserCreditUsage{
|
||||
Referred: 1,
|
||||
AvailableCredits: activeOffer.AwardCredit,
|
||||
UsedCredits: currency.Cents(0),
|
||||
},
|
||||
referred: 1,
|
||||
hasCreateErr: false,
|
||||
},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user