]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/cgi-bin/usr_group-setup.cgi
initial bootstrapping "install dance" stuff
[Evergreen.git] / Open-ILS / src / cgi-bin / usr_group-setup.cgi
1 #!/usr/bin/perl
2 use strict;
3
4 use OpenILS::Application::Storage;
5 use OpenILS::Application::Storage::CDBI;
6
7 # I need to abstract the driver loading away...
8 use OpenILS::Application::Storage::Driver::Pg;
9
10 use CGI qw/:standard start_*/;
11
12 our %config;
13 do '../setup.pl';
14
15 OpenILS::Application::Storage::CDBI->connection($config{dsn},$config{usr},$config{pw});
16 OpenILS::Application::Storage::CDBI->db_Main->{ AutoCommit } = 1;
17
18 my $cgi = new CGI;
19
20 #-------------------------------------------------------------------------------
21 # setup part
22 #-------------------------------------------------------------------------------
23
24 my %org_cols = ( qw/id GroupID name Name parent ParentGroup/ );
25
26 my @col_display_order = ( qw/id name parent/ );
27
28 if (my $action = $cgi->param('action')) {
29         if ( $action eq 'Update' ) {
30                 for my $id ( ($cgi->param('id')) ) {
31                         my $u = permission::grp_tree->retrieve($id);
32                         for my $col ( keys %org_cols ) {
33                                 next if ($cgi->param($col."_$id") =~ /Select One/o);
34                                 $u->$col( $cgi->param($col."_$id") );
35                         }
36                         $u->update;
37                 }
38         } elsif ( $action eq 'Set Permissions' ) {
39                 my $grp = permission::grp_tree->retrieve($cgi->param('perms'));
40                 my @ids = $cgi->param('permission');
41                 for my $perm ( permission::perm_list->retrieve_all ) {
42                         if (my $id = $cgi->param('permission_'.$perm->id) ) {
43                                 my $p = permission::grp_perm_map->search({perm=>$id,grp=>$grp->id})->next;
44                                 my $d = $cgi->param("depth_$id");
45                                 if (!$p) {
46                                         $p = permission::grp_perm_map->create({perm=>$id,grp=>$grp->id,depth=>$d});
47                                 } else {
48                                         $p->depth( $d );
49                                 }
50                                 $p->update;
51                         } else {
52                                 permission::grp_perm_map->search({perm=>$perm->id,grp=>$grp->id})->delete_all;
53                         }
54                 }
55                 $cgi->param('action'=>'child');
56         } elsif ( $action eq 'Add New' ) {
57                 permission::grp_tree->create( { map { defined($cgi->param($_)) ? ($_ => $cgi->param($_)) : () } keys %org_cols } );
58         }
59 }
60
61 #-------------------------------------------------------------------------------
62 # HTML part
63 #-------------------------------------------------------------------------------
64
65 print <<HEADER;
66 Content-type: text/html
67
68 <html>
69
70 <head>
71         <style>
72                 table.table_class {
73                         border: dashed lightgrey 1px;
74                         background-color: #EEE;
75                         border-collapse: collapse;
76                 }
77
78                 deactivated {
79                         color: lightgrey;
80                 }
81
82                 tr.new_row_class {
83                         background: grey;
84                 }
85
86                 tr.row_class td {
87                         border: solid lightgrey 1px;
88                 }
89                 
90                 tr.header_class th {
91                         background-color: lightblue;
92                         border: solid blue 1px;
93                         padding: 2px;
94                 }
95
96         </style>
97         <script language='javascript' src='/js/widgets/xtree.js'></script>
98 </head>
99
100 <body style='padding: 25px;'>
101
102 <a href="$config{index}">Home</a>
103
104 <h1>User Group Hierarchy Setup</h1>
105 <hr/>
106 HEADER
107
108 my $uri = $cgi->url(-relative=>1);
109
110 my $top;
111 for my $grp ( permission::grp_tree->search( {parent=>undef} ) ) {
112         my $name = $grp->name;
113         $name =~ s/'/\\'/og;
114         print <<"       HEADER";
115 <div style="float: left;">
116         <script language='javascript'>
117
118                 function getById (id) { return document.getElementById(id); }
119                 function createAppElement (el) { return document.createElement(el); }
120                 function createAppTextNode (txt) { return document.createTextNode(txt); }
121         
122                 var node_$grp = new WebFXTree('$name','$uri?action=child&id=$grp');
123         HEADER
124         $top = $grp->id;
125         last;
126 }
127
128 for my $grp ( permission::grp_tree->search_like( {parent => '%'}, {order_by => 'id'} ) ) {
129         my $name = $grp->name;
130         $name =~ s/'/\\'/og;
131         my $parent = $grp->parent;
132         print <<"       JS"
133                 var node_$grp = new WebFXTreeItem('$name','$uri?action=child&id=$grp');
134         JS
135 }
136
137 for my $grp ( sort {$a->name cmp $b->name} permission::grp_tree->retrieve_all ) {
138         my $parent = $grp->parent;
139         next unless $parent;
140         print <<"       JS"
141                 node_$parent.add(node_$grp);
142         JS
143 }
144
145 print <<HEADER;
146                 document.write(node_$top);
147         </script>
148 </div>
149 <div style="float:right; width:50%;">
150
151 HEADER
152
153 #-------------------------------------------------------------------------------
154 # Logic part
155 #-------------------------------------------------------------------------------
156
157 if (my $action = $cgi->param('action')) {
158         if ( $action eq 'child' ) {
159                 my $id = $cgi->param('id');
160                 if ($id) {
161                         my $node = permission::grp_tree->retrieve($id);
162                         #-----------------------------------------------------------------------
163                         # child form
164                         #-----------------------------------------------------------------------
165
166                         print "<h2>Edit Group '".$node->name."'</h2>";
167                         print   "<form method='POST'>".
168                                 "<table class='table_class'><tr class='header_class'>\n";
169         
170                         print Tr(
171                                 th($org_cols{id}),
172                                 td( $node->id() ),
173                         );
174                         print Tr(
175                                 th($org_cols{name}),
176                                 td("<input type='text' name='name_$node' value=\"". $node->name() ."\">"),
177                         );
178                         print Tr(
179                                 th($org_cols{parent}),
180                                 td("<select name='parent_$node'>".do{
181                                                 my $out = '<option>-- Select One --</option>';
182                                                 for my $org ( sort {$a->id <=> $b->id} permission::grp_tree->retrieve_all) {
183                                                         $out .= "<option value='$org' ".do {
184                                                                 if ($node->parent == $org->id) {
185                                                                         "selected";
186                                                                 }}.'>'.$org->name.'</option>'
187                                                 }
188                                                 $out;
189                                         }."</select><input type='hidden' value='$node' name='id'>"),
190                         );
191
192                         print Tr( "<td colspan='2'><input type='submit' name='action' value='Update'/></td>" );
193
194                         print   "</table></form><hr/>";
195
196
197                         print "<h2>Group Permissions</h2>";
198
199                         print   "<form method='POST'>".
200                                 "<table class='table_class'>\n".
201                                 "<tr class='header_class'><th>Permission</th><th>Select</th><th>At Depth</th></tr>";
202
203                         for my $perm ( sort {$a->code cmp $b->code} permission::perm_list->retrieve_all ) {
204                                 my $grp = $node;
205                                 my $out = '<select name="depth_'.$perm->id.'"><option value="">-- Select One --</option>';
206                                 for my $outype ( actor::org_unit_type->retrieve_all ) {
207                                         my $grp = $node;
208                                         $out .= "<option value='".$outype->depth."' ".do{
209                                                 my $stuff = '';
210                                                 do {
211                                                         if ($grp) {
212                                                                 my $setting = permission::grp_perm_map->search(
213                                                                                 { grp  => $grp->id,
214                                                                                   perm => $perm->id }
215                                                                 )->next;
216                                                                 $stuff = "selected " if($setting && $outype->depth == $setting->depth);
217                                                                 if($stuff && $setting && $setting->grp != $node->id) {
218                                                                         $out =~ s/^<select/<select disabled/o;
219                                                                 }
220                                                         }
221                                                 } while (!$stuff && $grp && ($grp = $grp->parent));
222                                                 $stuff;
223                                         }.">".$outype->name."</option>";
224                                 }
225                                 $out .= "</select>";
226                                 $grp = $node;
227                                 print Tr( "<td>".$perm->code."</td><td>".
228                                           "<input type='checkbox' name='permission_$perm' value='$perm' ".
229                                           do{
230                                                 my $stuff = '';
231                                                 do {
232                                                         if ($grp) {
233                                                                 my $setting = permission::grp_perm_map->search(
234                                                                                 { grp  => $grp->id,
235                                                                                   perm => $perm->id }
236                                                                 )->next;
237                                                                 $stuff = "checked " if ($setting);
238                                                                 $stuff .= "disabled " if($setting && $setting->grp != $node->id);
239                                                         }
240                                                 } while (!$stuff && $grp && ($grp = $grp->parent));
241                                                 $stuff;
242                                           }.
243                                           "></td><td>$out</td>"
244
245                                 );
246                         }
247                         
248                         print Tr( "<td colspan='3'><input type='hidden' value='$node' name='perms'>",
249                                   "<input type='submit' name='action' value='Set Permissions'/></td>" );
250                         print   "</table></form><hr/>";
251
252
253
254                         print "<h2>New Child</h2>";
255         
256                         print   "<form method='POST'>".
257                                 "<table class='table_class'>\n";
258
259                         print Tr(
260                                 th($org_cols{name}),
261                                 td("<input type='text' name='name'>"),
262                         );
263                         print Tr( "<td colspan='2'><input type='hidden' value='$node' name='parent'>",
264                                   "<input type='submit' name='action' value='Add New'/></td>" );
265                         print   "</table></form><hr/>";
266
267                 }
268         }
269 }
270         
271 print "</div></body></html>";
272
273