-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DCS-52: user notification preferences (#15)
* remove outdated entry * add notification tables * add notification types * add notification targets * add notification preferences * add notification preferences table * add create and update * change package name for oss * add default preferences handling * add audit log handling * add notification-preferences routes * add authenticated user notifications routes * add notification types client * fix error notification types or targets empty * fix linter errors * add notification type client * add notification targets client * rebase main * add notification preferences client * add tests * refactor per suggestions * use bool pointer to ensure value is provided * Update pkg/api/v1alpha1/authenticated_user.go Co-authored-by: E Camden Fisher <[email protected]> * validate notification preference len before update * update per review * simplify indices * update per review --------- Co-authored-by: E Camden Fisher <[email protected]>
- Loading branch information
Showing
29 changed files
with
8,219 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ coverage.txt | |
audit.log | ||
.devcontainer/nats/resolver.conf | ||
.devcontainer/nsc | ||
|
||
tmp/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
-- +goose Up | ||
-- +goose StatementBegin | ||
CREATE TABLE notification_types ( | ||
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(), | ||
name STRING NOT NULL, | ||
slug STRING NOT NULL, | ||
description STRING NOT NULL, | ||
default_enabled BOOL NOT NULL, | ||
created_at TIMESTAMPTZ NOT NULL DEFAULT now(), | ||
updated_at TIMESTAMPTZ NOT NULL DEFAULT now(), | ||
deleted_at TIMESTAMPTZ NULL, | ||
|
||
CONSTRAINT notification_types_slug_key UNIQUE (slug) WHERE deleted_at IS NULL, | ||
INDEX (deleted_at) STORING (slug, default_enabled) | ||
); | ||
|
||
CREATE TABLE notification_targets ( | ||
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(), | ||
name STRING NOT NULL, | ||
slug STRING NOT NULL, | ||
description STRING NOT NULL, | ||
default_enabled BOOL NOT NULL, | ||
created_at TIMESTAMPTZ NOT NULL DEFAULT now(), | ||
updated_at TIMESTAMPTZ NOT NULL DEFAULT now(), | ||
deleted_at TIMESTAMPTZ NULL, | ||
|
||
CONSTRAINT notification_targets_slug_key UNIQUE (slug) WHERE deleted_at IS NULL, | ||
INDEX (deleted_at) STORING (slug, default_enabled) | ||
); | ||
|
||
CREATE TABLE notification_preferences ( | ||
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(), | ||
user_id UUID NOT NULL REFERENCES users(id) ON DELETE CASCADE ON UPDATE CASCADE, | ||
notification_type_id UUID NOT NULL REFERENCES notification_types(id) ON DELETE CASCADE ON UPDATE CASCADE, | ||
notification_target_id UUID NULL REFERENCES notification_targets(id) ON DELETE CASCADE ON UPDATE CASCADE, | ||
notification_target_id_null_string UUID AS (IFNULL(notification_target_id, '00000000-0000-0000-0000-000000000000')) STORED, | ||
enabled BOOL NOT NULL DEFAULT false, | ||
|
||
CONSTRAINT unique_user_type_target UNIQUE (user_id, notification_type_id, notification_target_id_null_string), | ||
INDEX (user_id, notification_target_id, notification_type_id) STORING (enabled, notification_target_id_null_string) | ||
); | ||
|
||
CREATE MATERIALIZED VIEW notification_defaults AS | ||
SELECT | ||
targets.id AS target_id, | ||
targets.slug AS target_slug, | ||
types.id AS type_id, | ||
types.slug AS type_slug, | ||
targets.default_enabled AS default_enabled | ||
FROM | ||
notification_types AS types | ||
CROSS JOIN notification_targets AS targets | ||
WHERE types.deleted_at IS NULL AND targets.deleted_at IS NULL | ||
UNION ( | ||
SELECT | ||
'00000000-0000-0000-0000-000000000000' AS target_id, | ||
'' AS target_slug, | ||
types.id AS type_id, | ||
types.slug AS type_slug, | ||
types.default_enabled AS default_enabled | ||
FROM | ||
notification_types AS types | ||
WHERE types.deleted_at IS NULL | ||
); | ||
|
||
CREATE INDEX ON notification_defaults (target_id, type_id) STORING (target_slug, type_slug, default_enabled); | ||
|
||
-- +goose StatementEnd | ||
|
||
-- +goose Down | ||
-- +goose StatementBegin | ||
DROP MATERIALIZED VIEW notification_defaults; | ||
DROP TABLE notification_preferences; | ||
DROP TABLE notification_targets; | ||
DROP TABLE notification_types; | ||
-- +goose StatementEnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.