timetable-mgr/main.go

147 lines
3.7 KiB
Go
Raw Normal View History

2023-07-15 22:32:46 +01:00
package main
import (
2024-04-14 20:00:34 +01:00
"fmt"
"os"
"os/signal"
"os/user"
"syscall"
2024-03-25 14:03:19 +00:00
"time"
_ "time/tzdata"
2024-03-26 11:44:19 +00:00
"git.fjla.uk/owlboard/timetable-mgr/background"
"git.fjla.uk/owlboard/timetable-mgr/cif"
"git.fjla.uk/owlboard/timetable-mgr/corpus"
"git.fjla.uk/owlboard/timetable-mgr/dbAccess"
"git.fjla.uk/owlboard/timetable-mgr/helpers"
"git.fjla.uk/owlboard/timetable-mgr/log"
"git.fjla.uk/owlboard/timetable-mgr/messaging"
"git.fjla.uk/owlboard/timetable-mgr/vstp"
2024-04-14 19:03:13 +01:00
"go.uber.org/zap"
2023-07-15 22:32:46 +01:00
)
2024-04-16 19:20:19 +01:00
const (
bold = "\033[1m"
redB = "\033[1;31m"
blue = "\033[32m" //Actually green!
cyan = "\033[36m"
reset = "\033[0m"
)
2024-04-14 20:00:34 +01:00
func init() {
printStartupBanner()
2024-04-16 19:20:19 +01:00
fmt.Printf("%sVersion %s \n\n%s", bold+blue, helpers.Version, reset)
// Exits is being run as root
// not necessary and not secure
checkRunAsRoot()
2024-04-14 20:00:34 +01:00
}
2023-07-15 22:32:46 +01:00
func main() {
2024-04-14 20:00:34 +01:00
log.InitLogger()
defer log.Cleanup()
2024-04-14 19:03:13 +01:00
log.Info("Initialising OwlBoard timetable-mgr", zap.String("version", helpers.Version))
2024-03-25 00:42:36 +00:00
cfg, err := helpers.LoadConfig()
if err != nil {
2024-04-14 19:03:13 +01:00
log.Fatal("Unable to load configuration", zap.Error(err))
2024-03-25 00:42:36 +00:00
return
}
cfg.PrintConfig()
dbAccess.InitDataAccess(cfg)
dbAccess.PushVersionToDb()
2024-03-25 14:03:19 +00:00
// Initialise a `stop` channel to signal goroutines to cleanup
stop := make(chan struct{})
// Start CIF Task Ticker
2024-03-26 11:44:19 +00:00
background.InitTicker(cfg, stop)
// Handle signals from the OS
go handleSignals(cfg, stop)
// Manually call CIF and CORPUS checks to ensure that they are
// not delayed until the first ticker event.
go cif.CheckCif(cfg)
go corpus.CheckCorpus(cfg)
2024-03-26 15:40:15 +00:00
if cfg.VstpOn {
messaging.StompInit(cfg)
vstp.Subscribe()
}
2024-03-25 14:03:19 +00:00
<-stop
2023-07-18 14:09:28 +01:00
}
2023-07-21 10:02:55 +01:00
// Traps SIGINT and SIGTERM signals and ensures cleanup() is run
2024-03-25 14:03:19 +00:00
func handleSignals(cfg *helpers.Configuration, stop chan<- struct{}) {
sigChan := make(chan os.Signal, 1)
signal.Notify(sigChan, syscall.SIGINT, syscall.SIGTERM)
sig := <-sigChan
2024-04-14 19:03:13 +01:00
log.Warn("Signal received: " + sig.String())
2024-03-25 14:03:19 +00:00
cleanup(cfg, stop)
}
// Cleans up open connections ready for a clean exit of the program
2024-03-25 14:03:19 +00:00
func cleanup(cfg *helpers.Configuration, stop chan<- struct{}) {
2024-04-14 19:03:13 +01:00
log.Debug("Cleaning up open connections")
if cfg.VstpOn {
2024-04-15 20:36:33 +01:00
log.Info("Closing STOMP Client")
messaging.Disconnect(messaging.Client)
}
if dbAccess.MongoClient != nil {
2024-04-14 19:03:13 +01:00
log.Info("Closing MongoDB Client")
dbAccess.CloseMongoClient()
}
2024-04-14 19:03:13 +01:00
log.Info("Signalling to other goroutines")
2024-03-25 14:03:19 +00:00
close(stop)
2024-04-14 19:03:13 +01:00
log.Info("Program ready to exit")
2024-03-25 14:03:19 +00:00
time.Sleep(500 * time.Millisecond)
2024-04-14 20:00:34 +01:00
log.Cleanup()
2024-03-25 14:03:19 +00:00
os.Exit(0)
2023-07-21 10:02:55 +01:00
}
2024-04-14 20:00:34 +01:00
func printStartupBanner() {
art := `
___ _ ____ _
/ _ \__ _| | __ ) ___ __ _ _ __ __| |
| | | \ \ /\ / / | _ \ / _ \ / _' | '__/ _' |
| |_| |\ V V /| | |_) | (_) | (_| | | | (_| |
\___/ \_/\_/ |_|____/ \___/ \__,_|_| \__,_|
_ _ _ _ _
| |_(_)_ __ ___ ___| |_ __ _| |__ | | ___ _ __ ___ __ _ _ __
| __| | '_ ' _ \ / _ \ __/ _' | '_ \| |/ _ \_____| '_ ' _ \ / _' | '__|
| |_| | | | | | | __/ || (_| | |_) | | __/_____| | | | | | (_| | |
\__|_|_| |_| |_|\___|\__\__,_|_.__/|_|\___| |_| |_| |_|\__, |_|
|___/
`
2024-04-16 19:20:19 +01:00
fmt.Println(cyan + art + reset)
}
func checkRunAsRoot() {
uid := os.Getuid()
if uid != 0 {
currUser, err := user.Current()
var msg string
if err != nil {
2024-04-28 10:33:58 +01:00
msg = "Unable to determine which user is running the application."
} else {
msg = fmt.Sprintf("Running as user: %s, %s", currUser.Uid, currUser.Username)
}
2024-04-28 10:33:58 +01:00
fmt.Println(blue + msg + "\nRunning as non-root user" + reset)
2024-04-16 19:20:19 +01:00
return
}
fmt.Println(redB + "This program must not be run as the root user" + reset)
fmt.Println("")
os.Exit(1)
2024-04-14 20:00:34 +01:00
}