mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			777 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			777 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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"
 | 
						|
)
 | 
						|
 | 
						|
// 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")
 | 
						|
 | 
						|
		var err error
 | 
						|
		repository := new(context.Repository)
 | 
						|
		repository.Repository, err = repo_model.GetRepositoryByID(ctx, repositoryID)
 | 
						|
		if err != nil {
 | 
						|
			ctx.Error(http.StatusInternalServerError, "GetRepositoryByID", err)
 | 
						|
		}
 | 
						|
		ctx.Repo = repository
 | 
						|
	}
 | 
						|
}
 |