2021-01-21 07:32:21 +00:00
|
|
|
package main
|
2021-01-21 08:15:34 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
templatesPath = "templates"
|
|
|
|
)
|
|
|
|
|
|
|
|
// map template name with filename
|
|
|
|
var templates = map[string]templateInfo{
|
|
|
|
"MIT": {
|
2021-01-21 08:41:40 +00:00
|
|
|
filename: "mit.txt",
|
2021-01-21 08:15:34 +00:00
|
|
|
args: []string{
|
|
|
|
"[year]",
|
|
|
|
"[fullname]",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
type templateInfo struct {
|
|
|
|
filename string
|
|
|
|
args []string
|
|
|
|
}
|
|
|
|
|
2021-01-21 08:41:40 +00:00
|
|
|
func generateLicense(name string) (string, error) {
|
2021-01-21 08:15:34 +00:00
|
|
|
if name == "" {
|
|
|
|
return "", fmt.Errorf("empty license name")
|
|
|
|
}
|
|
|
|
|
|
|
|
templateInfo, ok := templates[name]
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("not support license %s", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read template
|
|
|
|
path := filepath.Join(templatesPath, templateInfo.filename)
|
|
|
|
templateRaw, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to read file %s: %w", path, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace template
|
|
|
|
template := string(templateRaw)
|
|
|
|
for _, arg := range templateInfo.args {
|
2021-01-21 08:41:40 +00:00
|
|
|
fmt.Printf("What is your %s: ", arg)
|
|
|
|
value := readStdin()
|
2021-01-21 08:15:34 +00:00
|
|
|
|
|
|
|
template = strings.ReplaceAll(template, arg, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
return template, nil
|
|
|
|
}
|