2018-11-28 16:56:14 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2018-11-28 16:56:14 +05:30
|
|
|
|
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
2021-11-10 01:27:58 +05:30
|
|
|
"code.gitea.io/gitea/models/unit"
|
2019-04-23 02:10:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2018-11-28 16:56:14 +05:30
|
|
|
)
|
|
|
|
|
2021-01-29 21:05:30 +05:30
|
|
|
// RequireRepoAdmin returns a middleware for requiring repository admin permission
|
2021-01-26 21:06:53 +05:30
|
|
|
func RequireRepoAdmin() func(ctx *Context) {
|
2018-11-28 16:56:14 +05:30
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.IsSigned || !ctx.Repo.IsAdmin() {
|
2019-12-24 05:41:12 +05:30
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
2018-11-28 16:56:14 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 21:05:30 +05:30
|
|
|
// RequireRepoWriter returns a middleware for requiring repository write to the specify unitType
|
2021-11-10 01:27:58 +05:30
|
|
|
func RequireRepoWriter(unitType unit.Type) func(ctx *Context) {
|
2018-11-28 16:56:14 +05:30
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.Repo.CanWrite(unitType) {
|
2019-12-24 05:41:12 +05:30
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
2022-04-28 21:15:33 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CanEnableEditor checks if the user is allowed to write to the branch of the repo
|
|
|
|
func CanEnableEditor() func(ctx *Context) {
|
|
|
|
return func(ctx *Context) {
|
2022-05-11 15:39:36 +05:30
|
|
|
if !ctx.Repo.CanWriteToBranch(ctx.Doer, ctx.Repo.BranchName) {
|
2022-04-28 21:15:33 +05:30
|
|
|
ctx.NotFound("CanWriteToBranch denies permission", nil)
|
2018-11-28 16:56:14 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 21:05:30 +05:30
|
|
|
// RequireRepoWriterOr returns a middleware for requiring repository write to one of the unit permission
|
2021-11-10 01:27:58 +05:30
|
|
|
func RequireRepoWriterOr(unitTypes ...unit.Type) func(ctx *Context) {
|
2018-11-28 16:56:14 +05:30
|
|
|
return func(ctx *Context) {
|
|
|
|
for _, unitType := range unitTypes {
|
|
|
|
if ctx.Repo.CanWrite(unitType) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-12-24 05:41:12 +05:30
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
2018-11-28 16:56:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 21:05:30 +05:30
|
|
|
// RequireRepoReader returns a middleware for requiring repository read to the specify unitType
|
2021-11-10 01:27:58 +05:30
|
|
|
func RequireRepoReader(unitType unit.Type) func(ctx *Context) {
|
2018-11-28 16:56:14 +05:30
|
|
|
return func(ctx *Context) {
|
|
|
|
if !ctx.Repo.CanRead(unitType) {
|
2019-04-23 02:10:51 +05:30
|
|
|
if log.IsTrace() {
|
|
|
|
if ctx.IsSigned {
|
|
|
|
log.Trace("Permission Denied: User %-v cannot read %-v in Repo %-v\n"+
|
|
|
|
"User in Repo has Permissions: %-+v",
|
2022-03-22 12:33:22 +05:30
|
|
|
ctx.Doer,
|
2019-04-23 02:10:51 +05:30
|
|
|
unitType,
|
|
|
|
ctx.Repo.Repository,
|
|
|
|
ctx.Repo.Permission)
|
|
|
|
} else {
|
|
|
|
log.Trace("Permission Denied: Anonymous user cannot read %-v in Repo %-v\n"+
|
|
|
|
"Anonymous user in Repo has Permissions: %-+v",
|
|
|
|
unitType,
|
|
|
|
ctx.Repo.Repository,
|
|
|
|
ctx.Repo.Permission)
|
|
|
|
}
|
|
|
|
}
|
2019-12-24 05:41:12 +05:30
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
2018-11-28 16:56:14 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-29 21:05:30 +05:30
|
|
|
// RequireRepoReaderOr returns a middleware for requiring repository write to one of the unit permission
|
2021-11-10 01:27:58 +05:30
|
|
|
func RequireRepoReaderOr(unitTypes ...unit.Type) func(ctx *Context) {
|
2018-11-28 16:56:14 +05:30
|
|
|
return func(ctx *Context) {
|
|
|
|
for _, unitType := range unitTypes {
|
|
|
|
if ctx.Repo.CanRead(unitType) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-04-23 02:10:51 +05:30
|
|
|
if log.IsTrace() {
|
|
|
|
var format string
|
|
|
|
var args []interface{}
|
|
|
|
if ctx.IsSigned {
|
|
|
|
format = "Permission Denied: User %-v cannot read ["
|
2022-03-22 12:33:22 +05:30
|
|
|
args = append(args, ctx.Doer)
|
2019-04-23 02:10:51 +05:30
|
|
|
} else {
|
|
|
|
format = "Permission Denied: Anonymous user cannot read ["
|
|
|
|
}
|
|
|
|
for _, unit := range unitTypes {
|
|
|
|
format += "%-v, "
|
|
|
|
args = append(args, unit)
|
|
|
|
}
|
|
|
|
|
|
|
|
format = format[:len(format)-2] + "] in Repo %-v\n" +
|
|
|
|
"User in Repo has Permissions: %-+v"
|
|
|
|
args = append(args, ctx.Repo.Repository, ctx.Repo.Permission)
|
|
|
|
log.Trace(format, args...)
|
|
|
|
}
|
2019-12-24 05:41:12 +05:30
|
|
|
ctx.NotFound(ctx.Req.URL.RequestURI(), nil)
|
2018-11-28 16:56:14 +05:30
|
|
|
}
|
|
|
|
}
|