2022-06-13 09:37:59 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-13 09:37:59 +00:00
|
|
|
|
|
|
|
package issues
|
|
|
|
|
2023-09-25 13:17:37 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
)
|
2022-06-13 09:37:59 +00: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 13:17:37 +00:00
|
|
|
func RecalculateIssueIndexForRepo(ctx context.Context, repoID int64) error {
|
|
|
|
ctx, committer, err := db.TxContext(ctx)
|
2022-06-13 09:37:59 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
var max int64
|
2022-10-16 10:44:16 +00:00
|
|
|
if _, err = db.GetEngine(ctx).Select(" MAX(`index`)").Table("issue").Where("repo_id=?", repoID).Get(&max); err != nil {
|
2022-06-13 09:37:59 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-10-16 10:44:16 +00:00
|
|
|
if err = db.SyncMaxResourceIndex(ctx, "issue_index", repoID, max); err != nil {
|
2022-06-13 09:37:59 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return committer.Commit()
|
|
|
|
}
|