family.go 4.63 KB
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3 4 5 6
package groupPower_m

import (
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/resource/mysql"
	"gorm.io/gorm"
chenweijian's avatar
chenweijian committed
7
	"hilo-group/_const/enum/groupPower_e"
chenweijian's avatar
chenweijian committed
8
	"hilo-group/common"
chenweijian's avatar
chenweijian committed
9
	"hilo-group/common/utime"
chenweijian's avatar
chenweijian committed
10 11
	"hilo-group/myerr"
	"hilo-group/myerr/bizerr"
chenweijian's avatar
chenweijian committed
12 13 14 15
	"time"
)

type GroupPowerGrade struct {
chenweijian's avatar
chenweijian committed
16
	GroupPowerId uint64    `json:"group_power_id"`
chenweijian's avatar
chenweijian committed
17 18 19 20 21
	Exp          int64     `json:"exp"`
	Grade        int32     `json:"grade"`
	ExpireAt     time.Time `json:"expire_at"`
}

chenweijian's avatar
chenweijian committed
22
type GroupPowerQuitLog struct {
chenweijian's avatar
chenweijian committed
23 24 25 26 27
	Id           uint64    `json:"id"`
	UserId       uint64    `json:"user_id"`
	MgrId        uint64    `json:"mgr_id"`
	CreatedTime  time.Time `json:"created_time"`
	GroupPowerId uint64    `json:"group_power_id"`
chenweijian's avatar
chenweijian committed
28 29
}

chenweijian's avatar
chenweijian committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
func (this *GroupPower) Get(model *domain.Model) (*GroupPower, error) {
	group := new(GroupPower)
	err := model.Db.Where(this).First(&group).Error
	if err != nil {
		if err == gorm.ErrRecordNotFound {
			return nil, nil
		}
		return nil, err
	}
	grade := new(GroupPowerGrade)
	err = model.Db.Model(&GroupPowerGrade{}).Where("group_power_id=? and expire_at > ?", this.ID, time.Now().Format(utime.Layout)).First(&grade).Error
	if err != nil && err != gorm.ErrRecordNotFound {
		return nil, err
	}
	if grade.GroupPowerId > 0 {
		group.Grade = mysql.Num(grade.Grade)
		group.Exp = mysql.Num(grade.Exp)
		group.NextExp = mysql.Num(grade.Exp)
	}
	return group, nil
}

chenweijian's avatar
chenweijian committed
52
func (gpu *GroupPowerUser) GetBy(model *domain.Model, pageSize, pageIndex int) ([]*GroupPowerUser, int, bool, error) {
chenweijian's avatar
chenweijian committed
53
	rows := make([]*GroupPowerUser, 0)
chenweijian's avatar
chenweijian committed
54
	db := model.Db.Model(GroupPowerUser{}).Where(gpu).Order("field(`role`, 2, 3, 1)")
chenweijian's avatar
chenweijian committed
55 56
	var count int64
	err := db.Count(&count).Error
chenweijian's avatar
chenweijian committed
57
	if err != nil {
chenweijian's avatar
chenweijian committed
58 59 60 61 62
		return nil, 0, false, err
	}
	err = db.Limit(pageSize).Offset(pageIndex - 1).Find(&rows).Error
	if err != nil {
		return nil, 0, false, err
chenweijian's avatar
chenweijian committed
63
	}
chenweijian's avatar
chenweijian committed
64 65
	nextPageIndex, hasNextPage := common.PageNext(count, pageIndex, pageSize)
	return rows, nextPageIndex, hasNextPage, nil
chenweijian's avatar
chenweijian committed
66
}
chenweijian's avatar
chenweijian committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

func (gpu *GroupPowerUser) GetGroupPowerUser(model *domain.Model) (*GroupPowerUser, error) {
	rows := make([]*GroupPowerUser, 0)
	err := model.Db.Where(gpu).Find(&rows).Error
	if err != nil {
		return nil, err
	}
	if len(rows) == 0 {
		return nil, nil
	}
	return rows[0], nil
}

func (gpu *GroupPowerUser) Create(db *gorm.DB) error {
	return db.Create(gpu).Error
}
chenweijian's avatar
chenweijian committed
83 84 85 86 87 88 89

func QuitFamily(model *domain.Model, userId, mgrId, familyId uint64) error {
	err := model.Db.Exec("delete from group_power_user where group_power_id = ? and user_id = ?", familyId, userId).Error
	if err != nil {
		return err
	}
	// log
chenweijian's avatar
chenweijian committed
90
	log := &GroupPowerQuitLog{UserId: userId, MgrId: mgrId, GroupPowerId: familyId, CreatedTime: time.Now()}
chenweijian's avatar
chenweijian committed
91 92
	return model.Db.Create(log).Error
}
chenweijian's avatar
chenweijian committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

func GroupPowerQuitList(model *domain.Model, familyId uint64, pageSize, pageIndex int) ([]*GroupPowerQuitLog, int, bool, error) {
	rows := make([]*GroupPowerQuitLog, 0)
	db := model.Db.Model(GroupPowerQuitLog{}).Where("group_power_id = ?", familyId).Order("created_time desc")
	var count int64
	err := db.Count(&count).Error
	if err != nil {
		return nil, 0, false, err
	}
	err = db.Limit(pageSize).Offset(pageIndex - 1).Find(&rows).Error
	if err != nil {
		return nil, 0, false, err
	}
	nextIdx, hasNext := common.PageNext(count, pageIndex, pageSize)
	return rows, nextIdx, hasNext, nil
}
chenweijian's avatar
chenweijian committed
109 110 111 112 113 114 115 116

func UpdateFamilyAdmin(model *domain.Model, userId, familyId uint64, role groupPower_e.GroupPowerUserRole) error {
	err := model.Db.Exec("update group_power_user set role = ? where group_power_id = ? and user_id = ?", role, familyId, userId).Error
	if err != nil {
		return err
	}
	return nil
}
chenweijian's avatar
chenweijian committed
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

func UpdateFamily(model *domain.Model, familyId uint64, name, nameplate, declaration, icon string) error {
	if familyId == 0 || (name == "" && nameplate == "" && declaration == "" && icon == "") {
		return nil
	}
	db := model.Db.Model(GroupPower{})
	updateMap := make(map[string]interface{})
	if name != "" {
		updateMap["name"] = name
	}
	if nameplate != "" {
		updateMap["nameplate"] = nameplate
		db = db.Where("not exists (select id from group_power where nameplate = ?)", nameplate)
	}
	if declaration != "" {
		updateMap["declaration"] = declaration
	}
	if icon != "" {
		updateMap["icon"] = icon
	}
	result := db.Updates(updateMap).Limit(1)
	if result.Error != nil {
		return myerr.WrapErr(result.Error)
	}
	if result.RowsAffected <= 0 {
		return myerr.WrapErr(bizerr.GroupPowerHaveChangeInfo)
	}

	return nil
}

func IsExistsNameplate(model *domain.Model, nameplate string) bool {
	var count int64
	err := model.Db.Model(GroupPower{}).Where("nameplate = ?", nameplate).Count(&count).Error
	if err != nil {
		model.Log.Errorf("IsExistsNameplate err:%v, nameplate:%s", err, nameplate)
		return false
	}
	if count > 0 {
		return true
	}
	return false
}