Compare commits

..

3 Commits

Author SHA1 Message Date
Adrian Zürcher
093c55616c add new function to read files in workspace 2026-02-17 12:07:56 +01:00
Adrian Zürcher
a99189b31a add remove folder in delete workspace 2026-02-17 07:34:34 +01:00
Adrian Zürcher
38a7660d41 add new uuid for workspace and create uuid folder 2026-02-17 07:30:10 +01:00
3 changed files with 66 additions and 5 deletions

2
go.mod
View File

@@ -8,6 +8,7 @@ require (
github.com/gin-gonic/gin v1.11.0
github.com/go-playground/assert/v2 v2.2.0
github.com/golang-jwt/jwt/v5 v5.3.0
github.com/google/uuid v1.3.0
golang.org/x/crypto v0.43.0
)
@@ -25,7 +26,6 @@ require (
github.com/go-playground/validator/v10 v10.27.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/goccy/go-yaml v1.18.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/json-iterator/go v1.1.12 // indirect

View File

@@ -3,11 +3,15 @@ package handlers
import (
"fmt"
"net/http"
"os"
"path/filepath"
"slices"
"strconv"
"strings"
"gitea.tecamino.com/paadi/access-handler/models"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
)
func (aH *AccessHandler) AddWorkspaceTable() error {
@@ -30,10 +34,26 @@ func (aH *AccessHandler) AddWorkspace(c *gin.Context) {
return
}
uid, err := uuid.NewUUID()
if err != nil {
aH.logger.Error("AddWorkspace", err)
c.JSON(http.StatusBadRequest, models.NewJsonErrorResponse(err))
return
}
// create new folder
err = os.MkdirAll(uid.String(), 0644)
if err != nil {
aH.logger.Error("AddWorkspace", err)
c.JSON(http.StatusBadRequest, models.NewJsonErrorResponse(err))
return
}
// Insert new workspace with provided permissions
aH.dbHandler.AddNewColum(&models.Workspace{
Name: workspace.Name,
Description: workspace.Description,
Uuid: uid,
})
c.JSON(http.StatusOK, gin.H{
@@ -142,9 +162,47 @@ func (aH *AccessHandler) DeleteWorkspace(c *gin.Context) {
return w != nil && w.Name == workspace.Name
})
}
// crearemove folder
err = os.RemoveAll(workspace.Uuid.String())
if err != nil {
aH.logger.Error("DeleteWorkspace", err)
c.JSON(http.StatusBadRequest, models.NewJsonErrorResponse(err))
return
}
}
c.JSON(http.StatusOK, gin.H{
"message": "workspace(s) deleted",
})
}
func (aH *AccessHandler) ReadWorkspaceData(c *gin.Context) {
var workspace models.Workspace
err := c.ShouldBindBodyWithJSON(&workspace)
if err != nil {
aH.logger.Error("ReadWorkspaceData", err)
c.JSON(http.StatusBadRequest, nil)
return
}
files, err := os.ReadDir(workspace.Uuid.String())
if err != nil {
aH.logger.Error("ReadWorkspaceData", err)
c.JSON(http.StatusBadRequest, nil)
return
}
var response []string
for _, f := range files {
if f.IsDir() || !strings.Contains(filepath.Ext(f.Name()), ".db") {
continue
}
response = append(response, f.Name())
}
c.JSON(http.StatusOK, gin.H{
"data": response,
})
}

View File

@@ -1,8 +1,11 @@
package models
import "github.com/google/uuid"
type Workspace struct {
Id uint `gorm:"primaryKey" json:"id"`
Name string `gorm:"column:name" json:"name"`
Description string `gorm:"type:json" json:"description"`
Uuid uuid.UUID `gorm:"type:text" json:"uuid"`
Users []*User `gorm:"many2many:users_workspaces;" `
}