2019-10-28 05:26:46 +00:00
|
|
|
// Copyright 2019 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 issue
|
|
|
|
|
|
|
|
import (
|
2022-05-03 19:46:28 +00:00
|
|
|
"context"
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2022-01-18 23:26:42 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-10-28 05:26:46 +00:00
|
|
|
"code.gitea.io/gitea/modules/notification"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ChangeStatus changes issue status to open or closed.
|
2022-06-13 09:37:59 +00:00
|
|
|
func ChangeStatus(issue *issues_model.Issue, doer *user_model.User, closed bool) error {
|
2022-05-03 19:46:28 +00:00
|
|
|
return changeStatusCtx(db.DefaultContext, issue, doer, closed)
|
|
|
|
}
|
|
|
|
|
|
|
|
// changeStatusCtx changes issue status to open or closed.
|
|
|
|
// TODO: if context is not db.DefaultContext we get a deadlock!!!
|
2022-06-13 09:37:59 +00:00
|
|
|
func changeStatusCtx(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, closed bool) error {
|
|
|
|
comment, err := issues_model.ChangeIssueStatus(ctx, issue, doer, closed)
|
2019-10-28 05:26:46 +00:00
|
|
|
if err != nil {
|
2022-06-13 09:37:59 +00:00
|
|
|
if issues_model.IsErrDependenciesLeft(err) && closed {
|
|
|
|
if err := issues_model.FinishIssueStopwatchIfPossible(ctx, doer, issue); err != nil {
|
2022-01-18 23:26:42 +00:00
|
|
|
log.Error("Unable to stop stopwatch for issue[%d]#%d: %v", issue.ID, issue.Index, err)
|
2021-11-21 09:11:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
2019-10-28 05:26:46 +00:00
|
|
|
}
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
if closed {
|
2022-06-13 09:37:59 +00:00
|
|
|
if err := issues_model.FinishIssueStopwatchIfPossible(ctx, doer, issue); err != nil {
|
2021-11-21 09:11:48 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
notification.NotifyIssueChangeStatus(doer, issue, comment, closed)
|
|
|
|
|
2019-10-28 05:26:46 +00:00
|
|
|
return nil
|
|
|
|
}
|