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