This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
66 lines (56 loc) · 1.74 KB
/
main.go
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
61
62
63
64
65
66
package main
import (
"flag"
"os"
"os/signal"
"github.com/MTES-MCT/filharmonic-api/app"
"github.com/MTES-MCT/filharmonic-api/database/importcsv"
"github.com/rs/zerolog/log"
)
func main() {
importEtablissements := flag.String("import-etablissements", "", "Importe des établissements à partir d'un CSV")
importInspecteurs := flag.String("import-inspecteurs", "", "Importe des inspecteurs à partir d'un CSV")
importExploitants := flag.String("import-exploitants", "", "Importe des exploitants à partir d'un CSV")
flag.Parse()
config := app.LoadConfig()
application := app.New(config)
err := application.BootstrapDB()
if err != nil {
log.Fatal().Err(err).Msg("could not start db")
}
if *importEtablissements != "" {
err = importcsv.LoadEtablissementsCSV(*importEtablissements, application.DB)
if err != nil {
log.Fatal().Err(err).Msg("could not import CSV")
}
os.Exit(0)
}
if *importInspecteurs != "" {
err = importcsv.LoadInspecteursCSV(*importInspecteurs, application.DB)
if err != nil {
log.Fatal().Err(err).Msg("could not import CSV")
}
os.Exit(0)
}
if *importExploitants != "" {
err = importcsv.LoadExploitantsCSV(*importExploitants, application.DB)
if err != nil {
log.Fatal().Err(err).Msg("could not import CSV")
}
os.Exit(0)
}
err = application.BootstrapServer()
if err != nil {
log.Fatal().Err(err).Msg("could not start http server")
}
// Wait for interrupt signal to gracefully shutdown the server with
// a timeout of 5 seconds.
quit := make(chan os.Signal, 1)
signal.Notify(quit, os.Interrupt)
<-quit
log.Warn().Msg("shutting down application")
if err := application.Shutdown(); err != nil {
log.Fatal().Err(err).Msg("application shutdown error")
}
log.Warn().Msg("application shutdown")
}