2023-01-21 13:13:33 +00:00
|
|
|
package dao
|
2023-01-12 12:42:16 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-05-04 12:36:17 +00:00
|
|
|
"github.com/fthvgb1/wp-go/app/pkg/models"
|
2023-01-21 13:13:33 +00:00
|
|
|
"github.com/fthvgb1/wp-go/helper/slice"
|
2023-01-18 15:02:59 +00:00
|
|
|
"github.com/fthvgb1/wp-go/model"
|
2023-01-12 12:42:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func GetUserById(a ...any) (r models.Users, err error) {
|
|
|
|
ctx := a[0].(context.Context)
|
|
|
|
uid := a[1].(uint64)
|
|
|
|
r, err = model.FindOneById[models.Users](ctx, uid)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-21 13:13:33 +00:00
|
|
|
func AllUsername(a ...any) (map[string]struct{}, error) {
|
|
|
|
ctx := a[0].(context.Context)
|
|
|
|
r, err := model.SimpleFind[models.Users](ctx, model.SqlBuilder{
|
|
|
|
{"user_status", "=", "0", "int"},
|
|
|
|
}, "user_login")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return slice.ToMap(r, func(t models.Users) (string, struct{}) {
|
|
|
|
return t.UserLogin, struct{}{}
|
|
|
|
}, true), nil
|
|
|
|
}
|
|
|
|
|
2023-01-12 12:42:16 +00:00
|
|
|
func GetUserByName(a ...any) (r models.Users, err error) {
|
|
|
|
u := a[1].(string)
|
|
|
|
ctx := a[0].(context.Context)
|
|
|
|
r, err = model.FirstOne[models.Users](ctx, model.SqlBuilder{{
|
|
|
|
"user_login", u,
|
|
|
|
}}, "*", nil)
|
|
|
|
return
|
|
|
|
}
|