mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-04 06:32:49 +08:00
1d9d2b1a19
* starting to refactor commands * work * not sure * all commands working! * actually add file * work in delay flag again * start to refactor out console printing * i hate line endings * simple travis test to find direct output * remove all direct printing from push/preview * checkin vendor * don't need this yet * forgot to commit these * make version explicit command * some code review * Add "check" subcommand. * move stuff to commands package * fix * comment out check for printlns. for now * alphabet hax * activedir flags gone. use creds instead * active dir doc update * remove bind specific flags. creds instead * default to zones dir * fix linux build * fix test * cleanup random global* vars * Clean up PowerShell docs * rename dump-ir to print-ir. combine with print-js
62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/StackExchange/dnscontrol/providers"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
var _ = cmd(catUtils, func() *cli.Command {
|
|
var args CreateDomainsArgs
|
|
return &cli.Command{
|
|
Name: "create-domains",
|
|
Usage: "ensures that all domains in your configuration are present in all providers.",
|
|
Action: func(ctx *cli.Context) error {
|
|
return exit(CreateDomains(args))
|
|
},
|
|
Flags: args.flags(),
|
|
}
|
|
}())
|
|
|
|
type CreateDomainsArgs struct {
|
|
GetDNSConfigArgs
|
|
GetCredentialsArgs
|
|
}
|
|
|
|
func (args *CreateDomainsArgs) flags() []cli.Flag {
|
|
flags := args.GetDNSConfigArgs.flags()
|
|
flags = append(flags, args.GetCredentialsArgs.flags()...)
|
|
return flags
|
|
}
|
|
|
|
func CreateDomains(args CreateDomainsArgs) error {
|
|
cfg, err := GetDNSConfig(args.GetDNSConfigArgs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
registrars, dnsProviders, _, err := InitializeProviders(args.CredsFile, cfg)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fmt.Printf("Initialized %d registrars and %d dns service providers.\n", len(registrars), len(dnsProviders))
|
|
for _, domain := range cfg.Domains {
|
|
fmt.Println("*** ", domain.Name)
|
|
for prov := range domain.DNSProviders {
|
|
dsp, ok := dnsProviders[prov]
|
|
if !ok {
|
|
log.Fatalf("DSP %s not declared.", prov)
|
|
}
|
|
if creator, ok := dsp.(providers.DomainCreator); ok {
|
|
fmt.Println(" -", prov)
|
|
// TODO: maybe return bool if it did anything.
|
|
err := creator.EnsureDomainExists(domain.Name)
|
|
if err != nil {
|
|
fmt.Printf("Error creating domain: %s\n", err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|