summaryrefslogtreecommitdiffstats
path: root/matterbridge.go
blob: e39f375dd55a973ab7969cc2ecb4329bfd567380 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main

import (
	"flag"
	"fmt"
	"github.com/42wim/matterbridge/bridge/config"
	"github.com/42wim/matterbridge/gateway"
	"github.com/42wim/matterbridge/gateway/samechannel"
	log "github.com/Sirupsen/logrus"
)

var version = "0.8.1"

func init() {
	log.SetFormatter(&log.TextFormatter{FullTimestamp: true})
}

func main() {
	flagConfig := flag.String("conf", "matterbridge.toml", "config file")
	flagDebug := flag.Bool("debug", false, "enable debug")
	flagVersion := flag.Bool("version", false, "show version")
	flag.Parse()
	if *flagVersion {
		fmt.Println("version:", version)
		return
	}
	flag.Parse()
	if *flagDebug {
		log.Info("enabling debug")
		log.SetLevel(log.DebugLevel)
	}
	fmt.Println("running version", version)
	cfg := config.NewConfig(*flagConfig)
	for _, gw := range cfg.SameChannelGateway {
		if !gw.Enable {
			continue
		}
		fmt.Printf("starting samechannel gateway %#v\n", gw.Name)
		go func(gw config.SameChannelGateway) {
			err := samechannelgateway.New(cfg, &gw)
			if err != nil {
				log.Debugf("starting gateway failed %#v", err)
			}
		}(gw)
	}

	for _, gw := range cfg.Gateway {
		if !gw.Enable {
			continue
		}
		fmt.Printf("starting gateway %#v\n", gw.Name)
		go func(gw config.Gateway) {
			err := gateway.New(cfg, &gw)
			if err != nil {
				log.Debugf("starting gateway failed %#v", err)
			}
		}(gw)
	}
	select {}
}