2020-01-30 06:45:49 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"github.com/danielkov/gin-helmet"
|
|
|
|
"github.com/gin-contrib/cors"
|
|
|
|
"github.com/gin-contrib/static"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/joho/godotenv"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"gitlab.127-0-0-1.fr/vx3r/wg-gen-web/api"
|
2020-02-19 07:19:16 +00:00
|
|
|
"gitlab.127-0-0-1.fr/vx3r/wg-gen-web/core"
|
2020-01-30 06:45:49 +00:00
|
|
|
"gitlab.127-0-0-1.fr/vx3r/wg-gen-web/util"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
log.SetFormatter(&log.TextFormatter{})
|
|
|
|
log.SetOutput(os.Stderr)
|
|
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// load .env environment variables
|
|
|
|
err := godotenv.Load()
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"err": err,
|
|
|
|
}).Fatal("failed to initialize env")
|
|
|
|
}
|
|
|
|
|
|
|
|
// check directories or create it
|
|
|
|
if !util.DirectoryExists(filepath.Join(os.Getenv("WG_CONF_DIR"))) {
|
|
|
|
err = os.Mkdir(filepath.Join(os.Getenv("WG_CONF_DIR")), 0755)
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"err": err,
|
|
|
|
"dir": filepath.Join(os.Getenv("WG_CONF_DIR")),
|
|
|
|
}).Fatal("failed to mkdir")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 07:19:24 +00:00
|
|
|
if os.Getenv("GIN_MODE") == "debug" {
|
2020-02-06 06:07:15 +00:00
|
|
|
// set gin release debug
|
2020-02-03 07:19:24 +00:00
|
|
|
gin.SetMode(gin.DebugMode)
|
|
|
|
} else {
|
2020-01-30 06:45:49 +00:00
|
|
|
// set gin release mode
|
|
|
|
gin.SetMode(gin.ReleaseMode)
|
|
|
|
// disable console color
|
|
|
|
gin.DisableConsoleColor()
|
|
|
|
}
|
|
|
|
|
2020-02-19 07:19:16 +00:00
|
|
|
// migrate
|
|
|
|
err = core.Migrate()
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"err": err,
|
|
|
|
}).Fatal("failed to migrate")
|
|
|
|
}
|
|
|
|
|
2020-01-30 06:45:49 +00:00
|
|
|
// creates a gin router with default middleware: logger and recovery (crash-free) middleware
|
|
|
|
app := gin.Default()
|
|
|
|
|
|
|
|
// same as
|
|
|
|
config := cors.DefaultConfig()
|
|
|
|
config.AllowAllOrigins = true
|
|
|
|
app.Use(cors.New(config))
|
|
|
|
//app.Use(cors.Default())
|
|
|
|
|
|
|
|
// protection
|
|
|
|
app.Use(helmet.Default())
|
|
|
|
|
|
|
|
// no route redirect to frontend app
|
|
|
|
app.NoRoute(func(c *gin.Context) {
|
|
|
|
c.Redirect(301, "/index.html")
|
|
|
|
})
|
|
|
|
|
|
|
|
// serve static files
|
|
|
|
app.Use(static.Serve("/", static.LocalFile("./ui/dist", false)))
|
|
|
|
|
|
|
|
// apply api router
|
|
|
|
api.ApplyRoutes(app)
|
|
|
|
|
|
|
|
err = app.Run(fmt.Sprintf("%s:%s", os.Getenv("SERVER"), os.Getenv("PORT")))
|
|
|
|
if err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"err": err,
|
|
|
|
}).Fatal("failed to start server")
|
|
|
|
}
|
|
|
|
}
|