2016-06-15 21:50:56 +10:00
// Copyright (c) 2012-2014 Jeremy Latt
// Copyright (c) 2014-2015 Edmund Huber
2017-03-27 22:15:02 +10:00
// Copyright (c) 2016-2017 Daniel Oaks <daniel@danieloaks.net>
2016-06-15 21:50:56 +10:00
// released under the MIT license
2014-02-08 13:18:11 -08:00
package main
import (
2014-02-23 22:21:39 -08:00
"fmt"
2014-02-09 07:53:42 -08:00
"log"
2017-01-14 19:52:47 +10:00
"math/rand"
2017-07-01 07:07:48 +10:00
"strings"
2016-04-12 23:00:09 +10:00
"syscall"
2017-01-14 19:52:47 +10:00
"time"
2014-03-12 18:57:00 -07:00
2016-04-12 23:00:09 +10:00
"github.com/docopt/docopt-go"
2017-06-14 12:00:53 -06:00
"github.com/oragono/oragono/irc"
"github.com/oragono/oragono/irc/logger"
2017-10-06 00:03:53 +10:00
"github.com/oragono/oragono/irc/passwd"
2017-06-14 12:00:53 -06:00
"github.com/oragono/oragono/mkcerts"
2017-04-30 12:35:07 +10:00
stackimpact "github.com/stackimpact/stackimpact-go"
2016-04-12 23:00:09 +10:00
"golang.org/x/crypto/ssh/terminal"
)
2014-03-12 18:57:00 -07:00
2016-04-12 23:00:09 +10:00
func main ( ) {
2016-10-13 17:36:44 +10:00
version := irc . SemVer
2016-04-13 08:55:37 +10:00
usage := ` oragono .
2016-04-12 23:00:09 +10:00
Usage :
2016-09-19 22:30:45 +10:00
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 ]
2016-04-13 08:55:37 +10:00
oragono - h | -- help
oragono -- version
2016-04-12 23:00:09 +10:00
Options :
-- conf < filename > Configuration file to use [ default : ircd . yaml ] .
2016-09-19 22:30:45 +10:00
-- quiet Don ' t show startup / shutdown lines .
2016-04-12 23:00:09 +10:00
- 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 )
2014-03-12 18:57:00 -07:00
if err != nil {
2016-04-12 23:00:09 +10:00
log . Fatal ( "Config file did not load successfully:" , err . Error ( ) )
2014-03-12 18:57:00 -07:00
}
2017-10-01 23:31:40 -04:00
logger , err := logger . NewManager ( config . Logging )
2017-03-06 15:50:23 +10:00
if err != nil {
log . Fatal ( "Logger did not load successfully:" , err . Error ( ) )
}
2016-04-12 23:00:09 +10:00
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 )
2017-10-06 00:03:53 +10:00
encoded , err := passwd . GenerateEncodedPassword ( password )
2014-03-01 15:10:04 -08:00
if err != nil {
2017-03-06 15:50:23 +10:00
log . Fatal ( "encoding error:" , err . Error ( ) )
2014-03-01 15:10:04 -08:00
}
2016-04-12 23:00:09 +10:00
fmt . Print ( "\n" )
2014-03-01 15:10:04 -08:00
fmt . Println ( encoded )
2016-04-12 23:00:09 +10:00
} else if arguments [ "initdb" ] . ( bool ) {
2016-09-17 21:23:04 +10:00
irc . InitDB ( config . Datastore . Path )
2016-09-19 22:30:45 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
log . Println ( "database initialized: " , config . Datastore . Path )
}
2016-04-12 23:00:09 +10:00
} else if arguments [ "upgradedb" ] . ( bool ) {
2016-09-17 21:23:04 +10:00
irc . UpgradeDB ( config . Datastore . Path )
2016-09-19 22:30:45 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
log . Println ( "database upgraded: " , config . Datastore . Path )
}
2016-08-13 18:17:40 +10:00
} else if arguments [ "mkcerts" ] . ( bool ) {
2016-09-19 22:30:45 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
log . Println ( "making self-signed certificates" )
}
2016-06-15 19:31:39 +10:00
for name , conf := range config . Server . TLSListeners {
2017-09-11 09:15:39 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
log . Printf ( " making cert for %s listener\n" , name )
}
2016-06-15 19:31:39 +10:00
host := config . Server . Name
2016-08-13 07:40:58 +10:00
err := mkcerts . CreateCert ( "Oragono" , host , conf . Cert , conf . Key )
if err == nil {
2016-09-19 22:30:45 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
log . Printf ( " Certificate created at %s : %s\n" , conf . Cert , conf . Key )
}
2016-08-13 07:40:58 +10:00
} else {
log . Fatal ( " Could not create certificate:" , err . Error ( ) )
2016-06-15 19:31:39 +10:00
}
}
2016-04-12 23:00:09 +10:00
} else if arguments [ "run" ] . ( bool ) {
2017-01-14 19:52:47 +10:00
rand . Seed ( time . Now ( ) . UTC ( ) . UnixNano ( ) )
2017-03-06 20:15:28 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
2017-03-10 22:02:08 +10:00
logger . Info ( "startup" , fmt . Sprintf ( "Oragono v%s starting" , irc . SemVer ) )
2017-03-06 20:15:28 +10:00
}
2017-04-30 12:35:07 +10:00
// profiling
if config . Debug . StackImpact . Enabled {
if config . Debug . StackImpact . AgentKey == "" || config . Debug . StackImpact . AppName == "" {
logger . 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 ( )
logger . Info ( "startup" , fmt . Sprintf ( "StackImpact profiling started as %s" , config . Debug . StackImpact . AppName ) )
}
2017-07-01 07:07:48 +10:00
// warning if running a non-final version
if strings . Contains ( irc . SemVer , "unreleased" ) {
logger . 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." )
}
2017-09-28 01:30:53 -04:00
server , err := irc . NewServer ( config , logger )
2017-03-06 15:50:23 +10:00
if err != nil {
2017-03-10 22:02:08 +10:00
logger . Error ( "startup" , fmt . Sprintf ( "Could not load server: %s" , err . Error ( ) ) )
2016-11-06 13:47:13 +10:00
return
}
2016-09-19 22:30:45 +10:00
if ! arguments [ "--quiet" ] . ( bool ) {
2017-03-10 22:02:08 +10:00
logger . Info ( "startup" , "Server running" )
defer logger . Info ( "shutdown" , fmt . Sprintf ( "Oragono v%s exiting" , irc . SemVer ) )
2016-09-19 22:30:45 +10:00
}
2014-03-12 18:57:00 -07:00
server . Run ( )
}
2014-02-08 13:18:11 -08:00
}