mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
b167f35113
To avoid deadlock problem, almost database related functions should be have ctx as the first parameter. This PR do a refactor for some of these functions.
36 lines
1 KiB
Go
36 lines
1 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package issue
|
|
|
|
import (
|
|
"context"
|
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
"code.gitea.io/gitea/modules/log"
|
|
"code.gitea.io/gitea/modules/notification"
|
|
)
|
|
|
|
// ChangeStatus changes issue status to open or closed.
|
|
func ChangeStatus(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, commitID string, closed bool) error {
|
|
comment, err := issues_model.ChangeIssueStatus(ctx, issue, doer, closed)
|
|
if err != nil {
|
|
if issues_model.IsErrDependenciesLeft(err) && closed {
|
|
if err := issues_model.FinishIssueStopwatchIfPossible(ctx, doer, issue); err != nil {
|
|
log.Error("Unable to stop stopwatch for issue[%d]#%d: %v", issue.ID, issue.Index, err)
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
if closed {
|
|
if err := issues_model.FinishIssueStopwatchIfPossible(ctx, doer, issue); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
notification.NotifyIssueChangeStatus(ctx, doer, commitID, issue, comment, closed)
|
|
|
|
return nil
|
|
}
|