/[A3C]/lib/A3C/View/Strix.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/A3C/View/Strix.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 161 by dpavlin, Sun Jun 15 16:11:17 2008 UTC revision 186 by dpavlin, Mon Jun 16 22:56:14 2008 UTC
# Line 6  A3C::View::Strix Line 6  A3C::View::Strix
6    
7  =head1 DESCRIPTION  =head1 DESCRIPTION
8    
9  Display information about Strix sites  Display information about Strix instances
10    
11  =head1 TEMPLATES  =head1 TEMPLATES
12    
# Line 20  use Data::Dump qw/dump/; Line 20  use Data::Dump qw/dump/;
20    
21  =head2 /  =head2 /
22    
23  Display sites search and some stats  Display instaces search and some stats
24    
25  =cut  =cut
26    
27  template 'index.html' => page {  template 'index.html' => page {
28    
29          title is _('Strix sites');          title is _('Strix instances');
30    
31            my $orgs = A3C::Model::StrixInstanceCollection->new;
32            $orgs->unlimit;
33    
34            div { _('Number of instances in Strix: %1', $orgs->count ) };
35    
36          render_region(          render_region(
37                  name => 'user-selected-sites',                  name => 'selected-instances',
38                  path => '/strix/selected-sites'                  path => '/strix/selected-instances'
39          );          );
40    
41          render_region(          render_region(
42                  name => 'search_sites',                  name => 'search-instances',
43                  path => '/strix/search_sites',                  path => '/strix/search-instances',
44          );          );
45    
         h1 { _('Statistics') }  
   
         my $orgs = A3C::Model::StrixSiteCollection->new;  
         $orgs->unlimit;  
   
         dt { _('Number of Strix sites') }  
         dd { $orgs->count }  
   
46  };  };
47    
48  =head2 name_diff  =head2 name_diff
# Line 54  template 'index.html' => page { Line 51  template 'index.html' => page {
51    
52  template 'name_diff' => page {  template 'name_diff' => page {
53    
54          title is _('Strix sites | name differences between php config and internal state');          title is _('Strix name differences');
55    
56            render_region(
57                    name => 'selected-instances',
58                    path => '/strix/selected-instances'
59            );
60    
61          my $name_diff = A3C::SQL->new({ query => qq{          my $name_diff = A3C::SQL->new({ query => qq{
62                  select                  select
63                          site,hreduorgurl,                          instance,hreduorgurl,
64                          _site_name,o                          _site_name,o
65                  from strix_sites                  from strix_instances
66                  join hr_edu_orgs on cn = site                  join hr_edu_orgs on cn = instance
67                  where o != _site_name                  where o != _site_name
68          }});          }});
69    
70          h1 { _('Name differences') }          if ( $name_diff->count > 0 ) {
71          dd {  
72                  table {                  table {
73                          row {                          row {
74                                  th { _('Site') }                                  th {}
75                                  th { _('Strix site name') }                                  th { _('Instance') }
76                                    th { _('Strix instance name') }
77                                  th { _('hrEduOrg.o') }                                  th { _('hrEduOrg.o') }
78                          };                          };
79                          while ( my $row = $name_diff->next ) {                          while ( my $row = $name_diff->next ) {
80                                  row {                                  row {
81                                          cell { hyperlink( url => 'http://' . $row->hreduorgurl, label => $row->site ) }                                          cell { show( 'instance-op', 'Create', '+', $row->instance ) }
82                                            cell { $row->instance }
83                                          cell { $row->_site_name }                                          cell { $row->_site_name }
84                                          cell { $row->o }                                          cell { $row->o }
85                                  }                                  }
86                          }                          }
87                  }                  }
88            
89            } else {
90                    div { _("Can't find any instance of strix which has different name than data from LDAP") }
91          }          }
92    
93  };  };
94    
95  =head2 sql  =head2 sql
96    
97  Execute SQL query on site  Execute SQL query on instance
98    
99  =cut  =cut
100    
# Line 95  template 'sql' => page { Line 102  template 'sql' => page {
102    
103          title is _('Execute SQL');          title is _('Execute SQL');
104    
105            render_region(
106                    name => 'selected-instances',
107                    path => '/strix/selected-instances'
108            );
109    
110            render_region(
111                    name => 'execute-sql',
112                    path => '/strix/execute-sql',
113            );
114    
115    };
116    
117    sub strix {
118            my $instance = get('instance');
119            return Strix->new({ instance => $instance });
120    }
121    
122    =head2 sitemap
123    
124    =cut
125    
126    template 'sitemap' => page {
127    
128            title is _('Sitemap %1', get('instance'));
129    
130            render_region(
131                    name => 'selected-instances',
132                    path => '/strix/selected-instances'
133            );
134    
135            my $site_id = get('site_id') || 1;
136    
137            my $sitemap = strix->site_navigation( $site_id );
138    
139            sub full_url {
140                    my $p = shift;
141                    hyperlink(
142                            url => 'http://new.cms-qa.skole.hr' . $p->{url},
143                            label => $p->{naziv},
144                    );
145                    if ( $p->{type} eq 'category' ) {
146                            outs_raw(' ');
147                            hyperlink(
148                                    url => '/strix/layout?url=' . $p->{url},
149                                    label => _('layout'),
150                                    class => 'layout',
151                            );
152                    }
153            }
154    
155            sub children {
156                    my $c = shift;
157                    return unless defined $c->{children};
158                    ul {
159                            foreach my $p ( @{ $c->{children} } ) {
160                                    li {
161                                            { class is $p->{class} };
162                                            full_url( $p );
163                                            children( $p );
164                                    }
165                            }
166                    }
167            }
168    
169            ul {
170                    foreach my $p ( @$sitemap ) {
171                            li {
172                                    full_url( $p );
173                                    children( $p );
174                            }
175                    }
176            }
177    
178    };
179    
180    =head2 layout
181    
182    =cut
183    
184    template 'layout' => page {
185    
186            my $url = get('url') || '/';
187    
188            my $category = strix->category( $url );
189    
190            warn dump( $category );
191    
192            title is _('Layout %1 : %2',
193                    $category->{sitename},
194                    $category->{naziv},
195            );
196    
197            render_region(
198                    name => 'selected-instances',
199                    path => '/strix/selected-instances'
200            );
201    
202            hyperlink(
203                    url => 'http://' . $category->{sitename} . '/' . $category->{url},
204                    label => $category->{naziv},
205            );
206    
207            my $layout = strix->layout( $url );
208    
209            pre {
210                    dump( $layout );
211            }
212    
213    };
214    
215    =head1 REGIONS
216    
217    =head2 execute-sql
218    
219    Execute SQL query on instance
220    
221    =cut
222    
223    template 'execute-sql' => sub {
224    
225          my $action = new_action(          my $action = new_action(
226                  class   => 'StrixSQL',                  class   => 'StrixSQL',
227                  moniker => 'strix-sql',                  moniker => 'strix-sql',
228                  sticky_on_success => 1,                  sticky_on_success => 1,
229                  sticky_on_failure => 1,                  sticky_on_failure => 1,
230                    arguments => {
231                            instance => get('instance')
232                    }
233          );          );
234    
235          form {          form {
236                  render_action( $action => [ 'strix', 'sql' ] );                  render_action( $action => [ 'instance', 'sql' ] );
237                  form_submit( label => _('Execute SQL') );                  form_submit( label => _('Execute SQL') );
238          };          };
239    
# Line 114  template 'sql' => page { Line 244  template 'sql' => page {
244                          while (my $row = $sql->next) {                          while (my $row = $sql->next) {
245                                  row {                                  row {
246                                          foreach my $col ( $sql->_column_names ) {                                          foreach my $col ( $sql->_column_names ) {
                                                 warn "++ $col\n";  
247                                                  cell { $row->$col }                                                  cell { $row->$col }
248                                          }                                          }
249                                  }                                  }
# Line 123  template 'sql' => page { Line 252  template 'sql' => page {
252          }          }
253  };  };
254    
255  =head1 REGIONS  =head2 search-instances
   
 =head2 search_sites  
