forgejo/services/context/repository.go

40 lines
1.2 KiB
Go
Raw Normal View History

2023-10-23 17:16:38 +02:00
// Copyright 2023 The forgejo Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package context
import (
"net/http"
repo_model "code.gitea.io/gitea/models/repo"
"code.gitea.io/gitea/modules/context"
2023-10-27 12:12:31 +02:00
"code.gitea.io/gitea/modules/log"
2023-10-23 17:16:38 +02:00
)
// RepositoryIDAssignmentAPI returns a middleware to handle context-repo assignment for api routes
func RepositoryIDAssignmentAPI() func(ctx *context.APIContext) {
return func(ctx *context.APIContext) {
// TODO: enough validation for security?
repositoryID := ctx.ParamsInt64(":repository-id")
2023-10-27 12:12:31 +02:00
log.Info("RepositoryIDAssignmentAPI: %v", repositoryID)
2023-10-23 17:16:38 +02:00
//TODO: check auth here ?
2023-10-27 14:10:13 +02:00
//if !ctx.Repo.HasAccess() && !ctx.IsUserSiteAdmin() {
// ctx.Error(http.StatusForbidden, "reqAnyRepoReader", "user should have any permission to read repository or permissions of site admin")
// return
//}
2023-10-23 17:16:38 +02:00
var err error
2023-10-24 09:10:31 +02:00
repository := new(context.Repository)
// TODO: does repository struct need more infos?
repository.Repository, err = repo_model.GetRepositoryByID(ctx, repositoryID)
2023-10-23 17:16:38 +02:00
2023-10-24 09:10:31 +02:00
// TODO: check & convert errors
2023-10-23 17:16:38 +02:00
if err != nil {
ctx.Error(http.StatusInternalServerError, "GetRepositoryByID", err)
}
2023-10-24 09:10:31 +02:00
ctx.Repo = repository
2023-10-23 17:16:38 +02:00
}
}