mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 06:25:44 +03:00
fe8be3701f
Merge in DNS/adguard-home from websvc-config-manager to master Squashed commit of the following: commit 2143b47c6528030dfe059172888fddf9061e42da Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Oct 4 14:50:47 2022 +0300 next: add config manager
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
// Package cmd is the AdGuard Home entry point. It contains the on-disk
|
|
// configuration file utilities, signal processing logic, and so on.
|
|
//
|
|
// TODO(a.garipov): Move to the upper-level internal/.
|
|
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"io/fs"
|
|
"math/rand"
|
|
"net/netip"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/websvc"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
)
|
|
|
|
// Main is the entry point of application.
|
|
func Main(clientBuildFS fs.FS) {
|
|
// Initial Configuration
|
|
|
|
start := time.Now()
|
|
rand.Seed(start.UnixNano())
|
|
|
|
// TODO(a.garipov): Set up logging.
|
|
|
|
// Web Service
|
|
|
|
// TODO(a.garipov): Use in the Web service.
|
|
_ = clientBuildFS
|
|
|
|
// TODO(a.garipov): Make configurable.
|
|
web := websvc.New(&websvc.Config{
|
|
// TODO(a.garipov): Use an actual implementation.
|
|
ConfigManager: nil,
|
|
Addresses: []netip.AddrPort{netip.MustParseAddrPort("127.0.0.1:3001")},
|
|
Start: start,
|
|
Timeout: 60 * time.Second,
|
|
ForceHTTPS: false,
|
|
})
|
|
|
|
err := web.Start()
|
|
fatalOnError(err)
|
|
|
|
sigHdlr := newSignalHandler(
|
|
web,
|
|
)
|
|
|
|
go sigHdlr.handle()
|
|
|
|
select {}
|
|
}
|
|
|
|
// defaultTimeout is the timeout used for some operations where another timeout
|
|
// hasn't been defined yet.
|
|
const defaultTimeout = 15 * time.Second
|
|
|
|
// ctxWithDefaultTimeout is a helper function that returns a context with
|
|
// timeout set to defaultTimeout.
|
|
func ctxWithDefaultTimeout() (ctx context.Context, cancel context.CancelFunc) {
|
|
return context.WithTimeout(context.Background(), defaultTimeout)
|
|
}
|
|
|
|
// fatalOnError is a helper that exits the program with an error code if err is
|
|
// not nil. It must only be used within Main.
|
|
func fatalOnError(err error) {
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|