- rename nodenetwork_{methods,types} to network_{methods,types}
[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.6 2006/10/06 18:19:07 mlhuang 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_key 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_key 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_key ON person_site (person_id);
94 CREATE INDEX person_site_site_id_key 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 );
125 INSERT INTO address_types (name) VALUES ('Personal');
126 INSERT INTO address_types (name) VALUES ('Shipping');
127 -- XXX Used to be Site
128 INSERT INTO address_types (name) VALUES ('Billing');
129
130 -- Mailing addresses
131 CREATE TABLE addresses (
132     address_id serial PRIMARY KEY, -- Address identifier
133     site_id integer REFERENCES sites NOT NULL, -- Site identifier
134     line1 text NOT NULL, -- Address line 1
135     line2 text, -- Address line 2
136     line3 text, -- Address line 3
137     city text NOT NULL, -- City
138     state text NOT NULL, -- State or province
139     postalcode text NOT NULL, -- Postal code
140     country text NOT NULL -- Country
141 ) WITH OIDS;
142
143 -- Each mailing address can be one of several types
144 CREATE TABLE address_address_type (
145     address_id integer REFERENCES addresses NOT NULL, -- Address identifier
146     address_type_id integer REFERENCES address_types NOT NULL -- Address type
147 ) WITH OIDS;
148
149 CREATE VIEW address_address_types AS
150 SELECT address_id,
151 array_to_string(array_accum(address_type_id), ',') AS address_type_ids,
152 array_to_string(array_accum(address_types.name), ',') AS address_types
153 FROM address_address_type
154 LEFT JOIN address_types USING (address_type_id)
155 GROUP BY address_id;
156
157 CREATE VIEW site_addresses AS
158 SELECT site_id,
159 array_to_string(array_accum(address_id), ',') AS address_ids
160 FROM addresses
161 GROUP BY site_id;
162
163 --------------------------------------------------------------------------------
164 -- Authentication Keys
165 --------------------------------------------------------------------------------
166
167 -- Valid key types
168 CREATE TABLE key_types (
169     key_type text PRIMARY KEY -- Key type
170 ) WITH OIDS;
171 INSERT INTO key_types (key_type) VALUES ('ssh');
172
173 -- Authentication keys
174 CREATE TABLE keys (
175     key_id serial PRIMARY KEY, -- Key identifier
176     key_type text REFERENCES key_types NOT NULL, -- Key type
177     key text NOT NULL, -- Key material
178     is_blacklisted boolean NOT NULL DEFAULT false -- Has been blacklisted
179 ) WITH OIDS;
180
181 -- Account authentication key(s)
182 CREATE TABLE person_key (
183     person_id integer REFERENCES persons NOT NULL, -- Account identifier
184     key_id integer REFERENCES keys NOT NULL, -- Key identifier
185     is_primary boolean NOT NULL DEFAULT false, -- Is the primary key for this account
186     PRIMARY KEY (person_id, key_id)
187 ) WITH OIDS;
188 CREATE INDEX person_key_person_id_key ON person_key (person_id);
189 CREATE INDEX person_key_key_id_key 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_key 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, -- 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_key ON nodes (hostname) WHERE deleted IS false;
267 CREATE INDEX nodes_site_id_key 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_key ON nodegroup_node (nodegroup_id);
294 CREATE INDEX nodegroup_node_node_id_key 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_key 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 NOT NULL, -- 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
387 CREATE TABLE pcu_node (
388     pcu_id integer REFERENCES pcus NOT NULL, -- PCU identifier
389     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
390     port integer NOT NULL, -- Port number
391     PRIMARY KEY (pcu_id, node_id)
392 );
393 CREATE INDEX pcu_node_pcu_id_key ON pcu_node (pcu_id);
394 CREATE INDEX pcu_node_node_id_key ON pcu_node (node_id);
395
396 CREATE VIEW pcu_nodes AS
397 SELECT pcu_id,
398 array_to_string(array_accum(node_id), ',') AS node_ids,
399 array_to_string(array_accum(port), ',') AS ports
400 FROM pcu_node
401 GROUP BY pcu_id;
402
403 --------------------------------------------------------------------------------
404 -- Slices
405 --------------------------------------------------------------------------------
406
407 CREATE TABLE slice_instantiations (
408     instantiation text PRIMARY KEY
409 ) WITH OIDS;
410 INSERT INTO slice_instantiations (instantiation) VALUES ('not-instantiated'); -- Placeholder slice
411 INSERT INTO slice_instantiations (instantiation) VALUES ('plc-instantiated'); -- Instantiated by Node Manager
412 INSERT INTO slice_instantiations (instantiation) VALUES ('delegated'); -- Manually instantiated
413
414 -- Slices
415 CREATE TABLE slices (
416     slice_id serial PRIMARY KEY, -- Slice identifier
417     site_id integer REFERENCES sites NOT NULL, -- Site identifier
418     name text NOT NULL, -- Slice name
419     instantiation text REFERENCES slice_instantiations NOT NULL DEFAULT 'plc-instantiated', -- Slice state, e.g. plc-instantiated
420     url text, -- Project URL
421     description text, -- Project description
422
423     max_nodes integer NOT NULL DEFAULT 100, -- Maximum number of nodes that can be assigned to this slice
424
425     creator_person_id integer REFERENCES persons NOT NULL, -- Creator
426     created timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP, -- Creation date
427     expires timestamp without time zone NOT NULL DEFAULT CURRENT_TIMESTAMP + '2 weeks', -- Expiration date
428
429     is_deleted boolean NOT NULL DEFAULT false
430 ) WITH OIDS;
431 CREATE INDEX slices_site_id_key ON slices (site_id) WHERE is_deleted IS false;
432 CREATE INDEX slices_name_key ON slices (name) WHERE is_deleted IS false;
433
434 -- Slivers
435 CREATE TABLE slice_node (
436     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
437     node_id integer REFERENCES nodes NOT NULL -- Node identifier
438 ) WITH OIDS;
439 CREATE INDEX slice_node_slice_id_key ON slice_node (slice_id);
440 CREATE INDEX slice_node_node_id_key ON slice_node (node_id);
441
442 -- Synonym for slice_node
443 CREATE VIEW slivers AS
444 SELECT * FROM slice_node;
445
446 -- Nodes in each slice
447 CREATE VIEW slice_nodes AS
448 SELECT slice_id,
449 array_to_string(array_accum(node_id), ',') AS node_ids
450 FROM slice_node
451 GROUP BY slice_id;
452
453 -- Slices on each node
454 CREATE VIEW node_slices AS
455 SELECT node_id,
456 array_to_string(array_accum(slice_id), ',') AS slice_ids
457 FROM slice_node
458 GROUP BY node_id;
459
460 -- Slices at each site
461 CREATE VIEW site_slices AS
462 SELECT site_id,
463 array_to_string(array_accum(slice_id), ',') AS slice_ids
464 FROM slices
465 GROUP BY site_id;
466
467 -- Slice membership
468 CREATE TABLE slice_person (
469     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
470     person_id integer REFERENCES persons NOT NULL, -- Account identifier
471     PRIMARY KEY (slice_id, person_id)
472 ) WITH OIDS;
473 CREATE INDEX slice_person_slice_id_key ON slice_person (slice_id);
474 CREATE INDEX slice_person_person_id_key ON slice_person (person_id);
475
476 -- Members of the slice
477 CREATE VIEW slice_persons AS
478 SELECT slice_id,
479 array_to_string(array_accum(person_id), ',') AS person_ids
480 FROM slice_person
481 GROUP BY slice_id;
482
483 -- Slices of which each person is a member
484 CREATE VIEW person_slices AS
485 SELECT person_id,
486 array_to_string(array_accum(slice_id), ',') AS slice_ids
487 FROM slice_person
488 GROUP BY person_id;
489
490 --------------------------------------------------------------------------------
491 -- Attributes
492 --------------------------------------------------------------------------------
493
494 -- Generic attribute types
495 CREATE TABLE attributes (
496     attribute_id serial PRIMARY KEY, -- Attribute type identifier
497     name text UNIQUE NOT NULL, -- Attribute name
498     description text, -- Attribute description
499     min_role_id integer REFERENCES roles DEFAULT 10 -- If set, minimum (least powerful) role that can set or change this attribute
500 ) WITH OIDS;
501
502 -- Slice/sliver attributes
503 CREATE TABLE slice_attribute (
504     slice_attribute_id serial PRIMARY KEY, -- Slice attribute identifier
505     slice_id integer REFERENCES slices NOT NULL, -- Slice identifier
506     node_id integer REFERENCES nodes, -- Sliver attribute if set
507     attribute_id integer REFERENCES attributes NOT NULL, -- Attribute identifier
508     value text
509 ) WITH OIDS;
510 CREATE INDEX slice_attribute_slice_id_key ON slice_attribute (slice_id);
511 CREATE INDEX slice_attribute_node_id_key ON slice_attribute (node_id);
512
513 CREATE VIEW slice_attributes AS
514 SELECT slice_id,
515 array_to_string(array_accum(slice_attribute_id), ',') AS slice_attribute_ids
516 FROM slice_attribute
517 GROUP BY slice_id;
518
519 -- Node attributes
520 CREATE TABLE node_attribute (
521     node_attribute_id serial PRIMARY KEY, -- Node attribute identifier
522     node_id integer REFERENCES nodes NOT NULL, -- Node identifier
523     attribute_id integer REFERENCES attributes NOT NULL, -- Attribute identifier
524     value text
525 ) WITH OIDS;
526 CREATE INDEX node_attribute_node_id_key ON node_attribute (node_id);
527
528 CREATE VIEW node_attributes AS
529 SELECT node_id,
530 array_to_string(array_accum(node_attribute_id), ',') AS node_attribute_ids
531 FROM node_attribute
532 GROUP BY node_id;
533
534 --------------------------------------------------------------------------------
535 -- Useful views
536 --------------------------------------------------------------------------------
537
538 CREATE VIEW view_persons AS
539 SELECT
540 persons.person_id,
541 persons.email,
542 persons.first_name,
543 persons.last_name,
544 persons.deleted,
545 persons.enabled,
546 persons.password,
547 persons.verification_key,
548 persons.verification_expires,
549 persons.title,
550 persons.phone,
551 persons.url,
552 persons.bio,
553 CAST(date_part('epoch', persons.date_created) AS bigint) AS date_created,
554 CAST(date_part('epoch', persons.last_updated) AS bigint) AS last_updated,
555 person_roles.role_ids, person_roles.roles,
556 person_sites.site_ids,
557 person_keys.key_ids,
558 person_slices.slice_ids
559 FROM persons
560 LEFT JOIN person_roles USING (person_id)
561 LEFT JOIN person_sites USING (person_id)
562 LEFT JOIN person_keys USING (person_id)
563 LEFT JOIN person_slices USING (person_id);
564
565 CREATE VIEW view_nodes AS
566 SELECT
567 nodes.node_id,
568 nodes.hostname,
569 nodes.site_id,
570 nodes.boot_state,
571 nodes.deleted,
572 nodes.model,
573 nodes.boot_nonce,
574 nodes.version,
575 nodes.ssh_rsa_key,
576 nodes.key,
577 nodes.session,
578 CAST(date_part('epoch', nodes.date_created) AS bigint) AS date_created,
579 CAST(date_part('epoch', nodes.last_updated) AS bigint) AS last_updated,
580 node_nodenetworks.nodenetwork_ids,
581 node_nodegroups.nodegroup_ids,
582 node_slices.slice_ids
583 FROM nodes
584 LEFT JOIN node_nodenetworks USING (node_id)
585 LEFT JOIN node_nodegroups USING (node_id)
586 LEFT JOIN node_slices USING (node_id);
587
588 CREATE VIEW view_node_attributes AS
589 SELECT
590 node_attribute.node_attribute_id,
591 node_attribute.node_id,
592 attributes.attribute_id,
593 attributes.name,
594 attributes.description,
595 attributes.min_role_id,
596 node_attribute.value
597 FROM node_attribute
598 INNER JOIN attributes USING (attribute_id);
599
600 CREATE VIEW view_nodegroups AS
601 SELECT
602 nodegroups.nodegroup_id,
603 nodegroups.name,
604 nodegroups.description,
605 nodegroup_nodes.node_ids
606 FROM nodegroups
607 LEFT JOIN nodegroup_nodes USING (nodegroup_id);
608
609 CREATE VIEW view_sites AS
610 SELECT
611 sites.site_id,
612 sites.login_base,
613 sites.name,
614 sites.abbreviated_name,
615 sites.deleted,
616 sites.is_public,
617 sites.max_slices,
618 sites.max_slivers,
619 sites.latitude,
620 sites.longitude,
621 sites.url,
622 CAST(date_part('epoch', sites.date_created) AS bigint) AS date_created,
623 CAST(date_part('epoch', sites.last_updated) AS bigint) AS last_updated,
624 site_persons.person_ids,
625 site_nodes.node_ids,
626 site_addresses.address_ids,
627 site_slices.slice_ids
628 FROM sites
629 LEFT JOIN site_persons USING (site_id)
630 LEFT JOIN site_nodes USING (site_id)
631 LEFT JOIN site_addresses USING (site_id)
632 LEFT JOIN site_slices USING (site_id);
633
634 CREATE VIEW view_addresses AS
635 SELECT
636 addresses.address_id,
637 addresses.site_id,
638 addresses.line1,
639 addresses.line2,
640 addresses.line3,
641 addresses.city,
642 addresses.state,
643 addresses.postalcode,
644 addresses.country,
645 address_address_types.address_type_ids,
646 address_address_types.address_types
647 FROM addresses
648 LEFT JOIN address_address_types USING (address_id);
649
650 CREATE VIEW view_slices AS
651 SELECT
652 slices.slice_id,
653 slices.site_id,
654 slices.name,
655 slices.instantiation,
656 slices.url,
657 slices.description,
658 slices.max_nodes,
659 slices.creator_person_id,
660 slices.is_deleted,
661 CAST(date_part('epoch', slices.created) AS bigint) AS created,
662 CAST(date_part('epoch', slices.expires) AS bigint) AS expires,
663 slice_nodes.node_ids,
664 slice_persons.person_ids,
665 slice_attributes.slice_attribute_ids
666 FROM slices
667 LEFT JOIN slice_nodes USING (slice_id)
668 LEFT JOIN slice_persons USING (slice_id)
669 LEFT JOIN slice_attributes USING (slice_id);
670
671 CREATE VIEW view_slice_attributes AS
672 SELECT
673 slice_attribute.slice_attribute_id,
674 slice_attribute.slice_id,
675 slice_attribute.node_id,
676 attributes.attribute_id,
677 attributes.name,
678 attributes.description,
679 attributes.min_role_id,
680 slice_attribute.value
681 FROM slice_attribute
682 INNER JOIN attributes USING (attribute_id);
683
684 --------------------------------------------------------------------------------
685 -- Built-in maintenance account and default site
686 --------------------------------------------------------------------------------
687
688 INSERT INTO persons
689 (first_name, last_name, email, password, enabled)
690 VALUES
691 ('Maintenance', 'Account', 'maint@localhost.localdomain', 'nopass', true);
692
693 INSERT INTO person_role (person_id, role_id) VALUES (1, 10);
694 INSERT INTO person_role (person_id, role_id) VALUES (1, 20);
695 INSERT INTO person_role (person_id, role_id) VALUES (1, 30);
696 INSERT INTO person_role (person_id, role_id) VALUES (1, 40);
697
698 INSERT INTO sites
699 (login_base, name, abbreviated_name, max_slices)
700 VALUES
701 ('pl', 'PlanetLab Central', 'PLC', 100);