Merge branch 'master' of https://github.com/jgoodman/Freeside
[freeside.git] / rt / share / html / Elements / Tabs
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
6 %#                                          <sales@bestpractical.com>
7 %#
8 %# (Except where explicitly superseded by other copyright notices)
9 %#
10 %#
11 %# LICENSE:
12 %#
13 %# This work is made available to you under the terms of Version 2 of
14 %# the GNU General Public License. A copy of that license should have
15 %# been provided with this software, but in any event can be snarfed
16 %# from www.gnu.org.
17 %#
18 %# This work is distributed in the hope that it will be useful, but
19 %# WITHOUT ANY WARRANTY; without even the implied warranty of
20 %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 %# General Public License for more details.
22 %#
23 %# You should have received a copy of the GNU General Public License
24 %# along with this program; if not, write to the Free Software
25 %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 %#
29 %#
30 %# CONTRIBUTION SUBMISSION POLICY:
31 %#
32 %# (The following paragraph is not intended to limit the rights granted
33 %# to you to modify and distribute this software under the terms of
34 %# the GNU General Public License and is only of importance to you if
35 %# you choose to contribute your changes and enhancements to the
36 %# community by submitting them to Best Practical Solutions, LLC.)
37 %#
38 %# By intentionally submitting any modifications, corrections or
39 %# derivatives to this work, or any other work intended for use with
40 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 %# you are the copyright holder for those contributions and you grant
42 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 %# royalty-free, perpetual, license to use, copy, create derivative
44 %# works based on those contributions, and sublicense and distribute
45 %# those contributions and any derivatives thereof.
46 %#
47 %# END BPS TAGGED BLOCK }}}
48 <& /Elements/PageLayout, show_menu => $show_menu &>
49 <a name="skipnav" id="skipnav" accesskey="8"></a>
50 <%INIT>
51
52 #my $request_path = $HTML::Mason::Commands::r->path_info;
53 my $request_path = $m->request_comp->path;
54 $request_path =~ s!/{2,}!/!g;
55
56 my $query_string = sub {
57     my %args = @_;
58     my $u    = URI->new();
59     $u->query_form(map { $_ => $args{$_} } sort keys %args);
60     return $u->query;
61 };
62
63 my $build_admin_menu = sub {
64     my $top = shift;
65     my $admin = $top->child( config => title => loc('Configuration'), path => '/Admin/', sort_order => 99 );
66     if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminUsers' ) ) {
67         my $users = $admin->child( users =>
68             title       => loc('Users'),
69             description => loc('Manage users and passwords'),
70             path        => '/Admin/Users/',
71         );
72         $users->child( select => title => loc('Select'), path => "/Admin/Users/" );
73         $users->child( create => title => loc('Create'), path => "/Admin/Users/Modify.html?Create=1" );
74     }
75     my $groups = $admin->child( groups =>
76         title       => loc('Groups'),
77         description => loc('Manage groups and group membership'),
78         path        => '/Admin/Groups/',
79     );
80     $groups->child( select => title => loc('Select'), path => "/Admin/Groups/" );
81     $groups->child( create => title => loc('Create'), path => "/Admin/Groups/Modify.html?Create=1" );
82
83     my $queues = $admin->child( queues =>
84         title       => loc('Queues'),
85         description => loc('Manage queues and queue-specific properties'),
86         path        => '/Admin/Queues/',
87     );
88     $queues->child( select => title => loc('Select'), path => "/Admin/Queues/" );
89     $queues->child( create => title => loc('Create'), path => "/Admin/Queues/Modify.html?Create=1" );
90
91     if ( $session{'CurrentUser'}->HasRight( Object => RT->System, Right => 'AdminCustomField' ) ) {
92         my $cfs = $admin->child( 'custom-fields' =>
93             title       => loc('Custom Fields'),
94             description => loc('Manage custom fields and custom field values'),
95             path        => '/Admin/CustomFields/',
96         );
97         $cfs->child( select => title => loc('Select'), path => "/Admin/CustomFields/" );
98         $cfs->child( create => title => loc('Create'), path => "/Admin/CustomFields/Modify.html?Create=1" );
99     }
100
101     my $admin_global = $admin->child( global =>
102         title       => loc('Global'),
103         description => loc('Manage properties and configuration which apply to all queues'),
104         path        => '/Admin/Global/',
105     );
106
107     my $scrips = $admin_global->child( scrips =>
108         title       => loc('Scrips'),
109         description => loc('Modify scrips which apply to all queues'),
110         path        => '/Admin/Global/Scrips.html',
111     );
112     $scrips->child( select => title => loc('Select'), path => "/Admin/Global/Scrips.html" );
113     $scrips->child( create => title => loc('Create'), path => "/Admin/Global/Scrip.html?Create=1" );
114
115     my $templates = $admin_global->child( templates =>
116         title       => loc('Templates'),
117         description => loc('Edit system templates'),
118         path        => '/Admin/Global/Templates.html',
119     );
120     $templates->child( select => title => loc('Select'), path => "/Admin/Global/Templates.html" );
121     $templates->child( create => title => loc('Create'), path => "/Admin/Global/Template.html?Create=1" );
122
123     my $cfadmin = $admin_global->child( 'custom-fields' =>
124         title       => loc('Custom Fields'),
125         description => loc('Modify global custom fields'),
126         path        => '/Admin/Global/CustomFields/index.html',
127     );
128     $cfadmin->child( users =>
129         title       => loc('Users'),
130         description => loc('Select custom fields for all users'),
131         path        => '/Admin/Global/CustomFields/Users.html',
132     );
133     $cfadmin->child( groups =>
134         title       => loc('Groups'),
135         description => loc('Select custom fields for all user groups'),
136         path        => '/Admin/Global/CustomFields/Groups.html',
137     );
138     $cfadmin->child( queues =>
139         title       => loc('Queues'),
140         description => loc('Select custom fields for all queues'),
141         path        => '/Admin/Global/CustomFields/Queues.html',
142     );
143     $cfadmin->child( tickets =>
144         title       => loc('Tickets'),
145         description => loc('Select custom fields for tickets in all queues'),
146         path        => '/Admin/Global/CustomFields/Queue-Tickets.html',
147     );
148     $cfadmin->child( transactions =>
149         title       => loc('Ticket Transactions'),
150         description => loc('Select custom fields for transactions on tickets in all queues'),
151         path        => '/Admin/Global/CustomFields/Queue-Transactions.html',
152     );
153     $cfadmin->child( 'custom-fields' =>
154         title       => loc('Articles'),
155         description => loc('Select Custom Fields for Articles in all Classes'),
156         path        => '/Admin/Global/CustomFields/Class-Article.html',
157     );
158
159     my $article_admin = $admin->child( articles => title => loc('Articles'), path => "/Admin/Articles/index.html" );
160     my $class_admin = $article_admin->child(classes => title => loc('Classes'), path => '/Admin/Articles/Classes/' );
161     $class_admin->child( select =>
162         title       => loc('Select'),
163         description => loc('Modify and Create Classes'),
164         path        => '/Admin/Articles/Classes/',
165     );
166     $class_admin->child( create =>
167         title       => loc('Create'),
168         description => loc('Modify and Create Custom Fields for Articles'),
169         path        => '/Admin/Articles/Classes/Modify.html?Create=1',
170     );
171
172
173     my $cfs = $article_admin->child( 'custom-fields' =>
174         title => loc('Custom Fields'),
175         path  => '/Admin/CustomFields/index.html?'.$m->comp('/Elements/QueryString', type => 'RT::Class-RT::Article'),
176     );
177     $cfs->child( select =>
178         title => loc('Select'),
179         path => '/Admin/CustomFields/index.html?'.$m->comp('/Elements/QueryString', type => 'RT::Class-RT::Article'),
180     );
181     $cfs->child( create =>
182         title => loc('Create'),
183         path => '/Admin/CustomFields/Modify.html?'.$m->comp("/Elements/QueryString", Create=>1, LookupType=> "RT::Class-RT::Article" ),
184     );
185
186     $admin_global->child( 'group-rights' =>
187         title       => loc('Group Rights'),
188         description => loc('Modify global group rights'),
189         path        => '/Admin/Global/GroupRights.html',
190     );
191     $admin_global->child( 'user-rights' =>
192         title       => loc('User Rights'),
193         description => loc('Modify global user rights'),
194         path        => '/Admin/Global/UserRights.html',
195     );
196     $admin_global->child( 'my-rt' =>
197         title       => loc('RT at a glance'),
198         description => loc('Modify the default "RT at a glance" view'),
199         path        => '/Admin/Global/MyRT.html',
200     );
201     $admin_global->child( 'topics' =>
202         title       => loc('Topics'),
203         description => loc('Modify global article topics'),
204         path        => '/Admin/Global/Topics.html',
205     );
206
207     my $admin_tools = $admin->child( tools =>
208         title       => loc('Tools'),
209         description => loc('Use other RT administrative tools'),
210         path        => '/Admin/Tools/',
211     );
212     $admin_tools->child( configuration =>
213         title       => loc('System Configuration'),
214         description => loc('Detailed information about your RT setup'),
215         path        => '/Admin/Tools/Configuration.html',
216     );
217     $admin_tools->child( theme =>
218         title       => loc('Theme'),
219         description => loc('Customize the look of your RT'),
220         path        => '/Admin/Tools/Theme.html',
221     );
222     if (RT->Config->Get('StatementLog')
223         && $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => RT->System )) {
224        $admin_tools->child( 'sql-queries' =>
225            title       => loc('SQL Queries'),
226            description => loc('Browse the SQL queries made in this process'),
227            path        => '/Admin/Tools/Queries.html',
228        );
229     }
230     $admin_tools->child( shredder =>
231         title       => loc('Shredder'),
232         description => loc('Permanently wipeout data from RT'),
233         path        => '/Admin/Tools/Shredder',
234     );
235
236     if ( $request_path =~ m{^/Admin/(Queues|Users|Groups|CustomFields)} ) {
237         my $type = $1;
238         my $tabs = PageMenu();
239
240         my %labels = (
241             Queues       => loc("Queues"),
242             Users        => loc("Users"),
243             Groups       => loc("Groups"),
244             CustomFields => loc("Custom Fields"),
245         );
246
247         my $section;
248         if ( $request_path =~ m|^/Admin/$type/?(?:index.html)?$|
249              || (    $request_path =~ m|^/Admin/$type/(?:Modify.html)$|
250                   && $DECODED_ARGS->{'Create'} )
251            )
252         {
253             $section = $tabs;
254
255         } else {
256             $section = $tabs->child( select => title => $labels{$type},
257                                      path => "/Admin/$type/" );
258         }
259
260         $section->child( select => title => loc('Select'), path => "/Admin/$type/" );
261         $section->child( create => title => loc('Create'), path => "/Admin/$type/Modify.html?Create=1" );
262     }
263
264     if ( $request_path =~ m{^/Admin/Queues} ) {
265         if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/
266                 ||
267               $DECODED_ARGS->{'Queue'} && $DECODED_ARGS->{'Queue'} =~ /^\d+$/
268                 ) {
269             my $id = $DECODED_ARGS->{'Queue'} || $DECODED_ARGS->{'id'};
270             my $queue_obj = RT::Queue->new( $session{'CurrentUser'} );
271             $queue_obj->Load($id);
272
273             if ( $queue_obj and $queue_obj->id ) {
274                 my $queue = PageMenu();
275                 $queue->child( basics => title => loc('Basics'),   path => "/Admin/Queues/Modify.html?id=" . $id );
276                 $queue->child( people => title => loc('Watchers'), path => "/Admin/Queues/People.html?id=" . $id );
277
278                 my $templates = $queue->child(templates => title => loc('Templates'), path => "/Admin/Queues/Templates.html?id=" . $id);
279                 $templates->child( select => title => loc('Select'), path => "/Admin/Queues/Templates.html?id=".$id);
280                 $templates->child( create => title => loc('Create'), path => "/Admin/Queues/Template.html?Create=1;Queue=".$id);
281
282                 my $scrips = $queue->child( scrips => title => loc('Scrips'), path => "/Admin/Queues/Scrips.html?id=" . $id);
283                 $scrips->child( select => title => loc('Select'), path => "/Admin/Queues/Scrips.html?id=" . $id );
284                 $scrips->child( create => title => loc('Create'), path => "/Admin/Queues/Scrip.html?Create=1;Queue=" . $id);
285
286                 my $ticket_cfs = $queue->child( 'ticket-custom-fields' => title => loc('Ticket Custom Fields'),
287                     path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket&id=' . $id );
288
289                 my $txn_cfs = $queue->child( 'transaction-custom-fields' => title => loc('Transaction Custom Fields'),
290                     path => '/Admin/Queues/CustomFields.html?SubType=RT::Ticket-RT::Transaction&id='.$id );
291
292                 $queue->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Queues/GroupRights.html?id=".$id );
293                 $queue->child( 'user-rights' => title => loc('User Rights'), path => "/Admin/Queues/UserRights.html?id=" . $id );
294                 $queue->child( 'history' => title => loc('History'), path => "/Admin/Queues/History.html?id=" . $id );
295
296                 $m->callback( CallbackName => 'PrivilegedQueue', queue_id => $id, page_menu => $queue);
297             }
298         }
299     }
300     if ( $request_path =~ m{^/Admin/Users} ) {
301         if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) {
302             my $id = $DECODED_ARGS->{'id'};
303             my $obj = RT::User->new( $session{'CurrentUser'} );
304             $obj->Load($id);
305
306             if ( $obj and $obj->id ) {
307                 my $tabs = PageMenu();
308                 $tabs->child( basics      => title => loc('Basics'),         path => "/Admin/Users/Modify.html?id=" . $id );
309                 $tabs->child( memberships => title => loc('Memberships'),    path => "/Admin/Users/Memberships.html?id=" . $id );
310                 $tabs->child( history     => title => loc('History'),        path => "/Admin/Users/History.html?id=" . $id );
311                 $tabs->child( 'my-rt'     => title => loc('RT at a glance'), path => "/Admin/Users/MyRT.html?id=" . $id );
312                 if ( RT->Config->Get('GnuPG')->{'Enable'} ) {
313                     $tabs->child( pgp     => title => loc('GnuPG'),          path => "/Admin/Users/GnuPG.html?id=" . $id );
314                 }
315             }
316         }
317
318     }
319
320     if ( $request_path =~ m{^/Admin/Groups} ) {
321         if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) {
322             my $id = $DECODED_ARGS->{'id'};
323             my $obj = RT::Group->new( $session{'CurrentUser'} );
324             $obj->Load($id);
325
326             if ( $obj and $obj->id ) {            
327                 my $tabs = PageMenu();
328                 $tabs->child( basics         => title => loc('Basics'),       path => "/Admin/Groups/Modify.html?id=" . $obj->id );
329                 $tabs->child( members        => title => loc('Members'),      path => "/Admin/Groups/Members.html?id=" . $obj->id );
330                 $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/Groups/GroupRights.html?id=" . $obj->id );
331                 $tabs->child( 'user-rights'  => title => loc('User Rights'),  path => "/Admin/Groups/UserRights.html?id=" . $obj->id );
332                 $tabs->child( history        => title => loc('History'),      path => "/Admin/Groups/History.html?id=" . $obj->id );
333             }
334         }
335     }
336
337     if ( $request_path =~ m{^/Admin/CustomFields/} ) {
338         if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) {
339             my $id = $DECODED_ARGS->{'id'};
340             my $obj = RT::CustomField->new( $session{'CurrentUser'} );
341             $obj->Load($id);
342
343             if ( $obj and $obj->id ) {
344                 my $tabs = PageMenu();
345                 $tabs->child( basics         => title => loc('Basics'),       path => "/Admin/CustomFields/Modify.html?id=".$id );
346                 $tabs->child( 'group-rights' => title => loc('Group Rights'), path => "/Admin/CustomFields/GroupRights.html?id=" . $id );
347                 $tabs->child( 'user-rights'  => title => loc('User Rights'),  path => "/Admin/CustomFields/UserRights.html?id=" . $id );
348                 $tabs->child( 'applies-to'   => title => loc('Applies to'),   path => "/Admin/CustomFields/Objects.html?id=" . $id );
349             }
350         }
351     }
352
353     if ( $request_path =~ m{^/Admin/Global/(Scrip|Template)s?\.html} ) {
354         my $type = $1;
355         my $tabs = PageMenu();
356
357         # With only two elements, swapping between dropdown and menu is kinda dumb
358         # In the glorious future this should be cleaner.
359
360         $tabs->child( select => title => loc('Select'), path => "/Admin/Global/${type}s.html" );
361         $tabs->child( create => title => loc('Create'), path => "/Admin/Global/${type}.html?Create=1" );
362     }
363
364     if ( $request_path =~ m{^/Admin/Articles/Classes/} ) {
365         my $tabs = PageMenu();
366         if ( my $id = $DECODED_ARGS->{'id'} ) {
367             my $obj = RT::Class->new( $session{'CurrentUser'} );
368             $obj->Load($id);
369
370             if ( $obj and $obj->id ) {
371                 my $section = $tabs->child( select => title => loc("Classes"), path => "/Admin/Articles/Classes/" );
372                 $section->child( select => title => loc('Select'), path => "/Admin/Articles/Classes/" );
373                 $section->child( create => title => loc('Create'), path => "/Admin/Articles/Classes/Modify.html?Create=1" );
374
375                 $tabs->child( basics          => title => loc('Basics'),        path => "/Admin/Articles/Classes/Modify.html?id=".$id );
376                 $tabs->child( topics          => title => loc('Topics'),        path => "/Admin/Articles/Classes/Topics.html?id=".$id );
377                 $tabs->child( 'custom-fields' => title => loc('Custom Fields'), path => "/Admin/Articles/Classes/CustomFields.html?id=".$id );
378                 $tabs->child( 'group-rights'  => title => loc('Group Rights'),  path => "/Admin/Articles/Classes/GroupRights.html?id=".$id );
379                 $tabs->child( 'user-rights'   => title => loc('User Rights'),   path => "/Admin/Articles/Classes/UserRights.html?id=".$id );
380                 $tabs->child( 'applies-to'    => title => loc('Applies to'),    path => "/Admin/Articles/Classes/Objects.html?id=$id" );
381             }
382         } else {
383             $tabs->child( select => title => loc('Select'), path => "/Admin/Articles/Classes/" );
384             $tabs->child( create => title => loc('Create'), path => "/Admin/Articles/Classes/Modify.html?Create=1" );
385         }
386     }
387 };
388
389
390 my $build_main_nav = sub {
391
392     PageWidgets()->child( simple_search => raw_html => $m->scomp('SimpleSearch') );
393     PageWidgets()->child( create_ticket => raw_html => $m->scomp('CreateTicket') );
394
395     my $home = Menu->child( home => title => loc('Homepage'), path => '/' );
396     # We explicitly exclude superusers; otherwise the dashboards for
397     # groups you're not in (but can see the dashboards of by dint of
398     # being a superuser) would push the useful ones from the groups
399     # you're actually in off of the stack.
400     my @dashboards = $m->comp("/Dashboards/Elements/ListOfDashboards", IncludeSuperuserGroups => 0);
401     my $limit      = 7;
402
403     my $more = 0;
404     if ( @dashboards > $limit ) {
405         $more = 1;
406         splice @dashboards, $limit;
407     }
408
409     my $dashes = Menu()->child('home');
410     if (@dashboards) {
411         for my $dash (@dashboards) {
412             $home->child( 'dashboard-' . $dash->id,
413                 title => $dash->Name,
414                 path  => '/Dashboards/' . $dash->id . '/' . $dash->Name
415             );
416         }
417
418         $dashes->child( more => title => loc('All Dashboards'), path => 'Dashboards/index.html' );
419     }
420     my $dashboard = RT::Dashboard->new( $session{CurrentUser} );
421     if ( $dashboard->CurrentUserCanCreateAny ) {
422         $dashes->child('dashboard_create' => title => loc('New Dashboard'), path => "/Dashboards/Modify.html?Create=1" );
423     }
424
425     my $tickets = Menu->child( search => title => loc('Tickets'), path => '/Search/Build.html' );
426     $tickets->child( simple => title => loc('Simple Search'), path => "/Search/Simple.html" );
427     $tickets->child( new    => title => loc('New Search'),    path => "/Search/Build.html?NewQuery=1" );
428
429
430     my $tools = Menu->child( tools => title => loc('Tools'), path => '/Tools/index.html' );
431     my $articles = $tools->child( articles => title => loc('Articles'), path => "/Articles/index.html");
432     $articles->child( articles => title => loc('Overview'), path => "/Articles/index.html" );
433     $articles->child( search   => title => loc('Search'),   path => "/Articles/Article/Search.html" );
434     $articles->child( topics   => title => loc('Topics'),   path => "/Articles/Topics.html" );
435
436     $tools->child( my_day =>
437         title       => loc('My Day'),
438         description => loc('Easy updating of your open tickets'),
439         path        => '/Tools/MyDay.html',
440     );
441
442     if ( RT->Config->Get('EnableReminders') ) {
443         $tools->child( my_reminders =>
444             title       => loc('My Reminders'),
445             description => loc('Easy viewing of your reminders'),
446             path        => '/Tools/MyReminders.html',
447         );
448     }
449
450     $tools->child( offline =>
451         title       => loc('Offline'),
452         description => loc('Create tickets offline'),
453         path        => '/Tools/Offline.html',
454     );
455
456     if ( $session{'CurrentUser'}->HasRight( Right => 'ShowApprovalsTab', Object => RT->System ) ) {
457         $tools->child( approval =>
458             title       => loc('Approval'),
459             description => loc('My Approvals'),
460             path        => '/Approvals/',
461         );
462     }
463
464     if ( $session{'CurrentUser'}->HasRight( Right => 'ShowConfigTab', Object => RT->System ) )
465     {
466         $build_admin_menu->($tools);
467     }
468
469     my $username = '<span class="current-user">'
470                  . $m->interp->apply_escapes($session{'CurrentUser'}->Name, 'h')
471                  . '</span>';
472     my $about_me = Menu->child( 'preferences' =>
473         title        => loc('Logged in as [_1]', $username),
474         escape_title => 0,
475         sort_order   => 99,
476     );
477
478
479     if ( $session{'CurrentUser'}->UserObj
480          && $session{'CurrentUser'}->HasRight( Right => 'ModifySelf', Object => RT->System )) {
481         my $settings = $about_me->child( settings => title => loc('Settings'), path => '/Prefs/Other.html' );
482         $settings->child( options        => title => loc('Options'),        path => '/Prefs/Other.html' );
483         $settings->child( about_me       => title => loc('About me'),       path => '/User/Prefs.html' );
484         $settings->child( search_options => title => loc('Search options'), path => '/Prefs/SearchOptions.html' );
485         $settings->child( myrt           => title => loc('RT at a glance'), path => '/Prefs/MyRT.html' );
486         $settings->child( quicksearch    => title => loc('Quick search'),   path => '/Prefs/Quicksearch.html' );
487
488         my $search_menu = $settings->child( 'saved-searches' => title => loc('Saved Searches') );
489         my $searches = [ $m->comp( "/Search/Elements/SearchesForObject",
490                           Object => RT::System->new( $session{'CurrentUser'} )) ];
491         my $i = 0;
492
493         for my $search (@$searches) {
494             $search_menu->child( "search-" . $i++ =>
495                 title => $search->[1],
496                 path  => "/Prefs/Search.html?"
497                        . $query_string->( name => ref( $search->[2] ) . '-' . $search->[2]->Id ),
498             );
499
500         }
501     }
502     if ( $session{'CurrentUser'}->Name
503          && (   !RT->Config->Get('WebExternalAuth')
504               || RT->Config->Get('WebFallbackToInternalAuth') )) {
505         $about_me->child( logout => title => loc('Logout'), path => '/NoAuth/Logout.html' );
506     }
507     if ( $request_path =~ m{^/Dashboards/(\d+)?}) {
508         if ( my $id = ( $1 || $DECODED_ARGS->{'id'} ) ) {
509             my $obj = RT::Dashboard->new( $session{'CurrentUser'} );
510             $obj->LoadById($id);
511             if ( $obj and $obj->id ) {
512                 my $tabs = PageMenu;
513                 $tabs->child( basics       => title => loc('Basics'),       path => "/Dashboards/Modify.html?id=" . $obj->id);
514                 $tabs->child( content      => title => loc('Content'),      path => "/Dashboards/Queries.html?id=" . $obj->id);
515                 $tabs->child( subscription => title => loc('Subscription'), path => "/Dashboards/Subscription.html?id=" . $obj->id)
516                     if $obj->CurrentUserCanSubscribe;
517                 $tabs->child( show         => title => loc('Show'),         path => "/Dashboards/" . $obj->id . "/" . $obj->Name)
518             }
519         }
520     }
521
522
523     if ( $request_path =~ m{^/Ticket/} ) {
524         if ( ( $DECODED_ARGS->{'id'} || '' ) =~ /^(\d+)$/ ) {
525             my $id  = $1;
526             my $obj = RT::Ticket->new( $session{'CurrentUser'} );
527             $obj->Load($id);
528
529             if ( $obj and $obj->id ) {
530                 my $actions = PageMenu()->child( actions => title => loc('Actions'), sort_order  => 95 );
531                 my $tabs = PageMenu();
532                 $tabs->child( bookmark => raw_html => $m->scomp( '/Ticket/Elements/Bookmark', id => $id ), sort_order => 99 );
533                 $tabs->child( display => title => loc('Display'), path => "/Ticket/Display.html?id=" . $id );
534                 $tabs->child( history => title => loc('History'), path => "/Ticket/History.html?id=" . $id );
535
536                 my %can = %{ $obj->CurrentUser->PrincipalObj->HasRights( Object => $obj ) };
537                 $can{'_ModifyOwner'} = $can{'OwnTicket'} || $can{'TakeTicket'} || $can{'StealTicket'};
538                 my $can = sub {
539                     unless ($_[0] eq 'ExecuteCode') {
540                         return $can{$_[0]} || $can{'SuperUser'};
541                     } else {
542                         return !RT->Config->Get('DisallowExecuteCode')
543                             && ( $can{'ExecuteCode'} || $can{'SuperUser'} );
544                     }
545                 };
546
547                 # comment out until we can do it for an individual custom field
548                 #if ( $can->('ModifyTicket') || $can->('ModifyCustomField') ) {
549                 $tabs->child( basics => title => loc('Basics'), path => "/Ticket/Modify.html?id=" . $id );
550
551                 #}
552
553                 #ACL?
554                 $tabs->child( customers => title => loc('Customers'), path => "/Ticket/ModifyCustomers.html?id=" . $id );
555
556                 if ( $can->('ModifyTicket') || $can->('_ModifyOwner') || $can->('Watch') || $can->('WatchAsAdminCc') ) {
557                     $tabs->child( people => title => loc('People'), path => "/Ticket/ModifyPeople.html?id=" . $id );
558                 }
559
560                 if ( $can->('ModifyTicket') ) {
561                     $tabs->child( dates => title => loc('Dates'), path => "/Ticket/ModifyDates.html?id=" . $id );
562                     $tabs->child( links => title => loc('Links'), path => "/Ticket/ModifyLinks.html?id=" . $id );
563                 }
564
565                 #if ( $can->('ModifyTicket') || $can->('ModifyCustomField') || $can->('_ModifyOwner') ) {
566                 $tabs->child( jumbo => title => loc('Jumbo'), path => "/Ticket/ModifyAll.html?id=" . $id );
567                 #}
568
569                 if ( RT->Config->Get('EnableReminders') ) {
570                     $tabs->child( reminders => title => loc('Reminders'), path => "/Ticket/Reminders.html?id=" . $id );
571                 }
572
573                 if ( $can->('ModifyTicket') or $can->('ReplyToTicket') ) {
574                     $actions->child( reply => title => loc('Reply'), path => "/Ticket/Update.html?Action=Respond;id=" . $id );
575                 }
576
577                 if ( $can->('ModifyTicket') or $can->('CommentOnTicket') ) {
578                     $actions->child( comment => title => loc('Comment'), path => "/Ticket/Update.html?Action=Comment;id=" . $id );
579                 }
580
581                 if ( $can->('ForwardMessage') ) {
582                     $actions->child( forward => title => loc('Forward'), path => "/Ticket/Forward.html?id=" . $id );
583                 }
584
585                 my $hide_resolve_with_deps = RT->Config->Get('HideResolveActionsWithDependencies')
586                     && $obj->HasUnresolvedDependencies;
587
588                 my $current   = $obj->Status;
589                 my $lifecycle = $obj->QueueObj->Lifecycle;
590                 my $i         = 1;
591                 foreach my $info ( $lifecycle->Actions($current) ) {
592                     my $next = $info->{'to'};
593                     next unless $lifecycle->IsTransition( $current => $next );
594
595                     my $check = $lifecycle->CheckRight( $current => $next );
596                     next unless $can->($check);
597
598                     next if $hide_resolve_with_deps
599                         && $lifecycle->IsInactive($next)
600                         && !$lifecycle->IsInactive($current);
601
602                     my $action = $info->{'update'} || '';
603                     my $url = '/Ticket/';
604                     if ($action) {
605                         $url .= "Update.html?"
606                             . $query_string->(
607                                 Action        => $action,
608                                 DefaultStatus => $next,
609                                 id            => $id,
610                             );
611                     } else {
612                         $url .= "Display.html?"
613                             . $query_string->(
614                                 Status => $next,
615                                 id     => $id,
616                             );
617                     }
618                     my $key = $info->{'label'} || ucfirst($next);
619                     $actions->child( $key => title => loc( $key ), path => $url);
620                 }
621
622                 if ( $can->('OwnTicket') ) {
623                     if ( $obj->OwnerObj->Id == RT->Nobody->id
624                          && ( $can->('ModifyTicket') or $can->('TakeTicket') ) ) {
625                         $actions->child( take => title => loc('Take'), path => "/Ticket/Display.html?Action=Take;id=" . $id );
626                     }
627
628                     elsif (    $obj->OwnerObj->id != RT->Nobody->id
629                             && $obj->OwnerObj->id != $session{CurrentUser}->id
630                             && ( $can->('ModifyTicket') or $can->('StealTicket') ) ) {
631                         $actions->child( steal => title => loc('Steal'), path => "/Ticket/Display.html?Action=Steal;id=" . $id );
632                     }
633                 }
634
635                 # TODO needs a "Can extract article into a class applied to this queue" check
636                 $actions->child( 'extract-article' =>
637                     title => loc('Extract Article'),
638                     path  => "/Articles/Article/ExtractIntoClass.html?Ticket=".$obj->id,
639                 );
640
641                 if ( defined $session{"tickets"} ) {
642                     # we have to update session data if we get new ItemMap
643                     my $updatesession = 1 unless ( $session{"tickets"}->{'item_map'} );
644
645                     my $item_map = $session{"tickets"}->ItemMap;
646
647                     if ($updatesession) {
648                         $session{"tickets"}->PrepForSerialization();
649                     }
650
651                     my $search = Menu()->child('search');
652                     # Don't display prev links if we're on the first ticket
653                     if ( $item_map->{$id}->{prev} ) {
654                         $search->child( first =>
655                             title => '<< ' . loc('First'), class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{first});
656                         $search->child( prev =>
657                             title => '< ' . loc('Prev'),   class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{$id}->{prev});
658                     }
659                     # Don't display next links if we're on the last ticket
660                     if ( $item_map->{$id}->{next} ) {
661                         $search->child( next =>
662                             title => loc('Next') . ' >',  class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{$id}->{next});
663                         if ( $item_map->{last} ) {
664                             $search->child( last =>
665                                 title => loc('Last') . ' >>', class => "nav", path => "/Ticket/Display.html?id=" . $item_map->{last});
666                         }
667                     }
668                 }
669             }
670         }
671     }
672
673     if (
674         (
675                $request_path =~ m{^/(?:Ticket|Search)/}
676             && $request_path !~ m{^/Search/Simple\.html}
677         )
678         || (   $request_path =~ m{^/Search/Simple\.html}
679             && $DECODED_ARGS->{'q'} )
680       )
681     {
682         my $search = Menu()->child('search');
683         my $args      = '';
684         my $has_query = '';
685         my $current_search = $session{"CurrentSearchHash"} || {};
686         my $search_id = $DECODED_ARGS->{'SavedSearchLoad'} || $DECODED_ARGS->{'SavedSearchId'} || $current_search->{'SearchId'} || '';
687         my $chart_id = $DECODED_ARGS->{'SavedChartSearchId'} || $current_search->{SavedChartSearchId};
688
689         $has_query = 1 if ( $DECODED_ARGS->{'Query'} or $current_search->{'Query'} );
690
691         my %query_args;
692         my %fallback_query_args = (
693             SavedSearchId => ( $search_id eq 'new' ) ? undef : $search_id,
694             SavedChartSearchId => $chart_id,
695             (
696                 map {
697                     my $p = $_;
698                     $p => $DECODED_ARGS->{$p} || $current_search->{$p}
699                 } qw(Query Format OrderBy Order Page)
700             ),
701             RowsPerPage => (
702                 defined $DECODED_ARGS->{'RowsPerPage'}
703                 ? $DECODED_ARGS->{'RowsPerPage'}
704                 : $current_search->{'RowsPerPage'}
705             ),
706         );
707
708         if ($QueryString) {
709             $args = '?' . $QueryString;
710         }
711         else {
712             my %final_query_args = ();
713             # key => callback to avoid unnecessary work
714
715             for my $param (keys %fallback_query_args) {
716                 $final_query_args{$param} = defined($QueryArgs->{$param})
717                                           ? $QueryArgs->{$param}
718                                           : $fallback_query_args{$param};
719             }
720
721             for my $field (qw(Order OrderBy)) {
722                 if ( ref( $final_query_args{$field} ) eq 'ARRAY' ) {
723                     $final_query_args{$field} = join( "|", @{ $final_query_args{$field} } );
724                 } elsif (not defined $final_query_args{$field}) {
725                     delete $final_query_args{$field};
726                 }
727                 else {
728                     $final_query_args{$field} ||= '';
729                 }
730             }
731
732             $args = '?' . $query_string->(%final_query_args);
733         }
734
735         my $current_search_menu;
736         if ( $request_path =~ m{^/Ticket} ) {
737             $current_search_menu = $search->child( current_search => title => loc('Current Search') );
738             $current_search_menu->path("/Search/Results.html$args") if $has_query;
739         } else {
740             $current_search_menu = PageMenu();
741         }
742
743         $current_search_menu->child( edit_search =>
744             title => loc('Edit Search'), path => "/Search/Build.html" . ( ($has_query) ? $args : '' ) );
745         $current_search_menu->child( advanced =>
746             title => loc('Advanced'),    path => "/Search/Edit.html$args" );
747         if ($has_query) {
748             $current_search_menu->child( results => title => loc('Show Results'), path => "/Search/Results.html$args" );
749         }
750
751         if ( $has_query ) {
752             $current_search_menu->child( bulk  => title => loc('Bulk Update'), path => "/Search/Bulk.html$args" );
753             $current_search_menu->child( chart => title => loc('Chart'),       path => "/Search/Chart.html$args" );
754
755             #formerly Callbacks/RTx-Calendar/Ticket/Element/Tabs/Default
756             $current_search_menu->child( calendar => title => loc('Calendar'), path => "/Search/Calendar.html$args" );
757
758             my $more = $current_search_menu->child( more => title => loc('Feeds') );
759
760             $more->child( tsv => title => loc('TSV'), path => "/Search/Results.tsv$args" );
761             $more->child( csv => title => loc('CSV'), path => "/Search/Results.csv$args" );
762             $more->child( spreadsheet => title => loc('Spreadsheet'), path => "/Search/Results.xls$args" );
763
764             my %rss_data = map {
765                 $_ => $QueryArgs->{$_} || $fallback_query_args{$_} || '' }
766                     qw(Query Order OrderBy);
767             my $RSSQueryString = "?"
768                 . $query_string->( Query   => $rss_data{Query},
769                                    Order   => $rss_data{Order},
770                                    OrderBy => $rss_data{OrderBy}
771                                  );
772             my $RSSPath = join '/', map $m->interp->apply_escapes( $_, 'u' ),
773                 $session{'CurrentUser'}->UserObj->Name,
774                 $session{'CurrentUser'}
775                 ->UserObj->GenerateAuthString(   $rss_data{Query}
776                                                . $rss_data{Order}
777                                                . $rss_data{OrderBy} );
778
779             $more->child( rss => title => loc('RSS'), path => "/NoAuth/rss/$RSSPath/$RSSQueryString");
780             my $ical_path = join '/', map $m->interp->apply_escapes($_, 'u'),
781                 $session{'CurrentUser'}->UserObj->Name,
782                 $session{'CurrentUser'}->UserObj->GenerateAuthString( $rss_data{Query} ),
783                 $rss_data{Query};
784             $more->child( ical => title => loc('iCal'), path => '/NoAuth/iCal/'.$ical_path);
785
786             if ($request_path =~ m{^/Search/Results.html}
787                 &&                        #XXX TODO better abstraction
788                 $session{'CurrentUser'}->HasRight( Right => 'SuperUser', Object => RT->System )) {
789                 my $shred_args = $query_string->(
790                     Search          => 1,
791                     Plugin          => 'Tickets',
792                     'Tickets:query' => $rss_data{'Query'},
793                     'Tickets:limit' => $QueryArgs->{'Rows'},
794                 );
795
796                 $more->child( shredder => title => loc('Shredder'), path => '/Admin/Tools/Shredder/?' . $shred_args);
797             }
798
799         }
800     }
801
802     if ( $request_path =~ m{^/Article/} ) {
803         if ( $DECODED_ARGS->{'id'} && $DECODED_ARGS->{'id'} =~ /^\d+$/ ) {
804             my $id = $DECODED_ARGS->{'id'};
805             my $tabs = PageMenu();
806
807             $tabs->child( display => title => loc('Display'), path => "/Articles/Article/Display.html?id=".$id );
808             $tabs->child( history => title => loc('History'), path => "/Articles/Article/History.html?id=".$id );
809             $tabs->child( modify  => title => loc('Modify'),  path => "/Articles/Article/Edit.html?id=".$id );
810             $tabs->child( delete  => title => loc('Delete'),  path => "/Articles/Article/Delete.html?id=".$id );
811         }
812     }
813
814     if ( $request_path =~ m{^/Articles/} ) {
815         PageWidgets()->child( article_search => raw_html => $m->scomp('/Articles/Elements/GotoArticle') );
816         PageWidgets()->delete('create_ticket');
817         PageWidgets()->delete('simple_search');
818
819         my $tabs = PageMenu();
820         $tabs->child( search => title => loc("Search"),       path => "/Articles/Article/Search.html" );
821         $tabs->child( create => title => loc("New Article" ), path => "/Articles/Article/PreCreate.html" );
822         if ( $request_path =~ m{^/Articles/Article/} and ( $DECODED_ARGS->{'id'} || '' ) =~ /^(\d+)$/ ) {
823             my $id  = $1;
824             my $obj = RT::Article->new( $session{'CurrentUser'} );
825             $obj->Load($id);
826
827             if ( $obj and $obj->id ) {
828                 $tabs->child( display => title => loc("Display"), path => "/Articles/Article/Display.html?id=" . $id );
829                 $tabs->child( history => title => loc('History'), path => '/Articles/Article/History.html?id=' . $id );
830
831                 if ( $obj->CurrentUserHasRight('ModifyArticle') ) {
832                     $tabs->child(modify => title => loc('Modify'), path => '/Articles/Article/Edit.html?id=' . $id );
833                 }
834                 if ( $obj->CurrentUserHasRight('DeleteArticle') ) {
835                     $tabs->child(delete => title => loc('Delete'), path => '/Articles/Article/Delete.html?id=' . $id );
836                 }
837             }
838         }
839
840     }
841
842     if ( $request_path =~ /^\/(?:index.html|$)/ ) {
843         PageMenu()->child( edit => title => loc('Edit'), path => '/Prefs/MyRT.html' );
844     }
845
846     $m->callback( CallbackName => 'Privileged' );
847 };
848
849 my $build_selfservice_nav = sub {
850     my $queues = RT::Queues->new( $session{'CurrentUser'} );
851     $queues->UnLimit;
852
853     my $queue_count = 0;
854     my $queue_id;
855
856     while ( my $queue = $queues->Next ) {
857         next unless $queue->CurrentUserHasRight('CreateTicket');
858         $queue_id = $queue->id;
859         $queue_count++;
860         last if ( $queue_count > 1 );
861     }
862
863
864     if ( $queue_count > 1 ) {
865         Menu->child( new => title => loc('New ticket'), path => '/SelfService/CreateTicketInQueue.html' );
866     } elsif ( $queue_id ) {
867         Menu->child( new => title => loc('New ticket'), path => '/SelfService/Create.html?Queue=' . $queue_id );
868     }
869     my $tickets = Menu->child( tickets => title => loc('Tickets'), path => '/SelfService/' );
870     $tickets->child( open   => title => loc('Open tickets'),   path => '/SelfService/' );
871     $tickets->child( closed => title => loc('Closed tickets'), path => '/SelfService/Closed.html' );
872
873
874     my $username = '<span class="current-user">'
875                  . $m->interp->apply_escapes($session{'CurrentUser'}->Name, 'h')
876                  . '</span>';
877     my $about_me = Menu->child( preferences =>
878         title        => loc('Logged in as [_1]', $username),
879         escape_title => 0,
880         sort_order   => 99,
881     );
882
883     if ( $session{'CurrentUser'}->HasRight( Right => 'ModifySelf', Object => RT->System ) ) {
884         $about_me->child( prefs => title => loc('Preferences'), path => '/SelfService/Prefs.html' );
885     }
886
887     if ( $session{'CurrentUser'}->Name
888          && (   !RT->Config->Get('WebExternalAuth')
889               || RT->Config->Get('WebFallbackToInternalAuth') )) {
890         $about_me->child( logout => title => loc('Logout'), path => '/NoAuth/Logout.html' );
891     }
892
893     if ($session{'CurrentUser'}->HasRight( Right => 'ShowArticle', Object => RT->System )) {
894         PageWidgets->child( 'goto-article' => raw_html => $m->scomp('/SelfService/Elements/SearchArticle') );
895     }
896
897     PageWidgets->child( goto => raw_html => $m->scomp('/SelfService/Elements/GotoTicket') );
898
899     $m->callback( CallbackName => 'SelfService' );
900 };
901
902
903
904 if ( $request_path !~ m{^/SelfService/} ) {
905     $build_main_nav->();
906 } else {
907     $build_selfservice_nav->();
908 }
909
910
911
912
913 </%INIT>
914 <%ARGS>
915 $show_menu => 1
916 $QueryString => ''
917 $QueryArgs => {}
918 </%ARGS>