opensaps/opensaps.go

71 lines
1.7 KiB
Go
Raw Normal View History

// OpenSAPS - Open Slack API server for everyone.
//
// Copyright (c) 2017, Stanislav N. aka pztrn.
// All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package main
import (
2017-10-31 22:50:14 +05:00
// stdlib
"os"
"os/signal"
"syscall"
2017-10-31 22:50:14 +05:00
// local
"go.dev.pztrn.name/opensaps/config"
"go.dev.pztrn.name/opensaps/context"
defaultparser "go.dev.pztrn.name/opensaps/parsers/default"
matrixpusher "go.dev.pztrn.name/opensaps/pushers/matrix"
telegrampusher "go.dev.pztrn.name/opensaps/pushers/telegram"
"go.dev.pztrn.name/opensaps/slack"
)
func main() {
2017-10-31 22:50:14 +05:00
c := context.New()
c.Initialize()
2017-10-31 22:50:14 +05:00
config.New(c)
2017-10-31 22:50:14 +05:00
c.Log.Infoln("Launching OpenSAPS...")
2017-10-31 22:50:14 +05:00
c.Flagger.Parse()
c.Config.InitializeLater()
c.Config.LoadConfigurationFromFile()
2017-10-31 22:50:14 +05:00
slack.New(c)
2017-10-31 22:50:14 +05:00
// Initialize parsers.
defaultparser.New(c)
2017-10-31 22:50:14 +05:00
// Initialize pushers.
matrixpusher.New(c)
telegrampusher.New(c)
2017-10-31 22:50:14 +05:00
// CTRL+C handler.
signalHandler := make(chan os.Signal, 1)
shutdownDone := make(chan bool, 1)
signal.Notify(signalHandler, os.Interrupt, syscall.SIGTERM)
2017-10-31 22:50:14 +05:00
go func() {
<-signalHandler
2017-10-31 22:50:14 +05:00
c.Shutdown()
shutdownDone <- true
2017-10-31 22:50:14 +05:00
}()
<-shutdownDone
2017-10-31 22:50:14 +05:00
os.Exit(0)
}