mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
365 lines
8.7 KiB
365 lines
8.7 KiB
2 years ago
|
package service
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"regexp"
|
||
|
"strings"
|
||
|
"time"
|
||
|
"unicode/utf8"
|
||
|
|
||
|
"github.com/gofrs/uuid"
|
||
2 years ago
|
"github.com/rocboss/paopao-ce/global"
|
||
|
"github.com/rocboss/paopao-ce/internal/model"
|
||
|
"github.com/rocboss/paopao-ce/pkg/convert"
|
||
|
"github.com/rocboss/paopao-ce/pkg/errcode"
|
||
|
"github.com/rocboss/paopao-ce/pkg/util"
|
||
2 years ago
|
)
|
||
|
|
||
|
const MAX_CAPTCHA_TIMES = 2
|
||
|
|
||
|
type PhoneCaptchaReq struct {
|
||
|
Phone string `json:"phone" form:"phone" binding:"required"`
|
||
|
ImgCaptcha string `json:"img_captcha" form:"img_captcha" binding:"required"`
|
||
|
ImgCaptchaID string `json:"img_captcha_id" form:"img_captcha_id" binding:"required"`
|
||
|
}
|
||
|
|
||
|
type UserPhoneBindReq struct {
|
||
|
Phone string `json:"phone" form:"phone" binding:"required"`
|
||
|
Captcha string `json:"captcha" form:"captcha" binding:"required"`
|
||
|
}
|
||
|
|
||
|
type AuthRequest struct {
|
||
|
Username string `json:"username" form:"username" binding:"required"`
|
||
|
Password string `json:"password" form:"password" binding:"required"`
|
||
|
}
|
||
|
type RegisterRequest struct {
|
||
|
Username string `json:"username" form:"username" binding:"required"`
|
||
|
Password string `json:"password" form:"password" binding:"required"`
|
||
|
}
|
||
|
|
||
|
type ChangePasswordReq struct {
|
||
|
Password string `json:"password" form:"password" binding:"required"`
|
||
|
OldPassword string `json:"old_password" form:"old_password" binding:"required"`
|
||
|
}
|
||
|
type ChangeNicknameReq struct {
|
||
|
Nickname string `json:"nickname" form:"nickname" binding:"required"`
|
||
|
}
|
||
|
type ChangeAvatarReq struct {
|
||
|
Avatar string `json:"avatar" form:"avatar" binding:"required"`
|
||
|
}
|
||
|
|
||
|
const LOGIN_ERR_KEY = "PaoPaoUserLoginErr"
|
||
|
const MAX_LOGIN_ERR_TIMES = 10
|
||
|
|
||
|
// 用户认证
|
||
|
func (svc *Service) DoLogin(param *AuthRequest) (*model.User, error) {
|
||
|
user, err := svc.dao.GetUserByUsername(param.Username)
|
||
|
if err != nil {
|
||
|
return nil, errcode.UnauthorizedAuthNotExist
|
||
|
}
|
||
|
|
||
|
if user.Model != nil && user.ID > 0 {
|
||
|
if errTimes, err := global.Redis.Get(svc.ctx, fmt.Sprintf("%s:%d", LOGIN_ERR_KEY, user.ID)).Result(); err == nil {
|
||
|
if convert.StrTo(errTimes).MustInt() >= MAX_LOGIN_ERR_TIMES {
|
||
|
return nil, errcode.TooManyLoginError
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// 对比密码是否正确
|
||
|
if svc.ValidPassword(user.Password, param.Password, user.Salt) {
|
||
|
|
||
|
if user.Status == model.UserStatusClosed {
|
||
|
return nil, errcode.UserHasBeenBanned
|
||
|
}
|
||
|
|
||
|
// 清空登录计数
|
||
|
global.Redis.Del(svc.ctx, fmt.Sprintf("%s:%d", LOGIN_ERR_KEY, user.ID))
|
||
|
return user, nil
|
||
|
}
|
||
|
|
||
|
// 登录错误计数
|
||
|
_, err = global.Redis.Incr(svc.ctx, fmt.Sprintf("%s:%d", LOGIN_ERR_KEY, user.ID)).Result()
|
||
|
if err == nil {
|
||
|
global.Redis.Expire(svc.ctx, fmt.Sprintf("%s:%d", LOGIN_ERR_KEY, user.ID), time.Hour).Result()
|
||
|
}
|
||
|
|
||
|
return nil, errcode.UnauthorizedAuthFailed
|
||
|
}
|
||
|
|
||
|
return nil, errcode.UnauthorizedAuthNotExist
|
||
|
}
|
||
|
|
||
|
// 检查密码是否一致
|
||
|
func (svc *Service) ValidPassword(dbPassword, password, salt string) bool {
|
||
|
return strings.Compare(dbPassword, util.EncodeMD5(util.EncodeMD5(password)+salt)) == 0
|
||
|
}
|
||
|
|
||
|
// 检测用户权限
|
||
|
func (svc *Service) CheckStatus(user *model.User) bool {
|
||
|
return user.Status == model.UserStatusNormal
|
||
|
}
|
||
|
|
||
|
// 验证用户
|
||
|
func (svc *Service) ValidUsername(username string) error {
|
||
|
// 检测用户是否合规
|
||
|
if utf8.RuneCountInString(username) < 3 || utf8.RuneCountInString(username) > 12 {
|
||
|
return errcode.UsernameLengthLimit
|
||
|
}
|
||
|
|
||
|
if !regexp.MustCompile(`^[a-zA-Z0-9]+$`).MatchString(username) {
|
||
|
return errcode.UsernameCharLimit
|
||
|
}
|
||
|
|
||
|
// 重复检查
|
||
|
user, _ := svc.dao.GetUserByUsername(username)
|
||
|
|
||
|
if user.Model != nil && user.ID > 0 {
|
||
|
return errcode.UsernameHasExisted
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// 密码检查
|
||
|
func (svc *Service) CheckPassword(password string) error {
|
||
|
// 检测用户是否合规
|
||
|
if utf8.RuneCountInString(password) < 6 || utf8.RuneCountInString(password) > 16 {
|
||
|
return errcode.PasswordLengthLimit
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// 验证手机验证码
|
||
|
func (svc *Service) CheckPhoneCaptcha(phone, captcha string) *errcode.Error {
|
||
|
c, err := svc.dao.GetLatestPhoneCaptcha(phone)
|
||
|
if err != nil {
|
||
|
return errcode.ErrorPhoneCaptcha
|
||
|
}
|
||
|
|
||
|
if c.Captcha != captcha {
|
||
|
return errcode.ErrorPhoneCaptcha
|
||
|
}
|
||
|
|
||
|
if c.ExpiredOn < time.Now().Unix() {
|
||
|
return errcode.ErrorPhoneCaptcha
|
||
|
}
|
||
|
|
||
|
if c.UseTimes >= MAX_CAPTCHA_TIMES {
|
||
|
return errcode.MaxPhoneCaptchaUseTimes
|
||
|
}
|
||
|
|
||
|
// 更新检测次数
|
||
|
svc.dao.UsePhoneCaptcha(c)
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// 检测手机号是否存在
|
||
|
func (svc *Service) CheckPhoneExist(uid int64, phone string) bool {
|
||
|
u, err := svc.dao.GetUserByPhone(phone)
|
||
|
if err != nil {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
if u.Model == nil || u.ID == 0 {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
if u.ID == uid {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
// 密码加密&生成salt
|
||
|
func (svc *Service) EncryptPasswordAndSalt(password string) (string, string) {
|
||
|
salt := uuid.Must(uuid.NewV4()).String()[:8]
|
||
|
password = util.EncodeMD5(util.EncodeMD5(password) + salt)
|
||
|
|
||
|
return password, salt
|
||
|
}
|
||
|
|
||
|
// 用户注册
|
||
|
func (svc *Service) Register(username, password string) (*model.User, error) {
|
||
|
password, salt := svc.EncryptPasswordAndSalt(password)
|
||
|
|
||
|
user := &model.User{
|
||
|
Nickname: username,
|
||
|
Username: username,
|
||
|
Password: password,
|
||
|
Avatar: svc.GetRandomAvatar(),
|
||
|
Salt: salt,
|
||
|
Status: model.UserStatusNormal,
|
||
|
}
|
||
|
|
||
|
user, err := svc.dao.CreateUser(user)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return user, nil
|
||
|
}
|
||
|
|
||
|
// 获取用户信息
|
||
|
func (svc *Service) GetUserInfo(param *AuthRequest) (*model.User, error) {
|
||
|
user, err := svc.dao.GetUserByUsername(param.Username)
|
||
|
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if user.Model != nil && user.ID > 0 {
|
||
|
return user, nil
|
||
|
}
|
||
|
|
||
|
return nil, errcode.UnauthorizedAuthNotExist
|
||
|
}
|
||
|
|
||
|
func (svc *Service) GetUserByUsername(username string) (*model.User, error) {
|
||
|
user, err := svc.dao.GetUserByUsername(username)
|
||
|
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if user.Model != nil && user.ID > 0 {
|
||
|
return user, nil
|
||
|
}
|
||
|
|
||
|
return nil, errcode.NoExistUsername
|
||
|
}
|
||
|
|
||
|
// 更新用户信息
|
||
|
func (svc *Service) UpdateUserInfo(user *model.User) error {
|
||
|
return svc.dao.UpdateUser(user)
|
||
|
}
|
||
|
|
||
|
// 获取用户收藏列表
|
||
|
func (svc *Service) GetUserCollections(userID int64, offset, limit int) ([]*model.PostFormated, int64, error) {
|
||
|
collections, err := svc.dao.GetUserPostCollections(userID, offset, limit)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
totalRows, err := svc.dao.GetUserPostCollectionCount(userID)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
postIDs := []int64{}
|
||
|
for _, collection := range collections {
|
||
|
postIDs = append(postIDs, collection.PostID)
|
||
|
}
|
||
|
|
||
|
// 获取Posts
|
||
|
posts, err := svc.dao.GetPosts(&model.ConditionsT{
|
||
|
"id IN ?": postIDs,
|
||
|
"ORDER": "id DESC",
|
||
|
}, 0, 0)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
|
||
|
postsFormated, err := svc.FormatPosts(posts)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
|
||
|
return postsFormated, totalRows, nil
|
||
|
}
|
||
|
|
||
|
// 获取用户点赞列表
|
||
|
func (svc *Service) GetUserStars(userID int64, offset, limit int) ([]*model.PostFormated, int64, error) {
|
||
|
stars, err := svc.dao.GetUserPostStars(userID, offset, limit)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
totalRows, err := svc.dao.GetUserPostStarCount(userID)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
postIDs := []int64{}
|
||
|
for _, star := range stars {
|
||
|
postIDs = append(postIDs, star.PostID)
|
||
|
}
|
||
|
|
||
|
// 获取Posts
|
||
|
posts, err := svc.dao.GetPosts(&model.ConditionsT{
|
||
|
"id IN ?": postIDs,
|
||
|
"ORDER": "id DESC",
|
||
|
}, 0, 0)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
|
||
|
postsFormated, err := svc.FormatPosts(posts)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
|
||
|
return postsFormated, totalRows, nil
|
||
|
}
|
||
|
|
||
|
// 获取用户账单列表
|
||
|
func (svc *Service) GetUserWalletBills(userID int64, offset, limit int) ([]*model.WalletStatement, int64, error) {
|
||
|
bills, err := svc.dao.GetUserWalletBills(userID, offset, limit)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
totalRows, err := svc.dao.GetUserWalletBillCount(userID)
|
||
|
if err != nil {
|
||
|
return nil, 0, err
|
||
|
}
|
||
|
|
||
|
return bills, totalRows, nil
|
||
|
}
|
||
|
|
||
|
// 发送短信验证码
|
||
|
func (svc *Service) SendPhoneCaptcha(phone string) error {
|
||
|
|
||
|
err := svc.dao.SendPhoneCaptcha(phone)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
// 写入计数缓存
|
||
|
global.Redis.Incr(svc.ctx, "PaoPaoSmsCaptcha:"+phone).Result()
|
||
|
|
||
|
currentTime := time.Now()
|
||
|
endTime := time.Date(currentTime.Year(), currentTime.Month(), currentTime.Day(), 23, 59, 59, 0, currentTime.Location())
|
||
|
|
||
|
global.Redis.Expire(svc.ctx, "PaoPaoSmsCaptcha:"+phone, endTime.Sub(currentTime))
|
||
|
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// 根据关键词获取用户推荐
|
||
|
func (svc *Service) GetSuggestUsers(keyword string) ([]string, error) {
|
||
|
users, err := svc.dao.GetUsersByKeyword(keyword)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
usernames := []string{}
|
||
|
for _, user := range users {
|
||
|
usernames = append(usernames, user.Username)
|
||
|
}
|
||
|
|
||
|
return usernames, nil
|
||
|
}
|
||
|
|
||
|
// 根据关键词获取标签推荐
|
||
|
func (svc *Service) GetSuggestTags(keyword string) ([]string, error) {
|
||
|
tags, err := svc.dao.GetTagsByKeyword(keyword)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
ts := []string{}
|
||
|
for _, t := range tags {
|
||
|
ts = append(ts, t.Tag)
|
||
|
}
|
||
|
|
||
|
return ts, nil
|
||
|
}
|