This repository has been archived on 2024-07-18. You can view files and clone it, but cannot push or open issues or pull requests.
lwb6/legacyworlds-server/legacyworlds-server-data/db-structure/parts/functions/210-admin-overview.sql

64 lines
1.8 KiB
SQL

-- LegacyWorlds Beta 6
-- PostgreSQL database scripts
--
-- Views used to generate the administration overview
--
-- Copyright(C) 2004-2010, DeepClone Development
-- --------------------------------------------------------
CREATE VIEW admin.ov_new_messages
AS SELECT admin_id , count(*) AS new_messages
FROM msgs.admin_delivery
WHERE status = 'UNREAD'
GROUP BY admin_id;
CREATE VIEW admin.ov_pending_names
AS SELECT count(*) AS pending_names
FROM naming.changed_map_names
LEFT OUTER JOIN naming.validated_map_names USING (name_id)
WHERE validated_at IS NULL;
CREATE VIEW admin.ov_pending_bans
AS SELECT count(*) AS pending_bans
FROM admin.active_ban_requests
WHERE NOT validated;
CREATE VIEW admin.ov_pending_bugs
AS SELECT count(*) AS pending_bugs
FROM bugs.br_main_view
WHERE status = 'PENDING';
CREATE VIEW admin.ov_open_bugs
AS SELECT count(*) AS open_bugs
FROM bugs.br_main_view
WHERE status = 'OPEN';
CREATE VIEW admin.ov_updated_bugs
AS SELECT administrator_id , count(*) AS updated_bugs
FROM bugs.br_admin_view
WHERE updated
GROUP BY administrator_id;
CREATE VIEW admin.overview
AS SELECT a.id AS admin_id ,
( CASE WHEN nm IS NULL THEN 0 ELSE nm.new_messages END )::BIGINT AS new_messages ,
pn.pending_names , pb.pending_bans , pbg.pending_bugs , ob.open_bugs ,
( CASE WHEN ub IS NULL THEN 0 ELSE ub.updated_bugs END )::BIGINT AS updated_bugs
FROM admin.administrators a
LEFT OUTER JOIN admin.ov_new_messages nm ON nm.admin_id = a.id
INNER JOIN admin.ov_pending_names pn ON TRUE
INNER JOIN admin.ov_pending_bans pb ON TRUE
INNER JOIN admin.ov_pending_bugs pbg ON TRUE
INNER JOIN admin.ov_open_bugs ob ON TRUE
LEFT OUTER JOIN admin.ov_updated_bugs ub ON ub.administrator_id = a.id
WHERE a.privileges <> 0;
GRANT SELECT ON admin.overview TO :dbuser;