- updated object_types, event_types tables
[plcapi.git] / planetlab4.sql
1 --
2 -- PlanetLab Central database schema
3 -- Version 4, 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 --
10 -- Copyright (C) 2006 The Trustees of Princeton University
11 --
12 -- $Id: planetlab4.sql,v 1.15 2006/10/18 20:54:28 tmack Exp $
13 --
14
15 --------------------------------------------------------------------------------
16 -- Aggregates and store procedures
17 --------------------------------------------------------------------------------
18
19 -- Like MySQL GROUP_CONCAT(), this function aggregates values into a
20 -- PostgreSQL array.
21 CREATE AGGREGATE array_accum (
22     sfunc = array_append,
23     basetype = anyelement,
24     stype = anyarray,
25     initcond = '{}'
26 );
27
28 --------------------------------------------------------------------------------
29 -- Accounts
30 --------------------------------------------------------------------------------
31
32 -- Accounts
33 CREATE TABLE persons (
34     -- Mandatory
35     person_id serial PRIMARY KEY, -- Account identifier
36     email text NOT NULL, -- E-mail address
37     first_name text NOT NULL, -- First name
38     last_name text NOT NULL, -- Last name
39     deleted boolean NOT NULL DEFAULT false, -- Has been deleted
40     enabled boolean NOT NULL DEFAULT false, -- Has been disabled
41
42     -- Password
43     password text NOT NULL, -- Password (md5crypted)
44     verification_key text, -- Reset password key
45     verification_expires timestamp without time zone,
46
47     -- Optional
48     title text, -- Honorific
49     phone text, -- Telephone number
50     url text, -- Home page
51     bio text, -- Biography
52
53     -- Timestamps
54     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
55     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
56 ) WITH OIDS;
57 CREATE INDEX persons_email_idx ON persons (email) WHERE deleted IS false;
58
59 --------------------------------------------------------------------------------
60 -- Sites
61 --------------------------------------------------------------------------------
62
63 -- Sites
64 CREATE TABLE sites (
65     -- Mandatory
66     site_id serial PRIMARY KEY, -- Site identifier
67     login_base text NOT NULL, -- Site slice prefix
68     name text NOT NULL, -- Site name
69     abbreviated_name text NOT NULL, -- Site abbreviated name
70     deleted boolean NOT NULL DEFAULT false, -- Has been deleted
71     is_public boolean NOT NULL DEFAULT true, -- Shows up in public lists
72     max_slices integer NOT NULL DEFAULT 0, -- Maximum number of slices
73     max_slivers integer NOT NULL DEFAULT 1000, -- Maximum number of instantiated slivers
74
75     -- Optional
76     latitude real,
77     longitude real,
78     url text,
79
80     -- Timestamps
81     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
82     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
83 ) WITH OIDS;
84 CREATE INDEX sites_login_base_idx ON sites (login_base) WHERE deleted IS false;
85
86 -- Account site membership
87 CREATE TABLE person_site (
88     person_id integer REFERENCES persons NOT NULL, -- Account identifier
89     site_id integer REFERENCES sites NOT NULL, -- Site identifier
90     is_primary boolean NOT NULL DEFAULT false, -- Is the primary site for this account
91     PRIMARY KEY (person_id, site_id)
92 );
93 CREATE INDEX person_site_person_id_idx ON person_site (person_id);
94 CREATE INDEX person_site_site_id_idx ON person_site (site_id);
95
96 -- Ordered by primary site first
97 CREATE VIEW person_site_ordered AS
98 SELECT person_id, site_id
99 FROM person_site
100 ORDER BY is_primary DESC;
101
102 -- Sites that each person is a member of
103 CREATE VIEW person_sites AS
104 SELECT person_id,
105 array_to_string(array_accum(site_id), ',') AS site_ids
106 FROM person_site_ordered
107 GROUP BY person_id;
108
109 -- Accounts at each site
110 CREATE VIEW site_persons AS
111 SELECT site_id,
112 array_to_string(array_accum(person_id), ',') AS person_ids
113 FROM person_site
114 GROUP BY site_id;
115
116 --------------------------------------------------------------------------------
117 -- Mailing Addresses
118 --------------------------------------------------------------------------------
119
120 CREATE TABLE address_types (
121     address_type_id serial PRIMARY KEY, -- Address type identifier
122     name text UNIQUE NOT NULL, -- Address type
123     description text -- Address type description
124 ) WITH OIDS;
125
126 INSERT INTO address_types (name) VALUES ('Personal');
127 INSERT INTO address_types (name) VALUES ('Shipping');
128 -- XXX Used to be Site
129 INSERT INTO address_types (name) VALUES ('Billing');
130
131 -- Mailing addresses
132 CREATE TABLE addresses (
133     address_id serial PRIMARY KEY, -- Address identifier
134     site_id integer REFERENCES sites NOT NULL, -- Site identifier
135     line1 text NOT NULL, -- Address line 1
136     line2 text, -- Address line 2
137     line3 text, -- Address line 3
138     city text NOT NULL, -- City
139     state text NOT NULL, -- State or province
140     postalcode text NOT NULL, -- Postal code
141     country text NOT NULL -- Country
142 ) WITH OIDS;
143
144 -- Each mailing address can be one of several types
145 CREATE TABLE address_address_type (
146     address_id integer REFERENCES addresses NOT NULL, -- Address identifier
147     address_type_id integer REFERENCES address_types NOT NULL -- Address type
148 ) WITH OIDS;
149
150 CREATE VIEW address_address_types AS
151 SELECT address_id,
152 array_to_string(array_accum(address_type_id), ',') AS address_type_ids,
153 array_to_string(array_accum(address_types.name), ',') AS address_types
154 FROM address_address_type
155 LEFT JOIN address_types USING (address_type_id)
156 GROUP BY address_id;
157
158 CREATE VIEW site_addresses AS
159 SELECT site_id,
160 array_to_string(array_accum(address_id), ',') AS address_ids
161 FROM addresses
162 GROUP BY site_id;
163
164 --------------------------------------------------------------------------------
165 -- Authentication Keys
166 --------------------------------------------------------------------------------
167
168 -- Valid key types
169 CREATE TABLE key_types (
170     key_type text PRIMARY KEY -- Key type
171 ) WITH OIDS;
172 INSERT INTO key_types (key_type) VALUES ('ssh');
173
174 -- Authentication keys
175 CREATE TABLE keys (
176     key_id serial PRIMARY KEY, -- Key identifier
177     key_type text REFERENCES key_types NOT NULL, -- Key type
178     key text NOT NULL, -- Key material
179     is_blacklisted boolean NOT NULL DEFAULT false -- Has been blacklisted
180 ) WITH OIDS;
181
182 -- Account authentication key(s)
183 CREATE TABLE person_key (
184     person_id integer REFERENCES persons NOT NULL, -- Account identifier
185     key_id integer REFERENCES keys NOT NULL, -- Key identifier
186     PRIMARY KEY (person_id, key_id)
187 ) WITH OIDS;
188 CREATE INDEX person_key_person_id_idx ON person_key (person_id);
189 CREATE INDEX person_key_key_id_idx ON person_key (key_id);
190
191 CREATE VIEW person_keys AS
192 SELECT person_id,
193 array_to_string(array_accum(key_id), ',') AS key_ids
194 FROM person_key
195 GROUP BY person_id;
196
197 --------------------------------------------------------------------------------
198 -- Account roles
199 --------------------------------------------------------------------------------
200
201 -- Valid account roles
202 CREATE TABLE roles (
203     role_id integer PRIMARY KEY, -- Role identifier
204     name text UNIQUE NOT NULL -- Role symbolic name
205 ) WITH OIDS;
206 INSERT INTO roles (role_id, name) VALUES (10, 'admin');
207 INSERT INTO roles (role_id, name) VALUES (20, 'pi');
208 INSERT INTO roles (role_id, name) VALUES (30, 'user');
209 INSERT INTO roles (role_id, name) VALUES (40, 'tech');
210 INSERT INTO roles (role_id, name) VALUES (1000, 'node');
211 INSERT INTO roles (role_id, name) VALUES (2000, 'anonymous');
212
213 CREATE TABLE person_role (
214     person_id integer REFERENCES persons NOT NULL, -- Account identifier
215     role_id integer REFERENCES roles NOT NULL, -- Role identifier
216     PRIMARY KEY (person_id, role_id)
217 ) WITH OIDS;
218 CREATE INDEX person_role_person_id_idx ON person_role (person_id);
219
220 -- Account roles
221 CREATE VIEW person_roles AS
222 SELECT person_id,
223 array_to_string(array_accum(role_id), ',') AS role_ids,
224 array_to_string(array_accum(roles.name), ',') AS roles
225 FROM person_role
226 LEFT JOIN roles USING (role_id)
227 GROUP BY person_id;
228
229 --------------------------------------------------------------------------------
230 -- Nodes
231 --------------------------------------------------------------------------------
232
233 -- Valid node boot states
234 CREATE TABLE boot_states (
235     boot_state text PRIMARY KEY
236 ) WITH OIDS;
237 INSERT INTO boot_states (boot_state) VALUES ('boot');
238 INSERT INTO boot_states (boot_state) VALUES ('dbg');
239 INSERT INTO boot_states (boot_state) VALUES ('inst');
240 INSERT INTO boot_states (boot_state) VALUES ('rins');
241 INSERT INTO boot_states (boot_state) VALUES ('rcnf');
242 INSERT INTO boot_states (boot_state) VALUES ('new');
243
244 -- Nodes
245 CREATE TABLE nodes (
246     -- Mandatory
247     node_id serial PRIMARY KEY, -- Node identifier
248     hostname text NOT NULL, -- Node hostname
249     site_id integer REFERENCES sites NOT NULL, -- At which site
250     boot_state text REFERENCES boot_states NOT NULL DEFAULT 'inst', -- Node boot state
251     deleted boolean NOT NULL DEFAULT false, -- Is deleted
252
253     -- Optional
254     model text, -- Hardware make and model
255     boot_nonce text, -- Random nonce updated by Boot Manager
256     version text, -- Boot CD version string updated by Boot Manager
257     -- XXX Should be key_id integer REFERENCES keys
258     ssh_rsa_key text, -- SSH host key updated by Boot Manager
259     key text, -- Node key generated by API when configuration file is downloaded
260     session text, -- Session key generated by PLC when Boot Manager authenticates
261
262     -- Timestamps
263     date_created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP,
264     last_updated timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP
265 ) WITH OIDS;
266 CREATE INDEX nodes_hostname_idx ON nodes (hostname) WHERE deleted IS false;
267 CREATE INDEX nodes_site_id_idx ON nodes (site_id) WHERE deleted IS false;
268
269 -- Nodes at each site
270 CREATE VIEW site_nodes AS
271 SELECT site_id,
272 array_to_string(array_accum(node_id), ',') AS node_ids
273 FROM nodes
274 GROUP BY site_id;
275
276 --------------------------------------------------------------------------------
277 -- Node groups
278 --------------------------------------------------------------------------------
279
280 -- Node groups
281 CREATE TABLE nodegroups (
282     nodegroup_id serial PRIMARY KEY, -- Group identifier
283     name text UNIQUE NOT NULL, -- Group name
284     description text -- Group description
285 ) WITH OIDS;
286
287 -- Node group membership
288 CREATE TABLE nodegroup_node (
289     nodegroup_id integer REFERENCES nodegroups NOT NULL, -- Group identifier
290     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
291     PRIMARY KEY (nodegroup_id, node_id)
292 ) WITH OIDS;
293 CREATE INDEX nodegroup_node_nodegroup_id_idx ON nodegroup_node (nodegroup_id);
294 CREATE INDEX nodegroup_node_node_id_idx ON nodegroup_node (node_id);
295
296 -- Nodes in each node gruop
297 CREATE VIEW nodegroup_nodes AS
298 SELECT nodegroup_id,
299 array_to_string(array_accum(node_id), ',') AS node_ids
300 FROM nodegroup_node
301 GROUP BY nodegroup_id;
302
303 -- Node groups that each node is a member of
304 CREATE VIEW node_nodegroups AS
305 SELECT node_id,
306 array_to_string(array_accum(nodegroup_id), ',') AS nodegroup_ids
307 FROM nodegroup_node
308 GROUP BY node_id;
309
310 --------------------------------------------------------------------------------
311 -- Node network interfaces
312 --------------------------------------------------------------------------------
313
314 -- Valid network addressing schemes
315 CREATE TABLE network_types (
316     type text PRIMARY KEY -- Addressing scheme
317 ) WITH OIDS;
318 INSERT INTO network_types (type) VALUES ('ipv4');
319 INSERT INTO network_types (type) VALUES ('ipv6');
320
321 -- Valid network configuration methods
322 CREATE TABLE network_methods (
323     method text PRIMARY KEY -- Configuration method
324 ) WITH OIDS;
325 INSERT INTO network_methods (method) VALUES ('static');
326 INSERT INTO network_methods (method) VALUES ('dhcp');
327 INSERT INTO network_methods (method) VALUES ('proxy');
328 INSERT INTO network_methods (method) VALUES ('tap');
329 INSERT INTO network_methods (method) VALUES ('ipmi');
330 INSERT INTO network_methods (method) VALUES ('unknown');
331
332 -- Node network interfaces
333 CREATE TABLE nodenetworks (
334     -- Mandatory
335     nodenetwork_id serial PRIMARY KEY, -- Network interface identifier
336     node_id integer REFERENCES nodes NOT NULL, -- Which node
337     is_primary boolean NOT NULL DEFAULT false, -- Is the primary interface for this node
338     type text REFERENCES network_types NOT NULL, -- Addressing scheme
339     method text REFERENCES network_methods NOT NULL, -- Configuration method
340
341     -- Optional, depending on type and method
342     ip text, -- IP address
343     mac text, -- MAC address
344     gateway text, -- Default gateway address
345     network text, -- Network address
346     broadcast text, -- Network broadcast address
347     netmask text, -- Network mask
348     dns1 text, -- Primary DNS server
349     dns2 text, -- Secondary DNS server
350     bwlimit integer, -- Bandwidth limit in bps
351     hostname text -- Hostname of this interface
352 ) WITH OIDS;
353 CREATE INDEX nodenetworks_node_id_idx ON nodenetworks (node_id);
354
355 -- Ordered by primary interface first
356 CREATE VIEW nodenetworks_ordered AS
357 SELECT node_id, nodenetwork_id
358 FROM nodenetworks
359 ORDER BY is_primary DESC;
360
361 -- Network interfaces on each node
362 CREATE VIEW node_nodenetworks AS
363 SELECT node_id,
364 array_to_string(array_accum(nodenetwork_id), ',') AS nodenetwork_ids
365 FROM nodenetworks_ordered
366 GROUP BY node_id;
367
368 --------------------------------------------------------------------------------
369 -- Power control units (PCUs)
370 --------------------------------------------------------------------------------
371
372 CREATE TABLE pcus (
373     -- Mandatory
374     pcu_id serial PRIMARY KEY, -- PCU identifier
375     site_id integer REFERENCES sites NOT NULL, -- Site identifier
376     hostname text, -- Hostname, not necessarily unique (multiple logical sites could use the same PCU)
377     ip text NOT NULL, -- IP, not necessarily unique
378
379     -- Optional
380     protocol text, -- Protocol, e.g. ssh or https or telnet
381     username text, -- Username, if applicable
382     "password" text, -- Password, if applicable
383     model text, -- Model, e.g. BayTech or iPal
384     notes text -- Random notes
385 ) WITH OIDS;
386 CREATE INDEX pcus_site_id_idx ON pcus (site_id);
387
388 CREATE VIEW site_pcus AS
389 SELECT site_id,
390 array_to_string(array_accum(pcu_id), ',') AS pcu_ids
391 FROM pcus
392 GROUP BY site_id;
393
394 CREATE TABLE pcu_node (
395     pcu_id integer REFERENCES pcus NOT NULL, -- PCU identifier
396     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
397     port integer NOT NULL, -- Port number
398     PRIMARY KEY (pcu_id, node_id), -- The same node cannot be controlled by different ports
399     UNIQUE (pcu_id, port) -- The same port cannot control multiple nodes
400 );
401 CREATE INDEX pcu_node_pcu_id_idx ON pcu_node (pcu_id);
402 CREATE INDEX pcu_node_node_id_idx ON pcu_node (node_id);
403
404 CREATE VIEW node_pcus AS
405 SELECT node_id,
406 array_to_string(array_accum(pcu_id), ',') AS pcu_ids,
407 array_to_string(array_accum(port), ',') AS ports
408 FROM pcu_node
409 GROUP BY node_id;
410
411 CREATE VIEW pcu_nodes AS
412 SELECT pcu_id,
413 array_to_string(array_accum(node_id), ',') AS node_ids,
414 array_to_string(array_accum(port), ',') AS ports
415 FROM pcu_node
416 GROUP BY pcu_id;
417
418 --------------------------------------------------------------------------------
419 -- Slices
420 --------------------------------------------------------------------------------
421
422 CREATE TABLE slice_instantiations (
423     instantiation text PRIMARY KEY
424 ) WITH OIDS;
425 INSERT INTO slice_instantiations (instantiation) VALUES ('not-instantiated'); -- Placeholder slice
426 INSERT INTO slice_instantiations (instantiation) VALUES ('plc-instantiated'); -- Instantiated by Node Manager
427 INSERT INTO slice_instantiations (instantiation) VALUES ('delegated'); -- Manually instantiated
428
429 -- Slices
430 CREATE TABLE slices (
431     slice_id serial PRIMARY KEY, -- Slice identifier
432     site_id integer REFERENCES sites NOT NULL, -- Site identifier
433     name text NOT NULL, -- Slice name
434     instantiation text REFERENCES slice_instantiations NOT NULL DEFAULT 'plc-instantiated', -- Slice state, e.g. plc-instantiated
435     url text, -- Project URL
436     description text, -- Project description
437
438     max_nodes integer NOT NULL DEFAULT 100, -- Maximum number of nodes that can be assigned to this slice
439
440     creator_person_id integer REFERENCES persons NOT NULL, -- Creator
441     created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Creation date
442     expires timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP + '2 weeks', -- Expiration date
443
444     is_deleted boolean NOT NULL DEFAULT false
445 ) WITH OIDS;
446 CREATE INDEX slices_site_id_idx ON slices (site_id) WHERE is_deleted IS false;
447 CREATE INDEX slices_name_idx ON slices (name) WHERE is_deleted IS false;
448
449 -- Slivers
450 CREATE TABLE slice_node (
451     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
452     node_id integer REFERENCES nodes NOT NULL -- Node identifier
453 ) WITH OIDS;
454 CREATE INDEX slice_node_slice_id_idx ON slice_node (slice_id);
455 CREATE INDEX slice_node_node_id_idx ON slice_node (node_id);
456
457 -- Synonym for slice_node
458 CREATE VIEW slivers AS
459 SELECT * FROM slice_node;
460
461 -- Nodes in each slice
462 CREATE VIEW slice_nodes AS
463 SELECT slice_id,
464 array_to_string(array_accum(node_id), ',') AS node_ids
465 FROM slice_node
466 GROUP BY slice_id;
467
468 -- Slices on each node
469 CREATE VIEW node_slices AS
470 SELECT node_id,
471 array_to_string(array_accum(slice_id), ',') AS slice_ids
472 FROM slice_node
473 GROUP BY node_id;
474
475 -- Slices at each site
476 CREATE VIEW site_slices AS
477 SELECT site_id,
478 array_to_string(array_accum(slice_id), ',') AS slice_ids
479 FROM slices
480 GROUP BY site_id;
481
482 -- Slice membership
483 CREATE TABLE slice_person (
484     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
485     person_id integer REFERENCES persons NOT NULL, -- Account identifier
486     PRIMARY KEY (slice_id, person_id)
487 ) WITH OIDS;
488 CREATE INDEX slice_person_slice_id_idx ON slice_person (slice_id);
489 CREATE INDEX slice_person_person_id_idx ON slice_person (person_id);
490
491 -- Members of the slice
492 CREATE VIEW slice_persons AS
493 SELECT slice_id,
494 array_to_string(array_accum(person_id), ',') AS person_ids
495 FROM slice_person
496 GROUP BY slice_id;
497
498 -- Slices of which each person is a member
499 CREATE VIEW person_slices AS
500 SELECT person_id,
501 array_to_string(array_accum(slice_id), ',') AS slice_ids
502 FROM slice_person
503 GROUP BY person_id;
504
505 --------------------------------------------------------------------------------
506 -- Attributes
507 --------------------------------------------------------------------------------
508
509 -- Slice attribute types
510 CREATE TABLE slice_attribute_types (
511     attribute_type_id serial PRIMARY KEY, -- Attribute type identifier
512     name text UNIQUE NOT NULL, -- Attribute name
513     description text, -- Attribute description
514     min_role_id integer REFERENCES roles DEFAULT 10 -- If set, minimum (least powerful) role that can set or change this attribute
515 ) WITH OIDS;
516
517 -- Slice/sliver attributes
518 CREATE TABLE slice_attribute (
519     slice_attribute_id serial PRIMARY KEY, -- Slice attribute identifier
520     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
521     node_id integer REFERENCES nodes, -- Sliver attribute if set
522     attribute_type_id integer REFERENCES slice_attribute_types NOT NULL, -- Attribute type identifier
523     value text
524 ) WITH OIDS;
525 CREATE INDEX slice_attribute_slice_id_idx ON slice_attribute (slice_id);
526 CREATE INDEX slice_attribute_node_id_idx ON slice_attribute (node_id);
527
528 CREATE VIEW slice_attributes AS
529 SELECT slice_id,
530 array_to_string(array_accum(slice_attribute_id), ',') AS slice_attribute_ids
531 FROM slice_attribute
532 GROUP BY slice_id;
533
534 --------------------------------------------------------------------------------
535 -- Events
536 --------------------------------------------------------------------------------
537
538 -- event types
539 CREATE TABLE event_types (
540         event_type text PRIMARY KEY -- Event type
541
542 ) WITH OIDS;
543
544 INSERT INTO event_types (event_type) VALUES ('Add');
545 INSERT INTO event_types (event_type) VALUES ('AddTo');
546 INSERT INTO event_types (event_type) VALUES ('Get');
547 INSERT INTO event_types (event_type) VALUES ('Update');
548 INSERT INTO event_types (event_type) VALUES ('Delete');
549 INSERT INTO event_types (event_type) VALUES ('Unknown');
550
551 -- object types
552 CREATE TABLE object_types (
553         object_type text PRIMARY KEY -- Object type 
554
555 ) WITH OIDS;
556
557 INSERT INTO object_types (object_type) VALUES ('AddressType');
558 INSERT INTO object_types (object_type) VALUES ('Address');
559 INSERT INTO object_types (object_type) VALUES ('BootState');
560 INSERT INTO object_types (object_type) VALUES ('KeyType');
561 INSERT INTO object_types (object_type) VALUES ('Key');
562 INSERT INTO object_types (object_type) VALUES ('NetworkMethod');
563 INSERT INTO object_types (object_type) VALUES ('NetworkType');
564 INSERT INTO object_types (object_type) VALUES ('Network');
565 INSERT INTO object_types (object_type) VALUES ('NodeGroup');
566 INSERT INTO object_types (object_type) VALUES ('NodeNetwork');
567 INSERT INTO object_types (object_type) VALUES ('Node');
568 INSERT INTO object_types (object_type) VALUES ('PCU');
569 INSERT INTO object_types (object_type) VALUES ('Person');
570 INSERT INTO object_types (object_type) VALUES ('Role');
571 INSERT INTO object_types (object_type) VALUES ('Site');
572 INSERT INTO object_types (object_type) VALUES ('SliceAttributeType');
573 INSERT INTO object_types (object_type) VALUES ('SliceAttribute');
574 INSERT INTO object_types (object_type) VALUES ('Slice');
575 INSERT INTO object_types (object_type) VALUES ('Unknown');
576
577 -- events
578 CREATE TABLE events (
579         event_id serial PRIMARY KEY,  -- Event identifier
580         person_id  integer REFERENCES persons, -- person responsible for event
581         event_type text REFERENCES  event_types NOT NULL DEFAULT 'Unknown', -- Event type 
582         object_type text REFERENCES object_types NOT NULL DEFAULT 'Unknown', -- Object type associated with event
583         fault_code integer NOT NULL DEFAULT 0, -- did this event result in error
584         call text NOT NULL, -- call responsible for this event
585         runtime float, -- Event run time
586
587         -- Timestamps
588         time timestamp without time zone  NOT NULL DEFAULT CURRENT_TIMESTAMP
589    
590 ) WITH OIDS;
591
592 -- event objects
593 CREATE TABLE event_object (
594         event_id integer REFERENCES events NOT NULL, -- Event identifier
595         object_id integer NOT NULL -- Object identifier
596
597 ) WITH OIDS;
598
599 CREATE INDEX event_object_event_id_idx ON event_object (event_id);
600 CREATE INDEX event_object_object_id_idx ON event_object (object_id);
601
602 CREATE VIEW event_objects AS
603 SELECT event_id,
604 array_to_string(array_accum(object_id), ',') AS object_ids
605 FROM event_object
606 GROUP BY event_id;
607 --------------------------------------------------------------------------------
608 -- Useful views
609 --------------------------------------------------------------------------------
610
611 --view_events
612 CREATE VIEW view_events AS
613 SELECT
614 events.event_id,
615 events.person_id,
616 event_objects.object_ids,
617 events.event_type,
618 events.object_type,
619 events.fault_code,
620 events.call,
621 events.time
622 From events
623 LEFT JOIN event_objects USING (event_id);
624
625 -- view_persons
626 CREATE VIEW view_persons AS
627 SELECT
628 persons.person_id,
629 persons.email,
630 persons.first_name,
631 persons.last_name,
632 persons.deleted,
633 persons.enabled,
634 persons.password,
635 persons.verification_key,
636 persons.verification_expires,
637 persons.title,
638 persons.phone,
639 persons.url,
640 persons.bio,
641 CAST(date_part('epoch', persons.date_created) AS bigint) AS date_created,
642 CAST(date_part('epoch', persons.last_updated) AS bigint) AS last_updated,
643 person_roles.role_ids, person_roles.roles,
644 person_sites.site_ids,
645 person_keys.key_ids,
646 person_slices.slice_ids
647 FROM persons
648 LEFT JOIN person_roles USING (person_id)
649 LEFT JOIN person_sites USING (person_id)
650 LEFT JOIN person_keys USING (person_id)
651 LEFT JOIN person_slices USING (person_id);
652
653 CREATE VIEW view_nodes AS
654 SELECT
655 nodes.node_id,
656 nodes.hostname,
657 nodes.site_id,
658 nodes.boot_state,
659 nodes.deleted,
660 nodes.model,
661 nodes.boot_nonce,
662 nodes.version,
663 nodes.ssh_rsa_key,
664 nodes.key,
665 nodes.session,
666 CAST(date_part('epoch', nodes.date_created) AS bigint) AS date_created,
667 CAST(date_part('epoch', nodes.last_updated) AS bigint) AS last_updated,
668 node_nodenetworks.nodenetwork_ids,
669 node_nodegroups.nodegroup_ids,
670 node_slices.slice_ids,
671 node_pcus.pcu_ids,
672 node_pcus.ports
673 FROM nodes
674 LEFT JOIN node_nodenetworks USING (node_id)
675 LEFT JOIN node_nodegroups USING (node_id)
676 LEFT JOIN node_slices USING (node_id)
677 LEFT JOIN node_pcus USING (node_id);
678
679 CREATE VIEW view_nodegroups AS
680 SELECT
681 nodegroups.nodegroup_id,
682 nodegroups.name,
683 nodegroups.description,
684 nodegroup_nodes.node_ids
685 FROM nodegroups
686 LEFT JOIN nodegroup_nodes USING (nodegroup_id);
687
688 CREATE VIEW view_pcus AS
689 SELECT
690 pcus.pcu_id,
691 pcus.site_id,
692 pcus.hostname,
693 pcus.ip,
694 pcus.protocol,
695 pcus.username,
696 pcus.password,
697 pcus.model,
698 pcus.notes,
699 pcu_nodes.node_ids,
700 pcu_nodes.ports
701 FROM pcus
702 LEFT JOIN pcu_nodes USING (pcu_id);
703
704 CREATE VIEW view_sites AS
705 SELECT
706 sites.site_id,
707 sites.login_base,
708 sites.name,
709 sites.abbreviated_name,
710 sites.deleted,
711 sites.is_public,
712 sites.max_slices,
713 sites.max_slivers,
714 sites.latitude,
715 sites.longitude,
716 sites.url,
717 CAST(date_part('epoch', sites.date_created) AS bigint) AS date_created,
718 CAST(date_part('epoch', sites.last_updated) AS bigint) AS last_updated,
719 site_persons.person_ids,
720 site_nodes.node_ids,
721 site_addresses.address_ids,
722 site_slices.slice_ids,
723 site_pcus.pcu_ids
724 FROM sites
725 LEFT JOIN site_persons USING (site_id)
726 LEFT JOIN site_nodes USING (site_id)
727 LEFT JOIN site_addresses USING (site_id)
728 LEFT JOIN site_slices USING (site_id)
729 LEFT JOIN site_pcus USING (site_id);
730
731 CREATE VIEW view_addresses AS
732 SELECT
733 addresses.address_id,
734 addresses.site_id,
735 addresses.line1,
736 addresses.line2,
737 addresses.line3,
738 addresses.city,
739 addresses.state,
740 addresses.postalcode,
741 addresses.country,
742 address_address_types.address_type_ids,
743 address_address_types.address_types
744 FROM addresses
745 LEFT JOIN address_address_types USING (address_id);
746
747 CREATE VIEW view_slices AS
748 SELECT
749 slices.slice_id,
750 slices.site_id,
751 slices.name,
752 slices.instantiation,
753 slices.url,
754 slices.description,
755 slices.max_nodes,
756 slices.creator_person_id,
757 slices.is_deleted,
758 CAST(date_part('epoch', slices.created) AS bigint) AS created,
759 CAST(date_part('epoch', slices.expires) AS bigint) AS expires,
760 slice_nodes.node_ids,
761 slice_persons.person_ids,
762 slice_attributes.slice_attribute_ids
763 FROM slices
764 LEFT JOIN slice_nodes USING (slice_id)
765 LEFT JOIN slice_persons USING (slice_id)
766 LEFT JOIN slice_attributes USING (slice_id);
767
768 CREATE VIEW view_slice_attributes AS
769 SELECT
770 slice_attribute.slice_attribute_id,
771 slice_attribute.slice_id,
772 slice_attribute.node_id,
773 slice_attribute_types.attribute_type_id,
774 slice_attribute_types.name,
775 slice_attribute_types.description,
776 slice_attribute_types.min_role_id,
777 slice_attribute.value
778 FROM slice_attribute
779 INNER JOIN slice_attribute_types USING (attribute_type_id);
780
781 --------------------------------------------------------------------------------
782 -- Built-in maintenance account and default site
783 --------------------------------------------------------------------------------
784
785 INSERT INTO persons
786 (first_name, last_name, email, password, enabled)
787 VALUES
788 ('Maintenance', 'Account', 'maint@localhost.localdomain', 'nopass', true);
789
790 INSERT INTO person_role (person_id, role_id) VALUES (1, 10);
791 INSERT INTO person_role (person_id, role_id) VALUES (1, 20);
792 INSERT INTO person_role (person_id, role_id) VALUES (1, 30);
793 INSERT INTO person_role (person_id, role_id) VALUES (1, 40);
794
795 INSERT INTO sites
796 (login_base, name, abbreviated_name, max_slices)
797 VALUES
798 ('pl', 'PlanetLab Central', 'PLC', 100);