gitea/modules/git/repo_archive.go

66 lines
1.4 KiB
Go
Raw Normal View History

2016-11-03 22:16:01 +00:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2020 The Gitea Authors. All rights reserved.
2016-11-03 22:16:01 +00:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package git
import (
"context"
2016-11-03 22:16:01 +00:00
"fmt"
"io"
2016-11-03 22:16:01 +00:00
"path/filepath"
"strings"
)
2016-12-22 09:30:52 +00:00
// ArchiveType archive types
2016-11-03 22:16:01 +00:00
type ArchiveType int
const (
2016-12-22 09:30:52 +00:00
// ZIP zip archive type
2016-11-03 22:16:01 +00:00
ZIP ArchiveType = iota + 1
2016-12-22 09:30:52 +00:00
// TARGZ tar gz archive type
2016-11-03 22:16:01 +00:00
TARGZ
// BUNDLE bundle archive type
BUNDLE
2016-11-03 22:16:01 +00:00
)
// String converts an ArchiveType to string
func (a ArchiveType) String() string {
switch a {
2016-11-03 22:16:01 +00:00
case ZIP:
return "zip"
2016-11-03 22:16:01 +00:00
case TARGZ:
return "tar.gz"
case BUNDLE:
return "bundle"
2016-11-03 22:16:01 +00:00
}
return "unknown"
}
// 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)
}
args := []string{
"archive",
}
if usePrefix {
args = append(args, "--prefix="+filepath.Base(strings.TrimSuffix(repo.Path, ".git"))+"/")
}
args = append(args,
"--format="+format.String(),
commitID,
)
2016-11-03 22:16:01 +00:00
var stderr strings.Builder
err := NewCommandContext(ctx, args...).RunInDirPipeline(repo.Path, target, &stderr)
if err != nil {
return ConcatenateError(err, stderr.String())
}
return nil
2016-11-03 22:16:01 +00:00
}