* fix(database): correct name entry for SingBox in initialization script * fix(purchase): update gift amount deduction logic and handle zero-amount order status * feat: add type and default fields to rule group requests and update related logic * feat(rule): implement logic to set a default rule group during creation and update * fix(rule): add type and default fields to rule group model and update related logic * feat(proxy): enhance proxy group handling and sorting logic * refactor(proxy): replace hardcoded group names with constants for better maintainability * fix(proxy): update group selection logic to skip empty and default names * feat(proxy): enhance proxy and group handling with new configuration options * feat(surge): add Surge adapter support and enhance subscription URL handling * feat(traffic): implement traffic reset logic for subscription cycles * feat(auth): improve email and mobile config unmarshalling with default values * fix(auth) upbind email not update * fix(order) discount set default 1 * fix(order) discount set default 1 * fix: refactor surfboard proxy handling and enhance configuration template * fix(renewal) discount set default 1 * feat(loon): add Loon configuration template and enhance proxy handling * feat(subscription): update user subscription status based on expiration time * fix(renewal): update subscription retrieval method to use token instead of order ID * feat(order): enhance order processing logic with improved error handling and user subscription management * fix(order): improve code quality and fix critical bugs in order processing logic - Fix inconsistent logging calls across all order logic files - Fix critical gift amount deduction logic bug in renewal process - Fix variable shadowing errors in database transactions - Add comprehensive Go-standard documentation comments - Improve log prefix consistency for better debugging - Remove redundant discount validation code * fix(docker): add build argument for version in Docker image build process * feat(version): add endpoint to retrieve application version information * fix(auth): improve user authentication method logic and update user cache * feat(user): add ordering functionality to user list retrieval * fix(RevenueStatistics) fill list * fix(UserStatistics) fill list * fix(user): implement user cache clearing after auth method operations * fix(auth): enhance OAuth login logic with improved request handling and user registration flow * fix(user): implement sorting for authentication methods based on priority * fix(user): correct ordering clause for user retrieval based on filter * refactor(user): streamline cache management and enhance cache clearing logic * feat(logs) set logs volume in develop * fix(handler): implement browser interception to deny access for specific user agents * fix(resetTraffic) reset daily server * refactor(trojan): remove unused parameter and clean up logging in slice * fix(middleware): add domain length check and improve user-agent handling * fix(middleware): reorder domain processing and enhance user-agent handling * fix(resetTraffic): update subscription reset logic to use expire_time for monthly and yearly checks * fix(scheduler): update reset traffic task schedule to run daily at 00:30 * fix(traffic): enhance traffic reset logic for subscriptions and adjust status checks * fix(activateOrder): update traffic reset logic to include reset day check * feat(marketing): add batch email task management API and logic * feat(application): implement CRUD operations for subscribe applications * feat(types): add user agent limit and list to subscription configuration * feat(application): update subscription application requests to include structured download links * feat(application): add scheme field and download link handling to subscribe application * feat(application): add endpoint to retrieve client information * feat(application): move DownloadLink and SubscribeApplication types to types.api * feat(application): add DownloadLink and SubscribeClient types, update client response structure * feat(application): remove ProxyTemplate field from application API * feat(application): implement adapter for client configuration and add preview template functionality * feat(application): move DownloadLink type to types.api and remove from common.api * feat(application): update PreviewSubscribeTemplate to return structured response * feat(application): remove ProxyTemplate field from application API * feat(application): enhance cache key generation for user list and server data * feat(subscribe): add ClearCache method to manage subscription cache invalidation * feat(payment): add Description field to PaymentMethodDetail response * feat(subscribe): update next reset time calculation to use ExpireTime * feat(purchase): include handling fee in total amount calculation * feat(subscribe): add V2SubscribeHandler and logic for enhanced subscription management * feat(subscribe): add output format configuration to subscription adapter * feat(application): default data --------- Co-authored-by: Chang lue Tsen <tension@ppanel.dev> Co-authored-by: NoWay <Bob455668@hotmail.com>
411 lines
16 KiB
Go
411 lines
16 KiB
Go
package user
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/perfect-panel/server/internal/model/subscribe"
|
|
"github.com/redis/go-redis/v9"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
const (
|
|
cacheUserSubscribeTokenPrefix = "cache:user:subscribe:token:"
|
|
cacheUserSubscribeUserPrefix = "cache:user:subscribe:user:"
|
|
cacheUserSubscribeIdPrefix = "cache:user:subscribe:id:"
|
|
cacheUserDeviceNumberPrefix = "cache:user:device:number:"
|
|
cacheUserDeviceIdPrefix = "cache:user:device:id:"
|
|
)
|
|
|
|
type SubscribeDetails struct {
|
|
Id int64 `gorm:"primarykey"`
|
|
UserId int64 `gorm:"index:idx_user_id;not null;comment:User ID"`
|
|
User *User `gorm:"foreignKey:UserId;references:Id"`
|
|
OrderId int64 `gorm:"index:idx_order_id;not null;comment:Order ID"`
|
|
SubscribeId int64 `gorm:"index:idx_subscribe_id;not null;comment:Subscription ID"`
|
|
Subscribe *subscribe.Subscribe `gorm:"foreignKey:SubscribeId;references:Id"`
|
|
StartTime time.Time `gorm:"default:CURRENT_TIMESTAMP(3);not null;comment:Subscription Start Time"`
|
|
ExpireTime time.Time `gorm:"default:NULL;comment:Subscription Expire Time"`
|
|
FinishedAt *time.Time `gorm:"default:NULL;comment:Finished Time"`
|
|
Traffic int64 `gorm:"default:0;comment:Traffic"`
|
|
Download int64 `gorm:"default:0;comment:Download Traffic"`
|
|
Upload int64 `gorm:"default:0;comment:Upload Traffic"`
|
|
Token string `gorm:"index:idx_token;unique;type:varchar(255);default:'';comment:Token"`
|
|
UUID string `gorm:"type:varchar(255);unique;index:idx_uuid;default:'';comment:UUID"`
|
|
Status uint8 `gorm:"type:tinyint(1);default:0;comment:Subscription Status: 0: Pending 1: Active 2: Finished 3: Expired; 4: Cancelled"`
|
|
CreatedAt time.Time `gorm:"<-:create;comment:Creation Time"`
|
|
UpdatedAt time.Time `gorm:"comment:Update Time"`
|
|
}
|
|
|
|
type SubscribeLogFilterParams struct {
|
|
IP string
|
|
UserAgent string
|
|
UserId int64
|
|
Token string
|
|
UserSubscribeId int64
|
|
}
|
|
|
|
type LoginLogFilterParams struct {
|
|
IP string
|
|
UserId int64
|
|
UserAgent string
|
|
Success *bool
|
|
}
|
|
|
|
type UserFilterParams struct {
|
|
Search string
|
|
UserId *int64
|
|
SubscribeId *int64
|
|
UserSubscribeId *int64
|
|
Order string // Order by id, e.g., "desc"
|
|
}
|
|
|
|
type customUserLogicModel interface {
|
|
QueryPageList(ctx context.Context, page, size int, filter *UserFilterParams) ([]*User, int64, error)
|
|
FindOneByReferCode(ctx context.Context, referCode string) (*User, error)
|
|
BatchDeleteUser(ctx context.Context, ids []int64, tx ...*gorm.DB) error
|
|
InsertSubscribe(ctx context.Context, data *Subscribe, tx ...*gorm.DB) error
|
|
FindOneSubscribeByToken(ctx context.Context, token string) (*Subscribe, error)
|
|
FindOneSubscribeByOrderId(ctx context.Context, orderId int64) (*Subscribe, error)
|
|
FindOneSubscribe(ctx context.Context, id int64) (*Subscribe, error)
|
|
UpdateSubscribe(ctx context.Context, data *Subscribe, tx ...*gorm.DB) error
|
|
DeleteSubscribe(ctx context.Context, token string, tx ...*gorm.DB) error
|
|
DeleteSubscribeById(ctx context.Context, id int64, tx ...*gorm.DB) error
|
|
QueryUserSubscribe(ctx context.Context, userId int64, status ...int64) ([]*SubscribeDetails, error)
|
|
FindOneSubscribeDetailsById(ctx context.Context, id int64) (*SubscribeDetails, error)
|
|
FindOneUserSubscribe(ctx context.Context, id int64) (*SubscribeDetails, error)
|
|
InsertBalanceLog(ctx context.Context, data *BalanceLog, tx ...*gorm.DB) error
|
|
FindUsersSubscribeBySubscribeId(ctx context.Context, subscribeId int64) ([]*Subscribe, error)
|
|
UpdateUserSubscribeWithTraffic(ctx context.Context, id, download, upload int64, tx ...*gorm.DB) error
|
|
QueryResisterUserTotalByDate(ctx context.Context, date time.Time) (int64, error)
|
|
QueryResisterUserTotalByMonthly(ctx context.Context, date time.Time) (int64, error)
|
|
QueryResisterUserTotal(ctx context.Context) (int64, error)
|
|
QueryAdminUsers(ctx context.Context) ([]*User, error)
|
|
UpdateUserCache(ctx context.Context, data *User) error
|
|
UpdateUserSubscribeCache(ctx context.Context, data *Subscribe) error
|
|
InsertCommissionLog(ctx context.Context, data *CommissionLog, tx ...*gorm.DB) error
|
|
QueryActiveSubscriptions(ctx context.Context, subscribeId ...int64) (map[int64]int64, error)
|
|
FindUserAuthMethods(ctx context.Context, userId int64) ([]*AuthMethods, error)
|
|
InsertUserAuthMethods(ctx context.Context, data *AuthMethods, tx ...*gorm.DB) error
|
|
UpdateUserAuthMethods(ctx context.Context, data *AuthMethods, tx ...*gorm.DB) error
|
|
DeleteUserAuthMethods(ctx context.Context, userId int64, platform string, tx ...*gorm.DB) error
|
|
FindUserAuthMethodByOpenID(ctx context.Context, method, openID string) (*AuthMethods, error)
|
|
FindUserAuthMethodByUserId(ctx context.Context, method string, userId int64) (*AuthMethods, error)
|
|
FindUserAuthMethodByPlatform(ctx context.Context, userId int64, platform string) (*AuthMethods, error)
|
|
FindOneByEmail(ctx context.Context, email string) (*User, error)
|
|
FindOneDevice(ctx context.Context, id int64) (*Device, error)
|
|
QueryDevicePageList(ctx context.Context, userid, subscribeId int64, page, size int) ([]*Device, int64, error)
|
|
UpdateDevice(ctx context.Context, data *Device, tx ...*gorm.DB) error
|
|
FindOneDeviceByIdentifier(ctx context.Context, id string) (*Device, error)
|
|
DeleteDevice(ctx context.Context, id int64, tx ...*gorm.DB) error
|
|
|
|
InsertSubscribeLog(ctx context.Context, log *SubscribeLog) error
|
|
FilterSubscribeLogList(ctx context.Context, page, size int, filter *SubscribeLogFilterParams) ([]*SubscribeLog, int64, error)
|
|
InsertLoginLog(ctx context.Context, log *LoginLog) error
|
|
FilterLoginLogList(ctx context.Context, page, size int, filter *LoginLogFilterParams) ([]*LoginLog, int64, error)
|
|
|
|
ClearSubscribeCache(ctx context.Context, data ...*Subscribe) error
|
|
clearUserCache(ctx context.Context, data ...*User) error
|
|
|
|
InsertResetSubscribeLog(ctx context.Context, log *ResetSubscribeLog, tx ...*gorm.DB) error
|
|
UpdateResetSubscribeLog(ctx context.Context, log *ResetSubscribeLog, tx ...*gorm.DB) error
|
|
FindResetSubscribeLog(ctx context.Context, id int64) (*ResetSubscribeLog, error)
|
|
DeleteResetSubscribeLog(ctx context.Context, id int64, tx ...*gorm.DB) error
|
|
FilterResetSubscribeLogList(ctx context.Context, filter *FilterResetSubscribeLogParams) ([]*ResetSubscribeLog, int64, error)
|
|
|
|
QueryDailyUserStatisticsList(ctx context.Context, date time.Time) ([]UserStatisticsWithDate, error)
|
|
QueryMonthlyUserStatisticsList(ctx context.Context, date time.Time) ([]UserStatisticsWithDate, error)
|
|
}
|
|
|
|
type UserStatisticsWithDate struct {
|
|
Date string
|
|
Register int64
|
|
NewOrderUsers int64
|
|
RenewalOrderUsers int64
|
|
}
|
|
|
|
// NewModel returns a model for the database table.
|
|
func NewModel(conn *gorm.DB, c *redis.Client) Model {
|
|
return &customUserModel{
|
|
defaultUserModel: newUserModel(conn, c),
|
|
}
|
|
}
|
|
|
|
// QueryPageList returns a list of records that meet the conditions.
|
|
func (m *customUserModel) QueryPageList(ctx context.Context, page, size int, filter *UserFilterParams) ([]*User, int64, error) {
|
|
var list []*User
|
|
var total int64
|
|
err := m.QueryNoCacheCtx(ctx, &list, func(conn *gorm.DB, v interface{}) error {
|
|
if filter != nil {
|
|
if filter.UserId != nil {
|
|
conn = conn.Where("user.id =?", *filter.UserId)
|
|
}
|
|
if filter.Search != "" {
|
|
conn = conn.Joins("LEFT JOIN user_auth_methods ON user.id = user_auth_methods.user_id").
|
|
Where("user_auth_methods.auth_identifier LIKE ?", "%"+filter.Search+"%").Or("user.refer_code like ?", "%"+filter.Search+"%")
|
|
}
|
|
if filter.UserSubscribeId != nil {
|
|
conn = conn.Joins("LEFT JOIN user_subscribe ON user.id = user_subscribe.user_id").
|
|
Where("user_subscribe.id =? and `status` IN (0,1)", *filter.UserSubscribeId)
|
|
}
|
|
if filter.SubscribeId != nil {
|
|
conn = conn.Joins("LEFT JOIN user_subscribe ON user.id = user_subscribe.user_id").
|
|
Where("user_subscribe.subscribe_id =? and `status` IN (0,1)", *filter.SubscribeId)
|
|
}
|
|
if filter.Order != "" {
|
|
conn = conn.Order(fmt.Sprintf("user.id %s", filter.Order))
|
|
}
|
|
}
|
|
return conn.Model(&User{}).Group("user.id").Count(&total).Limit(size).Offset((page - 1) * size).Preload("UserDevices").Preload("AuthMethods").Find(&list).Error
|
|
})
|
|
return list, total, err
|
|
}
|
|
|
|
// BatchDeleteUser deletes multiple records by primary key.
|
|
func (m *customUserModel) BatchDeleteUser(ctx context.Context, ids []int64, tx ...*gorm.DB) error {
|
|
var users []*User
|
|
err := m.QueryNoCacheCtx(ctx, &users, func(conn *gorm.DB, v interface{}) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Where("id in ?", ids).Find(&users).Error
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return m.ExecCtx(ctx, func(conn *gorm.DB) error {
|
|
return conn.Where("id in ?", ids).Delete(&User{}).Error
|
|
}, m.batchGetCacheKeys(users...)...)
|
|
}
|
|
|
|
// InsertBalanceLog insert BalanceLog into the database.
|
|
func (m *customUserModel) InsertBalanceLog(ctx context.Context, data *BalanceLog, tx ...*gorm.DB) error {
|
|
return m.ExecNoCacheCtx(ctx, func(conn *gorm.DB) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Create(data).Error
|
|
})
|
|
}
|
|
|
|
// FindUserBalanceLogList returns a list of records that meet the conditions.
|
|
func (m *customUserModel) FindUserBalanceLogList(ctx context.Context, userId int64, page, size int) ([]*BalanceLog, int64, error) {
|
|
var list []*BalanceLog
|
|
var total int64
|
|
err := m.QueryNoCacheCtx(ctx, &list, func(conn *gorm.DB, v interface{}) error {
|
|
|
|
return conn.Model(&BalanceLog{}).Where("`user_id` = ?", userId).Count(&total).Limit(size).Offset((page - 1) * size).Find(&list).Error
|
|
})
|
|
return list, total, err
|
|
}
|
|
|
|
func (m *customUserModel) UpdateUserSubscribeWithTraffic(ctx context.Context, id, download, upload int64, tx ...*gorm.DB) error {
|
|
sub, err := m.FindOneSubscribe(ctx, id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// 使用 defer 确保更新后清理缓存
|
|
defer func() {
|
|
if clearErr := m.ClearSubscribeCacheByModels(ctx, sub); clearErr != nil {
|
|
// 记录清理缓存错误
|
|
}
|
|
}()
|
|
|
|
return m.ExecNoCacheCtx(ctx, func(conn *gorm.DB) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Model(&Subscribe{}).Where("id = ?", id).Updates(map[string]interface{}{
|
|
"download": gorm.Expr("download + ?", download),
|
|
"upload": gorm.Expr("upload + ?", upload),
|
|
}).Error
|
|
})
|
|
}
|
|
|
|
func (m *customUserModel) QueryResisterUserTotalByDate(ctx context.Context, date time.Time) (int64, error) {
|
|
var total int64
|
|
start := date.Truncate(24 * time.Hour)
|
|
end := start.Add(24 * time.Hour).Add(-time.Second)
|
|
err := m.QueryNoCacheCtx(ctx, &total, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&User{}).Where("created_at > ? and created_at < ?", start, end).Count(&total).Error
|
|
})
|
|
return total, err
|
|
}
|
|
|
|
func (m *customUserModel) QueryResisterUserTotalByMonthly(ctx context.Context, date time.Time) (int64, error) {
|
|
var total int64
|
|
start := time.Date(date.Year(), date.Month(), 1, 0, 0, 0, 0, time.Local)
|
|
end := start.AddDate(0, 1, 0).Add(-time.Nanosecond)
|
|
err := m.QueryNoCacheCtx(ctx, &total, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&User{}).Where("created_at > ? and created_at < ?", start, end).Count(&total).Error
|
|
})
|
|
return total, err
|
|
}
|
|
|
|
func (m *customUserModel) QueryResisterUserTotal(ctx context.Context) (int64, error) {
|
|
var total int64
|
|
err := m.QueryNoCacheCtx(ctx, &total, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&User{}).Count(&total).Error
|
|
})
|
|
return total, err
|
|
}
|
|
|
|
func (m *customUserModel) QueryAdminUsers(ctx context.Context) ([]*User, error) {
|
|
var data []*User
|
|
err := m.QueryNoCacheCtx(ctx, &data, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&User{}).Preload("AuthMethods").Where("is_admin = ?", true).Find(&data).Error
|
|
})
|
|
return data, err
|
|
}
|
|
|
|
func (m *customUserModel) UpdateUserCache(ctx context.Context, data *User) error {
|
|
return m.ClearUserCache(ctx, data)
|
|
}
|
|
|
|
func (m *customUserModel) InsertCommissionLog(ctx context.Context, data *CommissionLog, tx ...*gorm.DB) error {
|
|
return m.ExecNoCacheCtx(ctx, func(conn *gorm.DB) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Model(&CommissionLog{}).Create(data).Error
|
|
})
|
|
}
|
|
|
|
func (m *customUserModel) FindOneByReferCode(ctx context.Context, referCode string) (*User, error) {
|
|
var data User
|
|
err := m.QueryNoCacheCtx(ctx, &data, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&User{}).Where("refer_code = ?", referCode).First(&data).Error
|
|
})
|
|
return &data, err
|
|
}
|
|
|
|
func (m *customUserModel) FindOneSubscribeDetailsById(ctx context.Context, id int64) (*SubscribeDetails, error) {
|
|
var data SubscribeDetails
|
|
err := m.QueryNoCacheCtx(ctx, &data, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&Subscribe{}).Preload("Subscribe").Preload("User").Where("id = ?", id).First(&data).Error
|
|
})
|
|
return &data, err
|
|
}
|
|
|
|
func (m *customUserModel) InsertResetSubscribeLog(ctx context.Context, log *ResetSubscribeLog, tx ...*gorm.DB) error {
|
|
return m.ExecNoCacheCtx(ctx, func(conn *gorm.DB) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Model(&ResetSubscribeLog{}).Create(log).Error
|
|
})
|
|
}
|
|
|
|
func (m *customUserModel) UpdateResetSubscribeLog(ctx context.Context, log *ResetSubscribeLog, tx ...*gorm.DB) error {
|
|
return m.ExecNoCacheCtx(ctx, func(conn *gorm.DB) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Model(&ResetSubscribeLog{}).Where("id = ?", log.Id).Updates(log).Error
|
|
})
|
|
}
|
|
|
|
func (m *customUserModel) FindResetSubscribeLog(ctx context.Context, id int64) (*ResetSubscribeLog, error) {
|
|
var data ResetSubscribeLog
|
|
err := m.QueryNoCacheCtx(ctx, &data, func(conn *gorm.DB, v interface{}) error {
|
|
return conn.Model(&ResetSubscribeLog{}).Where("id = ?", id).First(&data).Error
|
|
})
|
|
return &data, err
|
|
}
|
|
|
|
func (m *customUserModel) DeleteResetSubscribeLog(ctx context.Context, id int64, tx ...*gorm.DB) error {
|
|
return m.ExecNoCacheCtx(ctx, func(conn *gorm.DB) error {
|
|
if len(tx) > 0 {
|
|
conn = tx[0]
|
|
}
|
|
return conn.Model(&ResetSubscribeLog{}).Where("id = ?", id).Delete(&ResetSubscribeLog{}).Error
|
|
})
|
|
}
|
|
|
|
func (m *customUserModel) FilterResetSubscribeLogList(ctx context.Context, filter *FilterResetSubscribeLogParams) ([]*ResetSubscribeLog, int64, error) {
|
|
if filter == nil {
|
|
return nil, 0, errors.New("filter params is nil")
|
|
}
|
|
|
|
var list []*ResetSubscribeLog
|
|
var total int64
|
|
|
|
err := m.QueryNoCacheCtx(ctx, &list, func(conn *gorm.DB, v interface{}) error {
|
|
query := conn.Model(&ResetSubscribeLog{})
|
|
|
|
// 应用筛选条件
|
|
if filter.UserId != 0 {
|
|
query = query.Where("user_id = ?", filter.UserId)
|
|
}
|
|
if filter.UserSubscribeId != 0 {
|
|
query = query.Where("user_subscribe_id = ?", filter.UserSubscribeId)
|
|
}
|
|
if filter.Type != 0 {
|
|
query = query.Where("type = ?", filter.Type)
|
|
}
|
|
if filter.OrderNo != "" {
|
|
query = query.Where("order_no = ?", filter.OrderNo)
|
|
}
|
|
|
|
// 计算总数
|
|
if err := query.Count(&total).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
// 应用分页
|
|
if filter.Page > 0 && filter.Size > 0 {
|
|
query = query.Offset((filter.Page - 1) * filter.Size)
|
|
}
|
|
if filter.Size > 0 {
|
|
query = query.Limit(filter.Size)
|
|
}
|
|
|
|
return query.Find(&list).Error
|
|
})
|
|
|
|
return list, total, err
|
|
}
|
|
|
|
// QueryDailyUserStatisticsList Query daily user statistics list for the current month (from 1st to current date)
|
|
func (m *customUserModel) QueryDailyUserStatisticsList(ctx context.Context, date time.Time) ([]UserStatisticsWithDate, error) {
|
|
var results []UserStatisticsWithDate
|
|
err := m.QueryNoCacheCtx(ctx, &results, func(conn *gorm.DB, v interface{}) error {
|
|
firstDay := time.Date(date.Year(), date.Month(), 1, 0, 0, 0, 0, date.Location())
|
|
return conn.Model(&User{}).
|
|
Select(
|
|
"DATE(created_at) as date, "+
|
|
"COUNT(*) as register, "+
|
|
"0 as new_order_users, "+
|
|
"0 as renewal_order_users",
|
|
).
|
|
Where("created_at BETWEEN ? AND ?", firstDay, date).
|
|
Group("DATE(created_at)").
|
|
Order("date ASC").
|
|
Scan(v).Error
|
|
})
|
|
return results, err
|
|
}
|
|
|
|
// QueryMonthlyUserStatisticsList Query monthly user statistics list for the past 6 months
|
|
func (m *customUserModel) QueryMonthlyUserStatisticsList(ctx context.Context, date time.Time) ([]UserStatisticsWithDate, error) {
|
|
var results []UserStatisticsWithDate
|
|
err := m.QueryNoCacheCtx(ctx, &results, func(conn *gorm.DB, v interface{}) error {
|
|
sixMonthsAgo := date.AddDate(0, -5, 0)
|
|
return conn.Model(&User{}).
|
|
Select(
|
|
"DATE_FORMAT(created_at, '%Y-%m') as date, "+
|
|
"COUNT(*) as register, "+
|
|
"0 as new_order_users, "+
|
|
"0 as renewal_order_users",
|
|
).
|
|
Where("created_at >= ?", sixMonthsAgo).
|
|
Group("DATE_FORMAT(created_at, '%Y-%m')").
|
|
Order("date ASC").
|
|
Scan(v).Error
|
|
})
|
|
return results, err
|
|
}
|