// Copyright (c) 2012-2014 Jeremy Latt // Copyright (c) 2014-2015 Edmund Huber // Copyright (c) 2016-2017 Daniel Oaks // released under the MIT license package main import ( "fmt" "log" "math/rand" "strings" "syscall" "time" "github.com/docopt/docopt-go" "github.com/oragono/oragono/irc" "github.com/oragono/oragono/irc/logger" "github.com/oragono/oragono/irc/mkcerts" "github.com/oragono/oragono/irc/passwd" stackimpact "github.com/stackimpact/stackimpact-go" "golang.org/x/crypto/ssh/terminal" ) func main() { version := irc.SemVer usage := `oragono. Usage: oragono initdb [--conf ] [--quiet] oragono upgradedb [--conf ] [--quiet] oragono genpasswd [--conf ] [--quiet] oragono mkcerts [--conf ] [--quiet] oragono run [--conf ] [--quiet] oragono -h | --help oragono --version Options: --conf Configuration file to use [default: ircd.yaml]. --quiet Don't show startup/shutdown lines. -h --help Show this screen. --version Show version.` arguments, _ := docopt.Parse(usage, nil, true, version, false) configfile := arguments["--conf"].(string) config, err := irc.LoadConfig(configfile) if err != nil { log.Fatal("Config file did not load successfully: ", err.Error()) } logman, err := logger.NewManager(config.Logging) if err != nil { log.Fatal("Logger did not load successfully:", err.Error()) } if arguments["genpasswd"].(bool) { fmt.Print("Enter Password: ") bytePassword, err := terminal.ReadPassword(int(syscall.Stdin)) if err != nil { log.Fatal("Error reading password:", err.Error()) } password := string(bytePassword) encoded, err := passwd.GenerateEncodedPassword(password) if err != nil { log.Fatal("encoding error:", err.Error()) } fmt.Print("\n") fmt.Println(encoded) } else if arguments["initdb"].(bool) { irc.InitDB(config.Datastore.Path) if !arguments["--quiet"].(bool) { log.Println("database initialized: ", config.Datastore.Path) } } else if arguments["upgradedb"].(bool) { irc.UpgradeDB(config.Datastore.Path) if !arguments["--quiet"].(bool) { log.Println("database upgraded: ", config.Datastore.Path) } } else if arguments["mkcerts"].(bool) { if !arguments["--quiet"].(bool) { log.Println("making self-signed certificates") } for name, conf := range config.Server.TLSListeners { if !arguments["--quiet"].(bool) { log.Printf(" making cert for %s listener\n", name) } host := config.Server.Name err := mkcerts.CreateCert("Oragono", host, conf.Cert, conf.Key) if err == nil { if !arguments["--quiet"].(bool) { log.Printf(" Certificate created at %s : %s\n", conf.Cert, conf.Key) } } else { log.Fatal(" Could not create certificate:", err.Error()) } } } else if arguments["run"].(bool) { rand.Seed(time.Now().UTC().UnixNano()) if !arguments["--quiet"].(bool) { logman.Info("startup", fmt.Sprintf("Oragono v%s starting", irc.SemVer)) } // profiling if config.Debug.StackImpact.Enabled { if config.Debug.StackImpact.AgentKey == "" || config.Debug.StackImpact.AppName == "" { logman.Error("startup", "Could not start StackImpact - agent-key or app-name are undefined") return } agent := stackimpact.NewAgent() agent.Start(stackimpact.Options{AgentKey: config.Debug.StackImpact.AgentKey, AppName: config.Debug.StackImpact.AppName}) defer agent.RecordPanic() logman.Info("startup", fmt.Sprintf("StackImpact profiling started as %s", config.Debug.StackImpact.AppName)) } // warning if running a non-final version if strings.Contains(irc.SemVer, "unreleased") { logman.Warning("startup", "You are currently running an unreleased beta version of Oragono that may be unstable and could corrupt your database.\nIf you are running a production network, please download the latest build from https://oragono.io/downloads.html and run that instead.") } server, err := irc.NewServer(config, logman) if err != nil { logman.Error("startup", fmt.Sprintf("Could not load server: %s", err.Error())) return } if !arguments["--quiet"].(bool) { logman.Info("startup", "Server running") defer logman.Info("shutdown", fmt.Sprintf("Oragono v%s exiting", irc.SemVer)) } server.Run() } }