2022-06-13 17:37:59 +08:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-13 17:37:59 +08:00
|
|
|
|
|
|
|
|
package issues
|
|
|
|
|
|
2023-09-25 15:17:37 +02:00
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
|
)
|
2022-06-13 17:37:59 +08:00
|
|
|
|
|
|
|
|
// RecalculateIssueIndexForRepo create issue_index for repo if not exist and
|
|
|
|
|
// update it based on highest index of existing issues assigned to a repo
|
2023-09-25 15:17:37 +02:00
|
|
|
func RecalculateIssueIndexForRepo(ctx context.Context, repoID int64) error {
|
2025-07-23 01:02:01 +08:00
|
|
|
return db.WithTx(ctx, func(ctx context.Context) error {
|
|
|
|
|
var maxIndex int64
|
|
|
|
|
if _, err := db.GetEngine(ctx).Select(" MAX(`index`)").Table("issue").Where("repo_id=?", repoID).Get(&maxIndex); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
2022-06-13 17:37:59 +08:00
|
|
|
|
2025-07-23 01:02:01 +08:00
|
|
|
return db.SyncMaxResourceIndex(ctx, "issue_index", repoID, maxIndex)
|
|
|
|
|
})
|
2022-06-13 17:37:59 +08:00
|
|
|
}
|