feat: search files across folders
All checks were successful
CI / hygiene (push) Successful in 2s
Build and Deploy / build-and-deploy (push) Successful in 29s
CI / test (push) Successful in 20s

This commit is contained in:
Grendgi
2026-06-18 11:35:38 +03:00
parent 1144b11ca3
commit b75f274885
2 changed files with 71 additions and 2 deletions

View File

@@ -36,7 +36,8 @@ func (h *NodeHandler) List(w http.ResponseWriter, r *http.Request) {
userID := commonmw.GetUserID(r.Context())
scope := r.URL.Query().Get("scope")
parentID := emptyToNil(r.URL.Query().Get("parent_id"))
nodes, err := h.repo.List(r.Context(), userID, subordinates(r), scope, parentID)
query := strings.TrimSpace(r.URL.Query().Get("q"))
nodes, err := h.repo.List(r.Context(), userID, subordinates(r), scope, parentID, query)
if err != nil {
writeInternalError(w, r, err, "failed to list files")
return

View File

@@ -39,7 +39,10 @@ func scanNode(scan func(dest ...any) error) (*model.Node, error) {
return &n, err
}
func (r *NodeRepository) List(ctx context.Context, userID string, subordinateIDs []string, scope string, parentID *string) ([]model.Node, error) {
func (r *NodeRepository) List(ctx context.Context, userID string, subordinateIDs []string, scope string, parentID *string, search string) ([]model.Node, error) {
if strings.TrimSpace(search) != "" {
return r.Search(ctx, userID, subordinateIDs, scope, search)
}
args := []any{userID, subordinateIDs}
where := []string{"n.deleted_at IS NULL"}
if scope == "trash" {
@@ -127,6 +130,71 @@ func (r *NodeRepository) List(ctx context.Context, userID string, subordinateIDs
return out, rows.Err()
}
func (r *NodeRepository) Search(ctx context.Context, userID string, subordinateIDs []string, scope string, search string) ([]model.Node, error) {
pattern := "%" + strings.ToLower(strings.TrimSpace(search)) + "%"
args := []any{userID, subordinateIDs, pattern}
where := []string{`(
lower(n.title) LIKE $3
OR lower(COALESCE(n.original_filename, '')) LIKE $3
OR lower(COALESCE(n.extension, '')) LIKE $3
OR lower(COALESCE(n.mime_type, '')) LIKE $3
)`}
accessExpr := "effective_node_access(n.id, $1, $2::text[])"
if scope == "trash" {
where = append(where, "n.deleted_at IS NOT NULL")
where = append(where, `(
n.owner_user_id = $1
OR n.owner_user_id::text = ANY($2::text[])
OR EXISTS (
SELECT 1 FROM files_access a
WHERE a.node_id = n.id
AND a.user_id = $1
AND a.access_level = 'edit'
)
)`)
accessExpr = "'edit'"
} else {
where = append(where, "n.deleted_at IS NULL")
switch scope {
case "shared":
where = append(where, "n.owner_user_id <> $1")
where = append(where, `(
has_node_access(n.id, $1)
OR n.owner_user_id::text = ANY($2::text[])
)`)
default:
where = append(where, "n.owner_user_id = $1")
}
}
query := `
SELECT n.id, n.parent_id, n.node_type, n.title, n.owner_user_id, n.owner_department_id,
n.created_by, n.updated_by, n.storage_key, n.original_filename, n.mime_type,
n.extension, n.size_bytes, n.office_format, n.external_url, n.version,
` + accessExpr + `,
n.created_at, n.updated_at, n.trashed_at, n.purge_after, n.deleted_at
FROM files_nodes n
WHERE ` + strings.Join(where, " AND ") + `
ORDER BY CASE WHEN n.node_type = 'folder' THEN 0 ELSE 1 END, lower(n.title), n.created_at DESC`
rows, err := r.pool.Query(ctx, query, args...)
if err != nil {
return nil, err
}
defer rows.Close()
out := make([]model.Node, 0)
for rows.Next() {
n, err := scanNode(rows.Scan)
if err != nil {
return nil, err
}
out = append(out, *n)
}
return out, rows.Err()
}
func (r *NodeRepository) ListChildrenForPublic(ctx context.Context, parentID string) ([]model.Node, error) {
rows, err := r.pool.Query(ctx, `
SELECT n.id, n.parent_id, n.node_type, n.title, n.owner_user_id, n.owner_department_id,