2019-10-28 01:26:46 -04:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-28 01:26:46 -04:00
|
|
|
|
|
|
|
package issue
|
|
|
|
|
|
|
|
import (
|
2022-05-03 15:46:28 -04:00
|
|
|
"context"
|
|
|
|
|
2021-11-21 04:11:48 -05:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 05:37:59 -04:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-24 04:49:20 -05:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-01-18 18:26:42 -05:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-10-28 01:26:46 -04:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ChangeStatus changes issue status to open or closed.
|
2023-01-24 23:47:53 -05:00
|
|
|
func ChangeStatus(issue *issues_model.Issue, doer *user_model.User, commitID string, closed bool) error {
|
|
|
|
return changeStatusCtx(db.DefaultContext, issue, doer, commitID, closed)
|
2022-05-03 15:46:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// changeStatusCtx changes issue status to open or closed.
|
|
|
|
// TODO: if context is not db.DefaultContext we get a deadlock!!!
|
2023-01-24 23:47:53 -05:00
|
|
|
func changeStatusCtx(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, commitID string, closed bool) error {
|
2022-06-13 05:37:59 -04:00
|
|
|
comment, err := issues_model.ChangeIssueStatus(ctx, issue, doer, closed)
|
2019-10-28 01:26:46 -04:00
|
|
|
if err != nil {
|
2022-06-13 05:37:59 -04:00
|
|
|
if issues_model.IsErrDependenciesLeft(err) && closed {
|
|
|
|
if err := issues_model.FinishIssueStopwatchIfPossible(ctx, doer, issue); err != nil {
|
2022-01-18 18:26:42 -05:00
|
|
|
log.Error("Unable to stop stopwatch for issue[%d]#%d: %v", issue.ID, issue.Index, err)
|
2021-11-21 04:11:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
2019-10-28 01:26:46 -04:00
|
|
|
}
|
|
|
|
|
2021-11-21 04:11:48 -05:00
|
|
|
if closed {
|
2022-06-13 05:37:59 -04:00
|
|
|
if err := issues_model.FinishIssueStopwatchIfPossible(ctx, doer, issue); err != nil {
|
2021-11-21 04:11:48 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-24 23:47:53 -05:00
|
|
|
notification.NotifyIssueChangeStatus(ctx, doer, commitID, issue, comment, closed)
|
2021-11-21 04:11:48 -05:00
|
|
|
|
2019-10-28 01:26:46 -04:00
|
|
|
return nil
|
|
|
|
}
|