refactor: migrate config package to pkg directory

This commit is contained in:
Prad Nukala 2024-12-11 12:24:04 -05:00
parent 0502f52ec0
commit d667c3c604
11 changed files with 9 additions and 9 deletions

View File

@ -4,13 +4,13 @@ import (
"net/http"
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/internal/gateway/config"
config "github.com/onsonr/sonr/pkg/config/hway"
"github.com/onsonr/sonr/pkg/database/sessions"
"gorm.io/gorm"
)
// Middleware creates a new session middleware
func Middleware(db *gorm.DB, env config.Env) echo.MiddlewareFunc {
func Middleware(db *gorm.DB, env config.Hway) echo.MiddlewareFunc {
return func(next echo.HandlerFunc) echo.HandlerFunc {
return func(c echo.Context) error {
cc := NewHTTPContext(c, db)
@ -27,7 +27,7 @@ type HTTPContext struct {
echo.Context
db *gorm.DB
sess *sessions.Session
env config.Env
env config.Hway
}
// Get returns the HTTPContext from the echo context

View File

@ -3,15 +3,15 @@ package gateway
import (
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/internal/gateway/config"
"github.com/onsonr/sonr/internal/gateway/context"
"github.com/onsonr/sonr/internal/gateway/handlers/index"
"github.com/onsonr/sonr/internal/gateway/handlers/register"
"github.com/onsonr/sonr/pkg/common/response"
config "github.com/onsonr/sonr/pkg/config/hway"
"gorm.io/gorm"
)
func RegisterRoutes(e *echo.Echo, env config.Env, db *gorm.DB) error {
func RegisterRoutes(e *echo.Echo, env config.Hway, db *gorm.DB) error {
// Custom error handler for gateway
e.HTTPErrorHandler = response.RedirectOnError("http://localhost:3000")

View File

@ -4,13 +4,13 @@ import (
"os"
"path/filepath"
"github.com/onsonr/sonr/internal/gateway/config"
config "github.com/onsonr/sonr/pkg/config/hway"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
// NewGormDB initializes and returns a configured database connection
func NewGormDB(env config.Env) (*gorm.DB, error) {
func NewGormDB(env config.Hway) (*gorm.DB, error) {
path := formatDBPath(env.GetSqliteFile())
db, err := gorm.Open(sqlite.Open(path), &gorm.Config{})
if err != nil {

View File

@ -4,7 +4,7 @@ import (
"net/http"
"github.com/labstack/echo/v4"
"github.com/onsonr/sonr/internal/gateway/config"
config "github.com/onsonr/sonr/pkg/config/hway"
"google.golang.org/grpc"
)
@ -25,7 +25,7 @@ func GetClientConn(c echo.Context) (*grpc.ClientConn, error) {
return grpcConn, nil
}
func Middleware(env config.Env) echo.MiddlewareFunc {
func Middleware(env config.Hway) echo.MiddlewareFunc {
return func(next echo.HandlerFunc) echo.HandlerFunc {
return func(c echo.Context) error {
cc := &ClientsContext{Context: c, addr: env.GetSonrGrpcUrl()}