mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 09:12:47 +08:00
62 lines
1.4 KiB
Go
62 lines
1.4 KiB
Go
package commands
|
|
|
|
import (
|
|
_ "embed" // Required by go:embed
|
|
"os"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// GoReleaser: version
|
|
var (
|
|
version = "dev"
|
|
)
|
|
|
|
var _ = cmd(catUtils, func() *cli.Command {
|
|
var args TypesArgs
|
|
return &cli.Command{
|
|
Name: "write-types",
|
|
Usage: "[BETA] Write a TypeScript declaration file in the current directory",
|
|
Action: func(c *cli.Context) error {
|
|
return exit(WriteTypes(args))
|
|
},
|
|
Flags: args.flags(),
|
|
}
|
|
}())
|
|
|
|
// TypesArgs stores arguments related to the types subcommand.
|
|
type TypesArgs struct {
|
|
DTSFile string
|
|
}
|
|
|
|
func (args *TypesArgs) flags() []cli.Flag {
|
|
var flags []cli.Flag
|
|
flags = append(flags, &cli.StringFlag{
|
|
Name: "dts-file",
|
|
Aliases: []string{"o"},
|
|
Value: "types-dnscontrol.d.ts",
|
|
Usage: "Path to the .d.ts file to create",
|
|
Destination: &args.DTSFile,
|
|
})
|
|
return flags
|
|
}
|
|
|
|
//go:embed types/dnscontrol.d.ts
|
|
var dtsContent string
|
|
|
|
// WriteTypes creates the types file.
|
|
func WriteTypes(args TypesArgs) error {
|
|
file, err := os.Create(args.DTSFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
file.WriteString("// This file was automatically generated by DNSControl. Do not edit it directly.\n")
|
|
file.WriteString("// To update it, run `dnscontrol write-types`.\n\n")
|
|
file.WriteString("// " + version + "\n")
|
|
file.WriteString(dtsContent)
|
|
|
|
print("Successfully wrote " + args.DTSFile + "\n")
|
|
return nil
|
|
}
|