Merged in feature/textExtractionsPart1 (pull request #192)

all schema and rest apis for text extraction support

* in progress

* stage 8 complete

* phase 9 completed

* phase 9 complete

* ongoing - s3 path fix

* working

* optimize ci build

* e2e tests

* missing test
This commit is contained in:
Jay Brown
2025-11-26 19:23:42 +00:00
parent 2b43799f56
commit c45e1dd427
67 changed files with 16120 additions and 817 deletions
+34 -3
View File
@@ -10,20 +10,51 @@ import (
"queryorchestration/internal/database/repository"
)
// RootFolderPath is the path used for the auto-created root folder per client.
// All other folders are descendants of this root folder.
const RootFolderPath = "/"
// SystemEmail is the email used for system-created entities like root folders.
const SystemEmail = "system@doczy.local"
type CreateParams struct {
Name string
ID string
}
// Create creates a new client and automatically creates a root folder ("/") for it.
// The root folder serves as the parent for all top-level folders and as the default
// location for documents uploaded without a folder path.
// Both operations are performed atomically within a database transaction.
func (s *Service) Create(ctx context.Context, params CreateParams) (string, error) {
err := s.normalizeCreate(&params)
if err != nil {
return "", err
}
err = s.cfg.GetDBQueries().CreateClient(ctx, &repository.CreateClientParams{
Name: params.Name,
Clientid: params.ID,
err = s.cfg.ExecuteDBTransaction(ctx, func(ctx context.Context, q *repository.Queries) error {
// Create the client
err := q.CreateClient(ctx, &repository.CreateClientParams{
Name: params.Name,
Clientid: params.ID,
})
if err != nil {
return fmt.Errorf("failed to create client: %w", err)
}
// Create the root folder for this client
// The root folder has path "/" and no parent (parentId is nil)
_, err = q.CreateFolder(ctx, &repository.CreateFolderParams{
Path: RootFolderPath,
Parentid: nil,
Clientid: params.ID,
Createdby: SystemEmail,
})
if err != nil {
return fmt.Errorf("failed to create root folder: %w", err)
}
return nil
})
if err != nil {
return "", err