opensaps/opensaps.go
Stanislav N. aka pztrn b58baa8135 Templating, improved Matrix formatter, Gitlab parser, improved other parsers.
From now OpenSAPS supports template formatting. For examples see
Gitea or Gitlab parser for creating template and data and
matrixconnection.go for how to use them.

Improved Matrix formatter - now we can do links and put repeatables
(like commits) in resulting message.

Added Gitlab parser. Incomplete, but can parse commits, issues,
merge requests, tags messages.

Refactored (a little) Gitea parser. No functional changes, still
only commits parsing.

Both Gitlab and Gitea parsers will put back a message if unknown
message type was passed.
2017-09-13 11:44:25 +05:00

71 lines
1.9 KiB
Go

// 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 (
// stdlib
"os"
"os/signal"
"syscall"
// local
"lab.pztrn.name/pztrn/opensaps/config"
"lab.pztrn.name/pztrn/opensaps/context"
"lab.pztrn.name/pztrn/opensaps/parsers/default"
"lab.pztrn.name/pztrn/opensaps/parsers/gitea"
"lab.pztrn.name/pztrn/opensaps/parsers/gitlab"
"lab.pztrn.name/pztrn/opensaps/pushers/matrix"
"lab.pztrn.name/pztrn/opensaps/slack"
)
func main() {
c := context.New()
c.Initialize()
config.New(c)
c.Log.Infoln("Launching OpenSAPS...")
c.Flagger.Parse()
c.Config.InitializeLater()
c.Config.LoadConfigurationFromFile()
slack.New(c)
// Initialize parsers.
defaultparser.New(c)
giteaparser.New(c)
gitlabparser.New(c)
// Initialize pushers.
matrixpusher.New(c)
// CTRL+C handler.
signal_handler := make(chan os.Signal, 1)
shutdown_done := make(chan bool, 1)
signal.Notify(signal_handler, os.Interrupt, syscall.SIGTERM)
go func() {
<-signal_handler
c.Shutdown()
shutdown_done <- true
}()
<-shutdown_done
os.Exit(0)
}