256    
257  =cut  =cut
258    
259  template 'search_sites' => sub {  template 'search-instances' => sub {
260    
261          h1 { _('Find site') }          h1 { _('Find instance') }
262    
263          my $action = new_action(          my $action = new_action(
264                  class   => 'SearchStrixSite',                  class   => 'SearchStrixInstance',
265                  moniker => 'search-strix-site',                  moniker => 'search-strix-instance',
266                  sticky_on_success => 1,                  sticky_on_success => 1,
267                  sticky_on_failure => 1,                  sticky_on_failure => 1,
268          );          );
269    
270    
271          form {          form {
272                  render_action( $action => [ 'site_contains', '_site_name_contains' ] );                  render_action( $action => [ 'instance_contains', '_site_name_contains' ] );
273                  form_submit( label => _('Search') );                  form_submit( label => _('Search') );
274          };          };
275    
# Line 153  template 'search_sites' => sub { Line 280  template 'search_sites' => sub {
280                  table {                  table {
281                          while (my $strix = $search->next) {                          while (my $strix = $search->next) {
282                                  row {                                  row {
283                                          cell { tt { $strix->site } }                                          cell { tt { $strix->instance } }
284                                          cell { $strix->_site_name }                                          cell { $strix->_site_name }
285                                          cell { show( 'site_selection', 'Create', '+', $strix->site ) }                                          cell { show( 'instance-op', 'Create', '+', $strix->instance ) }
286                                  }                                  }
287                          }                          }
288                  }                  }
# Line 163  template 'search_sites' => sub { Line 290  template 'search_sites' => sub {
290    
291  };  };
292    
293  =head2 selected_sites  =head2 selected-instances
294    
295  Show Selected sites for current user  Show Selected instances for current user
296    
297  =cut  =cut
298    
299  template 'selected-sites' => sub {  template 'selected-instances' => sub {
300          my $self = shift;          my $self = shift;
301    
302          warn "## IN selected-sites ",dump( @_ );  #       warn "## IN selected-instances ",dump( @_ );
303    
304          if ( my $op = get 'op' ) {          if ( my $op = get 'op' ) {
305                  my $site = get 'site' or die "no site?";                  my $op_instance = get 'op_instance' or die "no op_instance?";
306                  warn "# selected-sites $op on $site";                  warn "# selected-instances $op on $op_instance";
307    
308                  my $a;                  my $a;
309    
310                  if ( $op eq 'Create' ) {                  if ( $op eq 'Create' ) {
311    
312                          $a = new_action(                          $a = new_action(
313                                  class => $op . 'StrixSiteSelection',                                  class => $op . 'StrixInstanceSelection',
314                                  moniker => $op,                                  moniker => $op,
315                                  arguments => {                                  arguments => {
316                                          strix => $site,                                          instance => $op_instance,
317                                          by_user => $self->current_user->id,                                          by_user => $self->current_user->id,
318                                  },                                  },
319                          );                          );
320    
321                  } elsif ( $op eq 'Delete' ) {                  } elsif ( $op eq 'Delete' ) {
322    
323                          my $strix = A3C::Model::StrixSiteSelection->new;                          my $strix = A3C::Model::StrixInstanceSelection->new;
324                          $strix->load_by_cols( strix => $site, by_user => $self->current_user->id );                          $strix->load_by_cols( instance => $op_instance, by_user => $self->current_user->id );
325                          die "can't find site $site" unless $strix->id;                          warn "can't find instance $op_instance" unless $strix->id;
326                          $a = $strix->as_delete_action;                          $a = $strix->as_delete_action;
327    
328                  }                  }
329                  warn "# argument_values = ",dump( $a->argument_values );  #               warn "# argument_values = ",dump( $a->argument_values );
330                  $a->run;                  $a->run;
331                  warn "can't $op site $site" unless $a->result->success;  
332                    if ( $a->result->error ) {
333                            div {
334                                    { class is 'note error' }
335                                    $a->result->error;
336                            }
337                    }
338    
339                    set( op => '' );
340          }          }
341    
342          my $selected = A3C::Model::StrixSiteSelectionCollection->new;          my $selected = A3C::Model::StrixInstanceSelectionCollection->new;
343          $selected->limit( column => 'by_user', value => Jifty->web->current_user->id );          $selected->limit( column => 'by_user', value => Jifty->web->current_user->id );
344    
345          if ( $selected->count > 0 ) {          if ( $selected->count > 0 ) {
346    
347                  div { _('%1 sites selected', $selected->count ) }                  my $instance = get('instance');
348    
349                    div { _('%1 instances selected', $selected->count ) };
350                  table {                  table {
351                          while (my $s = $selected->next) {                          while (my $s = $selected->next) {
352                                  row {                                  row {
353                                          cell { tt { $s->strix->site } }                                          cell { tt {
354                                          cell { $s->strix->_site_name }                                                  if ( $s->instance->instance eq $instance ) {
355                                          cell { show( 'site_selection', 'Delete', '-', $s->strix->site ) }                                                          b { $instance }
356                                                    } else {
357                                                            hyperlink(
358                                                                    url => '?instance=' . $s->instance->instance,
359                                                                    label => $s->instance->instance
360                                                            )
361                                                    }
362                                            } }
363                                            cell { $s->instance->_site_name }
364                                            cell { show( 'instance-op', 'Delete', '-', $s->instance->instance ) }
365                                  }                                  }
366                          }                          }
367                  }                  }
368          } else {          } else {
369                  div { _('No sites selected') }                  div { _('No instances selected') }
370          }          }
371  };  };
372    
373  =head2 site_selection  =head2 instance-op
374    
375  Display button to add/remove site from selection  Display button to add/remove instance from selection
376    
377    show( 'site_selection', 'Delete', '-', $strix->site );    show( 'instance-op', 'Delete', '-', $strix->instace );
378    
379  =cut  =cut
380    
381  template 'site_selection' => sub {  template 'instance-op' => sub {
382          my $self = shift;          my $self = shift;
383    
384          warn "# site_selection = ",dump( @_ );  #       warn "# instance-op = ",dump( @_ );
385    
386          my ( $op, $label, $site ) = @_;          my ( $op, $label, $instance ) = @_;
387    
388          form {          form {
389                  hyperlink(                  hyperlink(
390                          label => $label,                          label => $label,
391                          onclick => {                          onclick => {
392                                  refresh => 'user-selected-sites',                                  refresh => 'selected-instances',
393                                  path => '/strix/selected-sites',                                  path => '/strix/selected-instances',
394                                  args => {                                  args => {
395                                          site => $site,                                          op_instance => $instance,
396                                          op => $op,                                          op => $op,
397                                  }                                  }
398                          },                          },

Legend:
Removed from v.161  
changed lines
  Added in v.186

  ViewVC Help
Powered by ViewVC 1.1.26