diff --git a/constantmdl/constantmdl.go b/constantmdl/constantmdl.go index 828697b01a37638199daccf58f78d1d8dc84c0e7..2587f02b074ab974bc2719f6e5630af9aea3b84c 100755 --- a/constantmdl/constantmdl.go +++ b/constantmdl/constantmdl.go @@ -48,3 +48,7 @@ const ( // HTTP400ERROR is used to check 400 status const HTTP400ERROR = 400 + +//Configuration for GetServerWithStaticConfig +const STATIC_DIRECTORY_NAME = "dsf" +const STATIC_URL = "/dsf" diff --git a/httpservermdl/httpservermdl.go b/httpservermdl/httpservermdl.go index 4f82476755dd6050bb58bbbe5146c4c8af3f6fcb..7bcba197e8aec885518613afd0f9ea79b191878e 100644 --- a/httpservermdl/httpservermdl.go +++ b/httpservermdl/httpservermdl.go @@ -1,7 +1,13 @@ package httpservermdl import ( + "path/filepath" + + "corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/constantmdl" + "corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/filemdl" + "corelab.mkcl.org/MKCLOS/coredevelopmentplatform/corepkgv2/loggermdl" "github.com/gin-gonic/gin" + "github.com/kardianos/osext" ) // GetServer will return the webserver pointer @@ -10,3 +16,54 @@ func GetServer() *gin.Engine { server := gin.New() return server } + +// GetServerWithStaticConfig will return the webserver pointer. +// It will also register static middleware +func GetServerWithStaticConfig(staticDirectoryRelativePath string) *gin.Engine { + // TODO: use sync.Once + server := gin.New() + staticPath := checkAndCreateStaticDirectory(staticDirectoryRelativePath) + + if staticPath != "" { + staticGroup := server.Group(constantmdl.STATIC_URL) + // //staticGroup.Use(jwt.Auth("models.JWTKey")) + staticGroup.Static("/", staticPath) + } + + return server +} + +// checkAndCreateStaticDirectory will create static directory to +// serve the static contents. Directory will be created at the same location where executable is located +func checkAndCreateStaticDirectory(staticDirectoryRelativePath string) string { + + staticDirectoryPath := "" + if staticDirectoryRelativePath == "" { + staticDirectoryRelativePath = constantmdl.STATIC_DIRECTORY_NAME + } + executablePath, exePathError := osext.Executable() + if exePathError != nil { + loggermdl.LogError("error while fetching executable path : ", exePathError) + return "" + } + + dirPath := filepath.Dir(executablePath) + staticDirectoryPath = dirPath + "/" + staticDirectoryRelativePath + + exists := filemdl.FileAvailabilityCheck(staticDirectoryPath) + + if exists { + loggermdl.LogInfo("static directory already exists: ", staticDirectoryPath) + return staticDirectoryPath + } + loggermdl.LogInfo("static directory does not exists. creating the new : ", staticDirectoryPath) + directoryCreationError := filemdl.CreateDirectory(staticDirectoryPath) + + if directoryCreationError != nil { + loggermdl.LogError("error while creating static directory : ", directoryCreationError) + return "" + } + return staticDirectoryPath + + return "" +}