You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
572 B
23 lines
572 B
package middleware
|
|
|
|
import (
|
|
"github.com/analogj/scrutiny/webapp/backend/pkg/config"
|
|
"github.com/analogj/scrutiny/webapp/backend/pkg/database"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func RepositoryMiddleware(appConfig config.Interface, globalLogger logrus.FieldLogger) gin.HandlerFunc {
|
|
|
|
deviceRepo, err := database.NewScrutinyRepository(appConfig, globalLogger)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
//TODO: determine where we can call defer deviceRepo.Close()
|
|
return func(c *gin.Context) {
|
|
c.Set("DEVICE_REPOSITORY", deviceRepo)
|
|
c.Next()
|
|
}
|
|
}
|