327 lines
7.4 KiB
Go
327 lines
7.4 KiB
Go
// Copyright (c) 2025 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"
|
|
"fmt"
|
|
"maps"
|
|
"time"
|
|
|
|
"github.com/getprobo/probo/pkg/gid"
|
|
"github.com/getprobo/probo/pkg/page"
|
|
"github.com/jackc/pgx/v5"
|
|
"go.gearno.de/kit/pg"
|
|
)
|
|
|
|
type (
|
|
Risk struct {
|
|
ID gid.GID `db:"id"`
|
|
OrganizationID gid.GID `db:"organization_id"`
|
|
Name string `db:"name"`
|
|
Description string `db:"description"`
|
|
Category string `db:"category"`
|
|
Treatment RiskTreatment `db:"treatment"`
|
|
Note string `db:"note"`
|
|
OwnerID *gid.GID `db:"owner_id"`
|
|
InherentLikelihood int `db:"inherent_likelihood"`
|
|
InherentImpact int `db:"inherent_impact"`
|
|
ResidualLikelihood int `db:"residual_likelihood"`
|
|
ResidualImpact int `db:"residual_impact"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
UpdatedAt time.Time `db:"updated_at"`
|
|
}
|
|
|
|
Risks []*Risk
|
|
)
|
|
|
|
func (r *Risk) CursorKey(orderBy RiskOrderField) page.CursorKey {
|
|
switch orderBy {
|
|
case RiskOrderFieldCreatedAt:
|
|
return page.CursorKey{ID: r.ID, Value: r.CreatedAt}
|
|
}
|
|
|
|
panic(fmt.Sprintf("unsupported order by: %s", orderBy))
|
|
}
|
|
|
|
func (r *Risk) InherentSeverity() int {
|
|
return r.InherentLikelihood * r.InherentImpact
|
|
}
|
|
|
|
func (r *Risk) ResidualSeverity() int {
|
|
return r.ResidualLikelihood * r.ResidualImpact
|
|
}
|
|
|
|
func (r *Risks) LoadByMesureID(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope Scoper,
|
|
mesureID gid.GID,
|
|
cursor *page.Cursor[RiskOrderField],
|
|
) error {
|
|
q := `
|
|
WITH rsks AS (
|
|
SELECT
|
|
r.id,
|
|
r.organization_id,
|
|
r.name,
|
|
r.description,
|
|
r.category,
|
|
r.owner_id,
|
|
r.treatment,
|
|
r.note,
|
|
r.inherent_likelihood,
|
|
r.inherent_impact,
|
|
r.residual_likelihood,
|
|
r.residual_impact,
|
|
r.created_at,
|
|
r.updated_at
|
|
FROM
|
|
risks r
|
|
INNER JOIN
|
|
risks_mesures rm ON r.id = rm.risk_id
|
|
WHERE
|
|
rm.mesure_id = @mesure_id
|
|
)
|
|
SELECT
|
|
id,
|
|
organization_id,
|
|
name,
|
|
description,
|
|
category,
|
|
owner_id,
|
|
treatment,
|
|
note,
|
|
inherent_likelihood,
|
|
inherent_impact,
|
|
residual_likelihood,
|
|
residual_impact,
|
|
created_at,
|
|
updated_at
|
|
FROM
|
|
rsks
|
|
WHERE %s
|
|
AND %s
|
|
`
|
|
q = fmt.Sprintf(q, scope.SQLFragment(), cursor.SQLFragment())
|
|
|
|
args := pgx.NamedArgs{"mesure_id": mesureID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query risks: %w", err)
|
|
}
|
|
|
|
risks, err := pgx.CollectRows(rows, pgx.RowToAddrOfStructByName[Risk])
|
|
if err != nil {
|
|
return fmt.Errorf("cannot collect risks: %w", err)
|
|
}
|
|
|
|
*r = risks
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *Risks) LoadByOrganizationID(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope Scoper,
|
|
organizationID gid.GID,
|
|
cursor *page.Cursor[RiskOrderField],
|
|
) error {
|
|
q := `
|
|
SELECT
|
|
id,
|
|
organization_id,
|
|
name,
|
|
description,
|
|
owner_id,
|
|
treatment,
|
|
note,
|
|
inherent_likelihood,
|
|
inherent_impact,
|
|
residual_likelihood,
|
|
residual_impact,
|
|
category,
|
|
created_at,
|
|
updated_at
|
|
FROM risks
|
|
WHERE %s
|
|
AND organization_id = @organization_id
|
|
AND %s
|
|
`
|
|
q = fmt.Sprintf(q, scope.SQLFragment(), cursor.SQLFragment())
|
|
|
|
args := pgx.NamedArgs{"organization_id": organizationID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query risks: %w", err)
|
|
}
|
|
|
|
risks, err := pgx.CollectRows(rows, pgx.RowToAddrOfStructByName[Risk])
|
|
if err != nil {
|
|
return fmt.Errorf("cannot collect risks: %w", err)
|
|
}
|
|
|
|
*r = risks
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *Risk) LoadByID(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope Scoper,
|
|
riskID gid.GID,
|
|
) error {
|
|
q := `
|
|
SELECT
|
|
id,
|
|
organization_id,
|
|
name,
|
|
description,
|
|
category,
|
|
owner_id,
|
|
treatment,
|
|
note,
|
|
inherent_likelihood,
|
|
inherent_impact,
|
|
residual_likelihood,
|
|
residual_impact,
|
|
created_at,
|
|
updated_at
|
|
FROM risks
|
|
WHERE %s
|
|
AND id = @id
|
|
LIMIT 1;
|
|
`
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{"id": riskID}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
rows, err := conn.Query(ctx, q, args)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot query risk: %w", err)
|
|
}
|
|
|
|
risk, err := pgx.CollectExactlyOneRow(rows, pgx.RowToStructByName[Risk])
|
|
if err != nil {
|
|
return fmt.Errorf("cannot collect risk: %w", err)
|
|
}
|
|
|
|
*r = risk
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *Risk) Insert(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope Scoper,
|
|
) error {
|
|
q := `
|
|
INSERT INTO risks (id, tenant_id, organization_id, name, description, category, owner_id, treatment, note, inherent_likelihood, inherent_impact, residual_likelihood, residual_impact, created_at, updated_at)
|
|
VALUES (@id, @tenant_id, @organization_id, @name, @description, @category, @owner_id, @treatment, @note, @inherent_likelihood, @inherent_impact, @residual_likelihood, @residual_impact, @created_at, @updated_at)
|
|
`
|
|
|
|
args := pgx.StrictNamedArgs{
|
|
"id": r.ID,
|
|
"tenant_id": scope.GetTenantID(),
|
|
"organization_id": r.OrganizationID,
|
|
"name": r.Name,
|
|
"description": r.Description,
|
|
"category": r.Category,
|
|
"owner_id": r.OwnerID,
|
|
"treatment": r.Treatment,
|
|
"note": r.Note,
|
|
"inherent_likelihood": r.InherentLikelihood,
|
|
"inherent_impact": r.InherentImpact,
|
|
"residual_likelihood": r.ResidualLikelihood,
|
|
"residual_impact": r.ResidualImpact,
|
|
"created_at": r.CreatedAt,
|
|
"updated_at": r.UpdatedAt,
|
|
}
|
|
|
|
_, err := conn.Exec(ctx, q, args)
|
|
return err
|
|
}
|
|
|
|
func (r *Risk) Update(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope Scoper,
|
|
) error {
|
|
q := `
|
|
UPDATE risks
|
|
SET
|
|
name = @name,
|
|
description = @description,
|
|
owner_id = @owner_id,
|
|
treatment = @treatment,
|
|
inherent_likelihood = @inherent_likelihood,
|
|
inherent_impact = @inherent_impact,
|
|
residual_likelihood = @residual_likelihood,
|
|
residual_impact = @residual_impact,
|
|
category = @category,
|
|
note = @note,
|
|
updated_at = @updated_at
|
|
WHERE %s
|
|
AND id = @risk_id
|
|
`
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{
|
|
"risk_id": r.ID,
|
|
"name": r.Name,
|
|
"description": r.Description,
|
|
"category": r.Category,
|
|
"owner_id": r.OwnerID,
|
|
"treatment": r.Treatment,
|
|
"note": r.Note,
|
|
"inherent_likelihood": r.InherentLikelihood,
|
|
"inherent_impact": r.InherentImpact,
|
|
"residual_likelihood": r.ResidualLikelihood,
|
|
"residual_impact": r.ResidualImpact,
|
|
"updated_at": r.UpdatedAt,
|
|
}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
_, err := conn.Exec(ctx, q, args)
|
|
return err
|
|
}
|
|
|
|
func (r *Risk) Delete(
|
|
ctx context.Context,
|
|
conn pg.Conn,
|
|
scope Scoper,
|
|
) error {
|
|
q := `
|
|
DELETE FROM risks WHERE %s AND id = @id
|
|
`
|
|
q = fmt.Sprintf(q, scope.SQLFragment())
|
|
|
|
args := pgx.StrictNamedArgs{
|
|
"id": r.ID,
|
|
}
|
|
maps.Copy(args, scope.SQLArguments())
|
|
|
|
_, err := conn.Exec(ctx, q, args)
|
|
return err
|
|
}
|