Documentos Pacientes, Template Documentos Pacientes Saas, Documentos prontuários, Documentos Externos, Visualização Externa, Permissão de Visualização, Render Otimização

This commit is contained in:
Leonardo
2026-03-30 14:08:19 -03:00
parent 0658e2e9bf
commit d088a89fb7
112 changed files with 115867 additions and 5266 deletions
+166
View File
@@ -0,0 +1,166 @@
/*
|--------------------------------------------------------------------------
| Agência PSI
|--------------------------------------------------------------------------
| Criado e desenvolvido por Leonardo Nohama
|
| Tecnologia aplicada à escuta.
| Estrutura para o cuidado.
|
| Arquivo: src/services/DocumentShareLinks.service.js
| Data: 2026
| Local: São Carlos/SP — Brasil
|--------------------------------------------------------------------------
| © 2026 — Todos os direitos reservados
|--------------------------------------------------------------------------
*/
import { supabase } from '@/lib/supabase/client';
// ── Helpers ──────────────────────────────────────────────────
async function getOwnerId() {
const { data, error } = await supabase.auth.getUser();
if (error) throw error;
const uid = data?.user?.id;
if (!uid) throw new Error('Sessão inválida.');
return uid;
}
async function getActiveTenantId(uid) {
const { data, error } = await supabase
.from('tenant_members')
.select('tenant_id')
.eq('user_id', uid)
.eq('status', 'active')
.order('created_at', { ascending: false })
.limit(1)
.single();
if (error) throw error;
if (!data?.tenant_id) throw new Error('Tenant não encontrado.');
return data.tenant_id;
}
// ── Criar link temporario ───────────────────────────────────
/**
* Gera link temporario para compartilhar documento com profissional externo.
*
* @param {string} documentoId
* @param {object} opts - { expiracaoHoras: 48, usosMax: 5 }
* @returns {object} registro com token para montar a URL
*/
export async function createShareLink(documentoId, opts = {}) {
if (!documentoId) throw new Error('Documento não informado.');
const ownerId = await getOwnerId();
const tenantId = await getActiveTenantId(ownerId);
const expiracaoHoras = opts.expiracaoHoras || 48;
const expiraEm = new Date();
expiraEm.setHours(expiraEm.getHours() + expiracaoHoras);
const { data, error } = await supabase
.from('document_share_links')
.insert({
documento_id: documentoId,
tenant_id: tenantId,
expira_em: expiraEm.toISOString(),
usos_max: opts.usosMax || 5,
criado_por: ownerId
})
.select('*')
.single();
if (error) throw error;
return data;
}
// ── Listar links de um documento ────────────────────────────
export async function listShareLinks(documentoId) {
if (!documentoId) return [];
const ownerId = await getOwnerId();
const { data, error } = await supabase
.from('document_share_links')
.select('*')
.eq('documento_id', documentoId)
.eq('criado_por', ownerId)
.order('criado_em', { ascending: false });
if (error) throw error;
return data || [];
}
// ── Validar token (acesso publico) ──────────────────────────
/**
* Valida token de compartilhamento e retorna dados do documento.
* Incrementa o contador de usos.
*
* @param {string} token
* @returns {object|null} - { link, document } ou null se invalido/expirado
*/
export async function validateShareToken(token) {
if (!token) return null;
// Buscar link ativo
const { data: link, error } = await supabase
.from('document_share_links')
.select('*')
.eq('token', token)
.eq('ativo', true)
.single();
if (error || !link) return null;
// Verificar expiracao
if (new Date(link.expira_em) < new Date()) return null;
// Verificar limite de usos
if (link.usos >= link.usos_max) return null;
// Incrementar uso
await supabase
.from('document_share_links')
.update({ usos: link.usos + 1 })
.eq('id', link.id);
// Buscar documento
const { data: doc } = await supabase
.from('documents')
.select('id, nome_original, mime_type, bucket_path, storage_bucket')
.eq('id', link.documento_id)
.single();
return { link, document: doc };
}
// ── Desativar link ──────────────────────────────────────────
export async function deactivateShareLink(linkId) {
if (!linkId) throw new Error('ID inválido.');
const ownerId = await getOwnerId();
const { error } = await supabase
.from('document_share_links')
.update({ ativo: false })
.eq('id', linkId)
.eq('criado_por', ownerId);
if (error) throw error;
return true;
}
// ── Montar URL publica ──────────────────────────────────────
/**
* Monta a URL de compartilhamento a partir do token.
* A rota publica deve ser configurada no router.
*/
export function buildShareUrl(token) {
const base = window.location.origin;
return `${base}/shared/document/${token}`;
}