Replace the old PDF/snapshot-based exports for processing activities, Data Protection Impact Assessments and Transfer Impact Assessments with the publish document system. Includes GraphQL mutations, MCP tools, CLI commands, n8n operations, frontend publish dialogs, e2e tests, and prosemirror register templates that mirror the previous PDF layouts. Each register lives as a generated DocumentTypeRegister document on the organization, reused across publishes (the major version bumps on every republish). Approvers can be passed in to create a draft pending approval; otherwise the version is published immediately. The frontend ProcessingActivities page exposes a Publish dropdown per register and a Document link button per active tab, pre-fills the previous default approvers, and navigates to the published document on success. Remove snapshot mode entirely from these three entities: drop snapshotId and sourceId from GraphQL schemas, types, filters, resolvers, MCP spec, frontend routes and pages; remove SnapshotsTypeProcessingActivities from the snapshot registry and delete the ProcessingActivities.Snapshot, ProcessingActivitySnapshotter interface and *.InsertProcessingActivitySnapshots methods. The snapshot_id columns remain in the database but are now filtered out with snapshot_id IS NULL. Add Get/Upsert/Clear GeneratedDocumentID methods on each entity type (ProcessingActivity, DataProtectionImpactAssessment, TransferImpactAssessment) backed by new columns in the generated_documents table, matching the Finding/Obligation pattern. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
540 lines
12 KiB
Go
540 lines
12 KiB
Go
// Copyright (c) 2025-2026 Probo Inc <hello@getprobo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package coredata
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"maps"
|
|
"time"
|
|
|
|
"github.com/jackc/pgx/v5"
|
|
"github.com/jackc/pgx/v5/pgconn"
|
|
"go.gearno.de/kit/pg"
|
|
"go.probo.inc/probo/pkg/gid"
|
|
"go.probo.inc/probo/pkg/page"
|
|
)
|
|
|
|
func (t TransferImpactAssessment) GetGeneratedDocumentID(
|
|
ctx context.Context,
|
|
conn pg.Querier,
|
|
organizationID gid.GID,
|
|
) (*gid.GID, error) {
|
|
var documentID *gid.GID
|
|
|
|
err := conn.QueryRow(
|
|
ctx,
|
|
`
|
|
SELECT
|
|
transfer_impact_assessments_document_id
|
|
FROM
|
|
generated_documents
|
|
WHERE
|
|
organization_id = @organization_id
|
|
`,
|
|
pgx.NamedArgs{"organization_id": organizationID},
|
|
).Scan(&documentID)
|
|
if errors.Is(err, pgx.ErrNoRows) {
|
|
return nil, nil
|
|
}
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot get TIA list document ID: %w", err)
|
|
}
|
|
|
|
return documentID, nil
|
|
}
|
|
|
|
func (t TransferImpactAssessment) UpsertGeneratedDocumentID(
|
|
ctx context.Context,
|
|
conn pg.Tx,
|
|
organizationID gid.GID,
|
|
tenantID gid.TenantID,
|
|
documentID gid.GID,
|
|
) error {
|
|
now := time.Now()
|
|
|
|
_, err := conn.Exec(
|
|
ctx,
|
|
`
|
|
INSERT INTO generated_documents (
|
|
organization_id,
|
|
tenant_id,
|
|
transfer_impact_assessments_document_id,
|
|
created_at,
|
|
updated_at
|
|
) VALUES (
|
|
@organization_id,
|
|
@tenant_id,
|
|
@transfer_impact_assessments_document_id,
|
|
@created_at,
|
|
@updated_at
|
|
)
|
|
ON CONFLICT (organization_id) DO UPDATE
|
|
SET
|
|
transfer_impact_assessments_document_id = @transfer_impact_assessments_document_id,
|
|
updated_at = @updated_at
|
|
`,
|
|
pgx.NamedArgs{
|
|
"organization_id": organizationID,
|
|
"tenant_id": tenantID,
|
|
"transfer_impact_assessments_document_id": documentID,
|
|
"created_at": now,
|
|
"updated_at": now,
|
|
},
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot upsert TIA list document ID: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (t TransferImpactAssessment) ClearGeneratedDocumentID(
|
|
ctx context.Context,
|
|
conn pg.Tx,
|
|
documentIDs []gid.GID,
|
|
) error {
|
|
ids := make([]string, len(documentIDs))
|
|
for i, id := range documentIDs {
|
|
ids[i] = id.String()
|
|
}
|
|
|
|
_, err := conn.Exec(
|
|
ctx,
|
|
`
|
|
UPDATE
|
|
generated_documents
|
|
SET
|
|
transfer_impact_assessments_document_id = NULL,
|
|
updated_at = @now
|
|
WHERE
|
|
transfer_impact_assessments_document_id = ANY(@ids)
|
|
`,
|
|
pgx.NamedArgs{
|
|
"ids": ids,
|
|
"now": time.Now(),
|
|
},
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot clear TIA list document references: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type (
|
|
TransferImpactAssessment struct {
|
|
ID gid.GID `db:"id"`
|
|
SnapshotID *gid.GID `db:"snapshot_id"`
|
|
SourceID *gid.GID `db:"source_id"`
|
|
OrganizationID gid.GID `db:"organization_id"`
|
|
ProcessingActivityID gid.GID `db:"processing_activity_id"`
|
|
DataSubjects *string `db:"data_subjects"`
|
|
LegalMechanism *string `db:"legal_mechanism"`
|
|
Transfer *string `db:"transfer"`
|
|
LocalLawRisk *string `db:"local_law_risk"`
|
|
SupplementaryMeasures *string `db:"supplementary_measures"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
UpdatedAt time.Time `db:"updated_at"`
|
|
}
|
|
|
|
TransferImpactAssessments []*TransferImpactAssessment
|
|
)
|
|
|
|
func (tia *TransferImpactAssessment) CursorKey(field TransferImpactAssessmentOrderField) page.CursorKey {
|
|
switch field {
|
|
case TransferImpactAssessmentOrderFieldCreatedAt:
|
|
return page.NewCursorKey(tia.ID, tia.CreatedAt)
|
|
}
|
|
|
|
panic(fmt.Sprintf("unsupported order by: %s", field))
|
|
}
|
|
|
|
func (tia *TransferImpactAssessment) AuthorizationAttributes(ctx context.Context, conn pg.Querier) (map[string]string, error) {
|
|
q := `SELECT organization_id FROM processing_activity_transfer_impact_assessments WHERE id = $1 LIMIT 1;`
|
|
|
|
var organizationID gid.GID
|
|
if err := conn.QueryRow(ctx, q, tia.ID).Scan(&organizationID); err != nil {
|
|
if errors.Is(err, pgx.ErrNoRows) {
|
|
return nil, ErrResourceNotFound
|
|
}
|
|
|
|
return nil, fmt.Errorf("cannot query transfer impact assessment authorization attributes: %w", err)
|
|
}
|
|
|
|
return map[string]string{"organization_id": organizationID.String()}, nil
|
|
}
|
|
|
|
func (tias *TransferImpactAssessments) CountByOrganizationID(
|
|
ctx context.Context,
|
|
conn pg.Querier,
|
|
scope Scoper,
|
|
organizationID gid.GID,
|
|
) (int, error) {
|
|
q := `
|
|
SELECT
|
|
COUNT(id)
|
|
FROM
|
|
processing_activity_transfer_impact_assessments
|
|
WHERE
|
|
%s
|
|
AND organization_id = @organization_id
|
|
AND snapshot_id IS NULL
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"organization_id": organizationID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
row := conn.QueryRow(ctx, q, args)
|
|
|
|
var count int
|
|
err := row.Scan(&count)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("cannot count transfer impact assessments: %w", err)
|
|
}
|
|
|
|
return count, nil
|
|
}
|
|
|
|
func (tias *TransferImpactAssessments) LoadByOrganizationID(
|
|
ctx context.Context,
|
|
conn pg.Querier,
|
|
scope Scoper,
|
|
organizationID gid.GID,
|
|
cursor *page.Cursor[TransferImpactAssessmentOrderField],
|
|
) error {
|
|
q := `
|
|
SELECT
|
|
id,
|
|
snapshot_id,
|
|
source_id,
|
|
organization_id,
|
|
processing_activity_id,
|
|
data_subjects,
|
|
legal_mechanism,
|
|
transfer,
|
|
local_law_risk,
|
|
supplementary_measures,
|
|
created_at,
|
|
updated_at
|
|
FROM
|
|
processing_activity_transfer_impact_assessments
|
|
WHERE
|
|
%s
|
|
AND organization_id = @organization_id
|
|
AND snapshot_id IS NULL
|
|
AND %s
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment(), cursor.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"organization_id": organizationID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
maps.Copy(args, cursor.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query transfer impact assessments: %w", err)
|
|
}
|
|
|
|
results, err := pgx.CollectRows(rows, pgx.RowToAddrOfStructByName[TransferImpactAssessment])
|
|
if err != nil {
|
|
return fmt.Errorf("cannot collect transfer impact assessments: %w", err)
|
|
}
|
|
|
|
*tias = results
|
|
|
|
return nil
|
|
}
|
|
|
|
func (tias *TransferImpactAssessments) LoadAllByOrganizationID(
|
|
ctx context.Context,
|
|
conn pg.Querier,
|
|
scope Scoper,
|
|
organizationID gid.GID,
|
|
) error {
|
|
q := `
|
|
SELECT
|
|
id,
|
|
snapshot_id,
|
|
source_id,
|
|
organization_id,
|
|
processing_activity_id,
|
|
data_subjects,
|
|
legal_mechanism,
|
|
transfer,
|
|
local_law_risk,
|
|
supplementary_measures,
|
|
created_at,
|
|
updated_at
|
|
FROM
|
|
processing_activity_transfer_impact_assessments
|
|
WHERE
|
|
%s
|
|
AND organization_id = @organization_id
|
|
AND snapshot_id IS NULL
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"organization_id": organizationID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query transfer impact assessments: %w", err)
|
|
}
|
|
|
|
results, err := pgx.CollectRows(rows, pgx.RowToAddrOfStructByName[TransferImpactAssessment])
|
|
if err != nil {
|
|
return fmt.Errorf("cannot collect transfer impact assessments: %w", err)
|
|
}
|
|
|
|
*tias = results
|
|
|
|
return nil
|
|
}
|
|
|
|
func (tia *TransferImpactAssessment) LoadByID(
|
|
ctx context.Context,
|
|
conn pg.Querier,
|
|
scope Scoper,
|
|
tiaID gid.GID,
|
|
) error {
|
|
q := `
|
|
SELECT
|
|
id,
|
|
snapshot_id,
|
|
source_id,
|
|
organization_id,
|
|
processing_activity_id,
|
|
data_subjects,
|
|
legal_mechanism,
|
|
transfer,
|
|
local_law_risk,
|
|
supplementary_measures,
|
|
created_at,
|
|
updated_at
|
|
FROM
|
|
processing_activity_transfer_impact_assessments
|
|
WHERE
|
|
%s
|
|
AND id = @tia_id
|
|
LIMIT 1;
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"tia_id": tiaID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query transfer impact assessment: %w", err)
|
|
}
|
|
|
|
result, err := pgx.CollectExactlyOneRow(rows, pgx.RowToStructByName[TransferImpactAssessment])
|
|
if err != nil {
|
|
if errors.Is(err, pgx.ErrNoRows) {
|
|
return ErrResourceNotFound
|
|
}
|
|
return fmt.Errorf("cannot collect transfer impact assessment: %w", err)
|
|
}
|
|
|
|
*tia = result
|
|
|
|
return nil
|
|
}
|
|
|
|
func (tia *TransferImpactAssessment) LoadByProcessingActivityID(
|
|
ctx context.Context,
|
|
conn pg.Querier,
|
|
scope Scoper,
|
|
processingActivityID gid.GID,
|
|
) error {
|
|
q := `
|
|
SELECT
|
|
id,
|
|
snapshot_id,
|
|
source_id,
|
|
organization_id,
|
|
processing_activity_id,
|
|
data_subjects,
|
|
legal_mechanism,
|
|
transfer,
|
|
local_law_risk,
|
|
supplementary_measures,
|
|
created_at,
|
|
updated_at
|
|
FROM
|
|
processing_activity_transfer_impact_assessments
|
|
WHERE
|
|
%s
|
|
AND processing_activity_id = @processing_activity_id
|
|
LIMIT 1;
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"processing_activity_id": processingActivityID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query transfer impact assessment: %w", err)
|
|
}
|
|
|
|
result, err := pgx.CollectExactlyOneRow(rows, pgx.RowToStructByName[TransferImpactAssessment])
|
|
if err != nil {
|
|
if errors.Is(err, pgx.ErrNoRows) {
|
|
return ErrResourceNotFound
|
|
}
|
|
return fmt.Errorf("cannot collect transfer impact assessment: %w", err)
|
|
}
|
|
|
|
*tia = result
|
|
|
|
return nil
|
|
}
|
|
|
|
func (tia *TransferImpactAssessment) Insert(
|
|
ctx context.Context,
|
|
conn pg.Tx,
|
|
scope Scoper,
|
|
) error {
|
|
q := `
|
|
INSERT INTO processing_activity_transfer_impact_assessments (
|
|
id,
|
|
tenant_id,
|
|
organization_id,
|
|
processing_activity_id,
|
|
data_subjects,
|
|
legal_mechanism,
|
|
transfer,
|
|
local_law_risk,
|
|
supplementary_measures,
|
|
created_at,
|
|
updated_at
|
|
) VALUES (
|
|
@id,
|
|
@tenant_id,
|
|
@organization_id,
|
|
@processing_activity_id,
|
|
@data_subjects,
|
|
@legal_mechanism,
|
|
@transfer,
|
|
@local_law_risk,
|
|
@supplementary_measures,
|
|
@created_at,
|
|
@updated_at
|
|
)
|
|
`
|
|
|
|
args := pgx.StrictNamedArgs{
|
|
"id": tia.ID,
|
|
"tenant_id": scope.GetTenantID(),
|
|
"organization_id": tia.OrganizationID,
|
|
"processing_activity_id": tia.ProcessingActivityID,
|
|
"data_subjects": tia.DataSubjects,
|
|
"legal_mechanism": tia.LegalMechanism,
|
|
"transfer": tia.Transfer,
|
|
"local_law_risk": tia.LocalLawRisk,
|
|
"supplementary_measures": tia.SupplementaryMeasures,
|
|
"created_at": tia.CreatedAt,
|
|
"updated_at": tia.UpdatedAt,
|
|
}
|
|
|
|
_, err := conn.Exec(ctx, q, args)
|
|
if err != nil {
|
|
var pgErr *pgconn.PgError
|
|
if errors.As(err, &pgErr) {
|
|
if pgErr.Code == "23505" && pgErr.ConstraintName == "processing_activity_tias_processing_activity_id_snapshot_id_uniq" {
|
|
return ErrResourceAlreadyExists
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("cannot insert transfer impact assessment: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (tia *TransferImpactAssessment) Update(
|
|
ctx context.Context,
|
|
conn pg.Tx,
|
|
scope Scoper,
|
|
) error {
|
|
q := `
|
|
UPDATE processing_activity_transfer_impact_assessments SET
|
|
data_subjects = @data_subjects,
|
|
legal_mechanism = @legal_mechanism,
|
|
transfer = @transfer,
|
|
local_law_risk = @local_law_risk,
|
|
supplementary_measures = @supplementary_measures,
|
|
updated_at = @updated_at
|
|
WHERE
|
|
%s
|
|
AND id = @id
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{
|
|
"id": tia.ID,
|
|
"data_subjects": tia.DataSubjects,
|
|
"legal_mechanism": tia.LegalMechanism,
|
|
"transfer": tia.Transfer,
|
|
"local_law_risk": tia.LocalLawRisk,
|
|
"supplementary_measures": tia.SupplementaryMeasures,
|
|
"updated_at": tia.UpdatedAt,
|
|
}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
_, err := conn.Exec(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot update transfer impact assessment: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (tia *TransferImpactAssessment) Delete(
|
|
ctx context.Context,
|
|
conn pg.Tx,
|
|
scope Scoper,
|
|
) error {
|
|
q := `
|
|
DELETE FROM processing_activity_transfer_impact_assessments
|
|
WHERE
|
|
%s
|
|
AND id = @id
|
|
`
|
|
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"id": tia.ID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
_, err := conn.Exec(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot delete transfer impact assessment: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|