manages nodegroups from user-provided spec
[plcapi.git] / planetlab5.sql
1 --
2 -- PlanetLab Central database schema
3 -- Version 5, PostgreSQL
4 --
5 -- Aaron Klingaman <alk@cs.princeton.edu>
6 -- Reid Moran <rmoran@cs.princeton.edu>
7 -- Mark Huang <mlhuang@cs.princeton.edu>
8 -- Tony Mack <tmack@cs.princeton.edu>
9 -- Thierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
10 --
11 -- Copyright (C) 2006 The Trustees of Princeton University
12 --
13 -- $Id$
14 --
15
16 SET client_encoding = 'UNICODE';
17
18 --------------------------------------------------------------------------------
19 -- Version
20 --------------------------------------------------------------------------------
21
22 -- Database version
23 CREATE TABLE plc_db_version (
24     version integer NOT NULL,
25     subversion integer NOT NULL DEFAULT 0
26 ) WITH OIDS;
27
28 INSERT INTO plc_db_version (version, subversion) VALUES (5, 0);
29
30 --------------------------------------------------------------------------------
31 -- Aggregates and store procedures
32 --------------------------------------------------------------------------------
33
34 -- Like MySQL GROUP_CONCAT(), this function aggregates values into a
35 -- PostgreSQL array.
36 CREATE AGGREGATE array_accum (
37     sfunc = array_append,
38     basetype = anyelement,
39     stype = anyarray,
40     initcond = '{}'
41 );
42
43 --------------------------------------------------------------------------------
44 -- Accounts
45 --------------------------------------------------------------------------------
46
47 -- Accounts
48 CREATE TABLE persons (
49     -- Mandatory
50     person_id serial PRIMARY KEY,                       -- Account identifier
51     email text NOT NULL,                                -- E-mail address
52     first_name text NOT NULL,                           -- First name
53     last_name text NOT NULL,                            -- Last name
54     deleted boolean NOT NULL DEFAULT false,             -- Has been deleted
55     enabled boolean NOT NULL DEFAULT false,             -- Has been disabled
56
57     password text NOT NULL DEFAULT 'nopass',            -- Password (md5crypted)
58     verification_key text,                              -- Reset password key
59     verification_expires timestamp without time zone,
60
61     -- Optional
62     title text,                                         -- Honorific
63     phone text,                                         -- Telephone number
64     url text,                                           -- Home page
65     bio text,                                           -- Biography
66
67     -- Timestamps
68     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
69     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
70 ) WITH OIDS;
71 CREATE INDEX persons_email_idx ON persons (email);
72
73 --------------------------------------------------------------------------------
74 -- Sites
75 --------------------------------------------------------------------------------
76
77 -- Sites
78 CREATE TABLE sites (
79     -- Mandatory
80     site_id serial PRIMARY KEY,                         -- Site identifier
81     login_base text NOT NULL,                           -- Site slice prefix
82     name text NOT NULL,                                 -- Site name
83     abbreviated_name text NOT NULL,                     -- Site abbreviated name
84     enabled boolean NOT NULL Default true,              -- Is this site enabled
85     deleted boolean NOT NULL DEFAULT false,             -- Has been deleted
86     is_public boolean NOT NULL DEFAULT true,            -- Shows up in public lists
87     max_slices integer NOT NULL DEFAULT 0,              -- Maximum number of slices
88     max_slivers integer NOT NULL DEFAULT 1000,          -- Maximum number of instantiated slivers
89
90     -- Optional
91     latitude real,
92     longitude real,
93     url text,
94     ext_consortium_id integer,                          -- external consortium id
95
96     -- Timestamps
97     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
98     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
99 ) WITH OIDS;
100 CREATE INDEX sites_login_base_idx ON sites (login_base);
101
102 -- Account site membership
103 CREATE TABLE person_site (
104     person_id integer REFERENCES persons NOT NULL,      -- Account identifier
105     site_id integer REFERENCES sites NOT NULL,          -- Site identifier
106     is_primary boolean NOT NULL DEFAULT false,          -- Is the primary site for this account
107     PRIMARY KEY (person_id, site_id)
108 );
109 CREATE INDEX person_site_person_id_idx ON person_site (person_id);
110 CREATE INDEX person_site_site_id_idx ON person_site (site_id);
111
112 -- Ordered by primary site first
113 CREATE OR REPLACE VIEW person_site_ordered AS
114 SELECT person_id, site_id
115 FROM person_site
116 ORDER BY is_primary DESC;
117
118 -- Sites that each person is a member of
119 CREATE OR REPLACE VIEW person_sites AS
120 SELECT person_id,
121 array_accum(site_id) AS site_ids
122 FROM person_site_ordered
123 GROUP BY person_id;
124
125 -- Accounts at each site
126 CREATE OR REPLACE VIEW site_persons AS
127 SELECT site_id,
128 array_accum(person_id) AS person_ids
129 FROM person_site
130 GROUP BY site_id;
131
132 --------------------------------------------------------------------------------
133 -- Mailing Addresses
134 --------------------------------------------------------------------------------
135
136 CREATE TABLE address_types (
137     address_type_id serial PRIMARY KEY,                 -- Address type identifier
138     name text UNIQUE NOT NULL,                          -- Address type
139     description text                                    -- Address type description
140 ) WITH OIDS;
141
142 -- 'Billing' Used to be 'Site'
143 INSERT INTO address_types (name) VALUES ('Personal'), ('Shipping'), ('Billing');
144
145 -- Mailing addresses
146 CREATE TABLE addresses (
147     address_id serial PRIMARY KEY,                      -- Address identifier
148     line1 text NOT NULL,                                -- Address line 1
149     line2 text,                                         -- Address line 2
150     line3 text,                                         -- Address line 3
151     city text NOT NULL,                                 -- City
152     state text NOT NULL,                                -- State or province
153     postalcode text NOT NULL,                           -- Postal code
154     country text NOT NULL                               -- Country
155 ) WITH OIDS;
156
157 -- Each mailing address can be one of several types
158 CREATE TABLE address_address_type (
159     address_id integer REFERENCES addresses NOT NULL,           -- Address identifier
160     address_type_id integer REFERENCES address_types NOT NULL,  -- Address type
161     PRIMARY KEY (address_id, address_type_id)
162 ) WITH OIDS;
163 CREATE INDEX address_address_type_address_id_idx ON address_address_type (address_id);
164 CREATE INDEX address_address_type_address_type_id_idx ON address_address_type (address_type_id);
165
166 CREATE OR REPLACE VIEW address_address_types AS
167 SELECT address_id,
168 array_accum(address_type_id) AS address_type_ids,
169 array_accum(address_types.name) AS address_types
170 FROM address_address_type
171 LEFT JOIN address_types USING (address_type_id)
172 GROUP BY address_id;
173
174 CREATE TABLE site_address (
175     site_id integer REFERENCES sites NOT NULL,          -- Site identifier
176     address_id integer REFERENCES addresses NOT NULL,   -- Address identifier
177     PRIMARY KEY (site_id, address_id)
178 ) WITH OIDS;
179 CREATE INDEX site_address_site_id_idx ON site_address (site_id);
180 CREATE INDEX site_address_address_id_idx ON site_address (address_id);
181
182 CREATE OR REPLACE VIEW site_addresses AS
183 SELECT site_id,
184 array_accum(address_id) AS address_ids
185 FROM site_address
186 GROUP BY site_id;
187
188 --------------------------------------------------------------------------------
189 -- Authentication Keys
190 --------------------------------------------------------------------------------
191
192 -- Valid key types
193 CREATE TABLE key_types (
194     key_type text PRIMARY KEY                           -- Key type
195 ) WITH OIDS;
196 INSERT INTO key_types (key_type) VALUES ('ssh');
197
198 -- Authentication keys
199 CREATE TABLE keys (
200     key_id serial PRIMARY KEY,                          -- Key identifier
201     key_type text REFERENCES key_types NOT NULL,        -- Key type
202     key text NOT NULL, -- Key material
203     is_blacklisted boolean NOT NULL DEFAULT false       -- Has been blacklisted
204 ) WITH OIDS;
205
206 -- Account authentication key(s)
207 CREATE TABLE person_key (
208     key_id integer REFERENCES keys PRIMARY KEY,         -- Key identifier
209     person_id integer REFERENCES persons NOT NULL       -- Account identifier
210 ) WITH OIDS;
211 CREATE INDEX person_key_person_id_idx ON person_key (person_id);
212
213 CREATE OR REPLACE VIEW person_keys AS
214 SELECT person_id,
215 array_accum(key_id) AS key_ids
216 FROM person_key
217 GROUP BY person_id;
218
219 --------------------------------------------------------------------------------
220 -- Account roles
221 --------------------------------------------------------------------------------
222
223 -- Valid account roles
224 CREATE TABLE roles (
225     role_id integer PRIMARY KEY,                        -- Role identifier
226     name text UNIQUE NOT NULL                           -- Role symbolic name
227 ) WITH OIDS;
228 INSERT INTO roles (role_id, name) VALUES (10, 'admin'), (20, 'pi'), (30, 'user'), (40, 'tech');
229
230 CREATE TABLE person_role (
231     person_id integer REFERENCES persons NOT NULL,      -- Account identifier
232     role_id integer REFERENCES roles NOT NULL,          -- Role identifier
233     PRIMARY KEY (person_id, role_id)
234 ) WITH OIDS;
235 CREATE INDEX person_role_person_id_idx ON person_role (person_id);
236
237 -- Account roles
238 CREATE OR REPLACE VIEW person_roles AS
239 SELECT person_id,
240 array_accum(role_id) AS role_ids,
241 array_accum(roles.name) AS roles
242 FROM person_role
243 LEFT JOIN roles USING (role_id)
244 GROUP BY person_id;
245
246 --------------------------------------------------------------------------------
247 -- Nodes
248 --------------------------------------------------------------------------------
249
250 -- Valid node boot states
251 CREATE TABLE boot_states (
252     boot_state text PRIMARY KEY
253 ) WITH OIDS;
254 INSERT INTO boot_states (boot_state) 
255        VALUES ('boot'), ('dbg'), ('diag'), ('disable'), ('inst'), ('rins'), ('new');
256
257 -- Nodes
258 CREATE TABLE nodes (
259     -- Mandatory
260     node_id serial PRIMARY KEY,                         -- Node identifier
261     hostname text NOT NULL,                             -- Node hostname
262     site_id integer REFERENCES sites NOT NULL,          -- At which site 
263
264     boot_state text REFERENCES boot_states NOT NULL     -- Node boot state
265                DEFAULT 'inst', 
266     deleted boolean NOT NULL DEFAULT false,             -- Is deleted
267
268     -- Optional
269     model text,                                         -- Hardware make and model
270     boot_nonce text,                                    -- Random nonce updated by Boot Manager
271     version text,                                       -- Boot CD version string updated by Boot Manager
272     ssh_rsa_key text,                                   -- SSH host key updated by Boot Manager
273     key text,                                           -- Node key generated when boot file is downloaded
274
275     -- Timestamps
276     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
277     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
278     last_contact timestamp without time zone    
279 ) WITH OIDS;
280 CREATE INDEX nodes_hostname_idx ON nodes (hostname);
281 CREATE INDEX nodes_site_id_idx ON nodes (site_id);
282
283 -- Nodes at each site
284 CREATE OR REPLACE VIEW site_nodes AS
285 SELECT site_id,
286 array_accum(node_id) AS node_ids
287 FROM nodes
288 WHERE deleted IS false
289 GROUP BY site_id;
290
291 --------------------------------------------------------------------------------
292 -- node tags
293 --------------------------------------------------------------------------------
294 CREATE TABLE tag_types (
295
296     tag_type_id serial PRIMARY KEY,                     -- ID
297     tagname text UNIQUE NOT NULL,                       -- Tag Name
298     description text,                                   -- Optional Description
299     min_role_id integer REFERENCES roles DEFAULT 10,    -- set minimal role required
300     category text NOT NULL DEFAULT 'general'            -- Free text for grouping tags together
301 ) WITH OIDS;
302
303 CREATE TABLE node_tag (
304     node_tag_id serial PRIMARY KEY,                     -- ID
305     node_id integer REFERENCES nodes NOT NULL,          -- node id
306     tag_type_id integer REFERENCES tag_types,           -- tag type id
307     tagvalue text                                       -- value attached
308 ) WITH OIDS;
309
310 CREATE OR REPLACE VIEW node_tags AS
311 SELECT node_id,
312 array_accum(node_tag_id) AS tag_ids
313 FROM node_tag
314 GROUP BY node_id;
315
316 CREATE OR REPLACE VIEW view_node_tags AS
317 SELECT
318 node_tag.node_tag_id,
319 node_tag.node_id,
320 nodes.hostname,
321 tag_types.tag_type_id,
322 tag_types.tagname,
323 tag_types.description,
324 tag_types.category,
325 tag_types.min_role_id,
326 node_tag.tagvalue
327 FROM node_tag 
328 INNER JOIN tag_types USING (tag_type_id)
329 INNER JOIN nodes USING (node_id);
330
331 --------------------------------------------------------------------------------
332 -- (network) interfaces
333 --------------------------------------------------------------------------------
334
335 -- Valid network addressing schemes
336 CREATE TABLE network_types (
337     type text PRIMARY KEY -- Addressing scheme
338 ) WITH OIDS;
339 INSERT INTO network_types (type) VALUES ('ipv4');
340
341 -- Valid network configuration methods
342 CREATE TABLE network_methods (
343     method text PRIMARY KEY -- Configuration method
344 ) WITH OIDS;
345 INSERT INTO network_methods (method) VALUES
346         ('static'), ('dhcp'), ('proxy'), ('tap'), ('ipmi'), ('unknown');
347
348 -- Node network interfaces
349 CREATE TABLE interfaces (
350     -- Mandatory
351     interface_id serial PRIMARY KEY,                    -- Network interface identifier
352     node_id integer REFERENCES nodes NOT NULL,          -- Which node
353     is_primary boolean NOT NULL DEFAULT false,          -- Is the primary interface for this node
354     type text REFERENCES network_types NOT NULL,        -- Addressing scheme
355     method text REFERENCES network_methods NOT NULL,    -- Configuration method
356
357     -- Optional, depending on type and method
358     ip text,                                            -- IP address
359     mac text,                                           -- MAC address
360     gateway text,                                       -- Default gateway address
361     network text,                                       -- Network address
362     broadcast text,                                     -- Network broadcast address
363     netmask text,                                       -- Network mask
364     dns1 text,                                          -- Primary DNS server
365     dns2 text,                                          -- Secondary DNS server
366     bwlimit integer,                                    -- Bandwidth limit in bps
367     hostname text                                       -- Hostname of this interface
368 ) WITH OIDS;
369 CREATE INDEX interfaces_node_id_idx ON interfaces (node_id);
370
371 -- Ordered by primary interface first
372 CREATE OR REPLACE VIEW interfaces_ordered AS
373 SELECT node_id, interface_id
374 FROM interfaces
375 ORDER BY is_primary DESC;
376
377 -- Network interfaces on each node
378 CREATE OR REPLACE VIEW node_interfaces AS
379 SELECT node_id,
380 array_accum(interface_id) AS interface_ids
381 FROM interfaces_ordered
382 GROUP BY node_id;
383
384 --------------------------------------------------------------------------------
385 -- Interface settings
386 --------------------------------------------------------------------------------
387
388 CREATE TABLE interface_setting (
389     interface_setting_id serial PRIMARY KEY,            -- Interface Setting Identifier
390     interface_id integer REFERENCES interfaces NOT NULL,-- the interface this applies to
391     tag_type_id integer REFERENCES tag_types NOT NULL,  -- the setting type
392     value text                                          -- value attached
393 ) WITH OIDS;
394
395 CREATE OR REPLACE VIEW interface_settings AS 
396 SELECT interface_id,
397 array_accum(interface_setting_id) AS interface_setting_ids
398 FROM interface_setting
399 GROUP BY interface_id;
400
401 CREATE OR REPLACE VIEW view_interface_settings AS
402 SELECT
403 interface_setting.interface_setting_id,
404 interface_setting.interface_id,
405 tag_types.tag_type_id,
406 tag_types.tagname,
407 tag_types.description,
408 tag_types.category,
409 tag_types.min_role_id,
410 interface_setting.value
411 FROM interface_setting
412 INNER JOIN tag_types USING (tag_type_id);
413
414 CREATE OR REPLACE VIEW view_interfaces AS
415 SELECT
416 interfaces.interface_id,
417 interfaces.node_id,
418 interfaces.is_primary,
419 interfaces.type,
420 interfaces.method,
421 interfaces.ip,
422 interfaces.mac,
423 interfaces.gateway,
424 interfaces.network,
425 interfaces.broadcast,
426 interfaces.netmask,
427 interfaces.dns1,
428 interfaces.dns2,
429 interfaces.bwlimit,
430 interfaces.hostname,
431 COALESCE((SELECT interface_setting_ids FROM interface_settings WHERE interface_settings.interface_id = interfaces.interface_id), '{}') AS interface_setting_ids
432 FROM interfaces;
433
434 --------------------------------------------------------------------------------
435 -- ilinks : links between interfaces
436 --------------------------------------------------------------------------------
437 CREATE TABLE ilink (
438        ilink_id serial PRIMARY KEY,                             -- id
439        tag_type_id integer REFERENCES tag_types,                -- id of the tag type
440        src_interface_id integer REFERENCES interfaces not NULL, -- id of src interface
441        dst_interface_id integer REFERENCES interfaces NOT NULL, -- id of dst interface
442        value text                                               -- optional value on the link
443 ) WITH OIDS;
444
445 CREATE OR REPLACE VIEW view_ilinks AS
446 SELECT * FROM tag_types 
447 INNER JOIN ilink USING (tag_type_id);
448
449 -- expose node_ids ???
450 -- -- cannot mention the same table twice in a join ?
451 -- -- CREATE OR REPLACE VIEW ilink_src_node AS 
452 -- SELECT 
453 -- ilink.tag_type_id,
454 -- ilink.src_interface_id,
455 -- interfaces.node_id AS src_node_id,
456 -- ilink.dst_interface_id
457 -- FROM ilink 
458 -- INNER JOIN interfaces ON ilink.src_interface_id = interfaces.interface_id;
459 -- 
460 -- CREATE OR REPLACE VIEW ilink_nodes AS
461 -- SELECT 
462 -- ilink_src_node.*,
463 -- interfaces.node_id as dst_node_id
464 -- FROM ilink_src_node
465 -- INNER JOIN interfaces ON ilink_src_node.dst_interface_id = interfaces.interface_id;
466
467 --------------------------------------------------------------------------------
468 -- Node groups
469 --------------------------------------------------------------------------------
470
471 -- Node groups
472 CREATE TABLE nodegroups (
473     nodegroup_id serial PRIMARY KEY,            -- Group identifier
474     groupname text UNIQUE NOT NULL,             -- Group name 
475     tag_type_id integer REFERENCES tag_types,   -- node is in nodegroup if it has this tag defined
476     -- can be null, make management faster & easier
477     tagvalue text                               -- with this value attached
478 ) WITH OIDS;
479
480 -- xxx - first rough implem. similar to former semantics but might be slow
481 CREATE OR REPLACE VIEW nodegroup_node AS
482 SELECT nodegroup_id, node_id 
483 FROM tag_types 
484 JOIN node_tag 
485 USING (tag_type_id) 
486 JOIN nodegroups 
487 USING (tag_type_id,tagvalue);
488
489 CREATE OR REPLACE VIEW nodegroup_nodes AS
490 SELECT nodegroup_id,
491 array_accum(node_id) AS node_ids
492 FROM nodegroup_node
493 GROUP BY nodegroup_id;
494
495 -- Node groups that each node is a member of
496 CREATE OR REPLACE VIEW node_nodegroups AS
497 SELECT node_id,
498 array_accum(nodegroup_id) AS nodegroup_ids
499 FROM nodegroup_node
500 GROUP BY node_id;
501
502 --------------------------------------------------------------------------------
503 -- Node configuration files
504 --------------------------------------------------------------------------------
505
506 CREATE TABLE conf_files (
507     conf_file_id serial PRIMARY KEY,                    -- Configuration file identifier
508     enabled bool NOT NULL DEFAULT true,                 -- Configuration file is active
509     source text NOT NULL,                               -- Relative path on the boot server
510                                                         -- where file can be downloaded
511     dest text NOT NULL,                                 -- Absolute path where file should be installed
512     file_permissions text NOT NULL DEFAULT '0644',      -- chmod(1) permissions
513     file_owner text NOT NULL DEFAULT 'root',            -- chown(1) owner
514     file_group text NOT NULL DEFAULT 'root',            -- chgrp(1) owner
515     preinstall_cmd text,                                -- Shell command to execute prior to installing
516     postinstall_cmd text,                               -- Shell command to execute after installing
517     error_cmd text,                                     -- Shell command to execute if any error occurs
518     ignore_cmd_errors bool NOT NULL DEFAULT false,      -- Install file anyway even if an error occurs
519     always_update bool NOT NULL DEFAULT false           -- Always attempt to install file even if unchanged
520 ) WITH OIDS;
521
522 CREATE TABLE conf_file_node (
523     conf_file_id integer REFERENCES conf_files NOT NULL,        -- Configuration file identifier
524     node_id integer REFERENCES nodes NOT NULL,                  -- Node identifier
525     PRIMARY KEY (conf_file_id, node_id)
526 );
527 CREATE INDEX conf_file_node_conf_file_id_idx ON conf_file_node (conf_file_id);
528 CREATE INDEX conf_file_node_node_id_idx ON conf_file_node (node_id);
529
530 -- Nodes linked to each configuration file
531 CREATE OR REPLACE VIEW conf_file_nodes AS
532 SELECT conf_file_id,
533 array_accum(node_id) AS node_ids
534 FROM conf_file_node
535 GROUP BY conf_file_id;
536
537 -- Configuration files linked to each node
538 CREATE OR REPLACE VIEW node_conf_files AS
539 SELECT node_id,
540 array_accum(conf_file_id) AS conf_file_ids
541 FROM conf_file_node
542 GROUP BY node_id;
543
544 CREATE TABLE conf_file_nodegroup (
545     conf_file_id integer REFERENCES conf_files NOT NULL,        -- Configuration file identifier
546     nodegroup_id integer REFERENCES nodegroups NOT NULL,        -- Node group identifier
547     PRIMARY KEY (conf_file_id, nodegroup_id)
548 );
549 CREATE INDEX conf_file_nodegroup_conf_file_id_idx ON conf_file_nodegroup (conf_file_id);
550 CREATE INDEX conf_file_nodegroup_nodegroup_id_idx ON conf_file_nodegroup (nodegroup_id);
551
552 -- Node groups linked to each configuration file
553 CREATE OR REPLACE VIEW conf_file_nodegroups AS
554 SELECT conf_file_id,
555 array_accum(nodegroup_id) AS nodegroup_ids
556 FROM conf_file_nodegroup
557 GROUP BY conf_file_id;
558
559 -- Configuration files linked to each node group
560 CREATE OR REPLACE VIEW nodegroup_conf_files AS
561 SELECT nodegroup_id,
562 array_accum(conf_file_id) AS conf_file_ids
563 FROM conf_file_nodegroup
564 GROUP BY nodegroup_id;
565
566 --------------------------------------------------------------------------------
567 -- Power control units (PCUs)
568 --------------------------------------------------------------------------------
569
570 CREATE TABLE pcus (
571     -- Mandatory
572     pcu_id serial PRIMARY KEY,                          -- PCU identifier
573     site_id integer REFERENCES sites NOT NULL,          -- Site identifier
574     hostname text,                                      -- Hostname, not necessarily unique 
575                                                         -- (multiple logical sites could use the same PCU)
576     ip text NOT NULL,                                   -- IP, not necessarily unique
577
578     -- Optional
579     protocol text,                                      -- Protocol, e.g. ssh or https or telnet
580     username text,                                      -- Username, if applicable
581     "password" text,                                    -- Password, if applicable
582     model text,                                         -- Model, e.g. BayTech or iPal
583     notes text                                          -- Random notes
584 ) WITH OIDS;
585 CREATE INDEX pcus_site_id_idx ON pcus (site_id);
586
587 CREATE OR REPLACE VIEW site_pcus AS
588 SELECT site_id,
589 array_accum(pcu_id) AS pcu_ids
590 FROM pcus
591 GROUP BY site_id;
592
593 CREATE TABLE pcu_node (
594     pcu_id integer REFERENCES pcus NOT NULL,            -- PCU identifier
595     node_id integer REFERENCES nodes NOT NULL,          -- Node identifier
596     port integer NOT NULL,                              -- Port number
597     PRIMARY KEY (pcu_id, node_id),                      -- The same node cannot be controlled by different ports
598     UNIQUE (pcu_id, port)                               -- The same port cannot control multiple nodes
599 );
600 CREATE INDEX pcu_node_pcu_id_idx ON pcu_node (pcu_id);
601 CREATE INDEX pcu_node_node_id_idx ON pcu_node (node_id);
602
603 CREATE OR REPLACE VIEW node_pcus AS
604 SELECT node_id,
605 array_accum(pcu_id) AS pcu_ids,
606 array_accum(port) AS ports
607 FROM pcu_node
608 GROUP BY node_id;
609
610 CREATE OR REPLACE VIEW pcu_nodes AS
611 SELECT pcu_id,
612 array_accum(node_id) AS node_ids,
613 array_accum(port) AS ports
614 FROM pcu_node
615 GROUP BY pcu_id;
616
617 --------------------------------------------------------------------------------
618 -- Slices
619 --------------------------------------------------------------------------------
620
621 CREATE TABLE slice_instantiations (
622     instantiation text PRIMARY KEY
623 ) WITH OIDS;
624 INSERT INTO slice_instantiations (instantiation) VALUES 
625        ('not-instantiated'),                            -- Placeholder slice
626        ('plc-instantiated'),                            -- Instantiated by Node Manager
627        ('delegated'),                                   -- Manually instantiated
628        ('nm-controller');                               -- NM Controller
629
630 -- Slices
631 CREATE TABLE slices (
632     slice_id serial PRIMARY KEY,                        -- Slice identifier
633     site_id integer REFERENCES sites NOT NULL,          -- Site identifier
634
635     name text NOT NULL,                                 -- Slice name
636     instantiation text REFERENCES slice_instantiations  -- Slice state, e.g. plc-instantiated
637                   NOT NULL DEFAULT 'plc-instantiated',                  
638     url text,                                           -- Project URL
639     description text,                                   -- Project description
640
641     max_nodes integer NOT NULL DEFAULT 100,             -- Maximum number of nodes that can be assigned to this slice
642
643     creator_person_id integer REFERENCES persons,       -- Creator
644     created timestamp without time zone NOT NULL        -- Creation date
645         DEFAULT CURRENT_TIMESTAMP, 
646     expires timestamp without time zone NOT NULL        -- Expiration date
647         DEFAULT CURRENT_TIMESTAMP + '2 weeks', 
648
649     is_deleted boolean NOT NULL DEFAULT false
650 ) WITH OIDS;
651 CREATE INDEX slices_site_id_idx ON slices (site_id);
652 CREATE INDEX slices_name_idx ON slices (name);
653
654 -- Slivers
655 CREATE TABLE slice_node (
656     slice_id integer REFERENCES slices NOT NULL,        -- Slice identifier
657     node_id integer REFERENCES nodes NOT NULL,          -- Node identifier
658     PRIMARY KEY (slice_id, node_id)
659 ) WITH OIDS;
660 CREATE INDEX slice_node_slice_id_idx ON slice_node (slice_id);
661 CREATE INDEX slice_node_node_id_idx ON slice_node (node_id);
662
663 -- Synonym for slice_node
664 CREATE OR REPLACE VIEW slivers AS
665 SELECT * FROM slice_node;
666
667 -- Nodes in each slice
668 CREATE OR REPLACE VIEW slice_nodes AS
669 SELECT slice_id,
670 array_accum(node_id) AS node_ids
671 FROM slice_node
672 GROUP BY slice_id;
673
674 -- Slices on each node
675 CREATE OR REPLACE VIEW node_slices AS
676 SELECT node_id,
677 array_accum(slice_id) AS slice_ids
678 FROM slice_node
679 GROUP BY node_id;
680
681 -- Slices at each site
682 CREATE OR REPLACE VIEW site_slices AS
683 SELECT site_id,
684 array_accum(slice_id) AS slice_ids
685 FROM slices
686 WHERE is_deleted is false
687 GROUP BY site_id;
688
689 -- Slice membership
690 CREATE TABLE slice_person (
691     slice_id integer REFERENCES slices NOT NULL,        -- Slice identifier
692     person_id integer REFERENCES persons NOT NULL,      -- Account identifier
693     PRIMARY KEY (slice_id, person_id)
694 ) WITH OIDS;
695 CREATE INDEX slice_person_slice_id_idx ON slice_person (slice_id);
696 CREATE INDEX slice_person_person_id_idx ON slice_person (person_id);
697
698 -- Members of the slice
699 CREATE OR REPLACE VIEW slice_persons AS
700 SELECT slice_id,
701 array_accum(person_id) AS person_ids
702 FROM slice_person
703 GROUP BY slice_id;
704
705 -- Slices of which each person is a member
706 CREATE OR REPLACE VIEW person_slices AS
707 SELECT person_id,
708 array_accum(slice_id) AS slice_ids
709 FROM slice_person
710 GROUP BY person_id;
711
712 --------------------------------------------------------------------------------
713 -- Slice whitelist
714 --------------------------------------------------------------------------------
715 -- slice whitelist on nodes
716 CREATE TABLE node_slice_whitelist (
717     node_id integer REFERENCES nodes NOT NULL,          -- Node id of whitelist
718     slice_id integer REFERENCES slices NOT NULL,        -- Slice id thats allowd on this node
719     PRIMARY KEY (node_id, slice_id)
720 ) WITH OIDS;
721 CREATE INDEX node_slice_whitelist_node_id_idx ON node_slice_whitelist (node_id);
722 CREATE INDEX node_slice_whitelist_slice_id_idx ON node_slice_whitelist (slice_id);
723
724 -- Slices on each node
725 CREATE OR REPLACE VIEW node_slices_whitelist AS
726 SELECT node_id,
727 array_accum(slice_id) AS slice_ids_whitelist
728 FROM node_slice_whitelist
729 GROUP BY node_id;
730
731 --------------------------------------------------------------------------------
732 -- Slice attributes
733 --------------------------------------------------------------------------------
734
735 -- Slice/sliver attributes
736 CREATE TABLE slice_attribute (
737     slice_attribute_id serial PRIMARY KEY,              -- Slice attribute identifier
738     slice_id integer REFERENCES slices NOT NULL,        -- Slice identifier
739     node_id integer REFERENCES nodes,                   -- Sliver attribute if set
740     nodegroup_id integer REFERENCES nodegroups,         -- Node group attribute if set
741     tag_type_id integer REFERENCES tag_types NOT NULL,  -- Attribute type identifier
742     value text
743 ) WITH OIDS;
744 CREATE INDEX slice_attribute_slice_id_idx ON slice_attribute (slice_id);
745 CREATE INDEX slice_attribute_node_id_idx ON slice_attribute (node_id);
746 CREATE INDEX slice_attribute_nodegroup_id_idx ON slice_attribute (nodegroup_id);
747
748 CREATE OR REPLACE VIEW slice_attributes AS
749 SELECT slice_id,
750 array_accum(slice_attribute_id) AS slice_attribute_ids
751 FROM slice_attribute
752 GROUP BY slice_id;
753
754 --------------------------------------------------------------------------------
755 -- Initscripts
756 --------------------------------------------------------------------------------
757
758 -- Initscripts
759 CREATE TABLE initscripts (
760     initscript_id serial PRIMARY KEY,                   -- Initscript identifier
761     name text NOT NULL,                                 -- Initscript name
762     enabled bool NOT NULL DEFAULT true,                 -- Initscript is active
763     script text NOT NULL,                               -- Initscript body
764     UNIQUE (name)
765 ) WITH OIDS;
766 CREATE INDEX initscripts_name_idx ON initscripts (name);
767
768
769 --------------------------------------------------------------------------------
770 -- Peers
771 --------------------------------------------------------------------------------
772
773 -- Peers
774 CREATE TABLE peers (
775     peer_id serial PRIMARY KEY,                         -- Peer identifier
776     peername text NOT NULL,                             -- Peer name
777     peer_url text NOT NULL,                             -- (HTTPS) URL of the peer PLCAPI interface
778     cacert text,                                        -- (SSL) Public certificate of peer API server
779     key text,                                           -- (GPG) Public key used for authentication
780     deleted boolean NOT NULL DEFAULT false
781 ) WITH OIDS;
782 CREATE INDEX peers_peername_idx ON peers (peername) WHERE deleted IS false;
783
784 -- Objects at each peer
785 CREATE TABLE peer_site (
786     site_id integer REFERENCES sites PRIMARY KEY,       -- Local site identifier
787     peer_id integer REFERENCES peers NOT NULL,          -- Peer identifier
788     peer_site_id integer NOT NULL,                      -- Foreign site identifier at peer
789     UNIQUE (peer_id, peer_site_id)                      -- The same foreign site should not be cached twice
790 ) WITH OIDS;
791 CREATE INDEX peer_site_peer_id_idx ON peers (peer_id);
792
793 CREATE OR REPLACE VIEW peer_sites AS
794 SELECT peer_id,
795 array_accum(site_id) AS site_ids,
796 array_accum(peer_site_id) AS peer_site_ids
797 FROM peer_site
798 GROUP BY peer_id;
799
800 CREATE TABLE peer_person (
801     person_id integer REFERENCES persons PRIMARY KEY,   -- Local user identifier
802     peer_id integer REFERENCES peers NOT NULL,          -- Peer identifier
803     peer_person_id integer NOT NULL,                    -- Foreign user identifier at peer
804     UNIQUE (peer_id, peer_person_id)                    -- The same foreign user should not be cached twice
805 ) WITH OIDS;
806 CREATE INDEX peer_person_peer_id_idx ON peer_person (peer_id);
807
808 CREATE OR REPLACE VIEW peer_persons AS
809 SELECT peer_id,
810 array_accum(person_id) AS person_ids,
811 array_accum(peer_person_id) AS peer_person_ids
812 FROM peer_person
813 GROUP BY peer_id;
814
815 CREATE TABLE peer_key (
816     key_id integer REFERENCES keys PRIMARY KEY,         -- Local key identifier
817     peer_id integer REFERENCES peers NOT NULL,          -- Peer identifier
818     peer_key_id integer NOT NULL,                       -- Foreign key identifier at peer
819     UNIQUE (peer_id, peer_key_id)                       -- The same foreign key should not be cached twice
820 ) WITH OIDS;
821 CREATE INDEX peer_key_peer_id_idx ON peer_key (peer_id);
822
823 CREATE OR REPLACE VIEW peer_keys AS
824 SELECT peer_id,
825 array_accum(key_id) AS key_ids,
826 array_accum(peer_key_id) AS peer_key_ids
827 FROM peer_key
828 GROUP BY peer_id;
829
830 CREATE TABLE peer_node (
831     node_id integer REFERENCES nodes PRIMARY KEY,       -- Local node identifier
832     peer_id integer REFERENCES peers NOT NULL,          -- Peer identifier
833     peer_node_id integer NOT NULL,                      -- Foreign node identifier
834     UNIQUE (peer_id, peer_node_id)                      -- The same foreign node should not be cached twice
835 ) WITH OIDS;
836 CREATE INDEX peer_node_peer_id_idx ON peer_node (peer_id);
837
838 CREATE OR REPLACE VIEW peer_nodes AS
839 SELECT peer_id,
840 array_accum(node_id) AS node_ids,
841 array_accum(peer_node_id) AS peer_node_ids
842 FROM peer_node
843 GROUP BY peer_id;
844
845 CREATE TABLE peer_slice (
846     slice_id integer REFERENCES slices PRIMARY KEY,     -- Local slice identifier
847     peer_id integer REFERENCES peers NOT NULL,          -- Peer identifier
848     peer_slice_id integer NOT NULL,                     -- Slice identifier at peer
849     UNIQUE (peer_id, peer_slice_id)                     -- The same foreign slice should not be cached twice
850 ) WITH OIDS;
851 CREATE INDEX peer_slice_peer_id_idx ON peer_slice (peer_id);
852
853 CREATE OR REPLACE VIEW peer_slices AS
854 SELECT peer_id,
855 array_accum(slice_id) AS slice_ids,
856 array_accum(peer_slice_id) AS peer_slice_ids
857 FROM peer_slice
858 GROUP BY peer_id;
859
860 --------------------------------------------------------------------------------
861 -- Authenticated sessions
862 --------------------------------------------------------------------------------
863
864 -- Authenticated sessions
865 CREATE TABLE sessions (
866     session_id text PRIMARY KEY,                        -- Session identifier
867     expires timestamp without time zone
868 ) WITH OIDS;
869
870 -- People can have multiple sessions
871 CREATE TABLE person_session (
872     person_id integer REFERENCES persons NOT NULL,      -- Account identifier
873     session_id text REFERENCES sessions NOT NULL,       -- Session identifier
874     PRIMARY KEY (person_id, session_id),
875     UNIQUE (session_id)                                 -- Sessions are unique
876 ) WITH OIDS;
877 CREATE INDEX person_session_person_id_idx ON person_session (person_id);
878
879 -- Nodes can have only one session
880 CREATE TABLE node_session (
881     node_id integer REFERENCES nodes NOT NULL,          -- Node identifier
882     session_id text REFERENCES sessions NOT NULL,       -- Session identifier
883     UNIQUE (node_id),                                   -- Nodes can have only one session
884     UNIQUE (session_id)                                 -- Sessions are unique
885 ) WITH OIDS;
886
887 -------------------------------------------------------------------------------
888 -- PCU Types
889 ------------------------------------------------------------------------------
890 CREATE TABLE pcu_types (
891     pcu_type_id serial PRIMARY KEY,
892     model text NOT NULL ,                               -- PCU model name
893     name text                                           -- Full PCU model name
894 ) WITH OIDS;
895 CREATE INDEX pcu_types_model_idx ON pcu_types (model);
896
897 CREATE TABLE pcu_protocol_type (
898     pcu_protocol_type_id serial PRIMARY KEY,
899     pcu_type_id integer REFERENCES pcu_types NOT NULL,  -- PCU type identifier
900     port integer NOT NULL,                              -- PCU port
901     protocol text NOT NULL,                             -- Protocol
902     supported boolean NOT NULL DEFAULT True             -- Does PLC support
903 ) WITH OIDS;
904 CREATE INDEX pcu_protocol_type_pcu_type_id ON pcu_protocol_type (pcu_type_id);
905
906
907 CREATE OR REPLACE VIEW pcu_protocol_types AS
908 SELECT pcu_type_id,
909 array_accum(pcu_protocol_type_id) as pcu_protocol_type_ids
910 FROM pcu_protocol_type
911 GROUP BY pcu_type_id;
912
913 --------------------------------------------------------------------------------
914 -- Message templates
915 --------------------------------------------------------------------------------
916
917 CREATE TABLE messages (
918     message_id text PRIMARY KEY,                        -- Message name
919     subject text,                                       -- Message summary
920     template text,                                      -- Message template
921     enabled bool NOT NULL DEFAULT true                  -- Whether message is enabled
922 ) WITH OIDS;
923
924 --------------------------------------------------------------------------------
925 -- Events
926 --------------------------------------------------------------------------------
927
928 -- Events
929 CREATE TABLE events (
930     event_id serial PRIMARY KEY,                        -- Event identifier
931     person_id integer REFERENCES persons,               -- Person responsible for event, if any
932     node_id integer REFERENCES nodes,                   -- Node responsible for event, if any
933     auth_type text,                                     -- Type of auth used. i.e. AuthMethod
934     fault_code integer NOT NULL DEFAULT 0,              -- Did this event result in error
935     call_name text NOT NULL,                            -- Call responsible for this event
936     call text NOT NULL,                                 -- Call responsible for this event, including parameters
937     message text,                                       -- High level description of this event
938     runtime float DEFAULT 0,                            -- Event run time
939     time timestamp without time zone NOT NULL           -- Event timestamp
940         DEFAULT CURRENT_TIMESTAMP
941 ) WITH OIDS;
942
943 -- Database object(s) that may have been affected by a particular event
944 CREATE TABLE event_object (
945     event_id integer REFERENCES events NOT NULL,        -- Event identifier
946     object_id integer NOT NULL,                         -- Object identifier
947     object_type text NOT NULL Default 'Unknown'         -- What type of object is this event affecting
948 ) WITH OIDS;
949 CREATE INDEX event_object_event_id_idx ON event_object (event_id);
950 CREATE INDEX event_object_object_id_idx ON event_object (object_id);
951 CREATE INDEX event_object_object_type_idx ON event_object (object_type);
952
953 CREATE OR REPLACE VIEW event_objects AS
954 SELECT event_id,
955 array_accum(object_id) AS object_ids,
956 array_accum(object_type) AS object_types
957 FROM event_object
958 GROUP BY event_id;
959
960 --------------------------------------------------------------------------------
961 -- Useful views
962 --------------------------------------------------------------------------------
963 CREATE OR REPLACE VIEW view_pcu_types AS
964 SELECT
965 pcu_types.pcu_type_id,
966 pcu_types.model,
967 pcu_types.name,
968 COALESCE((SELECT pcu_protocol_type_ids FROM pcu_protocol_types
969                  WHERE pcu_protocol_types.pcu_type_id = pcu_types.pcu_type_id), '{}') 
970 AS pcu_protocol_type_ids
971 FROM pcu_types;
972
973 CREATE OR REPLACE VIEW view_events AS
974 SELECT
975 events.event_id,
976 events.person_id,
977 events.node_id,
978 events.auth_type,
979 events.fault_code,
980 events.call_name,
981 events.call,
982 events.message,
983 events.runtime,
984 CAST(date_part('epoch', events.time) AS bigint) AS time,
985 COALESCE((SELECT object_ids FROM event_objects WHERE event_objects.event_id = events.event_id), '{}') AS object_ids,
986 COALESCE((SELECT object_types FROM event_objects WHERE event_objects.event_id = events.event_id), '{}') AS object_types
987 FROM events;
988
989 CREATE OR REPLACE VIEW view_event_objects AS 
990 SELECT
991 events.event_id,
992 events.person_id,
993 events.node_id,
994 events.fault_code,
995 events.call_name,
996 events.call,
997 events.message,
998 events.runtime,
999 CAST(date_part('epoch', events.time) AS bigint) AS time,
1000 event_object.object_id,
1001 event_object.object_type
1002 FROM events LEFT JOIN event_object USING (event_id);
1003
1004 CREATE OR REPLACE VIEW view_persons AS
1005 SELECT
1006 persons.person_id,
1007 persons.email,
1008 persons.first_name,
1009 persons.last_name,
1010 persons.deleted,
1011 persons.enabled,
1012 persons.password,
1013 persons.verification_key,
1014 CAST(date_part('epoch', persons.verification_expires) AS bigint) AS verification_expires,
1015 persons.title,
1016 persons.phone,
1017 persons.url,
1018 persons.bio,
1019 CAST(date_part('epoch', persons.date_created) AS bigint) AS date_created,
1020 CAST(date_part('epoch', persons.last_updated) AS bigint) AS last_updated,
1021 peer_person.peer_id,
1022 peer_person.peer_person_id,
1023 COALESCE((SELECT role_ids FROM person_roles WHERE person_roles.person_id = persons.person_id), '{}') AS role_ids,
1024 COALESCE((SELECT roles FROM person_roles WHERE person_roles.person_id = persons.person_id), '{}') AS roles,
1025 COALESCE((SELECT site_ids FROM person_sites WHERE person_sites.person_id = persons.person_id), '{}') AS site_ids,
1026 COALESCE((SELECT key_ids FROM person_keys WHERE person_keys.person_id = persons.person_id), '{}') AS key_ids,
1027 COALESCE((SELECT slice_ids FROM person_slices WHERE person_slices.person_id = persons.person_id), '{}') AS slice_ids
1028 FROM persons
1029 LEFT JOIN peer_person USING (person_id);
1030
1031 CREATE OR REPLACE VIEW view_peers AS
1032 SELECT 
1033 peers.*, 
1034 COALESCE((SELECT site_ids FROM peer_sites WHERE peer_sites.peer_id = peers.peer_id), '{}') AS site_ids,
1035 COALESCE((SELECT peer_site_ids FROM peer_sites WHERE peer_sites.peer_id = peers.peer_id), '{}') AS peer_site_ids,
1036 COALESCE((SELECT person_ids FROM peer_persons WHERE peer_persons.peer_id = peers.peer_id), '{}') AS person_ids,
1037 COALESCE((SELECT peer_person_ids FROM peer_persons WHERE peer_persons.peer_id = peers.peer_id), '{}') AS peer_person_ids,
1038 COALESCE((SELECT key_ids FROM peer_keys WHERE peer_keys.peer_id = peers.peer_id), '{}') AS key_ids,
1039 COALESCE((SELECT peer_key_ids FROM peer_keys WHERE peer_keys.peer_id = peers.peer_id), '{}') AS peer_key_ids,
1040 COALESCE((SELECT node_ids FROM peer_nodes WHERE peer_nodes.peer_id = peers.peer_id), '{}') AS node_ids,
1041 COALESCE((SELECT peer_node_ids FROM peer_nodes WHERE peer_nodes.peer_id = peers.peer_id), '{}') AS peer_node_ids,
1042 COALESCE((SELECT slice_ids FROM peer_slices WHERE peer_slices.peer_id = peers.peer_id), '{}') AS slice_ids,
1043 COALESCE((SELECT peer_slice_ids FROM peer_slices WHERE peer_slices.peer_id = peers.peer_id), '{}') AS peer_slice_ids
1044 FROM peers;
1045
1046 CREATE OR REPLACE VIEW view_nodes AS
1047 SELECT
1048 nodes.node_id,
1049 nodes.hostname,
1050 nodes.site_id,
1051 nodes.boot_state,
1052 nodes.deleted,
1053 nodes.model,
1054 nodes.boot_nonce,
1055 nodes.version,
1056 nodes.ssh_rsa_key,
1057 nodes.key,
1058 CAST(date_part('epoch', nodes.date_created) AS bigint) AS date_created,
1059 CAST(date_part('epoch', nodes.last_updated) AS bigint) AS last_updated,
1060 CAST(date_part('epoch', nodes.last_contact) AS bigint) AS last_contact,  
1061 peer_node.peer_id,
1062 peer_node.peer_node_id,
1063 COALESCE((SELECT interface_ids FROM node_interfaces 
1064                  WHERE node_interfaces.node_id = nodes.node_id), '{}') 
1065 AS interface_ids,
1066 COALESCE((SELECT nodegroup_ids FROM node_nodegroups 
1067                  WHERE node_nodegroups.node_id = nodes.node_id), '{}') 
1068 AS nodegroup_ids,
1069 COALESCE((SELECT slice_ids FROM node_slices 
1070                  WHERE node_slices.node_id = nodes.node_id), '{}') 
1071 AS slice_ids,
1072 COALESCE((SELECT slice_ids_whitelist FROM node_slices_whitelist 
1073                  WHERE node_slices_whitelist.node_id = nodes.node_id), '{}') 
1074 AS slice_ids_whitelist,
1075 COALESCE((SELECT pcu_ids FROM node_pcus 
1076                  WHERE node_pcus.node_id = nodes.node_id), '{}') 
1077 AS pcu_ids,
1078 COALESCE((SELECT ports FROM node_pcus
1079                  WHERE node_pcus.node_id = nodes.node_id), '{}') 
1080 AS ports,
1081 COALESCE((SELECT conf_file_ids FROM node_conf_files
1082                  WHERE node_conf_files.node_id = nodes.node_id), '{}') 
1083 AS conf_file_ids,
1084 COALESCE((SELECT tag_ids FROM node_tags 
1085                  WHERE node_tags.node_id = nodes.node_id), '{}') 
1086 AS tag_ids,
1087 node_session.session_id AS session
1088 FROM nodes
1089 LEFT JOIN peer_node USING (node_id)
1090 LEFT JOIN node_session USING (node_id);
1091
1092 CREATE OR REPLACE VIEW view_nodegroups AS
1093 SELECT
1094 nodegroups.*,
1095 tag_types.tagname,
1096 COALESCE((SELECT conf_file_ids FROM nodegroup_conf_files 
1097                  WHERE nodegroup_conf_files.nodegroup_id = nodegroups.nodegroup_id), '{}') 
1098 AS conf_file_ids,
1099 COALESCE((SELECT node_ids FROM nodegroup_nodes 
1100                  WHERE nodegroup_nodes.nodegroup_id = nodegroups.nodegroup_id), '{}') 
1101 AS node_ids
1102 FROM nodegroups INNER JOIN tag_types USING (tag_type_id);
1103
1104 CREATE OR REPLACE VIEW view_conf_files AS
1105 SELECT
1106 conf_files.*,
1107 COALESCE((SELECT node_ids FROM conf_file_nodes 
1108                  WHERE conf_file_nodes.conf_file_id = conf_files.conf_file_id), '{}') 
1109 AS node_ids,
1110 COALESCE((SELECT nodegroup_ids FROM conf_file_nodegroups 
1111                  WHERE conf_file_nodegroups.conf_file_id = conf_files.conf_file_id), '{}') 
1112 AS nodegroup_ids
1113 FROM conf_files;
1114
1115 CREATE OR REPLACE VIEW view_pcus AS
1116 SELECT
1117 pcus.*,
1118 COALESCE((SELECT node_ids FROM pcu_nodes WHERE pcu_nodes.pcu_id = pcus.pcu_id), '{}') AS node_ids,
1119 COALESCE((SELECT ports FROM pcu_nodes WHERE pcu_nodes.pcu_id = pcus.pcu_id), '{}') AS ports
1120 FROM pcus;
1121
1122 CREATE OR REPLACE VIEW view_sites AS
1123 SELECT
1124 sites.site_id,
1125 sites.login_base,
1126 sites.name,
1127 sites.abbreviated_name,
1128 sites.deleted,
1129 sites.enabled,
1130 sites.is_public,
1131 sites.max_slices,
1132 sites.max_slivers,
1133 sites.latitude,
1134 sites.longitude,
1135 sites.url,
1136 sites.ext_consortium_id,
1137 CAST(date_part('epoch', sites.date_created) AS bigint) AS date_created,
1138 CAST(date_part('epoch', sites.last_updated) AS bigint) AS last_updated,
1139 peer_site.peer_id,
1140 peer_site.peer_site_id,
1141 COALESCE((SELECT person_ids FROM site_persons WHERE site_persons.site_id = sites.site_id), '{}') AS person_ids,
1142 COALESCE((SELECT node_ids FROM site_nodes WHERE site_nodes.site_id = sites.site_id), '{}') AS node_ids,
1143 COALESCE((SELECT address_ids FROM site_addresses WHERE site_addresses.site_id = sites.site_id), '{}') AS address_ids,
1144 COALESCE((SELECT slice_ids FROM site_slices WHERE site_slices.site_id = sites.site_id), '{}') AS slice_ids,
1145 COALESCE((SELECT pcu_ids FROM site_pcus WHERE site_pcus.site_id = sites.site_id), '{}') AS pcu_ids
1146 FROM sites
1147 LEFT JOIN peer_site USING (site_id);
1148
1149 CREATE OR REPLACE VIEW view_addresses AS
1150 SELECT
1151 addresses.*,
1152 COALESCE((SELECT address_type_ids FROM address_address_types WHERE address_address_types.address_id = addresses.address_id), '{}') AS address_type_ids,
1153 COALESCE((SELECT address_types FROM address_address_types WHERE address_address_types.address_id = addresses.address_id), '{}') AS address_types
1154 FROM addresses;
1155
1156 CREATE OR REPLACE VIEW view_keys AS
1157 SELECT
1158 keys.*,
1159 person_key.person_id,
1160 peer_key.peer_id,
1161 peer_key.peer_key_id
1162 FROM keys
1163 LEFT JOIN person_key USING (key_id)
1164 LEFT JOIN peer_key USING (key_id);
1165
1166 CREATE OR REPLACE VIEW view_slices AS
1167 SELECT
1168 slices.slice_id,
1169 slices.site_id,
1170 slices.name,
1171 slices.instantiation,
1172 slices.url,
1173 slices.description,
1174 slices.max_nodes,
1175 slices.creator_person_id,
1176 slices.is_deleted,
1177 CAST(date_part('epoch', slices.created) AS bigint) AS created,
1178 CAST(date_part('epoch', slices.expires) AS bigint) AS expires,
1179 peer_slice.peer_id,
1180 peer_slice.peer_slice_id,
1181 COALESCE((SELECT node_ids FROM slice_nodes WHERE slice_nodes.slice_id = slices.slice_id), '{}') AS node_ids,
1182 COALESCE((SELECT person_ids FROM slice_persons WHERE slice_persons.slice_id = slices.slice_id), '{}') AS person_ids,
1183 COALESCE((SELECT slice_attribute_ids FROM slice_attributes WHERE slice_attributes.slice_id = slices.slice_id), '{}') AS slice_attribute_ids
1184 FROM slices
1185 LEFT JOIN peer_slice USING (slice_id);
1186
1187 CREATE OR REPLACE VIEW view_slice_attributes AS
1188 SELECT
1189 slice_attribute.slice_attribute_id,
1190 slice_attribute.slice_id,
1191 slice_attribute.node_id,
1192 slice_attribute.nodegroup_id,
1193 tag_types.tag_type_id,
1194 tag_types.tagname,
1195 tag_types.description,
1196 tag_types.category,
1197 tag_types.min_role_id,
1198 slice_attribute.value
1199 FROM slice_attribute
1200 INNER JOIN tag_types USING (tag_type_id);
1201
1202 CREATE OR REPLACE VIEW view_sessions AS
1203 SELECT
1204 sessions.session_id,
1205 CAST(date_part('epoch', sessions.expires) AS bigint) AS expires,
1206 person_session.person_id,
1207 node_session.node_id
1208 FROM sessions
1209 LEFT JOIN person_session USING (session_id)
1210 LEFT JOIN node_session USING (session_id);
1211
1212 --------------------------------------------------------------------------------
1213 -- Built-in maintenance account and default site
1214 --------------------------------------------------------------------------------
1215
1216 INSERT INTO persons
1217 (first_name, last_name, email, password, enabled)
1218 VALUES
1219 ('Maintenance', 'Account', 'maint@localhost.localdomain', 'nopass', true);
1220
1221 INSERT INTO person_role (person_id, role_id) 
1222        VALUES (1, 10), (1, 20), (1, 30), (1, 40);
1223
1224 INSERT INTO sites
1225 (login_base, name, abbreviated_name, max_slices)
1226 VALUES
1227 ('pl', 'PlanetLab Central', 'PLC', 100);