Some checks are pending
/ release (push) Waiting to run
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (redis) (push) Blocked by required conditions
testing / test-remote-cacher (valkey) (push) Blocked by required conditions
testing / test-remote-cacher (garnet) (push) Blocked by required conditions
testing / test-remote-cacher (redict) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
testing / security-check (push) Blocked by required conditions
25 lines
658 B
Go
25 lines
658 B
Go
// Copyright 2023, 2024 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package context
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
repo_model "forgejo.org/models/repo"
|
|
)
|
|
|
|
// RepositoryIDAssignmentAPI returns a middleware to handle context-repo assignment for api routes
|
|
func RepositoryIDAssignmentAPI() func(ctx *APIContext) {
|
|
return func(ctx *APIContext) {
|
|
repositoryID := ctx.ParamsInt64(":repository-id")
|
|
|
|
var err error
|
|
repository := new(Repository)
|
|
repository.Repository, err = repo_model.GetRepositoryByID(ctx, repositoryID)
|
|
if err != nil {
|
|
ctx.Error(http.StatusNotFound, "GetRepositoryByID", err)
|
|
}
|
|
ctx.Repo = repository
|
|
}
|
|
}
|