-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathaccount.go
278 lines (230 loc) · 6.09 KB
/
account.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package main
import (
"encoding/json"
pc "github.com/padloc/padlock-cloud/padlockcloud"
"github.com/stripe/stripe-go"
"github.com/stripe/stripe-go/coupon"
"github.com/stripe/stripe-go/customer"
"github.com/stripe/stripe-go/sub"
"math/rand"
"strconv"
"time"
)
var AvailablePlans []*stripe.Plan
func planToMap(plan *stripe.Plan) map[string]interface{} {
planJSON, _ := json.Marshal(plan)
var planMap map[string]interface{}
json.Unmarshal(planJSON, &planMap)
planMap["name"] = plan.Nickname
return planMap
}
func ChoosePlan() string {
plan := AvailablePlans[rand.Intn(len(AvailablePlans))]
return plan.ID
}
type Promo struct {
Created time.Time `json:"created"`
Coupon *stripe.Coupon `json:"coupon"`
Title string `json:"title"`
Description string `json:"description"`
RedeemWithin int `json:"redeemWithin"`
}
type Account struct {
Email string
Created time.Time
Customer *stripe.Customer
TrackingID string
Promo *Promo
CustomerUpdated time.Time
}
func (acc *Account) Subscription() *stripe.Subscription {
if acc.Customer == nil {
return nil
} else if subs := acc.Customer.Subscriptions.Data; len(subs) == 0 {
return nil
} else {
return subs[0]
}
}
// Implements the `Key` method of the `Storable` interface
func (acc *Account) Key() []byte {
return []byte(acc.Email)
}
// Implementation of the `Storable.Deserialize` method
func (acc *Account) Deserialize(data []byte) error {
return json.Unmarshal(data, acc)
}
// Implementation of the `Storable.Serialize` method
func (acc *Account) Serialize() ([]byte, error) {
return json.Marshal(acc)
}
func (acc *Account) SetCustomer(c *stripe.Customer) {
acc.Customer = c
acc.CustomerUpdated = time.Now()
}
func (acc *Account) CreateCustomer() error {
params := &stripe.CustomerParams{
Email: &acc.Email,
}
if c, err := customer.New(params); err != nil {
return err
} else {
acc.SetCustomer(c)
}
return acc.CreateSubscription()
}
func (acc *Account) UpdateCustomer() error {
if acc.Customer == nil {
if err := acc.CreateCustomer(); err != nil {
return err
}
} else if time.Since(acc.CustomerUpdated) > time.Hour*24 {
if c, err := customer.Get(acc.Customer.ID, nil); err != nil {
return err
} else {
acc.SetCustomer(c)
}
}
return nil
}
func (acc *Account) CreateSubscription() error {
plan := ChoosePlan()
TrialFromPlan := true
if s, err := sub.New(&stripe.SubscriptionParams{
Customer: &acc.Customer.ID,
Plan: &plan,
TrialFromPlan: &TrialFromPlan,
}); err != nil {
return err
} else {
acc.Customer.Subscriptions.Data = []*stripe.Subscription{s}
}
return nil
}
func (acc *Account) GetPaymentSource() *stripe.PaymentSource {
if acc.Customer == nil {
return nil
}
return acc.Customer.DefaultSource
}
func (acc *Account) SetPaymentSource(token string) error {
params := &stripe.CustomerParams{}
params.SetSource(token)
var err error
acc.Customer, err = customer.Update(acc.Customer.ID, params)
return err
}
func (acc *Account) HasActiveSubscription() bool {
subStatus, _ := acc.SubscriptionStatus()
return subStatus == "active"
}
func (acc *Account) SubscriptionStatus() (string, int64) {
status := ""
hasPaymentSource := acc.GetPaymentSource() != nil
var trialEnd int64 = 0
if s := acc.Subscription(); s != nil {
status = string(s.Status)
trialEnd = s.TrialEnd
} else if hasPaymentSource {
status = "canceled"
}
if (status == "" || status == "past_due" || status == "unpaid") && !hasPaymentSource {
status = "trial_expired"
}
return status, trialEnd
}
func (acc *Account) SubscriptionPlan() string {
if s := acc.Subscription(); s != nil {
if s.Plan.Nickname != "" {
return s.Plan.Nickname
} else {
return s.Plan.ID
}
} else {
return ""
}
}
func (acc *Account) RemainingTrialPeriod() time.Duration {
sub := acc.Subscription()
if sub == nil {
return 0
}
trialEnd := time.Unix(sub.TrialEnd, 0)
remaining := trialEnd.Sub(time.Now())
if remaining < 0 {
return 0
} else {
return remaining
}
}
func (acc *Account) RemainingTrialDays() int {
return int(acc.RemainingTrialPeriod().Hours()/24) + 1
}
func (subAcc *Account) ToMap(acc *pc.Account) map[string]interface{} {
accMap := acc.ToMap()
accMap["trackingID"] = subAcc.TrackingID
subStatus, trialEnd := subAcc.SubscriptionStatus()
accMap["subscription"] = map[string]interface{}{
"status": subStatus,
"trialEnd": trialEnd,
}
accMap["plan"] = planToMap(AvailablePlans[0])
if c := subAcc.Customer; c != nil {
var card *stripe.Card
if len(c.Sources.Data) != 0 && c.Sources.Data[0].Card != nil {
card = c.Sources.Data[0].Card
accMap["paymentSource"] = map[string]string{
"brand": string(card.Brand),
"lastFour": card.Last4,
}
}
billing := map[string]string{
"vat": "",
}
if c.Shipping != nil {
billing["name"] = c.Shipping.Name
billing["address1"] = c.Shipping.Address.Line1
billing["address2"] = c.Shipping.Address.Line2
billing["postalCode"] = c.Shipping.Address.PostalCode
billing["city"] = c.Shipping.Address.City
billing["country"] = c.Shipping.Address.Country
} else if card != nil {
billing["name"] = card.Name
billing["address1"] = card.AddressLine1
billing["address2"] = card.AddressLine2
billing["postalCode"] = card.AddressZip
billing["city"] = card.AddressCity
if card.AddressCountry != "" {
billing["country"] = card.AddressCountry
} else {
billing["country"] = card.Country
}
}
accMap["billing"] = billing
}
accMap["promo"] = subAcc.Promo
return accMap
}
func NewAccount(email string) (*Account, error) {
acc := &Account{
Email: email,
Created: time.Now(),
}
if err := acc.CreateCustomer(); err != nil {
return nil, err
}
return acc, nil
}
func PromoFromCoupon(couponCode string) (*Promo, error) {
if coup, err := coupon.Get(couponCode, nil); err != nil {
return nil, err
} else {
redeemWithin, _ := strconv.Atoi(coup.Metadata["redeemWithin"])
return &Promo{
Coupon: coup,
Title: coup.Metadata["title"],
Description: coup.Metadata["description"],
RedeemWithin: redeemWithin,
}, nil
}
}