-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsorpeople-setup.sql
91 lines (77 loc) · 5.29 KB
/
sorpeople-setup.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# After creating the sorpeople database and tables, use this SQL script to
# create the Views needed by Grouper
CREATE OR REPLACE VIEW grouper_course_list_all_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),LOWER(c->>'crsenum'),'students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'crsenum' AS crsenum,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid;
CREATE OR REPLACE VIEW grouper_course_list_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),LOWER(c->>'crsenum'),LOWER(c->>'sect'),'students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'crsenum' AS crsenum,c->>'sect' as section,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid;
CREATE OR REPLACE VIEW grouper_course_list_100level_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),'100-level','students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid and c->>'crsenum' < '200';
CREATE OR REPLACE VIEW grouper_course_list_gradlevel_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),'grad-level','students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid and c->>'crsenum' >= '500';
CREATE OR REPLACE VIEW grouper_course_list_200level_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),'200-level','students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid and c->>'crsenum' >= '200' and c->>'crsenum' < '300';
CREATE OR REPLACE VIEW grouper_course_list_300level_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),'300-level','students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid and c->>'crsenum' >= '300' and c->>'crsenum' < '400';
CREATE OR REPLACE VIEW grouper_course_list_400level_v AS
select distinct concat_ws(':','course',c->>'semester',LOWER(c->>'crsename'),'400-level','students_systemOfRecord') AS group_name,
u.uuid AS "SUBJECT_ID",
LOWER(c->>'crsename') AS crsename,
c->>'semester' AS semester
FROM sorpeople AS t, jsonb_array_elements(t.userdata->'reginfo'->'course') AS c, sorpeople_uuid as u WHERE t.sfuid = u.sfuid and c->>'crsenum' >= '400' and c->>'crsenum' < '500';
#Grouper Employees View, replacing illegal chars in group_name:
CREATE OR REPLACE VIEW grouper_employees_v AS
select distinct concat_ws(':'::text,'basis:affiliations',regexp_replace(lower(j.value ->> 'afflname'::text),'[^a-zA-Z0-9-]','_','g') ) as group_name,
u.uuid as "SUBJECT_ID",
j->>'status' as status,
u.sfuid as sfuid
FROM sorpeople as t,sorpeople_uuid as u,jsonb_array_elements(t.userdata->'job') as j where j->>'status' <> 'T' and t.sfuid = u.sfuid and j.value->>'afflname'::text != '';
#Grouper Departments View
CREATE VIEW grouper_depts_v AS
select distinct concat_ws(':'::text,'basis:depts:units',j->>'deptcode') as group_name,
u.uuid as "SUBJECT_ID",
j->>'status' as status,
u.sfuid as sfuid
FROM sorpeople as t,sorpeople_uuid as u,jsonb_array_elements(t.userdata->'job') as j where j->>'status' <> 'T' and j->>'status' <> 'Q' and j->>'status' <> 'R' and t.sfuid = u.sfuid;
#Grouper Academic Plans Views
CREATE OR REPLACE VIEW grouper_academic_plans_v as
select distinct concat_ws(':'::text, 'course:plans',regexp_replace(p->>'name'::text,'[^a-zA-Z0-9-]','_','g')) as group_name,
u.uuid as "SUBJECT_ID"
from sorpeople as t, jsonb_array_elements(t.userdata->'reginfo'->'program') as p, sorpeople_uuid as u where t.status='active' and t.source = 'SIMS' and t.sfuid = u.sfuid;
# Give Grouper user permission to access Views
grant select on grouper_course_list_100level_v to grouperadmin,amaint;
grant select on grouper_course_list_200level_v to grouperadmin,amaint;
grant select on grouper_course_list_300level_v to grouperadmin,amaint;
grant select on grouper_course_list_400level_v to grouperadmin,amaint;
grant select on grouper_course_list_gradlevel_v to grouperadmin,amaint;
grant select on grouper_course_list_all_v to grouperadmin,amaint;
grant select on grouper_course_list_v to grouperadmin,amaint;
grant select on grouper_employees_v to grouperadmin,amaint;
grant select on grouper_depts_v to grouperadmin,amaint;
grant select on grouper_academic_plans_v to grouperadmin,amaint;
grant select on grouper_loader_groups to grouperadmin;