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

42 lines
987 B
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"
2016-07-11 19:23:33 +00:00
"github.com/42wim/matterbridge/bridge"
"github.com/42wim/matterbridge/bridge/config"
log "github.com/Sirupsen/logrus"
2015-10-23 20:34:37 +00:00
)
2016-09-17 13:34:59 +00:00
var version = "0.6.1"
2016-06-23 18:31:12 +00:00
func init() {
log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
}
2015-10-23 20:34:37 +00:00
func main() {
2015-12-18 19:54:28 +00:00
flagConfig := flag.String("conf", "matterbridge.conf", "config file")
flagDebug := flag.Bool("debug", false, "enable debug")
2016-06-23 18:31:12 +00:00
flagVersion := flag.Bool("version", false, "show version")
flagPlus := flag.Bool("plus", false, "running using API instead of webhooks (deprecated, set Plus flag in [general] config)")
2016-06-23 18:31:12 +00:00
flag.Parse()
if *flagVersion {
2016-07-12 19:32:15 +00:00
fmt.Println("version:", version)
2016-06-23 18:31:12 +00:00
return
}
2015-12-18 19:54:28 +00:00
flag.Parse()
if *flagDebug {
log.Info("enabling debug")
log.SetLevel(log.DebugLevel)
}
2016-07-12 19:32:15 +00:00
fmt.Println("running version", version)
cfg := config.NewConfig(*flagConfig)
2016-07-11 19:23:33 +00:00
if *flagPlus {
cfg.General.Plus = true
}
err := bridge.NewBridge(cfg)
if err != nil {
log.Debugf("starting bridge failed %#v", err)
2016-07-11 19:23:33 +00:00
}
2015-10-23 20:34:37 +00:00
}