2022-04-28 09:45:33 -06:00
|
|
|
// Copyright 2022 The Gitea Authors.
|
|
|
|
// All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-04-28 09:45:33 -06:00
|
|
|
|
|
|
|
package pull
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
|
2022-06-13 03:37:59 -06:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-05-11 04:09:36 -06:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2022-04-28 09:45:33 -06:00
|
|
|
unit_model "code.gitea.io/gitea/models/unit"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
)
|
|
|
|
|
|
|
|
var ErrUserHasNoPermissionForAction = errors.New("user not allowed to do this action")
|
|
|
|
|
|
|
|
// SetAllowEdits allow edits from maintainers to PRs
|
2022-06-13 03:37:59 -06:00
|
|
|
func SetAllowEdits(ctx context.Context, doer *user_model.User, pr *issues_model.PullRequest, allow bool) error {
|
2022-04-28 09:45:33 -06:00
|
|
|
if doer == nil || !pr.Issue.IsPoster(doer.ID) {
|
|
|
|
return ErrUserHasNoPermissionForAction
|
|
|
|
}
|
|
|
|
|
2022-11-19 01:12:33 -07:00
|
|
|
if err := pr.LoadHeadRepo(ctx); err != nil {
|
2022-04-28 09:45:33 -06:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-11 04:09:36 -06:00
|
|
|
permission, err := access_model.GetUserRepoPermission(ctx, pr.HeadRepo, doer)
|
2022-04-28 09:45:33 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !permission.CanWrite(unit_model.TypeCode) {
|
|
|
|
return ErrUserHasNoPermissionForAction
|
|
|
|
}
|
|
|
|
|
|
|
|
pr.AllowMaintainerEdit = allow
|
2022-06-13 03:37:59 -06:00
|
|
|
return issues_model.UpdateAllowEdits(ctx, pr)
|
2022-04-28 09:45:33 -06:00
|
|
|
}
|