Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
df14bc9d08 | |||
e3c33d25ac | |||
64d8909f55 | |||
ea1a0b978e | |||
0005970e01 | |||
581165ca4c | |||
f40e91ea42 | |||
a076b6347a | |||
f7b7ce075a | |||
a90e996b7d | |||
308fe5666b | |||
25272afe15 | |||
5a04c52876 | |||
fd2c37aae2 | |||
1a2ded6f2a | |||
682166307b | |||
7b5f7a70c1 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,6 +22,7 @@ go.work
|
|||||||
|
|
||||||
# By Reza
|
# By Reza
|
||||||
build/
|
build/
|
||||||
|
dist/
|
||||||
.archive/
|
.archive/
|
||||||
.vagrant/
|
.vagrant/
|
||||||
.env
|
.env
|
||||||
|
@ -5,31 +5,24 @@ builds:
|
|||||||
- CGO_ENABLED=0
|
- CGO_ENABLED=0
|
||||||
goos:
|
goos:
|
||||||
- linux
|
- linux
|
||||||
- darwin
|
|
||||||
- windows
|
|
||||||
goarch:
|
goarch:
|
||||||
- amd64
|
- amd64
|
||||||
- arm64
|
- arm64
|
||||||
|
- arm
|
||||||
|
goarm:
|
||||||
|
- 7 # For ARMv7
|
||||||
|
|
||||||
gitea_urls:
|
gitea_urls:
|
||||||
api: https://git.behzadan.ir/api/v1/
|
api: https://git.behzadan.ir/api/v1/
|
||||||
|
|
||||||
# If you want to push the release to GitHub, configure the GitHub section.
|
# Need a Gitea token with repo access stored in your environment as GITEA_TOKEN.
|
||||||
# You'll need a GitHub token with repo access stored in your environment as GITHUB_TOKEN.
|
|
||||||
release:
|
release:
|
||||||
# github:
|
|
||||||
# owner: yourgithubusername
|
|
||||||
# name: yourrepositoryname
|
|
||||||
gitea:
|
gitea:
|
||||||
owner: p
|
owner: reza
|
||||||
name: minitmpl
|
name: minitmpl
|
||||||
|
|
||||||
# If you want to create archives (tar.gz for Linux/Darwin, zip for Windows)
|
|
||||||
archives:
|
archives:
|
||||||
- format: tar.gz
|
- format: tar.gz
|
||||||
format_overrides:
|
|
||||||
- goos: windows
|
|
||||||
format: zip
|
|
||||||
files:
|
files:
|
||||||
- LICENSE
|
- LICENSE
|
||||||
- README.md
|
- README.md
|
||||||
|
57
Makefile
Normal file
57
Makefile
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
PROJECT_NAME := minitmpl
|
||||||
|
VERSION := $(shell cat VERSION)
|
||||||
|
BUILD_DIR := build
|
||||||
|
DIST_DIR := dist
|
||||||
|
LDFLAGS := "-w -s"
|
||||||
|
VVERSION := v$(VERSION)
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
|
build:
|
||||||
|
@echo "Building for this platform ..."
|
||||||
|
@mkdir -p $(BUILD_DIR)
|
||||||
|
@CGO_ENABLED=0 go build -ldflags=$(LDFLAGS) -o $(BUILD_DIR)/$(PROJECT_NAME) main.go
|
||||||
|
@echo "Build complete!"
|
||||||
|
|
||||||
|
.PHONY: install
|
||||||
|
install: build
|
||||||
|
@install build/$(PROJECT_NAME) /usr/local/bin
|
||||||
|
@echo "Binary installed at /usr/local/bin/$(PROJECT_NAME)"
|
||||||
|
|
||||||
|
.PHONY: release
|
||||||
|
release:
|
||||||
|
@echo "Check if the git working directory is clean"
|
||||||
|
@if [ -n "$$(git status --porcelain)" ]; then \
|
||||||
|
echo "Error: The working directory is not clean. Please commit or stash your changes."; \
|
||||||
|
exit 1; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
@echo "Check if the version tag already exists and does not point to HEAD"
|
||||||
|
@if git rev-parse $(VVERSION) >/dev/null 2>&1; then \
|
||||||
|
if ! git describe --tags --exact-match HEAD >/dev/null 2>&1; then \
|
||||||
|
echo "Error: Version $(VVERSION) is already tagged on a different commit."; \
|
||||||
|
exit 1; \
|
||||||
|
fi; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
@echo "Tag the latest commit with the version from VERSION file if not already tagged"
|
||||||
|
@if ! git describe --tags --exact-match HEAD >/dev/null 2>&1; then \
|
||||||
|
echo "Latest commit not tagged. Tagging with version from VERSION file..."; \
|
||||||
|
git tag -a $(VVERSION) -m "Release $(VVERSION)"; \
|
||||||
|
git push origin $(VVERSION); \
|
||||||
|
fi
|
||||||
|
|
||||||
|
@echo "Set GITEA_TOKEN variable and run goreleaser"
|
||||||
|
@export GITEA_TOKEN=$(shell pass www/behzadan.ir/git/reza/tokens/dt06-goreleaser) \
|
||||||
|
goreleaser release
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: run
|
||||||
|
run:
|
||||||
|
go run main.go $(filter-out $@,$(MAKECMDGOALS))
|
||||||
|
%:
|
||||||
|
@:
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo "Cleaning up..."
|
||||||
|
@rm -rf ${BUILD_DIR}
|
||||||
|
@rm -rf ${DIST_DIR}
|
48
README.md
48
README.md
@ -0,0 +1,48 @@
|
|||||||
|
# MiniTMPL
|
||||||
|
|
||||||
|
MiniTMPL is a simple, yet powerful tool designed to render text templates using environment variables. It reads a template from `stdin` and outputs the rendered version to `stdout`, making it an excellent tool for generating configuration files, messages, or any text-based content that requires dynamic data insertion.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- Reads templates from standard input (`stdin`).
|
||||||
|
- Renders templates using environment variables.
|
||||||
|
- Supports basic template functions provided by Go's `text/template` package.
|
||||||
|
|
||||||
|
## Getting Started
|
||||||
|
|
||||||
|
To use EnvTemplater, clone this repository or download the latest release to your local machine.
|
||||||
|
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
Ensure you have Go installed on your system. EnvTemplater requires Go 1.14 or higher.
|
||||||
|
|
||||||
|
|
||||||
|
### Building form source
|
||||||
|
|
||||||
|
First, clone the repository:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://git.behzadan.ir/p/minitmpl.git
|
||||||
|
cd minitmpl
|
||||||
|
```
|
||||||
|
|
||||||
|
Then, build the program:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
go build -o minitmpl
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To use EnvTemplater, simply pipe a template into the program and it will output the rendered version:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
echo "Hello, {{.USER}}" | ./envtemplater
|
||||||
|
```
|
||||||
|
|
||||||
|
This will replace `{{.USER}}` with the value of the `USER` environment variable.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This project is licensed under a custom license - see the [LICENSE](LICENSE) file for details.
|
||||||
|
|
17
functions/common.go
Normal file
17
functions/common.go
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package functions
|
||||||
|
|
||||||
|
import (
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"golang.org/x/text/cases"
|
||||||
|
"golang.org/x/text/language"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Title(s string) string {
|
||||||
|
caser := cases.Title(language.AmericanEnglish)
|
||||||
|
return caser.String(s)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Split(sep, s string) []string {
|
||||||
|
return strings.Split(s, sep)
|
||||||
|
}
|
14
functions/functions.go
Normal file
14
functions/functions.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package functions
|
||||||
|
|
||||||
|
import "html/template"
|
||||||
|
|
||||||
|
func FuncMap() template.FuncMap {
|
||||||
|
|
||||||
|
return template.FuncMap{
|
||||||
|
"title": Title,
|
||||||
|
"split": Split,
|
||||||
|
"domain": GetDomainName,
|
||||||
|
"genpw": GenPassword,
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
18
functions/getdomain.go
Normal file
18
functions/getdomain.go
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
package functions
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GetDomainName() string {
|
||||||
|
hostname, err := os.Hostname()
|
||||||
|
if err != nil {
|
||||||
|
return "exmaple.ir"
|
||||||
|
}
|
||||||
|
parts := strings.Split(hostname, ".")
|
||||||
|
if len(parts) < 2 {
|
||||||
|
return "exmaple.ir"
|
||||||
|
}
|
||||||
|
return strings.Join(parts[1:], ".")
|
||||||
|
}
|
35
functions/security.go
Normal file
35
functions/security.go
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
package functions
|
||||||
|
|
||||||
|
import (
|
||||||
|
"crypto/rand"
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
// genpw generates a random password of the given length.
|
||||||
|
// It uses a predefined set of characters to ensure the password is readable.
|
||||||
|
func genpw(length int) (string, error) {
|
||||||
|
// Define a set of characters to use in the password.
|
||||||
|
// You can adjust the character set to meet your password policy requirements.
|
||||||
|
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()"
|
||||||
|
|
||||||
|
b := make([]byte, length) // Create a slice of bytes to store the password characters
|
||||||
|
_, err := rand.Read(b) // Fill the slice with random bytes
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("error generating random bytes: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
password := make([]byte, length)
|
||||||
|
for i, byteVal := range b {
|
||||||
|
password[i] = charset[byteVal%byte(len(charset))] // Map each byte to a character in the charset
|
||||||
|
}
|
||||||
|
|
||||||
|
return string(password), nil // Convert the password slice to a string and return it
|
||||||
|
}
|
||||||
|
|
||||||
|
func GenPassword(length int) string {
|
||||||
|
pw, err := genpw(length)
|
||||||
|
if err != nil {
|
||||||
|
return "7HQO0LfNL;={i,4@0Tz/]2#EC"
|
||||||
|
}
|
||||||
|
return pw
|
||||||
|
}
|
20
go.mod
20
go.mod
@ -1,3 +1,21 @@
|
|||||||
module git.behzadan.ir/p/minitmpl
|
module git.behzadan.ir/reza/minitmpl
|
||||||
|
|
||||||
go 1.22.0
|
go 1.22.0
|
||||||
|
|
||||||
|
require (
|
||||||
|
dario.cat/mergo v1.0.0 // indirect
|
||||||
|
github.com/Masterminds/goutils v1.1.1 // indirect
|
||||||
|
github.com/Masterminds/semver v1.5.0 // indirect
|
||||||
|
github.com/Masterminds/semver/v3 v3.2.0 // indirect
|
||||||
|
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
|
||||||
|
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
|
||||||
|
github.com/google/uuid v1.1.1 // indirect
|
||||||
|
github.com/huandu/xstrings v1.3.3 // indirect
|
||||||
|
github.com/imdario/mergo v0.3.11 // indirect
|
||||||
|
github.com/mitchellh/copystructure v1.0.0 // indirect
|
||||||
|
github.com/mitchellh/reflectwalk v1.0.0 // indirect
|
||||||
|
github.com/shopspring/decimal v1.2.0 // indirect
|
||||||
|
github.com/spf13/cast v1.3.1 // indirect
|
||||||
|
golang.org/x/crypto v0.3.0 // indirect
|
||||||
|
golang.org/x/text v0.14.0 // indirect
|
||||||
|
)
|
||||||
|
67
go.sum
Normal file
67
go.sum
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk=
|
||||||
|
dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
|
||||||
|
github.com/Masterminds/goutils v1.1.1 h1:5nUrii3FMTL5diU80unEVvNevw1nH4+ZV4DSLVJLSYI=
|
||||||
|
github.com/Masterminds/goutils v1.1.1/go.mod h1:8cTjp+g8YejhMuvIA5y2vz3BpJxksy863GQaJW2MFNU=
|
||||||
|
github.com/Masterminds/semver v1.5.0 h1:H65muMkzWKEuNDnfl9d70GUjFniHKHRbFPGBuZ3QEww=
|
||||||
|
github.com/Masterminds/semver v1.5.0/go.mod h1:MB6lktGJrhw8PrUyiEoblNEGEQ+RzHPF078ddwwvV3Y=
|
||||||
|
github.com/Masterminds/semver/v3 v3.2.0 h1:3MEsd0SM6jqZojhjLWWeBY+Kcjy9i6MQAeY7YgDP83g=
|
||||||
|
github.com/Masterminds/semver/v3 v3.2.0/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ=
|
||||||
|
github.com/Masterminds/sprig v2.22.0+incompatible h1:z4yfnGrZ7netVz+0EDJ0Wi+5VZCSYp4Z0m2dk6cEM60=
|
||||||
|
github.com/Masterminds/sprig v2.22.0+incompatible/go.mod h1:y6hNFY5UBTIWBxnzTeuNhlNS5hqE0NB0E6fgfo2Br3o=
|
||||||
|
github.com/Masterminds/sprig/v3 v3.2.3 h1:eL2fZNezLomi0uOLqjQoN6BfsDD+fyLtgbJMAj9n6YA=
|
||||||
|
github.com/Masterminds/sprig/v3 v3.2.3/go.mod h1:rXcFaZ2zZbLRJv/xSysmlgIM1u11eBaRMhvYXJNkGuM=
|
||||||
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
|
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
|
||||||
|
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||||
|
github.com/huandu/xstrings v1.3.3 h1:/Gcsuc1x8JVbJ9/rlye4xZnVAbEkGauT8lbebqcQws4=
|
||||||
|
github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=
|
||||||
|
github.com/imdario/mergo v0.3.11 h1:3tnifQM4i+fbajXKBHXWEH+KvNHqojZ778UH75j3bGA=
|
||||||
|
github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA=
|
||||||
|
github.com/mitchellh/copystructure v1.0.0 h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=
|
||||||
|
github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw=
|
||||||
|
github.com/mitchellh/reflectwalk v1.0.0 h1:9D+8oIskB4VJBN5SFlmc27fSlIBZaov1Wpk/IfikLNY=
|
||||||
|
github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw=
|
||||||
|
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||||
|
github.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ=
|
||||||
|
github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
|
||||||
|
github.com/spf13/cast v1.3.1 h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=
|
||||||
|
github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
|
||||||
|
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
|
||||||
|
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
|
||||||
|
github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
|
||||||
|
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
|
||||||
|
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||||
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
|
golang.org/x/crypto v0.3.0 h1:a06MkbcxBrEFc0w0QIZWXrH/9cCX6KJyWbBOIwAn+7A=
|
||||||
|
golang.org/x/crypto v0.3.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
|
||||||
|
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
|
||||||
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
|
||||||
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||||
|
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
|
||||||
|
golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
|
||||||
|
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
|
||||||
|
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||||
|
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||||
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
|
||||||
|
golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
|
||||||
|
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||||
|
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||||
|
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
|
||||||
|
golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
|
||||||
|
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
|
||||||
|
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
|
||||||
|
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||||
|
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
|
||||||
|
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
|
||||||
|
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
|
||||||
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||||
|
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
|
||||||
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
22
main.go
22
main.go
@ -2,14 +2,20 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"embed"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"text/template"
|
"text/template"
|
||||||
|
|
||||||
|
"dario.cat/mergo"
|
||||||
|
"git.behzadan.ir/reza/minitmpl/functions"
|
||||||
|
"github.com/Masterminds/sprig"
|
||||||
)
|
)
|
||||||
|
|
||||||
const version = "1.0.1"
|
//go:embed VERSION
|
||||||
|
var versionFile embed.FS
|
||||||
|
|
||||||
func printHelp() {
|
func printHelp() {
|
||||||
helpText := fmt.Sprintf(`
|
helpText := fmt.Sprintf(`
|
||||||
@ -35,7 +41,12 @@ func main() {
|
|||||||
|
|
||||||
// Handle version flag
|
// Handle version flag
|
||||||
if *versionFlag {
|
if *versionFlag {
|
||||||
fmt.Println("Version:", version)
|
version, err := versionFile.ReadFile("VERSION")
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintf(os.Stderr, "Error reading version: %v\n", err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
fmt.Println("Version:", strings.TrimSpace(string(version)))
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,8 +57,11 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Define custom functions
|
// Define custom functions
|
||||||
customFunctions := template.FuncMap{
|
customFunctions := sprig.FuncMap()
|
||||||
"title": func(s string) string { return strings.Title(s) },
|
err := mergo.Merge(&customFunctions, functions.FuncMap())
|
||||||
|
if err != nil {
|
||||||
|
fmt.Printf("Error merging custom functions: %v\n", err)
|
||||||
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a new template.
|
// Create a new template.
|
||||||
|
2
samples/hello.go.tmpl
Normal file
2
samples/hello.go.tmpl
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Domain is: "{{domain}}"
|
||||||
|
Password is: "{{genpw 32}}"
|
Loading…
Reference in New Issue
Block a user