matterbridge/matterbridge.go

60 lines
1.7 KiB
Go
Raw Normal View History

2015-10-23 22:34:37 +02:00
package main
import (
2015-12-18 20:54:28 +01:00
"flag"
2016-06-23 20:31:12 +02:00
"fmt"
"os"
"strings"
"github.com/42wim/matterbridge/bridge/config"
"github.com/42wim/matterbridge/gateway"
"github.com/42wim/matterbridge/gateway/bridgemap"
2017-03-23 23:28:55 +01:00
"github.com/google/gops/agent"
prefixed "github.com/matterbridge/logrus-prefixed-formatter"
2018-02-20 23:41:09 +01:00
log "github.com/sirupsen/logrus"
2015-10-23 22:34:37 +02:00
)
2017-02-17 22:32:42 +01:00
var (
2018-12-04 10:36:02 +01:00
version = "1.12.3-dev"
2017-02-17 22:32:42 +01:00
githash string
)
2016-06-23 20:31:12 +02:00
2015-10-23 22:34:37 +02:00
func main() {
log.SetFormatter(&prefixed.TextFormatter{PrefixPadding: 13, DisableColors: true, FullTimestamp: true})
flog := log.WithFields(log.Fields{"prefix": "main"})
flagConfig := flag.String("conf", "matterbridge.toml", "config file")
flagDebug := flag.Bool("debug", false, "enable debug")
2016-06-23 20:31:12 +02:00
flagVersion := flag.Bool("version", false, "show version")
2017-03-23 23:28:55 +01:00
flagGops := flag.Bool("gops", false, "enable gops agent")
2016-06-23 20:31:12 +02:00
flag.Parse()
2017-03-23 23:28:55 +01:00
if *flagGops {
agent.Listen(agent.Options{})
2017-03-23 23:28:55 +01:00
defer agent.Close()
}
2016-06-23 20:31:12 +02:00
if *flagVersion {
2017-02-17 22:32:42 +01:00
fmt.Printf("version: %s %s\n", version, githash)
2016-06-23 20:31:12 +02:00
return
}
if *flagDebug || os.Getenv("DEBUG") == "1" {
log.SetFormatter(&prefixed.TextFormatter{PrefixPadding: 13, DisableColors: true, FullTimestamp: false, ForceFormatting: true})
flog.Info("Enabling debug")
log.SetLevel(log.DebugLevel)
}
flog.Printf("Running version %s %s", version, githash)
if strings.Contains(version, "-dev") {
flog.Println("WARNING: THIS IS A DEVELOPMENT VERSION. Things may break.")
2016-09-30 23:19:47 +02:00
}
cfg := config.NewConfig(*flagConfig)
cfg.BridgeValues().General.Debug = *flagDebug
r, err := gateway.NewRouter(cfg, bridgemap.FullMap)
2017-07-25 20:11:52 +02:00
if err != nil {
flog.Fatalf("Starting gateway failed: %s", err)
}
2017-07-25 20:11:52 +02:00
err = r.Start()
if err != nil {
flog.Fatalf("Starting gateway failed: %s", err)
2016-07-11 21:23:33 +02:00
}
flog.Printf("Gateway(s) started succesfully. Now relaying messages")
select {}
2015-10-23 22:34:37 +02:00
}