refactor: upgrade/rewrite almost whole source code
This commit is contained in:
parent
b3595e1f6d
commit
445cd215d4
187
main.go
187
main.go
@ -1,7 +1,9 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"embed"
|
"embed"
|
||||||
|
"errors"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/fs"
|
"io/fs"
|
||||||
@ -14,40 +16,110 @@ import (
|
|||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
type InputData struct {
|
//go:embed all:templates
|
||||||
AuthorName string
|
var TemplatesDir embed.FS
|
||||||
AuthorEmail string
|
|
||||||
Year int
|
|
||||||
}
|
|
||||||
|
|
||||||
type LicenseData struct {
|
type LicenseTemplate struct {
|
||||||
FullName string `yaml:"title"`
|
Title string `yaml:"title"`
|
||||||
ID string `yaml:"spdx-id"`
|
ID string `yaml:"spdx-id"`
|
||||||
Description string `yaml:"description"` // TODO
|
Description string `yaml:"description"` // TODO
|
||||||
Permissions []string `yaml:"permissions"` // TODO
|
Permissions []string `yaml:"permissions"` // TODO
|
||||||
Limitations []string `yaml:"limitations"` // TODO
|
Limitations []string `yaml:"limitations"` // TODO
|
||||||
Conditions []string `yaml:"conditions"` // TODO
|
Conditions []string `yaml:"conditions"` // TODO
|
||||||
|
Body string
|
||||||
}
|
}
|
||||||
|
|
||||||
//go:embed all:templates
|
type LicenseContext struct {
|
||||||
var TemplatesDir embed.FS
|
AuthorName string
|
||||||
|
AuthorEmail string
|
||||||
|
Year int
|
||||||
|
}
|
||||||
|
|
||||||
func getGitUserData() (string, string, error) {
|
type Licenser struct {
|
||||||
var userData [2]string
|
LicenseID string
|
||||||
for i, v := range []string{"user.name", "user.email"} {
|
LicenseContext LicenseContext
|
||||||
cmd := exec.Command("git", "config", "--get", v)
|
OutputFile string
|
||||||
|
licenseBody string
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewLicenseContext(authorName string, authorEmail string) (LicenseContext, error) {
|
||||||
|
var err error
|
||||||
|
if authorName == "" {
|
||||||
|
authorName, err = gitUserData("user.name")
|
||||||
|
}
|
||||||
|
if authorEmail == "" {
|
||||||
|
authorEmail, err = gitUserData("user.email")
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
return LicenseContext{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return LicenseContext{
|
||||||
|
AuthorName: authorName,
|
||||||
|
AuthorEmail: authorEmail,
|
||||||
|
Year: time.Now().Year(),
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *Licenser) ParseTemplate() (LicenseTemplate, error) {
|
||||||
|
licenseID := strings.ToUpper(l.LicenseID)
|
||||||
|
tmplPath := "templates/" + licenseID + ".tmpl"
|
||||||
|
data, err := TemplatesDir.ReadFile(tmplPath)
|
||||||
|
if err != nil {
|
||||||
|
return LicenseTemplate{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
parts := strings.SplitN(string(data), "---", 3)
|
||||||
|
|
||||||
|
var licenseTmpl LicenseTemplate
|
||||||
|
yaml.Unmarshal([]byte(parts[1]), &licenseTmpl)
|
||||||
|
licenseTmpl.Body = strings.TrimSpace(parts[2])
|
||||||
|
|
||||||
|
return licenseTmpl, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *Licenser) Generate() error {
|
||||||
|
license, err := l.ParseTemplate()
|
||||||
|
if err != nil {
|
||||||
|
return errors.New("Not supported license")
|
||||||
|
}
|
||||||
|
|
||||||
|
tmpl, _ := template.New(l.LicenseID).Parse(license.Body)
|
||||||
|
|
||||||
|
var output bytes.Buffer
|
||||||
|
tmpl.Execute(&output, l.LicenseContext)
|
||||||
|
|
||||||
|
l.licenseBody = output.String()
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (l *Licenser) WriteFile() error {
|
||||||
|
outFile, err := os.Create(l.OutputFile)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer outFile.Close()
|
||||||
|
|
||||||
|
if _, err := outFile.WriteString(l.licenseBody); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func gitUserData(key string) (string, error) {
|
||||||
|
cmd := exec.Command("git", "config", "--get", key)
|
||||||
out, err := cmd.Output()
|
out, err := cmd.Output()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", "", fmt.Errorf("Can't read Git config: %w", err)
|
return "", errors.New("Can't read Git config")
|
||||||
}
|
}
|
||||||
|
|
||||||
userData[i] = strings.TrimSpace(string(out))
|
value := strings.TrimSpace(string(out))
|
||||||
}
|
return value, nil
|
||||||
|
|
||||||
return userData[0], userData[1], nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func getTemplateList() []string {
|
func templateList() []string {
|
||||||
files, err := fs.ReadDir(TemplatesDir, "templates")
|
files, err := fs.ReadDir(TemplatesDir, "templates")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
@ -62,92 +134,51 @@ func getTemplateList() []string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func listLicenses() {
|
func listLicenses() {
|
||||||
licList := getTemplateList()
|
tmplList := templateList()
|
||||||
fmt.Println(strings.Join(licList, ", "))
|
fmt.Println(strings.Join(tmplList, ", "))
|
||||||
}
|
|
||||||
|
|
||||||
func parseFrontMatter(tmplPath string) (LicenseData, string, error) {
|
|
||||||
data, err := TemplatesDir.ReadFile(tmplPath)
|
|
||||||
if err != nil {
|
|
||||||
return LicenseData{}, "", err
|
|
||||||
}
|
|
||||||
|
|
||||||
parts := strings.SplitN(string(data), "---", 3)
|
|
||||||
|
|
||||||
var licData LicenseData
|
|
||||||
yaml.Unmarshal([]byte(parts[1]), &licData)
|
|
||||||
|
|
||||||
return licData, strings.TrimSpace(parts[2]), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func genLicense(licName string, inputData InputData, outFileName string) error {
|
|
||||||
tmplPath := "templates/" + licName + ".tmpl"
|
|
||||||
_, lcnsBody, err := parseFrontMatter(tmplPath)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
tmpl, err := template.New(licName).Parse(lcnsBody)
|
|
||||||
if err != nil {
|
|
||||||
return fmt.Errorf("Not supported license")
|
|
||||||
}
|
|
||||||
|
|
||||||
outFile, err := os.Create(outFileName)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
defer outFile.Close()
|
|
||||||
|
|
||||||
err = tmpl.Execute(outFile, inputData)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
OutputFile := flag.String("output", "LICENSE", "Specify different output file")
|
OutputFile := flag.String("output", "LICENSE", "Specify different output file")
|
||||||
LicenseName := flag.String("license", "", "Specify license by SPDX ID (e.g. BSD-3-Clause)")
|
LicenseID := flag.String("license", "", "Specify license by SPDX ID (e.g. BSD-3-Clause)")
|
||||||
AuthorName := flag.String("name", "", "Set the author name (read from Git by default)")
|
AuthorName := flag.String("name", "", "Set the author name (read from Git by default)")
|
||||||
AuthorEmail := flag.String("email", "", "Set the author email (read from Git by default)")
|
AuthorEmail := flag.String("email", "", "Set the author email (read from Git by default)")
|
||||||
ListLicenses := flag.Bool("list", false, "List available licenses")
|
ListLicenses := flag.Bool("list", false, "List available licenses")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
*LicenseName = strings.ToUpper(*LicenseName)
|
|
||||||
|
|
||||||
if *ListLicenses {
|
if *ListLicenses {
|
||||||
listLicenses()
|
listLicenses()
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
if *LicenseName == "" {
|
if *LicenseID == "" {
|
||||||
fmt.Printf("Error: No license specified\n\nUse --license LICENSE\n\nAvailable licenses:\n")
|
fmt.Printf("Error: No license specified\n\nUse --license LICENSE\n\nAvailable licenses:\n")
|
||||||
listLicenses()
|
listLicenses()
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
if *AuthorName == "" || *AuthorEmail == "" {
|
licenseCtx, err := NewLicenseContext(*AuthorName, *AuthorEmail)
|
||||||
var err error
|
if err != nil && err.Error() == "Can't read Git config" {
|
||||||
*AuthorName, *AuthorEmail, err = getGitUserData()
|
|
||||||
if err != nil {
|
|
||||||
fmt.Printf(
|
fmt.Printf(
|
||||||
"Error: Can't read Git config.\n\nUse --name \"NAME\" and --email EMAIL instead.\n",
|
"Error: Can't read Git config.\n\nUse --name \"NAME\" and --email EMAIL instead.\n",
|
||||||
)
|
)
|
||||||
os.Exit(3)
|
os.Exit(3)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
licenser := Licenser{
|
||||||
|
LicenseID: *LicenseID,
|
||||||
|
LicenseContext: licenseCtx,
|
||||||
|
OutputFile: *OutputFile,
|
||||||
}
|
}
|
||||||
|
|
||||||
inputData := InputData{
|
err = licenser.Generate()
|
||||||
AuthorName: *AuthorName,
|
if err != nil && err.Error() == "Not supported license" {
|
||||||
AuthorEmail: *AuthorEmail,
|
fmt.Printf("Error: There is no '%s' license\n\nAvailable licenses:\n", *LicenseID)
|
||||||
Year: time.Now().Year(),
|
|
||||||
}
|
|
||||||
|
|
||||||
err := genLicense(*LicenseName, inputData, *OutputFile)
|
|
||||||
if err != nil {
|
|
||||||
fmt.Printf("Error: There is no '%s' license\n\nAvailable licenses:\n", *LicenseName)
|
|
||||||
listLicenses()
|
listLicenses()
|
||||||
os.Exit(2)
|
os.Exit(2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err = licenser.WriteFile(); err != nil {
|
||||||
|
panic(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user