2008-02-16 12:30:32 -08:00
-- Copyright © 2008 Red Hat, Inc. All rights reserved.
--
-- This copyrighted material is made available to anyone wishing to use, modify,
-- copy, or redistribute it subject to the terms and conditions of the GNU
-- General Public License v.2. This program is distributed in the hope that it
-- will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
-- implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-- See the GNU General Public License for more details. You should have
-- received a copy of the GNU General Public License along with this program;
-- if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
-- Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat trademarks that are
-- incorporated in the source code or documentation are not subject to the GNU
-- General Public License and may only be used or replicated with the express
-- permission of Red Hat, Inc.
--
2008-02-19 16:07:46 -08:00
-- Author(s): Toshio Kuratomi <tkuratom@redhat.com>
-- Ricky Zhou <ricky@fedoraproject.org>
2008-02-25 16:11:12 -06:00
-- Mike McGrath <mmcgrath@redhat.com>
2008-02-16 12:30:32 -08:00
--
2008-02-14 20:06:29 -08:00
create database fas2 encoding = ' UTF8 ' ;
\ c fas2
2008-02-23 11:05:11 -08:00
create procedural language plpythonu
handler plpythonu_call_handler
validator plpythonu_validator ;
2008-02-14 20:06:29 -08:00
CREATE SEQUENCE person_seq ;
-- TODO: Set this to start where our last person_id is
2008-02-15 15:10:31 -08:00
SELECT setval ( ' person_seq ' , 1111 ) ;
2008-02-14 20:06:29 -08:00
CREATE SEQUENCE group_seq ;
-- TODO: Set this to start where our last group_id is
2008-02-15 15:10:31 -08:00
SELECT setval ( ' group_seq ' , 1222 ) ;
2008-02-14 20:06:29 -08:00
2008-02-15 10:37:00 -08:00
CREATE TABLE people (
2008-02-16 12:10:44 -08:00
-- tg_user::user_id
2008-02-15 14:59:06 -08:00
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval ( ' person_seq ' ) ,
2008-02-16 12:10:44 -08:00
-- tg_user::user_name
2008-02-15 14:59:06 -08:00
username VARCHAR ( 32 ) UNIQUE NOT NULL ,
2008-02-16 12:10:44 -08:00
-- tg_user::display_name
2008-02-15 14:59:06 -08:00
human_name TEXT NOT NULL ,
-- TODO: Switch to this?
-- Also, app would be responsible for eliminating spaces and
-- uppercasing
-- gpg_fingerprint varchar(40),
2008-02-23 11:33:32 -08:00
gpg_keyid VARCHAR ( 17 ) , -- This one seems to be a bit strong.
2008-02-15 14:59:06 -08:00
ssh_key TEXT ,
2008-02-16 12:10:44 -08:00
-- tg_user::password
2008-02-15 14:59:06 -08:00
password VARCHAR ( 127 ) NOT NULL ,
2008-02-19 16:07:46 -08:00
passwordtoken text null ,
2008-02-15 14:59:06 -08:00
comments TEXT ,
postal_address TEXT ,
telephone TEXT ,
facsimile TEXT ,
affiliation TEXT ,
2008-02-19 16:07:46 -08:00
certificate_serial INTEGER DEFAULT 1 ,
2008-02-16 12:10:44 -08:00
-- tg_user::created
2008-02-15 14:59:06 -08:00
creation TIMESTAMP DEFAULT NOW ( ) ,
2008-02-19 16:07:46 -08:00
- - approval_status TEXT DEFAULT ' unapproved ' ,
2008-02-15 14:59:06 -08:00
internal_comments TEXT ,
ircnick TEXT ,
last_seen TIMESTAMP DEFAULT NOW ( ) ,
status TEXT ,
status_change TIMESTAMP DEFAULT NOW ( ) ,
2008-02-19 16:07:46 -08:00
locale TEXT not null DEFAULT ' C ' ,
timezone TEXT null DEFAULT ' UTC ' ,
latitude numeric ,
longitude numeric ,
2008-02-15 14:59:06 -08:00
check ( status in ( ' active ' , ' vacation ' , ' inactive ' , ' pinged ' ) ) ,
2008-02-23 11:33:32 -08:00
check ( gpg_keyid ~ ' ^[0-9A-F]{17}$ ' ) -- This one seems to be a bit strong.
2008-02-14 20:06:29 -08:00
) ;
2008-02-23 11:33:32 -08:00
create index people_status_idx on people ( status ) ;
cluster people_status_idx on people ;
2008-02-16 12:10:44 -08:00
-- tg_user::email_address needs to use one of these.
2008-02-23 12:10:22 -08:00
-- this table is distressingly complex. We could normalize it and use
-- multiple tables but that is a bit silly. We are mapping:
-- 1:person => Multiple Email addresses
-- 1:email => Multiple purposes
-- 1:email => 1:person_id
-- Currently using a trigger to do this.
--
-- What can we do to ensure the user always has a primary email without making
-- the application code overly complex?
2008-02-16 12:10:44 -08:00
CREATE TABLE person_emails (
2008-02-23 11:33:32 -08:00
email text NOT NULL ,
person_id INTEGER references people ( id ) not null ,
purpose text NOT NULL ,
validtoken text NULL ,
primary key ( purpose , person_id ) ,
check ( purpose ~ ( ' (bugzilla|primary|cla|pending|other[0-9]+) ' ) )
2008-02-16 12:10:44 -08:00
) ;
2008-02-23 11:33:32 -08:00
create index person_emails_email_idx on person_emails ( email ) ;
2008-02-23 12:10:22 -08:00
create index person_emails_person_id_idx on person_emails ( person_id ) ;
2008-02-23 11:33:32 -08:00
cluster person_emails_person_id_idx on person_emails ;
2008-02-14 20:06:29 -08:00
CREATE TABLE configs (
2008-02-15 14:59:06 -08:00
id SERIAL PRIMARY KEY ,
person_id integer references people ( id ) ,
2008-02-15 15:10:31 -08:00
application TEXT not null ,
attribute TEXT not null ,
2008-02-15 14:59:06 -08:00
-- The value should be a simple value or a json string.
-- Please create more config keys rather than abusing this with
-- large datastructures.
value TEXT ,
2008-02-19 16:07:46 -08:00
check ( application in ( ' asterisk ' , ' moin ' , ' myfedora ' , ' openid ' ) )
-- Might end up removing openid, depending on how far we take the provider
2008-02-14 20:06:29 -08:00
) ;
2008-02-23 12:10:22 -08:00
create index configs_person_id_idx on configs ( person_id ) ;
create index configs_application_idx on configs ( application ) ;
cluster configs_person_id_idx on configs ;
2008-02-15 10:37:00 -08:00
CREATE TABLE groups (
2008-02-16 12:10:44 -08:00
-- tg_group::group_id
2008-02-15 14:59:06 -08:00
id INTEGER PRIMARY KEY NOT NULL DEFAULT nextval ( ' group_seq ' ) ,
2008-02-16 12:10:44 -08:00
-- tg_group::group_name
2008-02-15 14:59:06 -08:00
name VARCHAR ( 32 ) UNIQUE NOT NULL ,
2008-02-16 12:10:44 -08:00
-- tg_group::display_name
display_name TEXT ,
2008-02-15 14:59:06 -08:00
owner_id INTEGER NOT NULL REFERENCES people ( id ) ,
group_type VARCHAR ( 16 ) ,
2008-02-25 15:29:37 -06:00
needs_sponsor BOOLEAN DEFAULT FALSE ,
user_can_remove BOOLEAN DEFAULT TRUE ,
2008-02-15 14:54:27 -08:00
prerequisite_id INTEGER REFERENCES groups ( id ) ,
joinmsg TEXT NULL DEFAULT ' ' ,
2008-02-16 12:10:44 -08:00
-- tg_group::created
creation TIMESTAMP DEFAULT NOW ( ) ,
2008-02-15 14:54:27 -08:00
check ( group_type in ( ' bugzilla ' , ' cvs ' , ' bzr ' , ' git ' , ' hg ' , ' mtn ' ,
2008-02-15 15:10:31 -08:00
' svn ' , ' shell ' , ' torrent ' , ' tracker ' , ' tracking ' , ' user ' ) )
2008-02-14 20:06:29 -08:00
) ;
2008-02-23 12:10:22 -08:00
create index groups_group_type_idx on groups ( group_type ) ;
cluster groups_group_type_idx on groups ;
--
-- Group Emails are slightly different than person emails.
-- We are much more relaxed about email "ownership". A group can share an
-- email address with another group. (For instance, xen-maint and
-- kernel-maint might share the same email address for mailing list and
-- bugzilla.
--
2008-02-15 10:37:00 -08:00
create table group_emails (
2008-02-23 12:10:22 -08:00
email text not null ,
2008-02-15 15:10:31 -08:00
group_id INTEGER references groups ( id ) not null ,
2008-02-15 14:59:06 -08:00
purpose text not null ,
2008-02-23 12:10:22 -08:00
primary key ( purpose , group_id ) ,
check ( purpose in ( ' bugzilla ' , ' primary ' , ' mailing list ' ) )
2008-02-14 20:06:29 -08:00
) ;
2008-02-23 12:10:22 -08:00
create index group_emails_email_idx on group_emails ( email ) ;
create index group_emails_group_id_idx on group_emails ( group_id ) ;
cluster group_emails_group_id_idx on group_emails ;
2008-02-16 12:20:51 -08:00
CREATE TABLE person_roles (
person_id INTEGER NOT NULL REFERENCES people ( id ) ,
group_id INTEGER NOT NULL REFERENCES groups ( id ) ,
-- role_type is something like "user", "administrator", etc.
-- role_status tells us whether this has been approved or not
role_type text NOT NULL ,
role_status text DEFAULT ' unapproved ' ,
internal_comments text ,
sponsor_id INTEGER REFERENCES people ( id ) ,
creation TIMESTAMP DEFAULT NOW ( ) ,
2008-02-19 16:07:46 -08:00
approval TIMESTAMP DEFAULT NULL ,
2008-02-19 11:52:46 -08:00
primary key ( person_id , group_id ) ,
2008-02-16 12:20:51 -08:00
check ( role_status in ( ' approved ' , ' unapproved ' ) ) ,
check ( role_type in ( ' user ' , ' administrator ' , ' sponsor ' ) )
) ;
2008-02-23 12:10:22 -08:00
create index person_roles_person_id_idx on person_roles ( person_id ) ;
create index person_roles_group_id_idx on person_roles ( group_id ) ;
-- We could cluster on either person or group. The choice of group is because
-- groups are larger and therefore will take more memory if guessed wrong.
-- Open to reevaluation.
cluster person_roles_group_id_idx on person_roles ;
2008-02-15 10:37:00 -08:00
CREATE TABLE group_roles (
2008-02-15 14:59:06 -08:00
member_id INTEGER NOT NULL REFERENCES groups ( id ) ,
group_id INTEGER NOT NULL REFERENCES groups ( id ) ,
role_type text NOT NULL ,
role_status text DEFAULT ' unapproved ' ,
internal_comments text ,
sponsor_id INTEGER REFERENCES people ( id ) ,
creation TIMESTAMP DEFAULT NOW ( ) ,
approval TIMESTAMP DEFAULT NOW ( ) ,
2008-02-19 11:52:46 -08:00
primary key ( member_id , group_id ) ,
2008-02-15 14:59:06 -08:00
check ( role_status in ( ' approved ' , ' unapproved ' ) ) ,
check ( role_type in ( ' user ' , ' administrator ' , ' sponsor ' ) )
2008-02-14 20:06:29 -08:00
) ;
2008-02-23 12:10:22 -08:00
create index group_roles_member_id_idx on group_roles ( member_id ) ;
create index group_roles_group_id_idx on group_roles ( group_id ) ;
-- We could cluster on either member or group. The choice of member is
-- because member pages will be viewed more frequently.
-- Open to reevaluation.
cluster group_roles_group_id_idx on group_roles ;
2008-02-14 20:06:29 -08:00
-- action r == remove
-- action a == add
create table bugzilla_queue (
2008-02-15 14:54:27 -08:00
email text not null ,
2008-02-15 15:10:31 -08:00
group_id INTEGER references groups ( id ) not null ,
person_id INTEGER references people ( id ) not null ,
action CHAR ( 1 ) not null ,
2008-02-15 14:54:27 -08:00
primary key ( email , group_id ) ,
check ( action ~ ' [ar] ' )
2008-02-14 20:06:29 -08:00
) ;
2008-02-21 15:04:19 -08:00
-- Log changes to the account system
create table log (
id serial primary key ,
2008-02-21 17:03:44 -08:00
author_id INTEGER references people ( id ) not null ,
2008-02-21 15:04:19 -08:00
changetime TIMESTAMP default NOW ( ) ,
description TEXT
) ;
2008-02-23 12:10:22 -08:00
create index log_changetime_idx on log ( changetime ) ;
cluster log_changetime_idx on log ;
2008-02-16 12:10:44 -08:00
--
-- turbogears session tables
--
create table visit (
visit_key CHAR ( 40 ) primary key ,
created TIMESTAMP not null default now ( ) ,
expiry TIMESTAMP
) ;
2008-02-23 12:10:22 -08:00
create index visit_expiry_idx on visit ( expiry ) ;
cluster visit_expiry_idx on visit ;
2008-02-16 12:10:44 -08:00
create table visit_identity (
visit_key CHAR ( 40 ) primary key references visit ( visit_key ) ,
user_id INTEGER references people ( id )
) ;
2008-02-23 11:05:11 -08:00
--
-- Check that email is unique. This is implemented as a trigger rather than a
-- constraint because implementing as a constraint would require an extra
-- table and a view to keep everything simple for the consuming code.
--
create or replace function check_email_unique ( ) returns trigger AS $ email $
if TD [ ' event ' ] = = ' UPDATE ' :
2008-02-25 12:01:28 -06:00
if TD [ ' old ' ] [ ' email ' ] = = TD [ ' new ' ] [ ' email ' ] :
2008-02-23 11:05:11 -08:00
# email was not modified so let this proceed
return None
2008-02-25 12:01:28 -06:00
plan = plpy . prepare ( ' SELECT email FROM person_emails WHERE email = $1 '
' and person_id != $2 ' , ( ' text ' , ' text ' ) )
results = plpy . execute ( plan , ( TD [ ' new ' ] [ ' email ' ] , TD [ ' new ' ] [ ' person_id ' ] ) , 1 )
2008-02-23 11:05:11 -08:00
if results :
# Email already exists for another person, we cannot save.
# Abort the transaction.
2008-02-25 12:01:28 -06:00
raise plpy . error ( ' Duplicate email address %s ' % TD [ ' new ' ] [ ' email ' ] )
2008-02-23 11:05:11 -08:00
# The address checks out fine.
return None
$ email $ language plpythonu ;
create trigger person_check_email_unique before update or insert
on person_emails
for each row execute procedure check_email_unique ( ) ;
--
-- When a person's fedorabugs role is updated, add them to bugzilla queue.
--
create or replace function bugzilla_sync ( ) returns trigger as $ bz_sync $
# Get the group id for fedorabugs
result = plpy . execute ( " select id from groups where name = 'fedorabugs' " , 1 )
if not result :
# Danger Will Robinson! A basic FAS group does not exist!
plpy . error ( ' Basic FAS group fedorabugs does not exist ' )
2008-02-25 14:29:52 -06:00
row = TD [ ' new ' ]
2008-02-25 16:10:43 -06:00
2008-02-23 11:05:11 -08:00
# If this is not a fedorabugs role, no change needed
2008-02-25 14:29:52 -06:00
if row [ ' group_id ' ] ! = result [ 0 ] [ ' id ' ] :
2008-02-23 11:05:11 -08:00
return None
2008-02-25 16:10:43 -06:00
2008-02-23 11:05:11 -08:00
# Decide which row we are operating on and the action to take
if TD [ ' event ' ] = = ' DELETE ' :
# 'r' for removing an entry from bugzilla
newaction = ' r '
2008-02-25 12:01:28 -06:00
row = TD [ ' old ' ]
2008-02-23 11:05:11 -08:00
else :
# insert or update
2008-02-25 12:01:28 -06:00
row = TD [ ' new ' ]
2008-02-25 14:29:52 -06:00
if row [ ' role_status ' ] = = ' approved ' :
2008-02-23 11:05:11 -08:00
# approved so add an entry to bugzilla
newaction = ' a '
else :
# no longer approved so remove the entry from bugzilla
newaction = ' r '
# Retrieve the bugzilla email address
plan = plpy . prepare ( " select email, purpose from person_emails "
" where person_id = $1 and purpose in ('bugzilla', 'primary') " ,
2008-02-25 12:01:28 -06:00
( ' text ' , ) )
2008-02-25 16:10:43 -06:00
result = plpy . execute ( plan , row [ ' person_id ' ] )
2008-02-23 11:05:11 -08:00
email = None
for record in result :
email = record . email
2008-02-25 12:01:28 -06:00
if record [ ' purpose ' ] = = ' bugzilla ' :
2008-02-23 11:05:11 -08:00
break
if not email :
raise plpy . error ( ' Cannot approve fedorabugs for person_id(%s) because they have no email address to use with bugzilla ' % row . person_id )
# If there is already a row in bugzilla_queue update, otherwise insert
plan = plpy . prepare ( " select email from bugzilla_queue where email = $1 " ,
( ' text ' , ) )
result = plpy . execute ( plan , ( email , ) , 1 )
if result :
plan = plpy . prepare ( " update bugzilla_queue set action = $1 "
" where email = $2 " , ( ' char ' , ' text ' ) )
plpy . execute ( plan , ( newaction , email ) )
else :
plan = plpy . prepare ( " insert into bugzilla_queue (email, group_id "
" , person_id, action) values ($1, $2, $3, $4) " ,
2008-02-25 12:01:28 -06:00
( ' text ' , ' text ' , ' text ' , ' char ' ) )
2008-02-23 11:05:11 -08:00
plpy . execute ( plan , ( email , row . group_id , row . person_id , newaction ) )
return None
$ bz_sync $ language plpythonu ;
2008-02-14 20:06:29 -08:00
create trigger role_bugzilla_sync before update or insert or delete
2008-02-15 10:37:00 -08:00
on person_roles
2008-02-14 20:06:29 -08:00
for each row execute procedure bugzilla_sync ( ) ;
2008-02-23 11:05:11 -08:00
--
-- When an email address changes, check whether it needs to be changed in
-- bugzilla as well.
--
2008-02-14 20:06:29 -08:00
create or replace function bugzilla_sync_email ( ) returns trigger AS $ bz_sync_e $
2008-02-23 11:05:11 -08:00
if TD [ ' event ' ] = = ' DELETE ' :
2008-02-25 12:01:28 -06:00
row = TD [ ' old ' ]
2008-02-23 11:05:11 -08:00
else :
2008-02-25 12:01:28 -06:00
row = TD [ ' new ' ]
2008-02-23 11:05:11 -08:00
if TD [ ' event ' ] = = ' UPDATE ' :
2008-02-25 12:01:28 -06:00
if TD [ ' old ' ] [ ' email ' ] = = TD [ ' new ' ] [ ' email ' ] :
2008-02-23 11:05:11 -08:00
# Email has not changed. We do not care
return None
2008-02-25 12:01:28 -06:00
if row [ ' purpose ' ] not in ( ' bugzilla ' , ' primary ' ) :
2008-02-23 11:05:11 -08:00
# The change is to an email address that does not affect bugzilla
return None
2008-02-25 12:01:28 -06:00
elif row [ ' purpose ' ] = = ' primary ' :
2008-02-23 11:05:11 -08:00
# Check if there is a better email.
plan = plpy . prepare ( " select email from person_emails where "
2008-02-25 12:01:28 -06:00
" purpose = 'bugzilla' and person_id = $1 " , ( ' text ' , ) )
result = plpy . execute ( plan , ( row [ ' person_id ' ] , ) , 1 )
2008-02-23 11:05:11 -08:00
if result :
# If the change is to primary but there is a bugzilla address, it
# will have no effect.
return None
# Check that the person belongs to fedorabugs
plan = plpy . prepare ( " select * from people as p, person_roles as r, "
" groups as g where p.id = r.person_id and r.group_id = g.id "
" and r.role_status = 'approved' and g.name = 'fedorabugs' "
2008-02-25 12:01:28 -06:00
" and p.id = $1 " , ( ' text ' , ) )
result = plpy . execute ( plan , ( row [ ' person_id ' ] , ) , 1 )
2008-02-23 11:05:11 -08:00
if not result :
# Person does not belong to fedorabugs so this will have no effect.
return None
# We now know that we have changes to make
#
# Remove the old Email address
#
oldEmail = None
if TD [ ' event ' ] in ( ' DELETE ' , ' UPDATE ' ) :
2008-02-25 12:01:28 -06:00
oldEmail = TD [ ' old ' ] [ ' email ' ]
elif row [ ' purpose ' ] = = ' bugzilla ' :
2008-02-23 11:05:11 -08:00
# Insert: check if there is an email for primary that this email is
# superceding
plan = plpy . prepare ( " select email from person_emails "
2008-02-25 12:01:28 -06:00
" where purpose = 'primary' and person_id = $1 " , ( ' text ' , ) )
result = plpy . execute ( plan , ( row [ ' person_id ' ] , ) , 1 )
2008-02-23 11:05:11 -08:00
if result :
oldEmail = result [ 0 ] . email
if oldEmail :
plan = plpy . prepare ( " select email from bugzilla_queue where email = $1 " ,
( ' text ' , ) )
result = plpy . execute ( plan , oldEmail , 1 )
if result :
plan = plpy . prepare ( " update bugzilla_queue set action = 'r' "
" where email = $1 " , ( ' text ' , ) )
plpy . execute ( plan , ( oldEmail ) )
else :
plan = plpy . prepare ( " insert into bugzilla_queue () values(email "
" , group_id, person_id, action) values ($1, $2, $3, 'r') " ,
2008-02-25 12:01:28 -06:00
( ' text ' , ' text ' , ' text ' ) )
plpy . execute ( plan , ( oldEmail , row [ ' group_id ' ] , row [ ' person_id ' ] ) )
2008-02-23 11:05:11 -08:00
#
# Add a new email address to bugzilla
#
newEmail = None
if TD [ ' event ' ] in ( ' INSERT ' , ' UPDATE ' ) :
2008-02-25 12:01:28 -06:00
newEmail = TG [ ' new ' ]
elif row [ ' purpose ' ] = = ' bugzilla ' :
2008-02-23 11:05:11 -08:00
# When deleting a bugzilla email, check if there is a primary to
# fallback on
plan = plpy . prepare ( " select email from person_emails "
2008-02-25 12:01:28 -06:00
" where purpose = 'primary' and person_id = $1 " , ( ' text ' , ) )
result = plpy . execute ( plan , ( row [ ' person_id ' ] , ) , 1 )
2008-02-23 11:05:11 -08:00
if result :
2008-02-25 12:01:28 -06:00
newEmail = result [ 0 ] [ ' email ' ]
2008-02-23 11:05:11 -08:00
if newEmail :
plan = plpy . prepare ( " select email from bugzilla_queue where email = $1 " ,
( ' text ' , ) )
result = plpy . execute ( plan , newEmail , 1 )
if result :
plan = plpy . prepare ( " update bugzilla_queue set action = 'a' "
" where email = $1 " , ( ' text ' , ) )
plpy . execute ( plan , ( newEmail ) )
else :
plan = plpy . prepare ( " insert into bugzilla_queue () values(email "
" , group_id, person_id, action) values ($1, $2, $3, 'a') " ,
2008-02-25 12:01:28 -06:00
( ' text ' , ' text ' , ' text ' ) )
plpy . execute ( plan , ( newEmail , row [ ' group_id ' ] , row [ ' person_id ' ] ) )
2008-02-23 11:05:11 -08:00
return None
$ bz_sync_e $ language plpythonu ;
create trigger email_bugzilla_sync before update or insert or delete
2008-02-25 12:01:28 -06:00
on person_emails
2008-02-14 20:06:29 -08:00
for each row execute procedure bugzilla_sync_email ( ) ;
2008-02-16 12:20:51 -08:00
-- For Fas to connect to the database
2008-02-25 14:14:52 -06:00
GRANT ALL ON TABLE people , groups , person_roles , person_emails , group_roles , group_emails , bugzilla_queue , configs , person_seq , group_seq , visit , visit_identity TO GROUP fedora ;
2008-02-16 12:20:51 -08:00
-- For other services to connect to the necessary session tables
GRANT ALL ON TABLE visit , visit_identity TO GROUP apache ;
-- For now other services would have to connect to the db to get auth
-- information so we need to allow select access on all these tables :-(
GRANT SELECT ON TABLE people , groups , person_roles , person_emails , group_roles , group_emails , configs TO GROUP apache ;
2008-02-25 14:09:13 -06:00
-- Create default admin user
INSERT INTO people ( username , human_name , password ) VALUES ( ' admin ' , ' Admin User ' , ' admin ' ) ;
-- Create default groups and populate
INSERT INTO groups ( name , display_name , owner_id ) VALUES ( ' accounts ' , ' Account System Admins ' , ( SELECT id from people where username = ' admin ' ) ) ;
2008-02-25 14:29:52 -06:00
INSERT INTO groups ( name , display_name , owner_id ) VALUES ( ' fedorabugs ' , ' Fedora Bugs Group ' , ( SELECT id from people where username = ' admin ' ) ) ;
INSERT INTO person_roles ( person_id , group_id , role_type , role_status , internal_comments , sponsor_id ) VALUES ( ( SELECT id from people where username = ' admin ' ) , ( select id from groups where name = ' accounts ' ) , ' administrator ' , ' approved ' , ' created at install time ' , ( SELECT id from people where username = ' admin ' ) ) ;
-- Give admin user his email address
INSERT INTO person_emails ( email , person_id , purpose , validtoken ) VALUES ( ' root@localhost ' , ( SELECT id from people where username = ' admin ' ) , ' primary ' , ' valid ' ) ;