this will complete successfully
This commit is contained in:
parent
c5078b9ce9
commit
1b35279d18
1 changed files with 72 additions and 71 deletions
61
fas/fas2.sql
61
fas/fas2.sql
|
@ -6,15 +6,15 @@ create trusted procedural language plpgsql
|
||||||
validator plpgsql_validator;
|
validator plpgsql_validator;
|
||||||
|
|
||||||
CREATE SEQUENCE cert_seq;
|
CREATE SEQUENCE cert_seq;
|
||||||
SELECT setval(cert_seq, 1);
|
SELECT setval('cert_seq', 1);
|
||||||
|
|
||||||
CREATE SEQUENCE person_seq;
|
CREATE SEQUENCE person_seq;
|
||||||
-- TODO: Set this to start where our last person_id is
|
-- TODO: Set this to start where our last person_id is
|
||||||
SELECT setval('person_seq', XXXXXX);
|
SELECT setval('person_seq', 1111);
|
||||||
|
|
||||||
CREATE SEQUENCE group_seq;
|
CREATE SEQUENCE group_seq;
|
||||||
-- TODO: Set this to start where our last group_id is
|
-- TODO: Set this to start where our last group_id is
|
||||||
SELECT setval('group_seq', XXXXX);
|
SELECT setval('group_seq', 1222);
|
||||||
|
|
||||||
CREATE TABLE person (
|
CREATE TABLE person (
|
||||||
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval('person_seq'),
|
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval('person_seq'),
|
||||||
|
@ -32,16 +32,14 @@ CREATE TABLE person (
|
||||||
telephone TEXT,
|
telephone TEXT,
|
||||||
facsimile TEXT,
|
facsimile TEXT,
|
||||||
affiliation TEXT,
|
affiliation TEXT,
|
||||||
certificate_serial integer nextval('cert_seq'),
|
certificate_serial INTEGER DEFAULT nextval('cert_seq'),
|
||||||
creation TIMESTAMP DEFAULT NOW(),
|
creation TIMESTAMP DEFAULT NOW(),
|
||||||
approval_status TEXT DEFAULT 'unapproved',
|
approval_status TEXT DEFAULT 'unapproved',
|
||||||
internal_comments TEXT,
|
internal_comments TEXT,
|
||||||
ircnick TEXT,
|
ircnick TEXT,
|
||||||
last_seen TIMESTAMP DEFAULT NOW(),
|
|
||||||
status TEXT,
|
status TEXT,
|
||||||
status_change TIMESTAMP DEFAULT NOW(),
|
check ( status in ('active', 'vacation', 'inactive')),
|
||||||
check status in ('active', 'vacation', 'inactive', 'pinged'),
|
check ( gpg_keyid ~ '^[0-9A-F]{17}$')
|
||||||
check gpg_key_id ~ '^[0-9A-F]{17}$'
|
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE configs (
|
CREATE TABLE configs (
|
||||||
|
@ -53,44 +51,44 @@ CREATE TABLE configs (
|
||||||
-- Please create more config keys rather than abusing this with
|
-- Please create more config keys rather than abusing this with
|
||||||
-- large datastructures.
|
-- large datastructures.
|
||||||
value text,
|
value text,
|
||||||
check application in ('asterisk', 'moin', 'myfedora')
|
check ( application in ('asterisk', 'moin', 'myfedora'))
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE group (
|
CREATE TABLE groups (
|
||||||
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval('group_seq'),
|
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval('group_seq'),
|
||||||
name VARCHAR(32) UNIQUE NOT NULL,
|
name VARCHAR(32) UNIQUE NOT NULL,
|
||||||
owner_id INTEGER NOT NULL REFERENCES person (id),
|
owner_id INTEGER NOT NULL REFERENCES person (id),
|
||||||
group_type VARCHAR(16),
|
group_type VARCHAR(16),
|
||||||
needs_sponsor INTEGER DEFAULT 0,
|
needs_sponsor INTEGER DEFAULT 0,
|
||||||
user_can_remove INTEGER DEFAULT 1,
|
user_can_remove INTEGER DEFAULT 1,
|
||||||
prerequisite_id INTEGER REFERENCES project_group (id)
|
prerequisite_id INTEGER REFERENCES groups (id),
|
||||||
joinmsg TEXT NULL DEFAULT '',
|
joinmsg TEXT NULL DEFAULT '',
|
||||||
check group_type in ('bugzilla','cvs', 'bzr', 'git', 'hg', 'mtn',
|
check ( group_type in ('bugzilla','cvs', 'bzr', 'git', 'hg', 'mtn',
|
||||||
'svn', 'shell', 'torrent', 'tracker', 'tracking', 'user')
|
'svn', 'shell', 'torrent', 'tracker', 'tracking', 'user') )
|
||||||
);
|
);
|
||||||
|
|
||||||
create table person_email (
|
create table person_email (
|
||||||
email text not null unique,
|
email text UNIQUE NOT NULL,
|
||||||
group_id references person(id) not null,
|
group_id INTEGER references person(id) not null,
|
||||||
purpose text not null,
|
purpose text not null,
|
||||||
primary key (group_id, email),
|
primary key (group_id, email),
|
||||||
check purpose in ('bugzilla', 'primary', 'cla'),
|
check ( purpose in ('bugzilla', 'primary', 'cla') ),
|
||||||
check email ~ (^[a-zA-Z0-9.]@[a-zA-Z0-9.]\.[a-zA-Z]$),
|
-- check ( email ~ "^[a-zA-Z0-9.]@[a-zA-Z0-9.]\.[a-zA-Z]$"),
|
||||||
unique (group_id, purpose)
|
unique (group_id, purpose)
|
||||||
);
|
);
|
||||||
|
|
||||||
create table group_email (
|
create table group_email (
|
||||||
email text not null unique,
|
email text not null unique,
|
||||||
group_id references group(id) not null,
|
group_id INTEGER references groups(id) not null,
|
||||||
purpose text not null,
|
purpose text not null,
|
||||||
primary key (group_id, email),
|
primary key (group_id, email),
|
||||||
check purpose in ('bugzilla', 'primary', 'cla'),
|
check ( purpose in ('bugzilla', 'primary', 'cla') ),
|
||||||
unique (group_id, purpose)
|
unique (group_id, purpose)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE group_role (
|
CREATE TABLE group_role (
|
||||||
member_id INTEGER NOT NULL REFERENCES group(id),
|
member_id INTEGER NOT NULL REFERENCES groups(id),
|
||||||
group_id INTEGER NOT NULL REFERENCES group(id),
|
group_id INTEGER NOT NULL REFERENCES groups(id),
|
||||||
role_type text NOT NULL,
|
role_type text NOT NULL,
|
||||||
role_status text DEFAULT 'unapproved',
|
role_status text DEFAULT 'unapproved',
|
||||||
internal_comments text,
|
internal_comments text,
|
||||||
|
@ -98,13 +96,13 @@ CREATE TABLE group_role (
|
||||||
creation TIMESTAMP DEFAULT NOW(),
|
creation TIMESTAMP DEFAULT NOW(),
|
||||||
approval TIMESTAMP DEFAULT NOW(),
|
approval TIMESTAMP DEFAULT NOW(),
|
||||||
UNIQUE (member_id, group_id),
|
UNIQUE (member_id, group_id),
|
||||||
check role_status in ('approved', 'unapproved'),
|
check ( role_status in ('approved', 'unapproved') ),
|
||||||
check role_type in ('user', 'administrator', 'sponsor')
|
check ( role_type in ('user', 'administrator', 'sponsor') )
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE TABLE person_role (
|
CREATE TABLE person_role (
|
||||||
person_id INTEGER NOT NULL REFERENCES person (id),
|
person_id INTEGER NOT NULL REFERENCES person (id),
|
||||||
group_id INTEGER NOT NULL REFERENCES group (id),
|
group_id INTEGER NOT NULL REFERENCES groups (id),
|
||||||
-- role_type is something like "user", "administrator", etc.
|
-- role_type is something like "user", "administrator", etc.
|
||||||
-- role_status tells us whether this has been approved or not
|
-- role_status tells us whether this has been approved or not
|
||||||
role_type text NOT NULL,
|
role_type text NOT NULL,
|
||||||
|
@ -114,21 +112,22 @@ CREATE TABLE person_role (
|
||||||
creation TIMESTAMP DEFAULT NOW(),
|
creation TIMESTAMP DEFAULT NOW(),
|
||||||
approval TIMESTAMP DEFAULT NOW(),
|
approval TIMESTAMP DEFAULT NOW(),
|
||||||
UNIQUE (person_id, group_id),
|
UNIQUE (person_id, group_id),
|
||||||
check role_status in ('approved', 'unapproved'),
|
check ( role_status in ('approved', 'unapproved') ),
|
||||||
check role_type in ('user', 'administrator', 'sponsor')
|
check ( role_type in ('user', 'administrator', 'sponsor') )
|
||||||
);
|
);
|
||||||
|
|
||||||
-- action r == remove
|
-- action r == remove
|
||||||
-- action a == add
|
-- action a == add
|
||||||
create table bugzilla_queue (
|
create table bugzilla_queue (
|
||||||
email text not null,
|
email text not null,
|
||||||
project_group_id int references project_group(id) not null,
|
project_group_id int references groups(id) not null,
|
||||||
person_id int references person(id) not null,
|
person_id int references person(id) not null,
|
||||||
action char(1) not null,
|
action char(1) not null,
|
||||||
primary key (email, project_group_id),
|
primary key (email, project_group_id),
|
||||||
check (action ~ '[ar]')
|
check (action ~ '[ar]')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
create or replace function bugzilla_sync() returns trigger AS $bz_sync$
|
create or replace function bugzilla_sync() returns trigger AS $bz_sync$
|
||||||
DECLARE
|
DECLARE
|
||||||
newaction char(1);
|
newaction char(1);
|
||||||
|
@ -164,12 +163,12 @@ create trigger role_bugzilla_sync before update or insert or delete
|
||||||
create or replace function bugzilla_sync_email() returns trigger AS $bz_sync_e$
|
create or replace function bugzilla_sync_email() returns trigger AS $bz_sync_e$
|
||||||
BEGIN
|
BEGIN
|
||||||
if OLD.email = NEW.email then
|
if OLD.email = NEW.email then
|
||||||
We only care if the email has been changed
|
-- We only care if the email has been changed
|
||||||
return NEW;
|
return NEW;
|
||||||
end if;
|
end if;
|
||||||
|
|
||||||
if p.id is not Null from person as p, role as r, project_group as g where p.id = OLD.id and g.name = 'fedorabugs' and r.role_status = 'approved' and r.project_group_id = g.id and r.person_id = p.id then
|
if p.id is not Null from person as p, role as r, project_group as g where p.id = OLD.id and g.name = 'fedorabugs' and r.role_status = 'approved' and r.project_group_id = g.id and r.person_id = p.id then
|
||||||
Person belongs to the bugzilla changing group
|
-- Person belongs to the bugzilla changing group
|
||||||
Remove old email
|
Remove old email
|
||||||
if b.email is not Null from bugzilla_queue as b where b.email = OLD.email then
|
if b.email is not Null from bugzilla_queue as b where b.email = OLD.email then
|
||||||
update bugzilla_queue set action = 'r' where email = OLD.email;
|
update bugzilla_queue set action = 'r' where email = OLD.email;
|
||||||
|
@ -191,4 +190,6 @@ create trigger email_bugzilla_sync before update
|
||||||
on person
|
on person
|
||||||
for each row execute procedure bugzilla_sync_email();
|
for each row execute procedure bugzilla_sync_email();
|
||||||
|
|
||||||
GRANT ALL ON TABLE person, project_group, role, id_seq, bugzilla_queue TO GROUP fedora;
|
*/
|
||||||
|
|
||||||
|
--GRANT ALL ON TABLE person, groups, person_role, group_role, cert_seq, person_seq, bugzilla_queue TO GROUP fedora;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue