version 1.10, 2004/08/24 08:31:02
|
version 1.18, 2007/04/11 23:02:01
|
Line 8
|
Line 8
|
-- create_proc a procedure to create the entry |
-- create_proc a procedure to create the entry |
-- delete_proc a procedure to delete the entry; it takes "keytbl.keycol" of the row to be deleted |
-- delete_proc a procedure to delete the entry; it takes "keytbl.keycol" of the row to be deleted |
-- expect_return a bitmap that marks whether create_proc (1) and delete_proc (2) return a value or not |
-- expect_return a bitmap that marks whether create_proc (1) and delete_proc (2) return a value or not |
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (1,'inetOrgPerson','persons','id','select create_person()','select delete_person(?)',0); |
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (1,'inetOrgPerson','persons','id','SELECT create_person()','DELETE FROM persons WHERE id=?',0); |
|
|
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (2,'document','documents','id','select create_doc()','select delete_doc(?)',0); |
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (2,'document','documents','id','SELECT create_doc()','DELETE FROM documents WHERE id=?',0); |
|
|
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (3,'organization','institutes','id','select create_o()','select delete_o(?)',0); |
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (3,'organization','institutes','id','SELECT create_o()','DELETE FROM institutes WHERE id=?',0); |
|
|
|
insert into ldap_oc_mappings (id,name,keytbl,keycol,create_proc,delete_proc,expect_return) values (4,'referral','referrals','id','SELECT create_referral()','DELETE FROM referrals WHERE id=?',0); |
|
|
-- attributeType mappings: describe how an attributeType for a certain objectClass maps to the SQL data. |
-- attributeType mappings: describe how an attributeType for a certain objectClass maps to the SQL data. |
-- id a unique number identifying the attribute |
-- id a unique number identifying the attribute |
Line 25 insert into ldap_oc_mappings (id,name,ke
|
Line 27 insert into ldap_oc_mappings (id,name,ke
|
-- delete_proc a procedure to delete the attribute; it takes the value of the attribute that is added, and the "keytbl.keycol" of the entry it is associated to |
-- delete_proc a procedure to delete the attribute; it takes the value of the attribute that is added, and the "keytbl.keycol" of the entry it is associated to |
-- param_order a mask that marks if the "keytbl.keycol" value comes before or after the value in add_proc (1) and delete_proc (2) |
-- param_order a mask that marks if the "keytbl.keycol" value comes before or after the value in add_proc (1) and delete_proc (2) |
-- expect_return a mask that marks whether add_proc (1) and delete_proc(2) are expected to return a value or not |
-- expect_return a mask that marks whether add_proc (1) and delete_proc(2) are expected to return a value or not |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (1,1,'cn','text(persons.name||'' ''||persons.surname)','persons',NULL,'select update_person_cn(?,?)',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (1,1,'cn','text(persons.name||'' ''||persons.surname)','persons',NULL,'SELECT update_person_cn(?,?)','SELECT 1 FROM persons WHERE persons.name=? AND persons.id=? AND 1=0',3,0); |
|
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (2,1,'telephoneNumber','phones.phone','persons,phones','phones.pers_id=persons.id','SELECT add_phone(?,?)','DELETE FROM phones WHERE phone=? AND pers_id=?',3,0); |
|
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (3,1,'givenName','persons.name','persons',NULL,'UPDATE persons SET name=? WHERE id=?','UPDATE persons SET name='''' WHERE (name=? OR name='''') AND id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (2,1,'telephoneNumber','phones.phone','persons,phones','phones.pers_id=persons.id','select add_phone(?,?)','select delete_phone(?,?)',3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (4,1,'sn','persons.surname','persons',NULL,'UPDATE persons SET surname=? WHERE id=?','UPDATE persons SET surname='''' WHERE (surname=? OR surname='''') AND id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (3,1,'givenName','persons.name','persons',NULL,'update persons set name=? where id=?',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (5,1,'userPassword','persons.password','persons','persons.password IS NOT NULL','UPDATE persons SET password=? WHERE id=?','UPDATE persons SET password=NULL WHERE password=? AND id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (4,1,'sn','persons.surname','persons',NULL,'update persons set surname=? where id=?',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (6,1,'seeAlso','seeAlso.dn','ldap_entries AS seeAlso,documents,authors_docs,persons','seeAlso.keyval=documents.id AND seeAlso.oc_map_id=2 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id',NULL,'DELETE from authors_docs WHERE authors_docs.doc_id=(SELECT documents.id FROM documents,ldap_entries AS seeAlso WHERE seeAlso.keyval=documents.id AND seeAlso.oc_map_id=2 AND seeAlso.dn=?) AND authors_docs.pers_id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (5,1,'userPassword','persons.password','persons','persons.password IS NOT NULL','update persons set password=? where id=?',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (7,2,'description','documents.abstract','documents',NULL,'UPDATE documents SET abstract=? WHERE id=?','UPDATE documents SET abstract='''' WHERE abstract=? AND id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (6,1,'seeAlso','seeAlso.dn','ldap_entries AS seeAlso,documents,authors_docs,persons','seeAlso.keyval=documents.id AND seeAlso.oc_map_id=2 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id',NULL,NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (8,2,'documentTitle','documents.title','documents',NULL,'UPDATE documents SET title=? WHERE id=?','UPDATE documents SET title='''' WHERE title=? AND id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (7,2,'description','documents.abstract','documents',NULL,'update documents set abstract=? where id=?',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (9,2,'documentAuthor','documentAuthor.dn','ldap_entries AS documentAuthor,documents,authors_docs,persons','documentAuthor.keyval=persons.id AND documentAuthor.oc_map_id=1 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id','INSERT INTO authors_docs (pers_id,doc_id) VALUES ((SELECT ldap_entries.keyval FROM ldap_entries WHERE upper(?)=upper(ldap_entries.dn)),?)','DELETE FROM authors_docs WHERE authors_docs.pers_id=(SELECT ldap_entries.keyval FROM ldap_entries WHERE upper(?)=upper(ldap_entries.dn)) AND authors_docs.doc_id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (8,2,'documentTitle','documents.title','documents',NULL,'update documents set title=? where id=?',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (10,2,'documentIdentifier','''document ''||text(documents.id)','documents',NULL,NULL,'SELECT 1 FROM documents WHERE title=? AND id=? AND 1=0',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (9,2,'documentAuthor','documentAuthor.dn','ldap_entries AS documentAuthor,documents,authors_docs,persons','documentAuthor.keyval=persons.id AND documentAuthor.oc_map_id=1 AND authors_docs.doc_id=documents.id AND authors_docs.pers_id=persons.id','select add_doc_author(?,?)','select delete_doc_author(?,?)',3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (11,3,'o','institutes.name','institutes',NULL,'UPDATE institutes SET name=? WHERE id=?','UPDATE institutes SET name='''' WHERE name=? AND id=?',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (10,2,'documentIdentifier','''document ''||text(documents.id)','documents',NULL,NULL,NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (12,3,'dc','lower(institutes.name)','institutes,ldap_entries AS dcObject,ldap_entry_objclasses AS auxObjectClass','institutes.id=dcObject.keyval AND dcObject.oc_map_id=3 AND dcObject.id=auxObjectClass.entry_id AND auxObjectClass.oc_name=''dcObject''',NULL,'SELECT 1 FROM institutes WHERE lower(name)=? AND id=? and 1=0',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (11,3,'o','institutes.name','institutes',NULL,'update institutes set name=? where id=?',NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (13,4,'ou','referrals.name','referrals',NULL,'UPDATE referrals SET name=? WHERE id=?','SELECT 1 FROM referrals WHERE name=? AND id=? and 1=0',3,0); |
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (12,3,'dc','lower(institutes.name)','institutes,ldap_entries AS dcObject,ldap_entry_objclasses as auxObjectClass','institutes.id=dcObject.keyval AND dcObject.oc_map_id=3 AND dcObject.id=auxObjectClass.entry_id AND auxObjectClass.oc_name=''dcObject''',NULL,NULL,3,0); |
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (14,4,'ref','referrals.url','referrals',NULL,'UPDATE referrals SET url=? WHERE id=?','SELECT 1 FROM referrals WHERE url=? and id=? and 1=0',3,0); |
|
|
|
insert into ldap_attr_mappings (id,oc_map_id,name,sel_expr,from_tbls,join_where,add_proc,delete_proc,param_order,expect_return) values (15,1,'userCertificate','certs.cert','persons,certs','certs.pers_id=persons.id',NULL,NULL,3,0); |
|
|
-- entries mapping: each entry must appear in this table, with a unique DN rooted at the database naming context |
-- entries mapping: each entry must appear in this table, with a unique DN rooted at the database naming context |
-- id a unique number > 0 identifying the entry |
-- id a unique number > 0 identifying the entry |
Line 68 insert into ldap_entries (id,dn,oc_map_i
|
Line 75 insert into ldap_entries (id,dn,oc_map_i
|
|
|
insert into ldap_entries (id,dn,oc_map_id,parent,keyval) values (6,'documentTitle=book2,dc=example,dc=com',2,1,2); |
insert into ldap_entries (id,dn,oc_map_id,parent,keyval) values (6,'documentTitle=book2,dc=example,dc=com',2,1,2); |
|
|
|
insert into ldap_entries (id,dn,oc_map_id,parent,keyval) values (7,'ou=Referral,dc=example,dc=com',4,1,1); |
|
|
-- objectClass mapping: entries that have multiple objectClass instances are listed here with the objectClass name (view them as auxiliary objectClass) |
-- objectClass mapping: entries that have multiple objectClass instances are listed here with the objectClass name (view them as auxiliary objectClass) |
-- entry_id the "ldap_entries.id" of the entry this objectClass value must be added |
-- entry_id the "ldap_entries.id" of the entry this objectClass value must be added |
-- oc_name the name of the objectClass; it MUST match the name of an objectClass that is loaded in slapd's schema |
-- oc_name the name of the objectClass; it MUST match the name of an objectClass that is loaded in slapd's schema |
insert into ldap_entry_objclasses (entry_id,oc_name) values (1,'dcObject'); |
insert into ldap_entry_objclasses (entry_id,oc_name) values (1,'dcObject'); |
|
|
insert into ldap_entry_objclasses (entry_id,oc_name) values (4,'referral'); |
insert into ldap_entry_objclasses (entry_id,oc_name) values (4,'strongAuthenticationUser'); |
|
|
-- referrals mapping: entries that should be treated as referrals are stored here |
insert into ldap_entry_objclasses (entry_id,oc_name) values (7,'extensibleObject'); |
-- entry_id the "ldap_entries.id" of the entry that should be treated as a referral |
|
-- url the URI of the referral |
|
insert into ldap_referrals (entry_id,url) values (4,'ldap://localhost/'); |
|
|
|
-- procedures |
-- procedures |
-- these procedures are specific for this RDBMS and are used in mapping objectClass and attributeType creation/modify/deletion |
-- these procedures are specific for this RDBMS and are used in mapping objectClass and attributeType creation/modify/deletion |
Line 107 as '
|
Line 112 as '
|
select $2 as return |
select $2 as return |
' language 'sql'; |
' language 'sql'; |
|
|
create function delete_person (int) returns int |
|
as ' |
|
delete from phones where pers_id = $1; |
|
delete from authors_docs where pers_id = $1; |
|
delete from persons where id = $1; |
|
delete from ldap_entry_objclasses where entry_id=(select id from ldap_entries where oc_map_id=1 and keyval = $1); |
|
delete from ldap_referrals where entry_id=(select id from ldap_entries where oc_map_id=1 and keyval = $1); |
|
select $1 as return |
|
' language 'sql'; |
|
|
|
create function add_phone (varchar, int) returns int |
create function add_phone (varchar, int) returns int |
as ' |
as ' |
select setval (''phones_id_seq'', (select case when max(id) is null then 1 else max(id) end from phones)); |
select setval (''phones_id_seq'', (select case when max(id) is null then 1 else max(id) end from phones)); |
Line 125 as '
|
Line 120 as '
|
select max(id) from phones |
select max(id) from phones |
' language 'sql'; |
' language 'sql'; |
|
|
create function delete_phone (varchar, int) returns int |
|
as ' |
|
delete from phones where phone = $1 and pers_id = $2; |
|
select $2 as result |
|
' language 'sql'; |
|
|
|
create function create_doc () returns int |
create function create_doc () returns int |
as ' |
as ' |
select setval (''documents_id_seq'', (select case when max(id) is null then 1 else max(id) end from documents)); |
select setval (''documents_id_seq'', (select case when max(id) is null then 1 else max(id) end from documents)); |
Line 139 as '
|
Line 128 as '
|
select max(id) from documents |
select max(id) from documents |
' language 'sql'; |
' language 'sql'; |
|
|
create function delete_doc (int) returns int |
|
as ' |
|
delete from documents where id = $1; |
|
delete from ldap_entry_objclasses where entry_id=(select id from ldap_entries where oc_map_id=2 and keyval = $1); |
|
delete from ldap_referrals where entry_id=(select id from ldap_entries where oc_map_id=2 and keyval = $1); |
|
select $1 as return |
|
' language 'sql'; |
|
|
|
create function create_o () returns int |
create function create_o () returns int |
as ' |
as ' |
select setval (''institutes_id_seq'', (select case when max(id) is null then 1 else max(id) end from institutes)); |
select setval (''institutes_id_seq'', (select case when max(id) is null then 1 else max(id) end from institutes)); |
Line 155 as '
|
Line 136 as '
|
select max(id) from institutes |
select max(id) from institutes |
' language 'sql'; |
' language 'sql'; |
|
|
create function delete_o (int) returns int |
create function create_referral () returns int |
as ' |
|
delete from institutes where id = $1; |
|
delete from ldap_entry_objclasses where entry_id=(select id from ldap_entries where oc_map_id=3 and keyval = $1); |
|
delete from ldap_referrals where entry_id=(select id from ldap_entries where oc_map_id=3 and keyval = $1); |
|
select $1 as return |
|
' language 'sql'; |
|
|
|
create function add_doc_author (varchar, int) returns int |
|
as ' |
as ' |
insert into authors_docs (pers_id,doc_id) values (( |
select setval (''referrals_id_seq'', (select case when max(id) is null then 1 else max(id) end from referrals)); |
select ldap_entries.keyval |
insert into referrals (id,name,url) |
from ldap_entries |
values ((select case when max(id) is null then 1 else nextval(''referrals_id_seq'') end from referrals),'''',''''); |
where upper($1) = upper(ldap_entries.dn) |
select max(id) from referrals |
),$2); |
|
select $2 as return |
|
' language 'sql'; |
|
|
|
create function delete_doc_author (varchar, int) returns int |
|
as ' |
|
delete from authors_docs where authors_docs.pers_id = ( |
|
select ldap_entries.keyval |
|
from ldap_entries |
|
where upper($1) = upper(ldap_entries.dn) |
|
) and authors_docs.doc_id = $2; |
|
select $2 as return |
|
' language 'sql'; |
' language 'sql'; |
|
|