2023-10-26 20:34:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2024-03-27 16:57:58 +00:00
|
|
|
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/ldapApi"
|
2024-03-27 15:00:59 +00:00
|
|
|
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
2024-06-11 21:12:17 +00:00
|
|
|
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/messages"
|
2024-03-27 15:00:59 +00:00
|
|
|
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/qrApi"
|
2023-10-26 20:34:59 +00:00
|
|
|
"github.com/joho/godotenv"
|
|
|
|
"github.com/pocketbase/pocketbase"
|
|
|
|
"github.com/pocketbase/pocketbase/core"
|
|
|
|
"log"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
|
|
|
// load env
|
2024-06-11 21:12:17 +00:00
|
|
|
err := godotenv.Load(".env.local", ".env")
|
2024-03-27 14:36:45 +00:00
|
|
|
if err != nil {
|
2024-06-11 21:12:17 +00:00
|
|
|
logger.LogInfoF("The file '.env.local' / '.env' could not be loaded.")
|
2024-03-27 14:36:45 +00:00
|
|
|
}
|
2023-10-26 20:34:59 +00:00
|
|
|
|
|
|
|
// create app
|
|
|
|
app := pocketbase.New()
|
|
|
|
|
|
|
|
// setup ldap sync
|
2024-06-17 16:13:41 +00:00
|
|
|
//app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
|
|
|
|
// return ldapSync.InitLdapSync(app)
|
|
|
|
//})
|
2023-10-26 20:34:59 +00:00
|
|
|
|
|
|
|
// setup ldap login
|
|
|
|
app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
|
2024-03-27 16:57:58 +00:00
|
|
|
return ldapApi.InitLdapApi(app, e)
|
2023-10-26 20:34:59 +00:00
|
|
|
})
|
|
|
|
|
2024-03-27 14:36:45 +00:00
|
|
|
// setup qr api
|
|
|
|
app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
|
|
|
|
return qrApi.InitQRApi(app, e)
|
|
|
|
})
|
|
|
|
|
2024-06-11 21:12:17 +00:00
|
|
|
// setup messages email notifications
|
|
|
|
app.OnBeforeServe().Add(func(e *core.ServeEvent) error { return messages.InitMessages(app, e) })
|
|
|
|
|
2023-10-26 20:34:59 +00:00
|
|
|
// start app
|
|
|
|
if err := app.Start(); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|