2023-04-25 14:16:51 +08:00
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
2023-07-13 16:16:13 +08:00
|
|
|
"context"
|
2023-04-25 14:16:51 +08:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/answerdev/answer/internal/entity"
|
|
|
|
"github.com/segmentfault/pacman/log"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2023-07-13 16:16:13 +08:00
|
|
|
func updateRolePinAndHideFeatures(ctx context.Context, x *xorm.Engine) error {
|
2023-04-25 14:16:51 +08:00
|
|
|
defaultConfigTable := []*entity.Config{
|
2023-04-25 15:49:54 +08:00
|
|
|
{ID: 119, Key: "question.pin", Value: `0`},
|
|
|
|
{ID: 120, Key: "question.unpin", Value: `0`},
|
|
|
|
{ID: 121, Key: "question.show", Value: `0`},
|
|
|
|
{ID: 122, Key: "question.hide", Value: `0`},
|
|
|
|
{ID: 123, Key: "rank.question.pin", Value: `-1`},
|
|
|
|
{ID: 124, Key: "rank.question.unpin", Value: `-1`},
|
|
|
|
{ID: 125, Key: "rank.question.show", Value: `-1`},
|
|
|
|
{ID: 126, Key: "rank.question.hide", Value: `-1`},
|
2023-04-25 14:16:51 +08:00
|
|
|
}
|
|
|
|
for _, c := range defaultConfigTable {
|
2023-07-13 16:16:13 +08:00
|
|
|
exist, err := x.Context(ctx).Get(&entity.Config{ID: c.ID})
|
2023-04-25 14:16:51 +08:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("get config failed: %w", err)
|
|
|
|
}
|
|
|
|
if exist {
|
2023-07-13 16:16:13 +08:00
|
|
|
if _, err = x.Context(ctx).Update(c, &entity.Config{ID: c.ID}); err != nil {
|
2023-04-25 14:16:51 +08:00
|
|
|
log.Errorf("update %+v config failed: %s", c, err)
|
|
|
|
return fmt.Errorf("update config failed: %w", err)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2023-07-13 16:16:13 +08:00
|
|
|
if _, err = x.Context(ctx).Insert(&entity.Config{ID: c.ID, Key: c.Key, Value: c.Value}); err != nil {
|
2023-04-25 14:16:51 +08:00
|
|
|
log.Errorf("insert %+v config failed: %s", c, err)
|
|
|
|
return fmt.Errorf("add config failed: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|