efa2c776b7
* parent13dd501042
author Yingrong Zhao <yingrong.zhao@gmail.com> 1563560530 -0400 committer Yingrong Zhao <yingrong.zhao@gmail.com> 1563581673 -0400 parent13dd501042
author Yingrong Zhao <yingrong.zhao@gmail.com> 1563560530 -0400 committer Yingrong Zhao <yingrong.zhao@gmail.com> 1563581428 -0400 satellite/console: add referral link logic (#2576) * 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 * add credit update in activateAccount * remove unused code * fix format * close reader and fix front-end build * move create credit logic into CreateUser method * when there's no offer set, user flow shouldn't be interrupted by referral program * add appropriate error messages * remove unused code * add comment * add error class for no current offer error * add error class for credits update * add comment for migration * only log secret when it's in debug level * fix typo * add testdata
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package console
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
|
"github.com/zeebo/errs"
|
|
|
|
"storj.io/storj/internal/currency"
|
|
)
|
|
|
|
// NoCreditForUpdateErr is a error message used when no credits are found for update when new users sign up
|
|
var NoCreditForUpdateErr = errs.Class("no credit found to update")
|
|
|
|
// UserCredits holds information to interact with database
|
|
type UserCredits interface {
|
|
GetCreditUsage(ctx context.Context, userID uuid.UUID, expirationEndDate time.Time) (*UserCreditUsage, error)
|
|
Create(ctx context.Context, userCredit UserCredit) error
|
|
UpdateEarnedCredits(ctx context.Context, userID uuid.UUID) error
|
|
UpdateAvailableCredits(ctx context.Context, creditsToCharge int, id uuid.UUID, billingStartDate time.Time) (remainingCharge int, err error)
|
|
}
|
|
|
|
// UserCredit holds information about an user's credit
|
|
type UserCredit struct {
|
|
ID int
|
|
UserID uuid.UUID
|
|
OfferID int
|
|
ReferredBy *uuid.UUID
|
|
CreditsEarned currency.USD
|
|
CreditsUsed currency.USD
|
|
ExpiresAt time.Time
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
// UserCreditUsage holds information about credit usage information
|
|
type UserCreditUsage struct {
|
|
Referred int64
|
|
AvailableCredits currency.USD
|
|
UsedCredits currency.USD
|
|
}
|