mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 10:28:29 -07:00
1af11c4e45
It's done only if user didn't specify it in parameters and target filename doesn't exist yet.
269 lines
6.0 KiB
Go
269 lines
6.0 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"log"
|
|
"net"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"strconv"
|
|
|
|
"github.com/gobuffalo/packr"
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
)
|
|
|
|
// VersionString will be set through ldflags, contains current version
|
|
var VersionString = "undefined"
|
|
|
|
func main() {
|
|
log.Printf("AdGuard Home web interface backend, version %s\n", VersionString)
|
|
box := packr.NewBox("build/static")
|
|
{
|
|
executable, err := os.Executable()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
config.ourBinaryDir = filepath.Dir(executable)
|
|
}
|
|
|
|
doConfigRename := true
|
|
|
|
// config can be specified, which reads options from there, but other command line flags have to override config values
|
|
// therefore, we must do it manually instead of using a lib
|
|
{
|
|
var configFilename *string
|
|
var bindHost *string
|
|
var bindPort *int
|
|
var opts = []struct {
|
|
longName string
|
|
shortName string
|
|
description string
|
|
callback func(value string)
|
|
}{
|
|
{"config", "c", "path to config file", func(value string) { configFilename = &value }},
|
|
{"host", "h", "host address to bind HTTP server on", func(value string) { bindHost = &value }},
|
|
{"port", "p", "port to serve HTTP pages on", func(value string) {
|
|
v, err := strconv.Atoi(value)
|
|
if err != nil {
|
|
panic("Got port that is not a number")
|
|
}
|
|
bindPort = &v
|
|
}},
|
|
{"help", "h", "print this help", nil},
|
|
}
|
|
printHelp := func() {
|
|
fmt.Printf("Usage:\n\n")
|
|
fmt.Printf("%s [options]\n\n", os.Args[0])
|
|
fmt.Printf("Options:\n")
|
|
for _, opt := range opts {
|
|
fmt.Printf(" -%s, %-30s %s\n", opt.shortName, "--"+opt.longName, opt.description)
|
|
}
|
|
}
|
|
for i := 1; i < len(os.Args); i++ {
|
|
v := os.Args[i]
|
|
// short-circuit for help
|
|
if v == "--help" || v == "-h" {
|
|
printHelp()
|
|
os.Exit(64)
|
|
}
|
|
knownParam := false
|
|
for _, opt := range opts {
|
|
if v == "--"+opt.longName {
|
|
if i+1 > len(os.Args) {
|
|
log.Printf("ERROR: Got %s without argument\n", v)
|
|
os.Exit(64)
|
|
}
|
|
i++
|
|
opt.callback(os.Args[i])
|
|
knownParam = true
|
|
break
|
|
}
|
|
if v == "-"+opt.shortName {
|
|
if i+1 > len(os.Args) {
|
|
log.Printf("ERROR: Got %s without argument\n", v)
|
|
os.Exit(64)
|
|
}
|
|
i++
|
|
opt.callback(os.Args[i])
|
|
knownParam = true
|
|
break
|
|
}
|
|
}
|
|
if !knownParam {
|
|
log.Printf("ERROR: unknown option %v\n", v)
|
|
printHelp()
|
|
os.Exit(64)
|
|
}
|
|
}
|
|
if configFilename != nil {
|
|
// config was manually specified, don't do anything
|
|
doConfigRename = false
|
|
config.ourConfigFilename = *configFilename
|
|
}
|
|
|
|
if doConfigRename {
|
|
err := renameOldConfigIfNeccessary()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
err := askUsernamePasswordIfPossible()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
// parse from config file
|
|
err = parseConfig()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if bindHost != nil {
|
|
config.BindHost = *bindHost
|
|
}
|
|
if bindPort != nil {
|
|
config.BindPort = *bindPort
|
|
}
|
|
}
|
|
|
|
// eat all args so that coredns can start happily
|
|
if len(os.Args) > 1 {
|
|
os.Args = os.Args[:1]
|
|
}
|
|
|
|
err := writeConfig()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
address := net.JoinHostPort(config.BindHost, strconv.Itoa(config.BindPort))
|
|
|
|
runFilterRefreshers()
|
|
|
|
http.Handle("/", optionalAuthHandler(http.FileServer(box)))
|
|
registerControlHandlers()
|
|
|
|
err = startDNSServer()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
URL := fmt.Sprintf("http://%s", address)
|
|
log.Println("Go to " + URL)
|
|
log.Fatal(http.ListenAndServe(address, nil))
|
|
}
|
|
|
|
func getInput() (string, error) {
|
|
scanner := bufio.NewScanner(os.Stdin)
|
|
scanner.Scan()
|
|
text := scanner.Text()
|
|
err := scanner.Err()
|
|
return text, err
|
|
}
|
|
|
|
func promptAndGet(prompt string) (string, error) {
|
|
for {
|
|
fmt.Printf(prompt)
|
|
input, err := getInput()
|
|
if err != nil {
|
|
log.Printf("Failed to get input, aborting: %s", err)
|
|
return "", err
|
|
}
|
|
if len(input) != 0 {
|
|
return input, nil
|
|
}
|
|
// try again
|
|
}
|
|
return "", nil
|
|
}
|
|
|
|
func promptAndGetPassword(prompt string) (string, error) {
|
|
for {
|
|
fmt.Printf(prompt)
|
|
password, err := terminal.ReadPassword(int(os.Stdin.Fd()))
|
|
fmt.Printf("\n")
|
|
if err != nil {
|
|
log.Printf("Failed to get input, aborting: %s", err)
|
|
return "", err
|
|
}
|
|
if len(password) != 0 {
|
|
return string(password), nil
|
|
}
|
|
// try again
|
|
}
|
|
}
|
|
|
|
func askUsernamePasswordIfPossible() error {
|
|
configfile := filepath.Join(config.ourBinaryDir, config.ourConfigFilename)
|
|
_, err := os.Stat(configfile)
|
|
if !os.IsNotExist(err) {
|
|
// do nothing, file exists
|
|
trace("File %s exists, won't ask for password", configfile)
|
|
return nil
|
|
}
|
|
if !terminal.IsTerminal(int(os.Stdin.Fd())) {
|
|
return nil // do nothing
|
|
}
|
|
if !terminal.IsTerminal(int(os.Stdout.Fd())) {
|
|
return nil // do nothing
|
|
}
|
|
fmt.Printf("Would you like to set user/password for the web interface authentication (yes/no)?\n")
|
|
yesno, err := promptAndGet("Please type 'yes' or 'no': ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if yesno[0] != 'y' && yesno[0] != 'Y' {
|
|
return nil
|
|
}
|
|
username, err := promptAndGet("Please enter the username: ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
password, err := promptAndGetPassword("Please enter the password: ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
password2, err := promptAndGetPassword("Please enter password again: ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if password2 != password {
|
|
fmt.Printf("Passwords do not match! Aborting\n")
|
|
os.Exit(1)
|
|
}
|
|
|
|
config.AuthName = username
|
|
config.AuthPass = password
|
|
return nil
|
|
}
|
|
|
|
func renameOldConfigIfNeccessary() error {
|
|
oldConfigFile := filepath.Join(config.ourBinaryDir, "AdguardDNS.yaml")
|
|
_, err := os.Stat(oldConfigFile)
|
|
if os.IsNotExist(err) {
|
|
// do nothing, file doesn't exist
|
|
trace("File %s doesn't exist, nothing to do", oldConfigFile)
|
|
return nil
|
|
}
|
|
|
|
newConfigFile := filepath.Join(config.ourBinaryDir, config.ourConfigFilename)
|
|
_, err = os.Stat(newConfigFile)
|
|
if !os.IsNotExist(err) {
|
|
// do nothing, file doesn't exist
|
|
trace("File %s already exists, will not overwrite", newConfigFile)
|
|
return nil
|
|
}
|
|
|
|
err = os.Rename(oldConfigFile, newConfigFile)
|
|
if err != nil {
|
|
log.Printf("Failed to rename %s to %s: %s", oldConfigFile, newConfigFile, err)
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|