2019-02-18 20:55:04 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-02-18 20:55:04 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2021-04-06 19:44:05 +00:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2019-02-18 20:55:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// LockIssue locks an issue. This would limit commenting abilities to
|
|
|
|
// users with write access to the repo.
|
2021-01-26 15:36:53 +00:00
|
|
|
func LockIssue(ctx *context.Context) {
|
2021-04-06 19:44:05 +00:00
|
|
|
form := web.GetForm(ctx).(*forms.IssueLockForm)
|
2019-02-18 20:55:04 +00:00
|
|
|
issue := GetActionIssue(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if issue.IsLocked {
|
2023-06-29 04:16:04 +00:00
|
|
|
ctx.JSONError(ctx.Tr("repo.issues.lock_duplicate"))
|
2019-02-18 20:55:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !form.HasValidReason() {
|
2023-06-29 04:16:04 +00:00
|
|
|
ctx.JSONError(ctx.Tr("repo.issues.lock.unknown_reason"))
|
2019-02-18 20:55:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-10-11 04:24:07 +00:00
|
|
|
if err := issues_model.LockIssue(ctx, &issues_model.IssueLockOptions{
|
2022-03-22 07:03:22 +00:00
|
|
|
Doer: ctx.Doer,
|
2019-02-18 20:55:04 +00:00
|
|
|
Issue: issue,
|
|
|
|
Reason: form.Reason,
|
|
|
|
}); err != nil {
|
|
|
|
ctx.ServerError("LockIssue", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-06-29 04:16:04 +00:00
|
|
|
ctx.JSONRedirect(issue.Link())
|
2019-02-18 20:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnlockIssue unlocks a previously locked issue.
|
|
|
|
func UnlockIssue(ctx *context.Context) {
|
|
|
|
issue := GetActionIssue(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !issue.IsLocked {
|
2023-06-29 04:16:04 +00:00
|
|
|
ctx.JSONError(ctx.Tr("repo.issues.unlock_error"))
|
2019-02-18 20:55:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-10-11 04:24:07 +00:00
|
|
|
if err := issues_model.UnlockIssue(ctx, &issues_model.IssueLockOptions{
|
2022-03-22 07:03:22 +00:00
|
|
|
Doer: ctx.Doer,
|
2019-02-18 20:55:04 +00:00
|
|
|
Issue: issue,
|
|
|
|
}); err != nil {
|
|
|
|
ctx.ServerError("UnlockIssue", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-06-29 04:16:04 +00:00
|
|
|
ctx.JSONRedirect(issue.Link())
|
2019-02-18 20:55:04 +00:00
|
|
|
}
|