|
|
|
// Copyright 2023 ROC. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package sakila
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
|
|
"github.com/rocboss/paopao-ce/pkg/debug"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ core.WalletService = (*walletServant)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
type walletServant struct {
|
|
|
|
*sqlxServant
|
|
|
|
stmtAddRecharge *sqlx.Stmt
|
|
|
|
stmtGetRecharge *sqlx.Stmt
|
|
|
|
stmtGetBills *sqlx.Stmt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *walletServant) GetRechargeByID(id int64) (*core.WalletRecharge, error) {
|
|
|
|
// TODO
|
|
|
|
debug.NotImplemented()
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
func (s *walletServant) CreateRecharge(userId, amount int64) (*core.WalletRecharge, error) {
|
|
|
|
// TODO
|
|
|
|
debug.NotImplemented()
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *walletServant) GetUserWalletBills(userID int64, offset, limit int) ([]*core.WalletStatement, error) {
|
|
|
|
// TODO
|
|
|
|
debug.NotImplemented()
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *walletServant) GetUserWalletBillCount(userID int64) (int64, error) {
|
|
|
|
// TODO
|
|
|
|
debug.NotImplemented()
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *walletServant) HandleRechargeSuccess(recharge *core.WalletRecharge, tradeNo string) error {
|
|
|
|
// TODO
|
|
|
|
debug.NotImplemented()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *walletServant) HandlePostAttachmentBought(post *core.Post, user *core.User) error {
|
|
|
|
// TODO
|
|
|
|
debug.NotImplemented()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newWalletService(db *sqlx.DB) core.WalletService {
|
|
|
|
return &walletServant{
|
|
|
|
sqlxServant: newSqlxServant(db),
|
|
|
|
stmtAddRecharge: c(`SELECT * FROM @person WHERE first_name=?`),
|
|
|
|
stmtGetRecharge: c(`SELECT * FROM @person WHERE first_name=?`),
|
|
|
|
stmtGetBills: c(`SELECT * FROM @person WHERE first_name=?`),
|
|
|
|
}
|
|
|
|
}
|