2019-10-28 05:26:46 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-28 05:26:46 +00:00
|
|
|
|
|
|
|
package issue
|
|
|
|
|
|
|
|
import (
|
2022-05-03 19:46:28 +00:00
|
|
|
"context"
|
|
|
|
|
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"
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2019-10-28 05:26:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ChangeStatus changes issue status to open or closed.
|
2024-09-01 18:08:27 +00:00
|
|
|
// closed means the target status
|
|
|
|
// Fix me: you should check whether the current issue status is same to the target status before call this function
|
|
|
|
// as in function changeIssueStatus we will return WasClosedError, even the issue status and target status are both open
|
2023-07-22 14:14:27 +00:00
|
|
|
func ChangeStatus(ctx context.Context, issue *issues_model.Issue, doer *user_model.User, commitID string, closed bool) error {
|
2022-06-13 09:37:59 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-05 18:37:47 +00:00
|
|
|
notify_service.IssueChangeStatus(ctx, doer, commitID, issue, comment, closed)
|
2021-11-21 09:11:48 +00:00
|
|
|
|
2019-10-28 05:26:46 +00:00
|
|
|
return nil
|
|
|
|
}
|