mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 19:08:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package repo
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"net/http"
 | |
| 
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	"code.gitea.io/gitea/services/context"
 | |
| 	archiver_service "code.gitea.io/gitea/services/repository/archiver"
 | |
| )
 | |
| 
 | |
| func serveRepoArchive(ctx *context.APIContext, reqFileName string) {
 | |
| 	aReq, err := archiver_service.NewRequest(ctx.Repo.Repository, ctx.Repo.GitRepo, reqFileName)
 | |
| 	if err != nil {
 | |
| 		if errors.Is(err, archiver_service.ErrUnknownArchiveFormat{}) {
 | |
| 			ctx.APIError(http.StatusBadRequest, err)
 | |
| 		} else if errors.Is(err, archiver_service.RepoRefNotFoundError{}) {
 | |
| 			ctx.APIError(http.StatusNotFound, err)
 | |
| 		} else {
 | |
| 			ctx.APIErrorInternal(err)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 	archiver_service.ServeRepoArchive(ctx.Base, aReq)
 | |
| }
 | |
| 
 | |
| func DownloadArchive(ctx *context.APIContext) {
 | |
| 	var tp repo_model.ArchiveType
 | |
| 	switch ballType := ctx.PathParam("ball_type"); ballType {
 | |
| 	case "tarball":
 | |
| 		tp = repo_model.ArchiveTarGz
 | |
| 	case "zipball":
 | |
| 		tp = repo_model.ArchiveZip
 | |
| 	case "bundle":
 | |
| 		tp = repo_model.ArchiveBundle
 | |
| 	default:
 | |
| 		ctx.APIError(http.StatusBadRequest, "Unknown archive type: "+ballType)
 | |
| 		return
 | |
| 	}
 | |
| 	serveRepoArchive(ctx, ctx.PathParam("*")+"."+tp.String())
 | |
| }
 |