mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	cleanup & minor refactorings
This commit is contained in:
		
					parent
					
						
							
								3172eb69d2
							
						
					
				
			
			
				commit
				
					
						bad8e04c3c
					
				
			
		
					 2 changed files with 16 additions and 20 deletions
				
			
		|  | @ -8,7 +8,6 @@ import ( | |||
| 
 | ||||
| 	repo_model "code.gitea.io/gitea/models/repo" | ||||
| 	"code.gitea.io/gitea/modules/context" | ||||
| 	"code.gitea.io/gitea/modules/log" | ||||
| ) | ||||
| 
 | ||||
| // RepositoryIDAssignmentAPI returns a middleware to handle context-repo assignment for api routes | ||||
|  | @ -17,20 +16,9 @@ func RepositoryIDAssignmentAPI() func(ctx *context.APIContext) { | |||
| 		// TODO: enough validation for security? | ||||
| 		repositoryID := ctx.ParamsInt64(":repository-id") | ||||
| 
 | ||||
| 		log.Info("RepositoryIDAssignmentAPI: %v", repositoryID) | ||||
| 
 | ||||
| 		//TODO: check auth here ? | ||||
| 		//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 | ||||
| 		//} | ||||
| 
 | ||||
| 		var err error | ||||
| 		repository := new(context.Repository) | ||||
| 		// TODO: does repository struct need more infos? | ||||
| 		repository.Repository, err = repo_model.GetRepositoryByID(ctx, repositoryID) | ||||
| 
 | ||||
| 		// TODO: check & convert errors | ||||
| 		if err != nil { | ||||
| 			ctx.Error(http.StatusInternalServerError, "GetRepositoryByID", err) | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue