Added command line flag for domain

This commit is contained in:
Philipp Böhm 2014-07-15 21:48:15 +02:00
parent 0b1e3055d5
commit b3d993b0eb
1 changed files with 26 additions and 27 deletions

27
ddns.go
View File

@ -2,6 +2,7 @@ package main
import ( import (
"bufio" "bufio"
"flag"
"fmt" "fmt"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/pboehm/ddns/connection" "github.com/pboehm/ddns/connection"
@ -58,7 +59,6 @@ func RunBackend() {
fmt.Printf("END\n") fmt.Printf("END\n")
} }
} }
func RunWebService() { func RunWebService() {
@ -153,29 +153,28 @@ func GetRemoteAddr(req *http.Request) (string, error) {
} }
} }
func ExtractConfigVariables() { func ValidateCommandArgs() {
// get the domain in the right format
DdnsDomain = os.Getenv("DDNS_DOMAIN")
if DdnsDomain == "" { if DdnsDomain == "" {
log.Fatal( log.Fatal("You have to supply the domain via --domain=DOMAIN")
"You have to set your Subdomain through the DDNS_DOMAIN env variable") } else if !strings.HasPrefix(DdnsDomain, ".") {
} // get the domain in the right format
if ! strings.HasPrefix(DdnsDomain, ".") {
DdnsDomain = "." + DdnsDomain DdnsDomain = "." + DdnsDomain
} }
}
func init() {
flag.StringVar(&DdnsDomain, "domain", "",
"The subdomain which should be handled by DDNS")
} }
func main() { func main() {
flag.Parse()
ValidateCommandArgs()
if len(os.Args) < 2 { if len(flag.Args()) != 1 {
usage() usage()
} }
cmd := flag.Args()[0]
ExtractConfigVariables()
cmd := os.Args[1]
switch cmd { switch cmd {
case "backend": case "backend":