]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/cgi-bin/usr_group-setup.cgi
using dTree instead of WebFXTree
[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 description Description/ );
25
26 my @col_display_order = ( qw/id name parent description/ );
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 /*--------------------------------------------------|
97 | dTree 2.05 | www.destroydrop.com/javascript/tree/ |
98 |---------------------------------------------------|
99 | Copyright (c) 2002-2003 Geir Landrö               |
100 |--------------------------------------------------*/
101
102 .dtree {
103         font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
104         font-size: 11px;
105         color: #666;
106         white-space: nowrap;
107 }
108 .dtree img {
109         border: 0px;
110         vertical-align: middle;
111 }
112 .dtree a {
113         color: #333;
114         text-decoration: none;
115 }
116 .dtree a.node, .dtree a.nodeSel {
117         white-space: nowrap;
118         padding: 1px 2px 1px 2px;
119 }
120 .dtree a.node:hover, .dtree a.nodeSel:hover {
121         color: #333;
122         text-decoration: underline;
123 }
124 .dtree a.nodeSel {
125         background-color: #c0d2ec;
126 }
127 .dtree .clip {
128         overflow: hidden;
129 }
130
131
132         </style>
133         <script language='javascript' src='support/dtree.js'></script>
134 </head>
135
136 <body style='padding: 25px;'>
137
138 <a href="$config{index}">Home</a>
139
140 <h1>User Group Hierarchy Setup</h1>
141 <hr/>
142 HEADER
143
144 my $uri = $cgi->url(-relative=>1);
145
146 my $top;
147 for my $grp ( permission::grp_tree->search( {parent=>undef} ) ) {
148         my $name = $grp->name;
149         $top = $grp->id;
150         $name =~ s/'/\\'/og;
151         print <<"       HEADER";
152 <div style="float: left;">
153         <script language='javascript'>
154         var tree = new dTree("tree");
155         tree.add($grp, -1, "$name", "$uri?action=child&id=$grp", "$name");
156         HEADER
157         $top = $grp->id;
158         last;
159 }
160
161 for my $grp ( permission::grp_tree->search_like( {parent => '%'}, {order_by => 'id'} ) ) {
162         my $name = $grp->name;
163         $name =~ s/'/\\'/og;
164         my $parent = $grp->parent;
165         print "\ttree.add($grp, $parent, \"$name\", \"$uri?action=child&id=$grp\", \"$name\");\n";
166 }
167
168 print <<HEADER;
169         tree.closeAllChildren($top);
170         document.write(tree.toString());
171         </script>
172 </div>
173 <div style="float:right; width:50%;">
174 HEADER
175
176 #-------------------------------------------------------------------------------
177 # Logic part
178 #-------------------------------------------------------------------------------
179
180 if (my $action = $cgi->param('action')) {
181         if ( $action eq 'child' ) {
182                 my $id = $cgi->param('id');
183                 if ($id) {
184                         my $node = permission::grp_tree->retrieve($id);
185                         #-----------------------------------------------------------------------
186                         # child form
187                         #-----------------------------------------------------------------------
188
189                         print "<h2>Edit Group '".$node->name."'</h2>";
190                         print   "<form method='POST'>".
191                                 "<table class='table_class'><tr class='header_class'>\n";
192         
193                         print Tr(
194                                 th($org_cols{id}),
195                                 td( $node->id() ),
196                         );
197                         print Tr(
198                                 th($org_cols{name}),
199                                 td("<input type='text' name='name_$node' value=\"". $node->name() ."\">"),
200                         );
201                         print Tr(
202                                 th($org_cols{parent}),
203                                 td("<select name='parent_$node'>".do{
204                                                 my $out = '<option>-- Select One --</option>';
205                                                 for my $org ( sort {$a->id <=> $b->id} permission::grp_tree->retrieve_all) {
206                                                         $out .= "<option value='$org' ".do {
207                                                                 if ($node->parent == $org->id) {
208                                                                         "selected";
209                                                                 }}.'>'.$org->name.'</option>'
210                                                 }
211                                                 $out;
212                                         }."</select><input type='hidden' value='$node' name='id'>"),
213                         );
214                         print Tr(
215                                 th($org_cols{description}),
216                                 td("<input type='text' name='description_$node' value=\"". $node->description() ."\">"),
217                         );
218
219                         print Tr( "<td colspan='2'><input type='submit' name='action' value='Update'/></td>" );
220
221                         print   "</table></form><hr/>";
222
223
224                         print "<h2>Group Permissions</h2>";
225
226                         print   "<form method='POST'>".
227                                 "<table class='table_class'>\n".
228                                 "<tr class='header_class'><th>Permission</th><th>Select</th><th>At Depth</th></tr>";
229
230                         for my $perm ( sort {$a->code cmp $b->code} permission::perm_list->retrieve_all ) {
231                                 my $grp = $node;
232                                 my $out = '<select name="depth_'.$perm->id.'"><option value="">-- Select One --</option>';
233                                 for my $outype ( actor::org_unit_type->retrieve_all ) {
234                                         my $grp = $node;
235                                         $out .= "<option value='".$outype->depth."' ".do{
236                                                 my $stuff = '';
237                                                 do {
238                                                         if ($grp) {
239                                                                 my $setting = permission::grp_perm_map->search(
240                                                                                 { grp  => $grp->id,
241                                                                                   perm => $perm->id }
242                                                                 )->next;
243                                                                 $stuff = "selected " if($setting && $outype->depth == $setting->depth);
244                                                                 if($stuff && $setting && $setting->grp != $node->id) {
245                                                                         $out =~ s/^<select/<select disabled/o;
246                                                                 }
247                                                         }
248                                                 } while (!$stuff && $grp && ($grp = $grp->parent));
249                                                 $stuff;
250                                         }.">".$outype->name."</option>";
251                                 }
252                                 $out .= "</select>";
253                                 $grp = $node;
254                                 print Tr( "<td>".$perm->code."</td><td>".
255                                           "<input type='checkbox' name='permission_$perm' value='$perm' ".
256                                           do{
257                                                 my $stuff = '';
258                                                 do {
259                                                         if ($grp) {
260                                                                 my $setting = permission::grp_perm_map->search(
261                                                                                 { grp  => $grp->id,
262                                                                                   perm => $perm->id }
263                                                                 )->next;
264                                                                 $stuff = "checked " if ($setting);
265                                                                 $stuff .= "disabled " if($setting && $setting->grp != $node->id);
266                                                         }
267                                                 } while (!$stuff && $grp && ($grp = $grp->parent));
268                                                 $stuff;
269                                           }.
270                                           "></td><td>$out</td>"
271
272                                 );
273                         }
274                         
275                         print Tr( "<td colspan='3'><input type='hidden' value='$node' name='perms'>",
276                                   "<input type='submit' name='action' value='Set Permissions'/></td>" );
277                         print   "</table></form><hr/>";
278
279
280
281                         print "<h2>New Child</h2>";
282         
283                         print   "<form method='POST'>".
284                                 "<table class='table_class'>\n";
285
286                         print Tr(
287                                 th($org_cols{name}),
288                                 td("<input type='text' name='name'>"),
289                         );
290                         print Tr(
291                                 th($org_cols{description}),
292                                 td("<input type='text' name='description'>"),
293                         );
294                         print Tr( "<td colspan='2'><input type='hidden' value='$node' name='parent'>",
295                                   "<input type='submit' name='action' value='Add New'/></td>" );
296                         print   "</table></form><hr/>";
297
298                 }
299         }
300 }
301         
302 print "</div></body></html>";
303
304