mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-19 19:10:18 +02:00
87 lines
2.4 KiB
Go
87 lines
2.4 KiB
Go
// Package name provides name template logic for the final archive, formulae,
|
|
// etc.
|
|
package name
|
|
|
|
import (
|
|
"bytes"
|
|
"text/template"
|
|
|
|
"github.com/goreleaser/goreleaser/config"
|
|
"github.com/goreleaser/goreleaser/context"
|
|
"github.com/goreleaser/goreleaser/internal/buildtarget"
|
|
)
|
|
|
|
type nameData struct {
|
|
Os string
|
|
Arch string
|
|
Arm string
|
|
Version string
|
|
Tag string
|
|
Binary string // deprecated
|
|
ProjectName string
|
|
}
|
|
|
|
// ForBuild return the name for the given context, goos, goarch, goarm and
|
|
// build, using the build.Binary property instead of project_name.
|
|
func ForBuild(ctx *context.Context, build config.Build, target buildtarget.Target) (string, error) {
|
|
return apply(
|
|
nameData{
|
|
Os: replace(ctx.Config.Archive.Replacements, target.OS),
|
|
Arch: replace(ctx.Config.Archive.Replacements, target.Arch),
|
|
Arm: replace(ctx.Config.Archive.Replacements, target.Arm),
|
|
Version: ctx.Version,
|
|
Tag: ctx.Git.CurrentTag,
|
|
Binary: build.Binary,
|
|
ProjectName: build.Binary,
|
|
},
|
|
ctx.Config.Archive.NameTemplate,
|
|
)
|
|
}
|
|
|
|
// For returns the name for the given context, goos, goarch and goarm.
|
|
func For(ctx *context.Context, target buildtarget.Target) (string, error) {
|
|
return apply(
|
|
nameData{
|
|
Os: replace(ctx.Config.Archive.Replacements, target.OS),
|
|
Arch: replace(ctx.Config.Archive.Replacements, target.Arch),
|
|
Arm: replace(ctx.Config.Archive.Replacements, target.Arm),
|
|
Version: ctx.Version,
|
|
Tag: ctx.Git.CurrentTag,
|
|
Binary: ctx.Config.ProjectName,
|
|
ProjectName: ctx.Config.ProjectName,
|
|
},
|
|
ctx.Config.Archive.NameTemplate,
|
|
)
|
|
}
|
|
|
|
// ForChecksums returns the filename for the checksums file based on its
|
|
// template
|
|
func ForChecksums(ctx *context.Context) (string, error) {
|
|
return apply(
|
|
nameData{
|
|
ProjectName: ctx.Config.ProjectName,
|
|
Tag: ctx.Git.CurrentTag,
|
|
Version: ctx.Version,
|
|
},
|
|
ctx.Config.Checksum.NameTemplate,
|
|
)
|
|
}
|
|
|
|
func apply(data nameData, templateStr string) (string, error) {
|
|
var out bytes.Buffer
|
|
t, err := template.New(data.ProjectName).Parse(templateStr)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
err = t.Execute(&out, data)
|
|
return out.String(), err
|
|
}
|
|
|
|
func replace(replacements map[string]string, original string) string {
|
|
result := replacements[original]
|
|
if result == "" {
|
|
return original
|
|
}
|
|
return result
|
|
}
|