mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2015 The Gogs Authors. All rights reserved.
 | 
						|
// Copyright 2020 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package git
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"io"
 | 
						|
	"path/filepath"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// ArchiveType archive types
 | 
						|
type ArchiveType int
 | 
						|
 | 
						|
const (
 | 
						|
	// ZIP zip archive type
 | 
						|
	ZIP ArchiveType = iota + 1
 | 
						|
	// TARGZ tar gz archive type
 | 
						|
	TARGZ
 | 
						|
	// BUNDLE bundle archive type
 | 
						|
	BUNDLE
 | 
						|
)
 | 
						|
 | 
						|
// String converts an ArchiveType to string
 | 
						|
func (a ArchiveType) String() string {
 | 
						|
	switch a {
 | 
						|
	case ZIP:
 | 
						|
		return "zip"
 | 
						|
	case TARGZ:
 | 
						|
		return "tar.gz"
 | 
						|
	case BUNDLE:
 | 
						|
		return "bundle"
 | 
						|
	}
 | 
						|
	return "unknown"
 | 
						|
}
 | 
						|
 | 
						|
func ToArchiveType(s string) ArchiveType {
 | 
						|
	switch s {
 | 
						|
	case "zip":
 | 
						|
		return ZIP
 | 
						|
	case "tar.gz":
 | 
						|
		return TARGZ
 | 
						|
	case "bundle":
 | 
						|
		return BUNDLE
 | 
						|
	}
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
// CreateArchive create archive content to the target path
 | 
						|
func (repo *Repository) CreateArchive(ctx context.Context, format ArchiveType, target io.Writer, usePrefix bool, commitID string) error {
 | 
						|
	if format.String() == "unknown" {
 | 
						|
		return fmt.Errorf("unknown format: %v", format)
 | 
						|
	}
 | 
						|
 | 
						|
	cmd := NewCommand(ctx, "archive")
 | 
						|
	if usePrefix {
 | 
						|
		cmd.AddArguments(CmdArg("--prefix=" + filepath.Base(strings.TrimSuffix(repo.Path, ".git")) + "/"))
 | 
						|
	}
 | 
						|
	cmd.AddArguments(CmdArg("--format=" + format.String()))
 | 
						|
	cmd.AddDynamicArguments(commitID)
 | 
						|
 | 
						|
	var stderr strings.Builder
 | 
						|
	err := cmd.Run(&RunOpts{
 | 
						|
		Dir:    repo.Path,
 | 
						|
		Stdout: target,
 | 
						|
		Stderr: &stderr,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		return ConcatenateError(err, stderr.String())
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 |