File size: 1,985 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
-- +migrate Up
CREATE OR REPLACE VIEW user_notification_cycle_state AS
SELECT DISTINCT
c.alert_id,
nr.id AS notification_rule_id,
nr.user_id,
c.id AS cycle_id,
(nr.delay_minutes::TEXT||' minutes')::INTERVAL > now()-c.started_at AS future,
nr.id NOT IN (
SELECT notification_rule_id
FROM sent_notifications
WHERE alert_id = c.alert_id
AND cycle_id = c.id
AND contact_method_id = nr.contact_method_id) AS pending,
c.escalation_level
FROM
user_notification_cycles c,
alerts a,
user_notification_rules nr
WHERE a.id = c.alert_id
AND a.status = 'triggered'
AND nr.user_id = c.user_id
AND nr.created_at < c.started_at + (nr.delay_minutes::TEXT||' minutes')::INTERVAL
AND nr.id NOT IN (
SELECT notification_rule_id
FROM sent_notifications
WHERE alert_id = c.alert_id
AND cycle_id = c.id
AND contact_method_id = nr.contact_method_id);
-- +migrate Down
CREATE OR REPLACE VIEW user_notification_cycle_state AS
SELECT DISTINCT c.alert_id,
nr.id AS notification_rule_id,
nr.user_id,
c.id AS cycle_id,
((((nr.delay_minutes)::text || ' minutes'::text))::interval > (now() - (c.started_at)::timestamp with time zone)) AS future,
(NOT (nr.id IN ( SELECT sent_notifications.notification_rule_id
FROM sent_notifications
WHERE ((sent_notifications.alert_id = c.alert_id) AND (sent_notifications.cycle_id = c.id) AND (sent_notifications.contact_method_id = nr.contact_method_id))))) AS pending,
c.escalation_level
FROM user_notification_cycles c,
alerts a,
user_notification_rules nr
WHERE ((a.id = c.alert_id) AND (a.status = 'triggered'::enum_alert_status) AND (nr.user_id = c.user_id) AND (NOT (nr.id IN ( SELECT sent_notifications.notification_rule_id
FROM sent_notifications
WHERE ((sent_notifications.alert_id = c.alert_id) AND (sent_notifications.cycle_id = c.id) AND (sent_notifications.contact_method_id = nr.contact_method_id))))));
|