2019-11-26 17:58:51 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package payments
|
|
|
|
|
|
|
|
import (
|
2020-01-29 00:57:15 +00:00
|
|
|
"context"
|
2019-11-26 17:58:51 +00:00
|
|
|
"time"
|
|
|
|
|
2020-03-30 10:08:50 +01:00
|
|
|
"storj.io/common/uuid"
|
2019-11-26 17:58:51 +00:00
|
|
|
)
|
|
|
|
|
2020-01-29 00:57:15 +00:00
|
|
|
// Coupons exposes all needed functionality to manage coupons.
|
|
|
|
//
|
|
|
|
// architecture: Service
|
|
|
|
type Coupons interface {
|
2021-08-06 21:14:33 +01:00
|
|
|
// GetByUserID returns the coupon applied to the specified user.
|
|
|
|
GetByUserID(ctx context.Context, userID uuid.UUID) (*Coupon, error)
|
2020-01-29 00:57:15 +00:00
|
|
|
|
2021-06-22 01:09:56 +01:00
|
|
|
// ApplyCouponCode attempts to apply a coupon code to the user.
|
2021-08-06 21:14:33 +01:00
|
|
|
ApplyCouponCode(ctx context.Context, userID uuid.UUID, couponCode string) (*Coupon, error)
|
2020-01-29 00:57:15 +00:00
|
|
|
}
|
|
|
|
|
2021-08-06 21:14:33 +01:00
|
|
|
// Coupon describes a discount to the payment account of a user.
|
2019-11-26 17:58:51 +00:00
|
|
|
type Coupon struct {
|
2021-08-06 21:14:33 +01:00
|
|
|
ID string `json:"id"`
|
|
|
|
PromoCode string `json:"promoCode"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
AmountOff int64 `json:"amountOff"`
|
|
|
|
PercentOff float64 `json:"percentOff"`
|
|
|
|
AddedAt time.Time `json:"addedAt"`
|
|
|
|
ExpiresAt time.Time `json:"expiresAt"`
|
|
|
|
Duration CouponDuration `json:"duration"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CouponDuration represents how many billing periods a coupon is applied.
|
|
|
|
type CouponDuration string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// CouponOnce indicates that a coupon can only be applied once.
|
|
|
|
CouponOnce CouponDuration = "once"
|
|
|
|
// CouponRepeating indicates that a coupon is applied every billing period for a definite amount of time.
|
|
|
|
CouponRepeating = "repeating"
|
|
|
|
// CouponForever indicates that a coupon is applied every billing period forever.
|
|
|
|
CouponForever = "forever"
|
|
|
|
)
|