2017-07-12 16:58:52 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"html"
|
|
|
|
|
|
|
|
"github.com/go-xorm/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func unescapeUserFullNames(x *xorm.Engine) (err error) {
|
2017-10-08 13:08:18 +02:00
|
|
|
type User struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
FullName string
|
|
|
|
}
|
|
|
|
|
2017-07-12 16:58:52 +02:00
|
|
|
const batchSize = 100
|
|
|
|
for start := 0; ; start += batchSize {
|
2017-10-08 13:08:18 +02:00
|
|
|
users := make([]*User, 0, batchSize)
|
|
|
|
if err := x.Limit(batchSize, start).Find(&users); err != nil {
|
2017-07-12 16:58:52 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(users) == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
for _, user := range users {
|
|
|
|
user.FullName = html.UnescapeString(user.FullName)
|
2017-10-08 13:08:18 +02:00
|
|
|
if _, err := x.ID(user.ID).Cols("full_name").Update(user); err != nil {
|
2017-07-12 16:58:52 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|