mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-08 16:38:21 +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
56 lines
1.4 KiB
Go
56 lines
1.4 KiB
Go
package activedir
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/StackExchange/dnscontrol/providers"
|
|
)
|
|
|
|
// This is the struct that matches either (or both) of the Registrar and/or DNSProvider interfaces:
|
|
type adProvider struct {
|
|
adServer string
|
|
fake bool
|
|
psOut string
|
|
psLog string
|
|
}
|
|
|
|
// Register with the dnscontrol system.
|
|
// This establishes the name (all caps), and the function to call to initialize it.
|
|
func init() {
|
|
providers.RegisterDomainServiceProviderType("ACTIVEDIRECTORY_PS", newDNS)
|
|
}
|
|
|
|
func newDNS(config map[string]string, metadata json.RawMessage) (providers.DNSServiceProvider, error) {
|
|
|
|
fake := false
|
|
if fVal := config["fakeps"]; fVal == "true" {
|
|
fake = true
|
|
} else if fVal != "" && fVal != "false" {
|
|
return nil, fmt.Errorf("fakeps value must be 'true' or 'false'")
|
|
}
|
|
|
|
psOut, psLog := config["psout"], config["pslog"]
|
|
if psOut == "" {
|
|
psOut = "dns_update_commands.ps1"
|
|
}
|
|
if psLog == "" {
|
|
psLog = "powershell.log"
|
|
}
|
|
|
|
p := &adProvider{psLog: psLog, psOut: psOut, fake: fake}
|
|
if fake {
|
|
return p, nil
|
|
}
|
|
if runtime.GOOS == "windows" {
|
|
srv := config["ADServer"]
|
|
if srv == "" {
|
|
return nil, fmt.Errorf("ADServer required for Active Directory provider")
|
|
}
|
|
p.adServer = srv
|
|
return p, nil
|
|
}
|
|
fmt.Printf("WARNING: PowerShell not available. ActiveDirectory will not be updated.\n")
|
|
return providers.None{}, nil
|
|
}
|