mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-12 03:51:10 +02:00
9c426a7b16
* refactor: evaluate archive files in another package would be used in #2911 Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com> * test: fixes Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
75 lines
1.7 KiB
Go
75 lines
1.7 KiB
Go
// Package archivefiles can evaluate a list of config.Files into their final form.
|
|
package archivefiles
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
"sort"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/fileglob"
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
"github.com/goreleaser/goreleaser/pkg/config"
|
|
)
|
|
|
|
// Eval evaluates the given list of files to their final form.
|
|
func Eval(template *tmpl.Template, files []config.File) ([]config.File, error) {
|
|
var result []config.File
|
|
for _, f := range files {
|
|
replaced, err := template.Apply(f.Source)
|
|
if err != nil {
|
|
return result, fmt.Errorf("failed to apply template %s: %w", f.Source, err)
|
|
}
|
|
|
|
files, err := fileglob.Glob(replaced)
|
|
if err != nil {
|
|
return result, fmt.Errorf("globbing failed for pattern %s: %w", f.Source, err)
|
|
}
|
|
|
|
for _, file := range files {
|
|
result = append(result, config.File{
|
|
Source: file,
|
|
Destination: destinationFor(f, file),
|
|
Info: f.Info,
|
|
})
|
|
}
|
|
}
|
|
|
|
sort.Slice(result, func(i, j int) bool {
|
|
return result[i].Destination < result[j].Destination
|
|
})
|
|
|
|
return unique(result), nil
|
|
}
|
|
|
|
// remove duplicates
|
|
func unique(in []config.File) []config.File {
|
|
var result []config.File
|
|
exist := map[string]string{}
|
|
for _, f := range in {
|
|
if current := exist[f.Destination]; current != "" {
|
|
log.Warnf(
|
|
"file '%s' already exists in archive as '%s' - '%s' will be ignored",
|
|
f.Destination,
|
|
current,
|
|
f.Source,
|
|
)
|
|
continue
|
|
}
|
|
exist[f.Destination] = f.Source
|
|
result = append(result, f)
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func destinationFor(f config.File, path string) string {
|
|
if f.Destination == "" {
|
|
return path
|
|
}
|
|
if f.StripParent {
|
|
return filepath.Join(f.Destination, filepath.Base(path))
|
|
}
|
|
return filepath.Join(f.Destination, path)
|
|
}
|