5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 00:39:34 +00:00
matterbridge/matterbridge.go

59 lines
1.6 KiB
Go
Raw Normal View History

2015-10-23 20:34:37 +00:00
package main
import (
2015-12-18 19:54:28 +00:00
"flag"
2016-06-23 18:31:12 +00:00
"fmt"
"os"
"strings"
"github.com/42wim/matterbridge/bridge/config"
"github.com/42wim/matterbridge/gateway"
2017-03-23 22:28:55 +00:00
"github.com/google/gops/agent"
prefixed "github.com/matterbridge/logrus-prefixed-formatter"
2018-02-20 22:41:09 +00:00
log "github.com/sirupsen/logrus"
2015-10-23 20:34:37 +00:00
)
2017-02-17 21:32:42 +00:00
var (
2018-08-30 21:14:37 +00:00
version = "1.11.4-dev"
2017-02-17 21:32:42 +00:00
githash string
)
2016-06-23 18:31:12 +00:00
2015-10-23 20:34:37 +00: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 18:31:12 +00:00
flagVersion := flag.Bool("version", false, "show version")
2017-03-23 22:28:55 +00:00
flagGops := flag.Bool("gops", false, "enable gops agent")
2016-06-23 18:31:12 +00:00
flag.Parse()
2017-03-23 22:28:55 +00:00
if *flagGops {
agent.Listen(&agent.Options{})
defer agent.Close()
}
2016-06-23 18:31:12 +00:00
if *flagVersion {
2017-02-17 21:32:42 +00:00
fmt.Printf("version: %s %s\n", version, githash)
2016-06-23 18:31:12 +00: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 21:19:47 +00:00
}
cfg := config.NewConfig(*flagConfig)
cfg.ConfigValues().General.Debug = *flagDebug
2017-07-25 18:11:52 +00:00
r, err := gateway.NewRouter(cfg)
if err != nil {
flog.Fatalf("Starting gateway failed: %s", err)
}
2017-07-25 18:11:52 +00:00
err = r.Start()
if err != nil {
flog.Fatalf("Starting gateway failed: %s", err)
2016-07-11 19:23:33 +00:00
}
flog.Printf("Gateway(s) started succesfully. Now relaying messages")
select {}
2015-10-23 20:34:37 +00:00
}