-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusecase.go
500 lines (422 loc) · 10.9 KB
/
usecase.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
package main
import (
"context"
"errors"
"fmt"
"strconv"
"time"
"cloud.google.com/go/firestore"
"github.com/go-redis/redis"
)
const (
redisKey = `bid-%d`
AuctionStatusUnactive = 0
AuctionStatusActive = 1
AuctionStatusDone = 2
AuctionStatusDeactivated = 10
)
// core logic
func GetUserInfo(ctx context.Context, userID int64) (User, error) {
userData, err := GetUserInfoDB(ctx, userID)
if err != nil {
return User{}, err
}
return userData, nil
}
func GetAuctionDetail(ctx context.Context, request GetAuctionDetailRequest) (GetAuctionDetailResponse, error) {
var (
highestBidder User
highestBid int64
userID int64
err error
)
auctionData, err := GetAuctionDB(ctx, request.ProductID)
if err != nil {
return GetAuctionDetailResponse{}, err
}
fmt.Println(auctionData)
productData, err := GetProductDB(ctx, request.ProductID)
if err != nil {
return GetAuctionDetailResponse{}, err
}
fmt.Println(productData)
// get timewindow
timeWindow, err := GetTimeWindowDB(ctx, auctionData.ID)
if err != nil {
return GetAuctionDetailResponse{}, err
}
fmt.Println(timeWindow)
resp := GetHighestBid(ctx, auctionData.ID)
if resp != nil {
for _, val := range resp.Val() {
highestBid = int64(val.Score)
userID, _ = itfToInt64(val.Member)
}
if userID > 0 {
highestBidder, err = GetUserInfoDB(ctx, userID)
if err != nil {
return GetAuctionDetailResponse{}, err
}
}
}
return GetAuctionDetailResponse{
ProductDetail: ProductDetail{
Product: productData,
Auction: auctionData,
HighestBidder: highestBidder,
HighestBid: highestBid,
Countdown: (timeWindow.EndTime.UnixMilli() - time.Now().UnixMilli()),
},
}, nil
}
func AuctionBidding(ctx context.Context, payload AuctionBidRequest) (response AuctionBidResponse, err error) {
// Get auction
auctionData, err := GetAuctionDB(ctx, payload.ProductID)
if err != nil {
return AuctionBidResponse{}, err
}
// Check for auction status; Auction should be deactivated if TW expired w cron
if auctionData.Status == AuctionStatusDeactivated {
return AuctionBidResponse{
ResultStatus: ResultStatus{
IsSuccess: false,
Message: "Time's up guyz",
},
}, nil
}
// Multiplier validation
if (payload.Amount % auctionData.Multiplier) != 0 {
return AuctionBidResponse{
ResultStatus: ResultStatus{
IsSuccess: false,
Message: fmt.Sprintf("Hanya untuk kelipatan %d!", auctionData.Multiplier),
},
}, nil
}
// Get userinfo
userData, err := GetUserInfo(ctx, payload.UserID)
if err != nil {
return AuctionBidResponse{}, err
}
// Balance validation
if userData.Balance <= 0 {
return AuctionBidResponse{
ResultStatus: ResultStatus{
IsSuccess: false,
Message: "Top up dulu bang!",
},
}, nil
}
// Get total sum of prev bid(s)
sumBid, err := GetSumBidCollection(ctx, payload.UserID, auctionData.ID)
if err != nil {
return AuctionBidResponse{}, err
}
bidAmount := (payload.Amount - sumBid)
// check balance query ke user get blanace (current bid - bidded balance)
deductedBalance := userData.Balance - bidAmount
if deductedBalance < 0 {
return AuctionBidResponse{
ResultStatus: ResultStatus{
IsSuccess: false,
Message: "Top up dulu bang!",
},
}, nil
}
fmt.Println("SUMBID: ", sumBid)
fmt.Println("DDDD: ", deductedBalance)
fmt.Println("BID AMOUNT: ", bidAmount)
// deduct balance
err = UpdateBalance(ctx, userData.ID, deductedBalance)
if err != nil {
return AuctionBidResponse{}, err
}
// NSQ NOT WORKING
// err = DoPublishNSQ("Update_Scoreboard", UpdateScoreboardNSQ{
// UserID: payload.UserID,
// BidAmount: bidAmount,
// })
// if err != nil {
// return AuctionBidResponse{}, err
// }
// err = DoPublishNSQ("Insert_Collection_And_Payment", InsertPaymentAndBidCollectionNSQ{
// Payment: Payment{
// UserID: payload.UserID,
// Amount: bidAmount,
// Status: 1,
// },
// BidCollection: BidCollection{
// UserID: payload.UserID,
// AuctionID: auctionData.ID,
// CurrentBid: bidAmount,
// // PaymentID: ,
// },
// })
// if err != nil {
// return AuctionBidResponse{}, err
// }
// this is supposed to use NSQ
err = InsertBidCollectionAndPayment(ctx, BidCollection{
UserID: payload.UserID,
AuctionID: auctionData.ID,
CurrentBid: bidAmount,
}, Payment{
UserID: payload.UserID,
Amount: bidAmount,
Status: 1,
})
if err != nil {
fmt.Println(err)
return AuctionBidResponse{
ResultStatus: ResultStatus{
IsSuccess: true,
Message: "Maaf terjadi kendala",
},
}, nil
}
// this is supposed to use NSQ with max in flight 1 Update_Scoreboard
CheckHighestBid(ctx, payload.Amount, payload.UserID, auctionData.ID)
return AuctionBidResponse{
ResultStatus: ResultStatus{
IsSuccess: true,
Message: "Success bidding!",
},
}, nil
}
func CheckHighestBid(ctx context.Context, bid int64, userID int64, auctionID int64) {
var (
highestBid int64
)
response := GetHighestBid(ctx, auctionID)
if response == nil {
fmt.Println("error GetHighestBid: nil")
return
}
for _, val := range response.Val() {
highestBid = int64(val.Score)
}
if bid > highestBid {
UpdateAuctionBidDB(ctx, Auction{
ID: auctionID,
WinnerUserID: userID,
HighestBid: bid,
})
cmd := RedisClient.ZAdd(fmt.Sprintf(redisKey, auctionID),
redis.Z{
Score: float64(bid),
Member: userID,
})
if cmd.Err() != nil {
fmt.Println(cmd.Err().Error())
return
}
}
fmt.Printf("%+v\n", clientFirestore)
_, err := clientFirestore.Collection("auction").Doc(fmt.Sprintf("%d", auctionID)).Update(ctx, []firestore.Update{
{
Path: "current_bid",
Value: bid,
},
})
if err != nil {
return
}
return
}
func GetHighestBid(ctx context.Context, auctionID int64) *redis.ZSliceCmd {
key := fmt.Sprintf(redisKey, auctionID)
return RedisClient.ZRevRangeWithScores(key, 0, 0)
}
func InsertBidCollectionAndPayment(ctx context.Context, bidCollection BidCollection, payment Payment) error {
var (
paymentID int64
err error
)
paymentID, err = InsertPayment(ctx, payment)
if err != nil {
fmt.Println(err)
return err
}
bidCollection.PaymentID = paymentID
err = InsertBidCollection(ctx, bidCollection)
if err != nil {
fmt.Println(err)
return err
}
return nil
}
func Login(ctx context.Context, username, password string) (User, error) {
user, err := GetUser(ctx, username, password)
if err != nil {
return User{}, err
}
return user, nil
}
func InsertAuction(ctx context.Context, auctionRequest CreateAuctionRequest) (ResultStatus, error) {
product := Product{
UserID: auctionRequest.UserID,
ProductName: auctionRequest.ProductName,
ImageURL: auctionRequest.ProductImageURL,
}
productID, err := InsertProductDB(ctx, product)
if err != nil {
fmt.Println("got error: ", err)
return ResultStatus{
Message: "Terjadi kesalahan",
IsSuccess: false,
}, nil
}
auction := Auction{
ProductID: productID,
Multiplier: auctionRequest.Multiplier,
Status: AuctionStatusActive, // harusnya ada cron buat activate; pas dibuat status unactivated
}
auctionID, err := InsertAuctionDB(ctx, auction)
if err != nil {
fmt.Println("got error: ", err)
return ResultStatus{
Message: "Terjadi kesalahan",
IsSuccess: false,
}, nil
}
timeWindow := TimeWindow{
AuctionID: auctionID,
StartTime: auctionRequest.StartTime,
EndTime: auctionRequest.EndTime,
}
err = InsertTWDB(ctx, timeWindow)
if err != nil {
fmt.Println("got error: ", err)
return ResultStatus{
Message: "Terjadi kesalahan",
IsSuccess: false,
}, nil
}
clientFirestore.Collection("auction").Doc(fmt.Sprintf("%d", auctionID)).Set(ctx, FirestoreAuction{
ID: auctionID,
CurrentBid: 0.0,
})
return ResultStatus{
Message: "Sukses",
IsSuccess: true,
}, nil
}
func GetAuctionList(ctx context.Context, userID int64, sortAsc bool) (response GetAuctionListResponse, err error) {
switch userID > 0 {
case true: // represent seller flow; will get based on user id
response, err = GetAuctionListSeller(ctx, userID)
default: // represent buyer flow; will get all
response, err = GetAuctionListBuyer(ctx)
}
if err != nil {
return GetAuctionListResponse{}, err
}
return response, nil
}
func GetAuctionListSeller(ctx context.Context, userID int64) (response GetAuctionListResponse, err error) {
products, err := GetProductByUserIDDB(ctx, userID)
if err != nil {
return GetAuctionListResponse{}, err
}
for idx := range products {
auction, err := GetAuctionDB(ctx, products[idx].ID)
if err != nil {
return GetAuctionListResponse{}, err
}
var (
userID int64
highestBid int64
highestBidder User
)
resp := GetHighestBid(ctx, auction.ID)
if resp != nil {
for _, val := range resp.Val() {
highestBid = int64(val.Score)
userID, _ = itfToInt64(val.Member)
}
if userID > 0 {
highestBidder, err = GetUserInfoDB(ctx, userID)
if err != nil {
return GetAuctionListResponse{}, err
}
}
}
response.ProductDetail = append(response.ProductDetail, ProductDetail{
Product: products[idx],
Auction: auction,
HighestBidder: highestBidder,
HighestBid: highestBid,
})
}
return response, nil
}
func itfToInt64(t interface{}) (int64, error) {
switch t := t.(type) { // This is a type switch.
case int64:
return t, nil // All done if we got an int64.
case int:
return int64(t), nil // This uses a conversion from int to int64
case string:
return strconv.ParseInt(t, 10, 64)
default:
return 0, errors.New("data type invalid/unknown")
}
}
func GetAuctionListBuyer(ctx context.Context) (response GetAuctionListResponse, err error) {
// get all auction
auctions, err := GetAllAuction(ctx)
fmt.Println(err, " 1 //")
if err != nil {
return GetAuctionListResponse{}, err
}
// TODO: improve this logic
for idx := range auctions {
product, err := GetProductDB(ctx, auctions[idx].ProductID)
fmt.Println(err, " 2")
if err != nil {
return GetAuctionListResponse{}, err
}
var (
userID int64
highestBid int64
highestBidder User
)
resp := GetHighestBid(ctx, auctions[idx].ID)
if resp != nil {
for _, val := range resp.Val() {
highestBid = int64(val.Score)
userID, _ = itfToInt64(val.Member)
fmt.Println("uid:" + fmt.Sprint(userID))
}
if userID > 0 {
highestBidder, err = GetUserInfoDB(ctx, userID)
if err != nil {
return GetAuctionListResponse{}, err
}
}
}
response.ProductDetail = append(response.ProductDetail, ProductDetail{
Product: product,
Auction: auctions[idx],
HighestBidder: highestBidder,
HighestBid: highestBid,
})
}
return response, nil
}
func IsMatchError(err1 error, err2 error) bool {
if err1 == nil && err2 == nil {
return true
}
if err1 == nil {
err1 = errors.New("nil")
}
if err2 == nil {
err2 = errors.New("nil")
}
// for now comparing the message only, because if comparing errors will panic
if err1.Error() == err2.Error() {
return true
}
return false
}