mirror of
				https://github.com/ergochat/ergo.git
				synced 2025-10-31 13:57:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			98 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) 2012-2014 Jeremy Latt
 | |
| // Copyright (c) 2014-2015 Edmund Huber
 | |
| // Copyright (c) 2016- Daniel Oaks <daniel@danieloaks.net>
 | |
| // released under the MIT license
 | |
| 
 | |
| package main
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"log"
 | |
| 	"syscall"
 | |
| 
 | |
| 	"github.com/DanielOaks/oragono/irc"
 | |
| 	"github.com/DanielOaks/oragono/mkcerts"
 | |
| 	"github.com/docopt/docopt-go"
 | |
| 	"golang.org/x/crypto/ssh/terminal"
 | |
| )
 | |
| 
 | |
| func main() {
 | |
| 	version := irc.SemVer
 | |
| 	usage := `oragono.
 | |
| Usage:
 | |
| 	oragono initdb [--conf <filename>] [--quiet]
 | |
| 	oragono upgradedb [--conf <filename>] [--quiet]
 | |
| 	oragono genpasswd [--conf <filename>] [--quiet]
 | |
| 	oragono mkcerts [--conf <filename>] [--quiet]
 | |
| 	oragono run [--conf <filename>] [--quiet]
 | |
| 	oragono -h | --help
 | |
| 	oragono --version
 | |
| Options:
 | |
| 	--conf <filename>  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())
 | |
| 	}
 | |
| 
 | |
| 	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 := irc.GenerateEncodedPassword(password)
 | |
| 		if err != nil {
 | |
| 			log.Fatalln("encoding error:", err)
 | |
| 		}
 | |
| 		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 {
 | |
| 			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) {
 | |
| 		irc.Log.SetLevel(config.Server.Log)
 | |
| 		server := irc.NewServer(configfile, config)
 | |
| 		if server == nil {
 | |
| 			log.Println("Could not load server")
 | |
| 			return
 | |
| 		}
 | |
| 		if !arguments["--quiet"].(bool) {
 | |
| 			log.Println(fmt.Sprintf("Oragono v%s running", irc.SemVer))
 | |
| 			defer log.Println(irc.SemVer, "exiting")
 | |
| 		}
 | |
| 		server.Run()
 | |
| 	}
 | |
| }
 | 
