feat: wip implement port forwarding

This commit is contained in:
2024-11-20 21:05:31 +00:00
parent fb5e708fd8
commit 6e6fb06351
13 changed files with 790 additions and 356 deletions

View File

@@ -0,0 +1,25 @@
package workspace
import (
"github.com/labstack/echo/v4"
"tesseract/internal/service"
)
func newWorkspaceManagerMiddleware(services service.Services) echo.MiddlewareFunc {
mgr := workspaceManager{
db: services.Database,
dockerClient: services.DockerClient,
reverseProxy: services.ReverseProxy,
sshProxy: services.SSHProxy,
}
return func(next echo.HandlerFunc) echo.HandlerFunc {
return func(c echo.Context) error {
c.Set("workspaceManager", mgr)
return next(c)
}
}
}
func workspaceManagerFrom(c echo.Context) workspaceManager {
return c.Get("workspaceManager").(workspaceManager)
}