2019-02-18 21:55:04 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-02-18 21:55:04 +01:00
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
package issues
|
2019-02-18 21:55:04 +01:00
|
|
|
|
2021-11-24 10:49:20 +01:00
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
)
|
2021-09-19 13:49:59 +02:00
|
|
|
|
2019-02-18 21:55:04 +01:00
|
|
|
// IssueLockOptions defines options for locking and/or unlocking an issue/PR
|
|
|
|
type IssueLockOptions struct {
|
2021-11-24 10:49:20 +01:00
|
|
|
Doer *user_model.User
|
2019-02-18 21:55:04 +01:00
|
|
|
Issue *Issue
|
|
|
|
Reason string
|
|
|
|
}
|
|
|
|
|
|
|
|
// LockIssue locks an issue. This would limit commenting abilities to
|
|
|
|
// users with write access to the repo
|
|
|
|
func LockIssue(opts *IssueLockOptions) error {
|
|
|
|
return updateIssueLock(opts, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnlockIssue unlocks a previously locked issue.
|
|
|
|
func UnlockIssue(opts *IssueLockOptions) error {
|
|
|
|
return updateIssueLock(opts, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateIssueLock(opts *IssueLockOptions, lock bool) error {
|
|
|
|
if opts.Issue.IsLocked == lock {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.Issue.IsLocked = lock
|
|
|
|
var commentType CommentType
|
|
|
|
if opts.Issue.IsLocked {
|
|
|
|
commentType = CommentTypeLock
|
|
|
|
} else {
|
|
|
|
commentType = CommentTypeUnlock
|
|
|
|
}
|
|
|
|
|
2022-11-12 21:18:50 +01:00
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-19 14:39:57 +01:00
|
|
|
if err != nil {
|
2019-10-11 08:44:43 +02:00
|
|
|
return err
|
|
|
|
}
|
2021-11-19 14:39:57 +01:00
|
|
|
defer committer.Close()
|
2019-10-11 08:44:43 +02:00
|
|
|
|
2022-04-08 11:11:15 +02:00
|
|
|
if err := UpdateIssueCols(ctx, opts.Issue, "is_locked"); err != nil {
|
2019-02-18 21:55:04 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-03-14 19:52:12 +01:00
|
|
|
opt := &CreateCommentOptions{
|
2019-02-18 21:55:04 +01:00
|
|
|
Doer: opts.Doer,
|
|
|
|
Issue: opts.Issue,
|
|
|
|
Repo: opts.Issue.Repo,
|
|
|
|
Type: commentType,
|
|
|
|
Content: opts.Reason,
|
2019-12-01 03:44:39 +01:00
|
|
|
}
|
2022-12-10 03:46:31 +01:00
|
|
|
if _, err := CreateComment(ctx, opt); err != nil {
|
2019-12-01 03:44:39 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-11-19 14:39:57 +01:00
|
|
|
return committer.Commit()
|
2019-02-18 21:55:04 +01:00
|
|
|
}
|