2023-05-16 16:36:07 +08:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/answerdev/answer/internal/entity"
|
2023-05-17 12:11:59 +08:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2023-05-16 16:36:07 +08:00
|
|
|
"github.com/segmentfault/pacman/log"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
func updateCount(x *xorm.Engine) error {
|
|
|
|
spew.Dump("update count")
|
|
|
|
// updateQuestionCount(x)
|
|
|
|
updateTagCount(x)
|
|
|
|
// updateUserQuestionCount(x)
|
|
|
|
// updateUserAnswerCount(x)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-05-16 16:36:07 +08:00
|
|
|
func updateQuestionCount(x *xorm.Engine) error {
|
2023-05-16 17:12:46 +08:00
|
|
|
//question answer count
|
2023-05-16 16:36:07 +08:00
|
|
|
answers := make([]entity.Answer, 0)
|
|
|
|
err := x.Find(&answers, &entity.Answer{Status: entity.AnswerStatusAvailable})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get answers failed: %w", err)
|
|
|
|
}
|
|
|
|
questionAnswerCount := make(map[string]int)
|
|
|
|
for _, answer := range answers {
|
|
|
|
_, ok := questionAnswerCount[answer.QuestionID]
|
|
|
|
if !ok {
|
|
|
|
questionAnswerCount[answer.QuestionID] = 1
|
|
|
|
} else {
|
|
|
|
questionAnswerCount[answer.QuestionID]++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
questionList := make([]entity.Question, 0)
|
|
|
|
err = x.Find(&questionList, &entity.Question{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get questions failed: %w", err)
|
|
|
|
}
|
|
|
|
for _, item := range questionList {
|
|
|
|
_, ok := questionAnswerCount[item.ID]
|
|
|
|
if ok {
|
|
|
|
item.AnswerCount = questionAnswerCount[item.ID]
|
|
|
|
if _, err = x.Update(item, &entity.Question{ID: item.ID}); err != nil {
|
|
|
|
log.Errorf("update %+v config failed: %s", item, err)
|
|
|
|
return fmt.Errorf("update question failed: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-16 17:12:46 +08:00
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
return nil
|
|
|
|
}
|
2023-05-16 17:12:46 +08:00
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
// updateTagCount update tag count
|
|
|
|
func updateTagCount(x *xorm.Engine) error {
|
|
|
|
tagRelList := make([]entity.TagRel, 0)
|
|
|
|
err := x.Find(&tagRelList, &entity.TagRel{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get tag rel failed: %w", err)
|
|
|
|
}
|
|
|
|
questionIDs := make([]string, 0)
|
|
|
|
questionsAvailableMap := make(map[string]bool)
|
2023-05-17 15:09:13 +08:00
|
|
|
questionsHideMap := make(map[string]bool)
|
2023-05-17 12:11:59 +08:00
|
|
|
for _, item := range tagRelList {
|
|
|
|
questionIDs = append(questionIDs, item.ObjectID)
|
|
|
|
questionsAvailableMap[item.ObjectID] = false
|
2023-05-17 15:09:13 +08:00
|
|
|
questionsHideMap[item.ObjectID] = false
|
2023-05-17 12:11:59 +08:00
|
|
|
}
|
|
|
|
questionList := make([]entity.Question, 0)
|
|
|
|
err = x.In("id", questionIDs).In("question.status", []int{entity.QuestionStatusAvailable, entity.QuestionStatusClosed}).Find(&questionList, &entity.Question{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get questions failed: %w", err)
|
|
|
|
}
|
|
|
|
for _, question := range questionList {
|
|
|
|
_, ok := questionsAvailableMap[question.ID]
|
|
|
|
if ok {
|
|
|
|
questionsAvailableMap[question.ID] = true
|
2023-05-17 15:09:13 +08:00
|
|
|
if question.Show == entity.QuestionHide {
|
|
|
|
questionsHideMap[question.ID] = true
|
|
|
|
}
|
2023-05-17 12:11:59 +08:00
|
|
|
}
|
|
|
|
}
|
2023-05-17 15:09:13 +08:00
|
|
|
|
|
|
|
for id, ok := range questionsHideMap {
|
|
|
|
if ok {
|
|
|
|
if _, err = x.Cols("status").Update(&entity.TagRel{Status: entity.TagRelStatusHide}, &entity.TagRel{ObjectID: id}); err != nil {
|
|
|
|
log.Errorf("update %+v config failed: %s", id, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
for id, ok := range questionsAvailableMap {
|
|
|
|
if !ok {
|
|
|
|
if _, err = x.Cols("status").Update(&entity.TagRel{Status: entity.TagRelStatusDeleted}, &entity.TagRel{ObjectID: id}); err != nil {
|
|
|
|
log.Errorf("update %+v config failed: %s", id, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-17 15:09:13 +08:00
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
//select tag count
|
|
|
|
newTagRelList := make([]entity.TagRel, 0)
|
|
|
|
err = x.Find(&newTagRelList, &entity.TagRel{Status: entity.TagRelStatusAvailable})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get tag rel failed: %w", err)
|
|
|
|
}
|
|
|
|
tagCountMap := make(map[string]int)
|
|
|
|
for _, v := range newTagRelList {
|
|
|
|
_, ok := tagCountMap[v.TagID]
|
|
|
|
if !ok {
|
|
|
|
tagCountMap[v.TagID] = 1
|
|
|
|
} else {
|
|
|
|
tagCountMap[v.TagID]++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TagList := make([]entity.Tag, 0)
|
|
|
|
err = x.Find(&TagList, &entity.Tag{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get tag failed: %w", err)
|
|
|
|
}
|
|
|
|
for _, tag := range TagList {
|
|
|
|
_, ok := tagCountMap[tag.ID]
|
|
|
|
if ok {
|
|
|
|
tag.QuestionCount = tagCountMap[tag.ID]
|
|
|
|
if _, err = x.Update(tag, &entity.Tag{ID: tag.ID}); err != nil {
|
|
|
|
log.Errorf("update %+v tag failed: %s", tag.ID, err)
|
|
|
|
return fmt.Errorf("update tag failed: %w", err)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tag.QuestionCount = 0
|
|
|
|
if _, err = x.Update(tag, &entity.Tag{ID: tag.ID}); err != nil {
|
|
|
|
log.Errorf("update %+v tag failed: %s", tag.ID, err)
|
|
|
|
return fmt.Errorf("update tag failed: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2023-05-16 17:12:46 +08:00
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
// updateUserQuestionCount update user question count
|
|
|
|
func updateUserQuestionCount(x *xorm.Engine) error {
|
|
|
|
return nil
|
|
|
|
}
|
2023-05-16 17:12:46 +08:00
|
|
|
|
2023-05-17 12:11:59 +08:00
|
|
|
// updateUserAnswerCount update user answer count
|
|
|
|
func updateUserAnswerCount(x *xorm.Engine) error {
|
2023-05-16 16:36:07 +08:00
|
|
|
return nil
|
|
|
|
}
|