Annotation of loncom/interface/lonsupportreq.pm, revision 1.79

1.24      albertel    1: #
1.79    ! damieng     2: # $Id: lonsupportreq.pm,v 1.78 2014/01/20 17:25:41 bisitz Exp $
1.24      albertel    3: #
                      4: # Copyright Michigan State University Board of Trustees
                      5: #
                      6: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      7: #
                      8: # LON-CAPA is free software; you can redistribute it and/or modify
                      9: # it under the terms of the GNU General Public License as published by
                     10: # the Free Software Foundation; either version 2 of the License, or
                     11: # (at your option) any later version.
                     12: #
                     13: # LON-CAPA is distributed in the hope that it will be useful,
                     14: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     15: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     16: # GNU General Public License for more details.
                     17: #
                     18: # You should have received a copy of the GNU General Public License
                     19: # along with LON-CAPA; if not, write to the Free Software
                     20: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     21: #
                     22: # /home/httpd/html/adm/gpl.txt
                     23: #
                     24: # http://www.lon-capa.org/
                     25: #
                     26: 
1.1       raeburn    27: package Apache::lonsupportreq;
                     28: 
                     29: use strict;
1.5       raeburn    30: use MIME::Types;
                     31: use MIME::Lite;
1.27      raeburn    32: use CGI::Cookie();
1.1       raeburn    33: use Apache::Constants qw(:common);
1.2       albertel   34: use Apache::loncommon();
1.43      raeburn    35: use Apache::lonhtmlcommon;
1.24      albertel   36: use Apache::lonnet;
1.1       raeburn    37: use Apache::lonlocal;
1.34      albertel   38: use Apache::lonacc();
1.68      raeburn    39: use Apache::lonauth();
1.38      raeburn    40: use Apache::courseclassifier;
1.60      raeburn    41: use LONCAPA qw(:DEFAULT :match);
1.70      raeburn    42: use HTML::Entities;
1.1       raeburn    43: 
                     44: sub handler {
1.2       albertel   45:     my ($r) = @_;
                     46:     &Apache::loncommon::content_type($r,'text/html');
1.1       raeburn    47:     $r->send_http_header;
                     48: 
                     49:     if ($r->header_only) {
                     50:         return OK;
                     51:     }
1.42      albertel   52:     if ($r->uri eq '/adm/helpdesk') {
                     53: 	&Apache::lonlocal::get_language_handle($r);
                     54:     }
                     55: 
1.12      raeburn    56:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['origurl','function']);
                     57:     if ($r->uri eq '/adm/helpdesk') {
1.34      albertel   58:         &Apache::lonacc::get_posted_cgi($r);
1.12      raeburn    59:     }
1.70      raeburn    60:     my $function;
                     61:     if ($env{'form.function'}) {
                     62:         if (($env{'form.function'} eq 'norole')  ||
                     63:             ($env{'form.function'} eq 'student') ||
                     64:             ($env{'form.function'} eq 'admin')   ||
                     65:             ($env{'form.function'} eq 'author')) {
                     66:             $function = $env{'form.function'};
                     67:         }
                     68:     }
1.60      raeburn    69:     my $origurl = $env{'form.origurl'};
1.70      raeburn    70:     $origurl =~ s{^https?://}{};
                     71:     $origurl =~ s/(`)//g;
                     72:     $origurl =~ s/\$/\(\$\)/g;
1.44      raeburn    73:     my $command = $env{'form.command'};
1.12      raeburn    74: 
1.44      raeburn    75:     if ($command eq 'process') {
1.1       raeburn    76:         &print_request_receipt($r,$origurl,$function);
                     77:     } else {
                     78:         &print_request_form($r,$origurl,$function);
                     79:     }
                     80:     return OK;
                     81: }
                     82:     
                     83: sub print_request_form {
                     84:     my ($r,$origurl,$function) = @_;
1.61      raeburn    85:     my ($os,$browser,$bversion,$uhost,$uname,$udom,$uhome,$urole,$usec,$email,$cid,
                     86:         $cdom,$cnum,$ctitle,$ccode,$sectionlist,$lastname,$firstname,$server,
1.67      raeburn    87:         $formname,$public,$homeserver);
1.44      raeburn    88:     $function = &Apache::loncommon::get_users_function() if (!$function);
1.10      raeburn    89:     $ccode = '';
1.25      albertel   90:     $os = $env{'browser.os'};
                     91:     $browser = $env{'browser.type'};
                     92:     $bversion = $env{'browser.version'};
                     93:     $uhost = $env{'request.host'};
1.60      raeburn    94:     if (($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public')) {
                     95:         $public = 1;
                     96:     } else {
1.67      raeburn    97:         if (($env{'user.name'} ne '') && ($env{'user.domain'} ne '')) {
                     98:             $homeserver = &Apache::lonnet::homeserver($env{'user.name'},
                     99:                                                       $env{'user.domain'});
                    100:             if ($homeserver eq 'no_host') {
                    101:                 undef($homeserver); 
                    102:             } else {
                    103:                 $uname = $env{'user.name'};
                    104:                 $udom = $env{'user.domain'};
                    105:             }
                    106:         }
                    107:     }
                    108:     if ($homeserver) {
                    109:         $uhome = $env{'user.home'};
                    110:         $urole = $env{'request.role'};
                    111:         $usec = $env{'request.course.sec'};
                    112:         $cid = $env{'request.course.id'};
1.56      raeburn   113:     }
1.29      raeburn   114:     $formname = 'logproblem';
1.40      raeburn   115:     my $machine = &Apache::lonnet::absolute_url();
1.70      raeburn   116:     my $sourceurl = $machine.$origurl;
1.74      raeburn   117:     $server = $machine.&Apache::loncommon::cleanup_html($origurl);
1.70      raeburn   118:     $server =~ s/\?.*$//;
1.79    ! damieng   119:     my %js_lt = &Apache::lonlocal::texthash (
1.40      raeburn   120:                   email => 'The e-mail address you entered',
                    121:                   notv => 'is not a valid e-mail address',
                    122:                   rsub => 'You must include a subject',
                    123:                   rdes => 'You must include a description',
1.79    ! damieng   124:     );
        !           125:     my %html_lt = &Apache::lonlocal::texthash (
1.40      raeburn   126:                   name => 'Name',
                    127:                   subm => 'Submit Request',
1.46      raeburn   128:                   emad => 'Your e-mail address',
                    129:                   emac => 'Cc', 
1.40      raeburn   130:                   unme => 'username',
                    131:                   doma => 'domain',
1.44      raeburn   132:                   entu => 'Enter the username you use to log-in to LON-CAPA',
                    133:                   chdo => 'Choose your LON-CAPA domain',
                    134:                   entr => 'Enter the username you use to log-in to LON-CAPA, and your domain.',
1.40      raeburn   135:                   urlp => 'URL of page',
                    136:                   phon => 'Phone',
                    137:                   crsd => 'Course Details',
                    138:                   enin => 'Enter institutional course code',
                    139:                   pick => 'Pick',
                    140:                   enct => 'Enter course title',
                    141:                   secn => 'Section Number',
                    142:                   sele => 'Select',
                    143:                   titl => 'Title',
                    144:                   lsec => 'LON-CAPA sec',
                    145:                   subj => 'Subject',
                    146:                   detd => 'Detailed Description',
                    147:                   opfi => 'Optional file upload',
1.44      raeburn   148:                   uplf => 'Upload a file (e.g., a screenshot) relevant to your help request (128 KB max.)',
1.40      raeburn   149:                   fini => 'Finish',
                    150:                   clfm => 'Clear Form',
                    151:     );
1.79    ! damieng   152:     &js_escape(\%js_lt);
        !           153:     &html_escape(\%html_lt);
1.40      raeburn   154:     my $scripttag = (<<"END");
1.5       raeburn   155: function validate() {
1.13      raeburn   156:     if (validmail(document.logproblem.email) == false) {
1.79    ! damieng   157:         alert("$js_lt{'email'}: "+document.logproblem.email.value+" $js_lt{'notv'}.");
1.40      raeburn   158:         return;
                    159:     }
                    160:     if (document.logproblem.subject.value == '') {
1.79    ! damieng   161:         alert("$js_lt{'rsub'}.");
1.40      raeburn   162:         return;
                    163:     }
                    164:     if (document.logproblem.description.value == '') {
1.79    ! damieng   165:         alert("$js_lt{'rdes'}.");
1.13      raeburn   166:         return;
1.5       raeburn   167:     }
                    168:     document.logproblem.submit();
                    169: }
1.13      raeburn   170: 
1.40      raeburn   171: END
1.43      raeburn   172:     $scripttag .= &Apache::lonhtmlcommon::javascript_valid_email();
1.44      raeburn   173:     if ($cid) {
                    174:         $cdom = $env{'course.'.$cid.'.domain'};
                    175:         $cnum = $env{'course.'.$cid.'.num'};
1.1       raeburn   176:     }
                    177:     if ($cdom && $cnum) {
                    178:         my %csettings = &Apache::lonnet::get('environment',['description','internal.coursecode','internal.sectionnums'],$cdom,$cnum);
                    179:         $ctitle = $csettings{'description'};
                    180:         $ccode = $csettings{'internal.coursecode'};
                    181:         $sectionlist = $csettings{'internal.sectionnums'};
                    182:     }
1.44      raeburn   183: 
1.67      raeburn   184:     if ($homeserver) {
                    185:         if ($env{'environment.permanentemail'}) {
                    186:             $email = $env{'environment.permanentemail'};
                    187:         } elsif ($env{'environment.critnotification'}) {
                    188:             $email = $env{'environment.critnotification'};
                    189:         } elsif ($env{'environment.notification'}) {
                    190:             $email = $env{'environment.notification'};
                    191:         }
                    192:         if ($env{'environment.lastname'}) {
                    193:             $lastname = $env{'environment.lastname'};
                    194:         }
                    195:         if ($env{'environment.firstname'}) {
                    196:             $firstname = $env{'environment.firstname'};
                    197:         }
1.1       raeburn   198:     }
1.40      raeburn   199:     my @sections = split(/,/,$sectionlist);
                    200:     my %groupid;
                    201:     foreach my $section (@sections) {
                    202:         my ($sec,$grp) = split(/:/,$section);
1.1       raeburn   203:         $groupid{$sec} = $grp;
                    204:     }
1.60      raeburn   205:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['codedom',
                    206:                                                  'useremail','useraccount']);
                    207:     if ($env{'form.origurl'} eq '/adm/createaccount') {
                    208:         if ($email eq '') {
                    209:             if ($env{'form.useremail'} =~ /^[^\@]+\@[^\@]+$/) {
                    210:                 $email = &HTML::Entities::encode($env{'form.useremail'},'"<>&');
                    211:             }
                    212:         }
                    213:         if ($uname eq '') {
                    214:             if ($env{'form.useraccount'} =~ /^$match_username$/) {
                    215:                 $uname = &HTML::Entities::encode($env{'form.useraccount'},'"<>&');
                    216:             }
                    217:         }
                    218:     }
1.45      raeburn   219:     my $codedom = &get_domain();
1.21      raeburn   220:     my $details_title;
                    221:     if ($codedom) {
                    222:         $details_title = '<br />('.$codedom.')';
                    223:     }
1.40      raeburn   224:     my %coursecodes;
                    225:     my %codes;
                    226:     my @codetitles;
                    227:     my %cat_titles;
                    228:     my %cat_order;
                    229:     my %idlist;
                    230:     my %idnums;
                    231:     my %idlist_titles;
1.1       raeburn   232:     my $caller = 'global';
                    233:     my $totcodes = 0;
                    234:     my $format_reply;
1.6       raeburn   235:     my $jscript = '';
1.22      raeburn   236:     my $loaditems = qq|
                    237: function initialize_codes() {
                    238:     return;
                    239: }
                    240:     |;
1.1       raeburn   241:     if ($cnum) {
                    242:         $coursecodes{$cnum} = $ccode;
                    243:         if ($ccode eq '') {
1.38      raeburn   244:             $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes);
1.1       raeburn   245:         } else {
                    246:             $coursecodes{$cnum} = $ccode;
                    247:             $caller = $cnum;
                    248:             $totcodes ++;
                    249:         }
                    250:     } else { 
1.38      raeburn   251:         $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes);
1.1       raeburn   252:     }
                    253:     if ($totcodes > 0) {
1.6       raeburn   254:         if ($ccode eq '') {
1.22      raeburn   255:             $format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order);
                    256:             if ($format_reply eq 'ok') {
                    257:                 my $numtypes = @codetitles;
1.38      raeburn   258:                 &Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles);
                    259:                 my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles);
                    260:                 my $longtitles_str = join('","',@{$longtitles});
                    261:                 my $allidlist = $idlist{$codetitles[0]};
                    262:                 $jscript .= &Apache::courseclassifier::courseset_js_start($formname,$longtitles_str,$allidlist);
                    263:                 $jscript .= $scripttext;
                    264:                 $jscript .= &Apache::courseclassifier::javascript_code_selections($formname,@codetitles);
1.22      raeburn   265:                 $loaditems = '';
                    266:             }
1.6       raeburn   267:         }
1.1       raeburn   268:     }
1.30      albertel  269: 	
1.67      raeburn   270:     my $js = <<"ENDJS";
                    271: <script type="text/javascript">
                    272: // <![CDATA[
                    273: $scripttag
                    274: $jscript
                    275: $loaditems
                    276: // ]]>
                    277: </script>
                    278: ENDJS
                    279:     my %add_entries = (
                    280:                        style    => "margin-top:0px;margin-bottom:0px;",
                    281:                        onload   => "initialize_codes();",
                    282:                       );
1.33      albertel  283: 
1.44      raeburn   284:     
                    285:     $r->print(&Apache::loncommon::start_page('Support Request',$js,
1.31      albertel  286: 				       { 'function'    => $function,
1.33      albertel  287: 					 'add_entries' => \%add_entries,
1.44      raeburn   288: 					 'only_body'   => 1,}));
1.15      raeburn   289:     if ($r->uri eq '/adm/helpdesk') {
1.14      raeburn   290:         &print_header($r,$origurl);
                    291:     }
1.50      raeburn   292:     my @css = ('LC_evenrow_value','LC_oddrow_value');
                    293:     my $num = 1;
                    294:     my $i = $num%2;
1.67      raeburn   295:     my $formtype;
                    296:     if ($homeserver) {
                    297:         $formtype = ' enctype="multipart/form-data"';
                    298:     }
                    299:     $r->print('<form method="post" action="" name="logproblem"'.$formtype.'>'."\n");
1.44      raeburn   300:     my $output = &Apache::lonhtmlcommon::start_pick_box().
1.78      bisitz    301:                  &Apache::lonhtmlcommon::row_headline().
                    302:                  '<span class="LC_info">'.
                    303:                  &mt('(All fields marked with * are required.)').
                    304:                  '</span>'.
                    305:                  &Apache::lonhtmlcommon::row_closure().
1.79    ! damieng   306:                  &Apache::lonhtmlcommon::row_title($html_lt{'name'},undef,$css[$num])."\n";
1.1       raeburn   307:     my $fullname = '';
                    308:     if ((defined($lastname) && $lastname ne '') && (defined($firstname) && $firstname ne '')) {
                    309:         $fullname = "$firstname $lastname"; 
1.67      raeburn   310:         $output .= $fullname.'<input type="hidden" name="username" value="'.&HTML::Entities::encode($fullname,'"<>&').'" />'."\n";
1.1       raeburn   311:     } else {
                    312:         if (defined($firstname) && $firstname ne '') {
                    313:             $fullname = $firstname;
                    314:         } elsif (defined($lastname) && $lastname ne '') {
1.44      raeburn   315:             $fullname = " $lastname";
1.1       raeburn   316:         }
1.67      raeburn   317:         $output .= '<input type="text" size="20" name="username" value="'.&HTML::Entities::encode($fullname,'"<>&').'" />'."\n";
1.1       raeburn   318:     }
1.79    ! damieng   319:     $output .= '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" value="'.$html_lt{'subm'}.'" onclick="validate()" />&nbsp;'.
1.50      raeburn   320:                 &Apache::lonhtmlcommon::row_closure()."\n";
                    321:     $num ++;
                    322:     $i = $num%2;
1.78      bisitz    323:     $output .= &Apache::lonhtmlcommon::row_title(
                    324:                    '<span title="'.&mt('required').'">'.
1.79    ! damieng   325:                    $html_lt{'emad'}.' <span class="LC_info">*</span></span>'
1.78      bisitz    326:                   ,undef,$css[$i]).
1.50      raeburn   327:                '<input type="text" size="20" name="email" value="'.
                    328:                &HTML::Entities::encode($email,'"<>&').'" /><br />'."\n".
                    329:                &Apache::lonhtmlcommon::row_closure();
                    330:     $num ++;
                    331:     $i = $num%2;
1.60      raeburn   332:     if (($env{'user.name'} =~ /^$match_username$/) && (!$public)) {
1.67      raeburn   333:         if ($homeserver) { 
1.79    ! damieng   334:             $output .= &Apache::lonhtmlcommon::row_title($html_lt{'emac'},undef,$css[$i]).
1.67      raeburn   335:                        '<input type="text" size="50" name="cc" value="" /><br />'."\n".
                    336:                        &Apache::lonhtmlcommon::row_closure();
                    337:             $num ++;
                    338:             $i = $num%2;
                    339:         }
1.50      raeburn   340:     }
1.79    ! damieng   341:     $output .= &Apache::lonhtmlcommon::row_title("$html_lt{'unme'}/$html_lt{'doma'}",undef,$css[$i]);
1.44      raeburn   342:     my $udom_input = '<input type="hidden" name="udom" value="'.
1.67      raeburn   343:                      &HTML::Entities::encode($udom,'"<>&').'" />'."\n";
1.44      raeburn   344:     my $uname_input = '<input type="hidden" name="uname" value="'.
1.67      raeburn   345:                       &HTML::Entities::encode($uname,'"<>&').'" />'."\n"; 
1.60      raeburn   346:     if (($env{'user.name'} =~ /^$match_username$/) && 
                    347:         ($env{'user.domain'} =~ /^$match_domain$/) && (!$public)) {
1.79    ! damieng   348:         $output .= '<i>'.$html_lt{'unme'}.'</i>:&nbsp;'.$uname.'&nbsp;&nbsp;<i>'.$html_lt{'doma'}.'</i>:&nbsp;'.$udom.$udom_input.$uname_input;
1.1       raeburn   349:     } else {
                    350:         my $udomform = '';
                    351:         my $unameform = '';
1.60      raeburn   352:         if (($env{'user.domain'} =~ /^$match_domain$/) && (!$public)) {
1.79    ! damieng   353:             $output .= $html_lt{'entu'};
1.60      raeburn   354:         } elsif (($env{'user.name'} =~ /^$match_username$/) && (!$public)) { 
1.79    ! damieng   355:             $output .= $html_lt{'chdo'};
1.44      raeburn   356:         } else {
1.79    ! damieng   357:             $output .= $html_lt{'entr'};
1.44      raeburn   358:         }
1.67      raeburn   359:         $output .= '<br />'."\n";
1.60      raeburn   360:         if (!$public) {
                    361:             if ($env{'user.domain'} =~ /^$match_domain$/) {
1.79    ! damieng   362:                 $udomform = '<i>'.$html_lt{'doma'}.'</i>:&nbsp;'.$udom.$udom_input;
1.60      raeburn   363:             } elsif ($env{'user.name'} =~ /^$match_username$/) {
1.79    ! damieng   364:                 $unameform = '<i>'.$html_lt{'unme'}.'</i>:&nbsp;'.$uname.'&nbsp;&nbsp;'.$uname_input;
1.60      raeburn   365:             }
1.1       raeburn   366:         }
                    367:         if ($udomform eq '') {
1.79    ! damieng   368:             $udomform = '<i>'.$html_lt{'doma'}.'</i>:&nbsp;';
1.67      raeburn   369:             $udomform .= &Apache::loncommon::select_dom_form($codedom,'udom')."\n";
1.1       raeburn   370:         }
                    371:         if ($unameform eq '') {
1.79    ! damieng   372:             $unameform= '<i>'.$html_lt{'unme'}.'</i>:&nbsp;<input type="text" size="20" name="uname" value="'.$uname.'" />&nbsp;&nbsp;';
1.1       raeburn   373:         }
1.44      raeburn   374:         $output .= $unameform.$udomform;
1.1       raeburn   375:     }
1.50      raeburn   376:     $output .= &Apache::lonhtmlcommon::row_closure();
                    377:     $num ++;
                    378:     $i = $num%2;
1.79    ! damieng   379:     $output .= &Apache::lonhtmlcommon::row_title("$html_lt{'urlp'}",undef,$css[$i]).
1.70      raeburn   380:                $server."\n".'<input type="hidden" name="sourceurl" value="'.
                    381:                &HTML::Entities::encode($sourceurl,'"<>&').'" />'."\n".
1.44      raeburn   382:                &Apache::lonhtmlcommon::row_closure().
1.79    ! damieng   383:                &Apache::lonhtmlcommon::row_title("$html_lt{'phon'}",undef,'LC_evenrow_value').
1.67      raeburn   384:                '<input type="text" size="15" name="phone" /><br />'."\n".
1.50      raeburn   385:                &Apache::lonhtmlcommon::row_closure();
                    386:     $num ++;
                    387:     $i = $num%2; 
1.79    ! damieng   388:     $output .= &Apache::lonhtmlcommon::row_title("$html_lt{'crsd'}$details_title",undef,$css[$i]);
1.46      raeburn   389:     if ($cnum) {
1.10      raeburn   390:         if ($coursecodes{$cnum}) {
1.40      raeburn   391:             foreach my $item (@codetitles) {
1.44      raeburn   392:                 $output .= '<i>'.$item.'</i>:&nbsp;'.$codes{$cnum}{$item}.';&nbsp;';
1.10      raeburn   393:             }
1.67      raeburn   394:             $output .= '&nbsp;<input type="hidden" name="coursecode" value="'.&HTML::Entities::encode($coursecodes{$cnum},'"<>&').'" />'."\n";
1.10      raeburn   395:         } else {
1.79    ! damieng   396:             $output .= $html_lt{'enin'}.':&nbsp;
1.67      raeburn   397:                   <input type="text" name="coursecode" size="15" value="" />'."\n";
1.1       raeburn   398:         }
                    399:     } else {
1.10      raeburn   400:         if ($totcodes > 0) {
                    401:             my $numtitles = @codetitles;
                    402:             if ($numtitles == 0) {
1.79    ! damieng   403:                 $output .= $html_lt{'enin'}.':&nbsp;
1.67      raeburn   404:                   <input type="text" name="coursecode" size="15" value="" />'."\n";
1.10      raeburn   405:             } else {
1.57      raeburn   406:                 my @standardnames = &Apache::loncommon::get_standard_codeitems();
1.10      raeburn   407:                 my $lasttitle = $numtitles;
                    408:                 if ($numtitles > 4) {
                    409:                     $lasttitle = 4;
                    410:                 } 
1.44      raeburn   411:                 $output .= '<table><tr><td>'.$codetitles[0].'<br />'."\n".
1.57      raeburn   412:                       '<select name="'.$standardnames[0].'" onchange="courseSet('."'$codetitles[0]'".')">'."\n".
1.79    ! damieng   413:                       ' <option value="-1">'.$html_lt{'sele'}."</option>\n";
1.10      raeburn   414:                 my @items = ();
1.20      raeburn   415:                 my @longitems = ();
1.10      raeburn   416:                 if ($idlist{$codetitles[0]} =~ /","/) {
1.40      raeburn   417:                     @items = split(/","/,$idlist{$codetitles[0]});
1.10      raeburn   418:                 } else {
                    419:                     $items[0] = $idlist{$codetitles[0]};
                    420:                 }
1.20      raeburn   421:                 if (defined($idlist_titles{$codetitles[0]})) {
                    422:                     if ($idlist_titles{$codetitles[0]} =~ /","/) {
1.40      raeburn   423:                         @longitems = split(/","/,$idlist_titles{$codetitles[0]});
1.20      raeburn   424:                     } else {
                    425:                         $longitems[0] = $idlist_titles{$codetitles[0]};
                    426:                     }
1.22      raeburn   427:                     for (my $i=0; $i<@longitems; $i++) {
                    428:                         if ($longitems[$i] eq '') {
                    429:                             $longitems[$i] = $items[$i];
                    430:                         }
                    431:                     }
1.20      raeburn   432:                 } else {
                    433:                     @longitems = @items;
                    434:                 }
                    435:                 for (my $i=0; $i<@items; $i++) {
1.44      raeburn   436:                     $output .= ' <option value="'.$items[$i].'">'.$longitems[$i].'</option>'."\n";
1.10      raeburn   437:                 }
1.44      raeburn   438:                 $output .= '</select></td>';
1.10      raeburn   439:                 for (my $i=1; $i<$numtitles; $i++) {
1.44      raeburn   440:                     $output .= '<td>'.$codetitles[$i].'<br />'."\n".
1.57      raeburn   441:                      '<select name="'.$standardnames[$i].'" onchange="courseSet('."'$codetitles[$i]'".')">'."\n".
1.79    ! damieng   442:                      '<option value="-1">&lt;-'.$html_lt{'pick'}.' '.$codetitles[$i-1].'</option>'."\n".
1.10      raeburn   443:                      '</select>'."\n".
1.44      raeburn   444:                      '</td>'."\n";
1.10      raeburn   445:                 }
1.44      raeburn   446:                 $output .= '</tr></table>';
1.10      raeburn   447:                 if ($numtitles > 4) {
1.44      raeburn   448:                     $output .= '<br /><br />'.$codetitles[$numtitles].'<br />'."\n".
1.57      raeburn   449:                           '<select name="'.$standardnames[$numtitles].'" onchange="courseSet('."'$codetitles[$numtitles]'".')">'."\n".
1.79    ! damieng   450:                           '<option value="-1">&lt;-'.$html_lt{'pick'}.' '.$codetitles[$numtitles-1].'</option>'."\n".
1.44      raeburn   451:                           '</select>'."\n";
1.10      raeburn   452:                 }
                    453:             }
                    454:         } else {
1.79    ! damieng   455:             $output .= $html_lt{'enin'}.':&nbsp;
1.67      raeburn   456:                   <input type="text" name="coursecode" size="15" value="" />'."\n";
1.10      raeburn   457:         }
1.1       raeburn   458:     }
                    459:     if ($ctitle) {
1.79    ! damieng   460:         $output .= '<br /><i>'.$html_lt{'titl'}.'</i>:&nbsp;'.$ctitle.
1.44      raeburn   461:                    '<input type="hidden" name="title" value="'.
                    462:                    &HTML::Entities::encode($ctitle,'"<>&').'" />'."\n";
1.1       raeburn   463:     } else {
1.79    ! damieng   464:         $output .= '<br />'.$html_lt{'enct'}.':&nbsp;
1.44      raeburn   465:                  <input type="text" name="title" size="25" value="" />'."\n";
1.1       raeburn   466:     }
1.50      raeburn   467:     $output .= &Apache::lonhtmlcommon::row_closure();
                    468:     $num ++;
                    469:     $i = $num%2;
1.79    ! damieng   470:     $output .= &Apache::lonhtmlcommon::row_title($html_lt{'secn'},undef,$css[$i]);
1.1       raeburn   471:     if ($sectionlist) {
1.44      raeburn   472:         $output .= "<select name=\"section\"\n>".
1.79    ! damieng   473:                    "  <option value=\"\" selected=\"selected\">$html_lt{'sele'}</option>\n";
1.40      raeburn   474:         foreach my $id (sort(keys(%groupid))) {
                    475:             if ($id eq $groupid{$id} || $groupid{$id} eq '') {
1.44      raeburn   476:                 $output .= "  <option value=".
                    477:                            &HTML::Entities::encode($id,'"<>&').
                    478:                            " >$id</option>\n";
1.1       raeburn   479:             } else {
1.44      raeburn   480:                 $output .= "  <option value=".
                    481:                            &HTML::Entities::encode($id,'"<>&').
1.79    ! damieng   482:                            " >$id - ($html_lt{'lsec'}: $groupid{$id})</option>\n";
1.1       raeburn   483:             }
                    484:         }
1.44      raeburn   485:         $output .= "</select>";
1.1       raeburn   486:     } else {
1.67      raeburn   487:         $output .= '<input type="text" name="section" size="10" />'."\n";
1.1       raeburn   488:     }
1.50      raeburn   489:     $output .= &Apache::lonhtmlcommon::row_closure();
                    490:     $num ++;
                    491:     $i = $num%2; 
1.78      bisitz    492:     $output .= &Apache::lonhtmlcommon::row_title(
                    493:                    '<span title="'.&mt('required').'">'.
1.79    ! damieng   494:                    $html_lt{'subj'}.' <span class="LC_info">*</span></span>'
1.78      bisitz    495:                   ,undef,'LC_oddrow_value').
                    496:                '<input type="text" size="40" name="subject" />'."\n".
1.44      raeburn   497:                &Apache::lonhtmlcommon::row_closure().
1.78      bisitz    498:                &Apache::lonhtmlcommon::row_title(
                    499:                    '<span title="'.&mt('required').'">'.
1.79    ! damieng   500:                    $html_lt{'detd'}.' <span class="LC_info">*</span></span>'
1.78      bisitz    501:                   ,undef,'LC_evenrow_value').
                    502:                '<textarea rows="10" cols="45" name="description" style="word-wrap:normal;">'.
1.67      raeburn   503:                '</textarea>'."\n".
1.44      raeburn   504:                &Apache::lonhtmlcommon::row_closure();
1.50      raeburn   505:     $num ++;
                    506:     $i = $num%2; 
1.60      raeburn   507:     if (($env{'user.name'} =~ /^$match_username$/) && (!$public)) {
1.67      raeburn   508:         if ($homeserver) {
1.79    ! damieng   509:             $output .= &Apache::lonhtmlcommon::row_title($html_lt{'opfi'},undef,$css[$i]).
1.67      raeburn   510:                        ' <input type="file" name="screenshot" size="20" /><br />'.
1.79    ! damieng   511:                        "\n".$html_lt{'uplf'}."\n".
1.67      raeburn   512:                        &Apache::lonhtmlcommon::row_closure();
                    513:             $num ++;
                    514:             $i = $num%2;
                    515:         }
1.69      raeburn   516:     } else {
                    517:         my $lonhost = $r->dir_config('lonHostID');
                    518:         my ($captchaform,$error) = 
                    519:             &Apache::loncommon::captcha_display('login',$lonhost);
                    520:         if ($captchaform) {
1.78      bisitz    521:             $output .= &Apache::lonhtmlcommon::row_title(
                    522:                            '<span title="'.&mt('required').'">'.
                    523:                            &mt('Validation').
                    524:                            ' <span class="LC_info">*</span></span>'
                    525:                       ,undef,$css[$i]).
1.69      raeburn   526:                        $captchaform."\n".
                    527:                        &Apache::lonhtmlcommon::row_closure();
                    528:             $num ++;
                    529:             $i = $num%2;
                    530:         }
1.5       raeburn   531:     }
1.79    ! damieng   532:     $output .= &Apache::lonhtmlcommon::row_title($html_lt{'fini'},undef,$css[$i]);
1.44      raeburn   533:     $output .= <<END;
1.1       raeburn   534:              <table border="0" cellpadding="8" cellspacing="0">
                    535:               <tr>
                    536:                <td>
1.44      raeburn   537:                 <input type="hidden" name="command" value="process" />
1.79    ! damieng   538:                 <input type="button" value="$html_lt{'subm'}" onclick="validate()" /> &nbsp;
1.1       raeburn   539:                </td>
                    540:                <td>&nbsp;</td>
                    541:                <td>
1.79    ! damieng   542:                 <input type="reset" value="$html_lt{'clfm'}" />
1.1       raeburn   543:                </td>
                    544:               </tr>
                    545:              </table>
1.44      raeburn   546: END
                    547:     $output .= &Apache::lonhtmlcommon::row_closure(1);
                    548:     $output .= &Apache::lonhtmlcommon::end_pick_box();
                    549:     $r->print(<<END);
                    550: $output
1.14      raeburn   551: </form>
1.44      raeburn   552: <br />
1.1       raeburn   553: END
1.30      albertel  554:     $r->print(&Apache::loncommon::end_page());
1.5       raeburn   555:     return;
1.1       raeburn   556: }
                    557: 
                    558: sub print_request_receipt {
                    559:     my ($r,$url,$function) = @_;
1.69      raeburn   560:     my $public;
                    561:     if (($env{'user.name'} eq 'public') && ($env{'user.domain'} eq 'public')) {
                    562:         $public = 1;
                    563:     }
                    564:     unless (($env{'user.name'} =~ /^$match_username$/) && (!$public)) {
                    565:         my $lonhost = $r->dir_config('lonHostID');
                    566:         my ($captcha_chk,$captcha_error) = 
                    567:             &Apache::loncommon::captcha_response('login',$lonhost);
                    568:         if ($captcha_chk != 1) {
                    569:             $r->print(&Apache::loncommon::start_page('Support request failed',undef,
                    570:                                        {'function'    => $function,
                    571:                                         'add_entries' => {
                    572:                                             topmargin    => "0",
                    573:                                             marginheight => "0",
                    574:                                         },
                    575:                                         'only_body'   => 1,}));
                    576:             if ($r->uri eq '/adm/helpdesk') {
                    577:                 &print_header($r,$url,'process');
                    578:             }
1.75      bisitz    579:             $r->print(
                    580:                 '<h2>'.&mt('Support request failed').'</h2>'.
                    581:                       &Apache::lonhtmlcommon::confirm_success(
                    582:                         &mt('Validation of the code you entered failed.'),1).
                    583:                 '<br /><br />'.
                    584:                 &Apache::lonhtmlcommon::actionbox([
                    585:                     &mt('[_1]Go back[_2] and try again',
                    586:                         '<a href="javascript:history.go(-1)">','</a>')]).
1.69      raeburn   587:                       &Apache::loncommon::end_page());
                    588:             return;
                    589:         }
                    590:     }
1.26      raeburn   591:     my @ENVvars = ('HTTP_HOST','HTTP_USER_AGENT','REMOTE_ADDR','SERVER_ADDR','SERVER_NAME');
                    592:     my @envvars = ('browser.os','browser.type','browser.version','user.home','request.role');
1.5       raeburn   593:     my @loncvars = ('user.name','user.domain','request.course.sec','request.course.id');
1.27      raeburn   594:     my @cookievars = ('lonID');
1.5       raeburn   595: 
                    596:     my $admin = $Apache::lonnet::perlvar{'lonAdminMail'};
1.45      raeburn   597:     my $origmail = $Apache::lonnet::perlvar{'lonSupportEMail'};
                    598:     my $defdom = &get_domain();
                    599:     my $to = &Apache::loncommon::build_recipient_list(undef,'helpdeskmail',
                    600:                                                       $defdom,$origmail);
1.5       raeburn   601:     my $from = $admin;
1.56      raeburn   602:     my $bcc;
                    603:     my %domconfig =
                    604:          &Apache::lonnet::get_dom('configuration',['contacts'],$defdom);
                    605:     if (ref($domconfig{'contacts'}) eq 'HASH') {
                    606:         if (exists($domconfig{'contacts'}{'helpdeskmail'})) {
                    607:             if (ref($domconfig{'contacts'}{'helpdeskmail'}) eq 'HASH') {
                    608:                 my $bccmail = $domconfig{'contacts'}{'helpdeskmail'}{'bcc'};
                    609:                 if ($bccmail ne '') {
                    610:                     my @bccs = split(/,/,$bccmail);
                    611:                     my @ok_bccs;
                    612:                     foreach my $bcc (@bccs) {
                    613:                         $bcc =~ s/^\s+//g;
                    614:                         $bcc =~ s/\s+$//g;
                    615:                         if ($bcc =~ m/^[^\@]+\@[^\@]+$/) {
                    616:                             if (!(grep(/^\Q$bcc\E$/,@ok_bccs))) {
                    617:                                 push(@ok_bccs,$bcc);
                    618:                             }
                    619:                         }
                    620:                     }
                    621:                     if (@ok_bccs > 0) {
                    622:                         $bcc = join(', ',@ok_bccs);
                    623:                     }
                    624:                 }
                    625:             }
                    626:         }
                    627:     }
1.1       raeburn   628:     my $reporttime = &Apache::lonlocal::locallocaltime(time);
1.14      raeburn   629:     my @formvars = ('username','email','uname','udom','sourceurl','phone','section','coursecode','title','subject','description','screenshot');
1.20      raeburn   630: 
1.1       raeburn   631:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},\@formvars);
1.25      albertel  632:     my $coursecode = $env{'form.coursecode'};
1.19      raeburn   633:     if ($coursecode eq '') {
1.57      raeburn   634:         my $totcodes = 0;
                    635:         my %coursecodes;
                    636:         $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$defdom,$totcodes);
                    637:         my @standardnames = &Apache::loncommon::get_standard_codeitems();
                    638:         if ($totcodes > 0) {
1.64      raeburn   639:             my $noregexps = 1;
                    640:             $coursecode = 
                    641:                 &Apache::courseclassifier::instcode_from_selectors($defdom,$noregexps);
1.57      raeburn   642:         } 
                    643:         if ($coursecode eq '') {
                    644:             foreach my $item (@standardnames) {
                    645:                 if ((defined($env{'form.'.$item})) && ($env{'form.'.$item} ne '-1')) {
                    646:                     $coursecode .= $env{'form.'.$item};
                    647:                 }
                    648:             }
1.19      raeburn   649:         }
                    650:     }
1.40      raeburn   651:     my %lt = &Apache::lonlocal::texthash (
1.44      raeburn   652:                  username    => 'Name',
1.52      schafran  653:                  email       => 'E-mail',
1.46      raeburn   654:                  cc          => 'Cc',
1.44      raeburn   655:                  user        => 'Username/domain',
                    656:                  phone       => 'Phone',
                    657:                  crsi        => 'Course Information',
                    658:                  subject     => 'Subject',
                    659:                  description => 'Description',
                    660:                  sourceurl   => 'URL',
                    661:                  date        => 'Date/Time',
                    662:                  secn        => 'Section',
                    663:                  warn        => 'Warning: Problem with support e-mail address',
                    664:                  your        => 'Your support request contained the following information',
                    665:                  sect        => 'section',
                    666:                  info        => 'Information supplied',
                    667:                  adin        => 'Additional information recorded',
1.40      raeburn   668:     );
1.46      raeburn   669: 
1.72      raeburn   670:     my (@ok_ccs,@bad_ccs,$badccmsg,$okcclist,$homeserver);
                    671:     unless ($public) {
1.67      raeburn   672:         if (($env{'user.name'} ne '') && ($env{'user.domain'} ne '')) {
                    673:             $homeserver = &Apache::lonnet::homeserver($env{'user.name'},
                    674:                                                       $env{'user.domain'});
                    675:         }
                    676:     }
                    677: 
                    678:     if (($homeserver) && (defined($env{'form.cc'}))) {
1.46      raeburn   679:         my @ccs;
                    680:         if ($env{'form.cc'} =~ /,/) {
                    681:             @ccs = split(/,/,$env{'form.cc'});
                    682:         } else {
                    683:             $env{'form.cc'} =~ s/^\s+//;
                    684:             $env{'form.cc'} =~ s/\s+$//;
                    685:             @ccs = $env{'form.cc'};
                    686:         }
                    687:         foreach my $cc (@ccs) {
                    688:             $cc =~ s/^\s+//g;
                    689:             $cc =~ s/\s+$//g;
                    690:             if ($cc =~ m/^[^\@]+\@[^\@]+$/) {
                    691:                 if (!(grep(/^\Q$cc\E$/,@ok_ccs))) {
                    692:                     push(@ok_ccs,$cc);
                    693:                 }
1.57      raeburn   694:             } elsif ($cc ne '') {
1.46      raeburn   695:                 if (!(grep(/^\Q$cc\E$/,@bad_ccs))) {
                    696:                     push(@bad_ccs,$cc);
                    697:                 }
                    698:             }
                    699:         }
                    700:         if (@ok_ccs > 0) {
                    701:            $okcclist = join(', ',@ok_ccs); 
                    702:         } 
                    703:         if (@bad_ccs == 1) {
1.71      raeburn   704:             if ($bad_ccs[0] ne '') {
1.74      raeburn   705:                 $badccmsg .= '<br />'.&mt('The following Cc e-mail address is invalid: ').&Apache::loncommon::cleanup_html($bad_ccs[0]);
1.71      raeburn   706:             }
1.46      raeburn   707:         } elsif (@bad_ccs > 1) {
1.74      raeburn   708:             $badccmsg .= '<br />'.&mt('The following Cc e-mail addresses are invalid: '). &Apache::loncommon::cleanup_html(join(', ',@bad_ccs));
1.46      raeburn   709:         }
                    710:     }
1.44      raeburn   711:     $env{'form.user'} = "'".$env{'form.uname'}.':'.$env{'form.udom'}."'";
1.57      raeburn   712:     $env{'form.crsi'} = $env{'form.title'}.' - '.$coursecode.' - '.$lt{'sect'}.': '.$env{'form.section'};
1.44      raeburn   713:     my $supportmsg = <<END;
                    714: $lt{'username'}: $env{'form.username'}
1.40      raeburn   715: $lt{'email'}: $env{'form.email'}
1.46      raeburn   716: $lt{'cc'}: $okcclist
1.44      raeburn   717: $lt{'user'}: $env{'form.user'}
                    718: $lt{'phone'}: $env{'form.phone'}
1.57      raeburn   719: $lt{'crsi'}: $env{'form.crsi'}
1.44      raeburn   720: $lt{'subject'}: $env{'form.subject'}
                    721: $lt{'description'}: $env{'form.description'}
                    722: $lt{'sourceurl'}: $env{'form.sourceurl'}
1.40      raeburn   723: $lt{'date'}: $reporttime
1.1       raeburn   724: 
1.44      raeburn   725: END
                    726:     my $displaymsg;
1.46      raeburn   727:     foreach my $item ('username','email','cc','user','phone','crsi','subject','description','sourceurl') {
1.44      raeburn   728:         if ($env{'form.'.$item} ne '') {
                    729:             if ($item eq 'description') {
                    730:                 my $descrip = $env{'form.description'};
1.74      raeburn   731:                 $descrip =  &Apache::loncommon::cleanup_html($descrip);
1.54      raeburn   732:                 $descrip =~ s|[\n\r\f]|<br />|g;
1.44      raeburn   733:                 $displaymsg .= 
                    734:                     '<span class="LC_helpform_receipt_cat">'.
                    735:                     "$lt{$item}</span>: $descrip<br />\n";
                    736:             } elsif ($item eq 'sourceurl') {
                    737:                 my $showurl = $env{'form.sourceurl'};
                    738:                 $showurl =~ s/\?.*$//;
1.74      raeburn   739:                 $showurl =  &Apache::loncommon::cleanup_html($showurl);
1.44      raeburn   740:                 $displaymsg .= 
                    741:                     '<span class="LC_helpform_receipt_cat">'.
                    742:                     "$lt{$item}</span>: $showurl<br />\n";
1.46      raeburn   743:             } elsif ($item eq 'cc') {
1.71      raeburn   744:                 if ($okcclist) {
1.74      raeburn   745:                     my $showcclist = &Apache::loncommon::cleanup_html($okcclist);
1.71      raeburn   746:                     $displaymsg .=
                    747:                         '<span class="LC_helpform_receipt_cat">'.
                    748:                         "$lt{$item}</span>: $showcclist<br />\n";
                    749:                 }
1.44      raeburn   750:             } else {
1.54      raeburn   751:                 my $showitem = $env{'form.'.$item};
1.74      raeburn   752:                 $showitem = &Apache::loncommon::cleanup_html($showitem);
1.44      raeburn   753:                 $displaymsg .= 
                    754:                     '<span class="LC_helpform_receipt_cat">'.
1.54      raeburn   755:                     "$lt{$item}</span>: $showitem<br />\n";
1.44      raeburn   756:             }
                    757:         }
                    758:     }
                    759:     $displaymsg .= '<span class="LC_helpform_receipt_cat">'.
                    760:                    $lt{'date'}.'</span>: '.$reporttime.'<br />'."\n";
1.32      albertel  761: 
                    762:     my $start_page = 
                    763: 	&Apache::loncommon::start_page('Support request recorded',undef,
1.33      albertel  764: 				       {'function'    => $function,
                    765: 					'add_entries' => {
                    766: 					    topmargin    => "0",
                    767: 					    marginheight => "0",
                    768: 					},
                    769: 					'only_body'   => 1,});
1.32      albertel  770: 
1.14      raeburn   771:     $r->print(<<"END");
1.32      albertel  772: $start_page
1.73      bisitz    773: <form name="logproblem" action="">
1.44      raeburn   774: <input type="hidden" name="command" value="result" />
1.16      raeburn   775: </form>
1.1       raeburn   776: END
1.14      raeburn   777:     if ($r->uri eq '/adm/helpdesk') {
                    778:         &print_header($r,$url,'process');
                    779:     }
1.45      raeburn   780:     my $bad_email = 0;
                    781:     if ($to =~ /,/) {
                    782:         my @ok_email; 
                    783:         foreach my $email (split(/,/,$to)) {
                    784:             if ($email =~ m/^[^\@]+\@[^\@]+$/) {
1.46      raeburn   785:                 if (!grep(/^\Q$email\E$/,@ok_email)) {
                    786:                     push(@ok_email,$email);
                    787:                 }
1.45      raeburn   788:             }
                    789:         }
                    790:         if (@ok_email > 0) {
                    791:             $to = join(',',@ok_email);
                    792:         } elsif ($admin =~ m/^[^\@]+\@[^\@]+$/) {
                    793:             $to = $admin;
                    794:         } else {
                    795:             $bad_email = 1;
                    796:         }
                    797:     } elsif ($to !~ m/^[^\@]+\@[^\@]+$/) {
                    798:         if ($admin =~ m/^[^\@]+\@[^\@]+$/) {
                    799:             $to = $admin;
1.9       raeburn   800:         } else {
1.45      raeburn   801:             $bad_email = 1;
                    802:         }
                    803:     }
1.66      bisitz    804: 
                    805:     my $message;
                    806:     if (!$bad_email) {
                    807:         $message = &Apache::lonhtmlcommon::confirm_success(
                    808:             &mt('A support request has been sent to [_1]','<tt>'.$to.'</tt>'));
                    809:     } else {
                    810:         $message = &Apache::lonhtmlcommon::confirm_success(
                    811:             $lt{'warn'}.'<br />'
                    812:            .&mt('As the e-mail address provided for this LON-CAPA server ([_1]) does not appear to be a valid e-mail address, your support request has [_2]not[_3] been sent to the LON-CAPA support staff or administrator at your institution.','<tt>'.$to.'</tt>','<b>','</b>')
                    813:            .' '.&mt('Instead a copy has been sent to the LON-CAPA support team at Michigan State University.'),1); 
                    814:         $to = 'helpdesk@lon-capa.org';
1.1       raeburn   815:     }
1.66      bisitz    816:     $r->print(&Apache::loncommon::confirmwrapper($message));
                    817: 
1.25      albertel  818:     if (defined($env{'form.email'})) {
1.46      raeburn   819:         $env{'form.email'} =~ s/^\s+//;
                    820:         $env{'form.email'} =~ s/\s+$//;
1.25      albertel  821:         if ($env{'form.email'} =~ m/^[^\@]+\@[^\@]+$/) {
                    822:             $from = $env{'form.email'};
1.5       raeburn   823:         }
                    824:     }
                    825: 
1.46      raeburn   826:     if (defined($env{'form.cc'})) {
                    827:         if ($badccmsg) {
                    828:             $displaymsg .= $badccmsg;
                    829:         }
                    830:     }
                    831: 
1.25      albertel  832:     my $subject = $env{'form.subject'};
1.44      raeburn   833:     $subject =~ s/(`)/'/g;
                    834:     $subject =~ s/\$/\(\$\)/g;
                    835:     $supportmsg =~ s/(`)/'/g;
                    836:     $supportmsg =~ s/\$/\(\$\)/g;
                    837:     $displaymsg =~ s/(`)/'/g;
                    838:     $displaymsg =~ s/\$/\(\$\)/g;
1.5       raeburn   839:     my $fname;
                    840: 
                    841:     my $attachmentpath = '';
                    842:     my $attachmentsize = '';
1.72      raeburn   843:     if ((defined($env{'user.name'})) && (!$public)) {
1.67      raeburn   844:         if ($homeserver && $env{'form.screenshot.filename'}) {
1.25      albertel  845:             $attachmentsize = length($env{'form.screenshot'});
1.5       raeburn   846:             if ($attachmentsize > 131072) {
1.78      bisitz    847:                 $displaymsg .= '<br /><span class="LC_warning">'.
                    848:                                &mt('The uploaded screenshot file ([_1] bytes) included with your request exceeded the maximum allowed size - 128 KB, and has therefore been discarded.',$attachmentsize).'</span>';
1.5       raeburn   849:             } else {
                    850:                 $attachmentpath=&Apache::lonnet::userfileupload('screenshot',undef,'helprequests');
                    851:             }
                    852:         }
                    853:     }
                    854: 
1.40      raeburn   855:     my %cookies;
1.27      raeburn   856:     my $cookie=CGI::Cookie->parse($r->header_in('Cookie'));
1.39      albertel  857:     if ($$cookie{'lonID'} =~ /lonID=($LONCAPA::handle_re);/) {
1.27      raeburn   858:         $cookies{'lonID'} = $1;
                    859:     }
                    860: 
1.5       raeburn   861:     if ($attachmentpath =~ m-/([^/]+)$-) {
                    862:         $fname = $1;
1.51      bisitz    863:         $displaymsg .= '<br />'
                    864:                       .&mt('An uploaded screenshot file [_1] ([_2] bytes) was included in the request sent by [_3].'
1.66      bisitz    865:                           ,'<span class="LC_filename">'.$fname.'</span>'
1.51      bisitz    866:                           ,$attachmentsize
                    867:                           ,$env{'user.name'}.':'.$env{'user.domain'}
                    868:                        );
1.5       raeburn   869:         $supportmsg .= "\n";
1.40      raeburn   870:         foreach my $var (@cookievars) {
                    871:             $supportmsg .= "$var: $cookies{$var}\n";
1.27      raeburn   872:         }
1.40      raeburn   873:         foreach my $var(@ENVvars) {
                    874:             $supportmsg .= "$var: $ENV{$var}\n";
1.26      raeburn   875:         }
1.40      raeburn   876:         foreach my $var (@envvars) {
                    877:             $supportmsg .= "$var: $env{$var}\n";
1.5       raeburn   878:         }
                    879:     }
                    880:  
                    881:     my $msg = MIME::Lite->new(
                    882:                  From    => $from,
                    883:                  To      => $to,
                    884:                  Subject => $subject,
                    885:                  Type    =>'TEXT',
                    886:                  Data    => $supportmsg,
                    887:                  );
1.67      raeburn   888:     if ($homeserver) {
                    889:         if (@ok_ccs > 0) {
                    890:             my $cc_string = join(', ',@ok_ccs);
                    891:             $msg->add("Cc" => $cc_string);
                    892:         }
1.46      raeburn   893:     }
1.56      raeburn   894:     if ($bcc ne '') {
                    895:         $msg->add("Bcc" => $bcc);
                    896:     }
1.65      raeburn   897:     $msg->attr("content-type"         => "text/plain");
                    898:     $msg->attr("content-type.charset" => "UTF-8");
1.5       raeburn   899: 
1.67      raeburn   900:     if ($homeserver && $attachmentpath) {
1.5       raeburn   901:         my ($type, $encoding) = MIME::Types::by_suffix($attachmentpath);
                    902:         $msg->attach(Type     => $type,
                    903:                      Path     => $attachmentpath,
                    904:                      Filename => $fname
                    905:                      );
                    906: 
                    907:     } else {
                    908:         my $envdata = '';
1.40      raeburn   909:         foreach my $var (@cookievars) {
                    910:             $envdata .= "$var: $cookies{$var}\n";
1.27      raeburn   911:         }
1.40      raeburn   912:         foreach my $var (@ENVvars) {
                    913:             $envdata .= "$var: $ENV{$var}\n";
1.26      raeburn   914:         }
1.40      raeburn   915:         foreach my $var (@envvars) {
                    916:             $envdata .= "$var: $env{$var}\n";
1.5       raeburn   917:         }
1.40      raeburn   918:         foreach my $var (@loncvars) {
                    919:             $envdata .= "$var: $env{$var}\n";
1.5       raeburn   920:         }
                    921:         $msg->attach(Type => 'TEXT',
                    922:                      Data => $envdata);
                    923:     }
                    924: 
                    925: ### Send it:
                    926:     $msg->send('sendmail');
                    927: 
1.44      raeburn   928:     if ($attachmentpath =~ m|$Apache::lonnet::perlvar{'lonDaemons'}/tmp/helprequests/(\d+)/[^/]+|) {
1.5       raeburn   929:         unlink($attachmentpath);
                    930:     }
1.44      raeburn   931:     $r->print('<b>'.$lt{'your'}.'</b>:<br /><br />'."\n");
1.55      bisitz    932:     $r->print('<div style="width:620px;">'.
                    933:               &Apache::lonhtmlcommon::start_pick_box().
1.44      raeburn   934:               &Apache::lonhtmlcommon::row_title($lt{'info'},undef,'LC_oddrow_value')."\n".$displaymsg."\n".
                    935:               &Apache::lonhtmlcommon::row_closure().
                    936:               &Apache::lonhtmlcommon::row_title($lt{'adin'},undef,'LC_evenrow_value'));
                    937:     my $envmsg;
1.40      raeburn   938:     foreach my $var (@cookievars) {
1.44      raeburn   939:         if ($cookies{$var} ne '') {
                    940:             $envmsg.= '<span class="LC_helpform_receipt_cat">'.
                    941:                       $var.'</span>:&nbsp;'.$cookies{$var}.', ';
1.27      raeburn   942:         }
                    943:     }
1.40      raeburn   944:     foreach my $var (@ENVvars) {
1.44      raeburn   945:         if ($ENV{$var} ne '') {
                    946:             $envmsg .= '<span class="LC_helpform_receipt_cat">'.
                    947:                        $var.'</span>:&nbsp;'.$ENV{$var}.', ';
1.26      raeburn   948:         }
                    949:     }
1.40      raeburn   950:     foreach my $var (@envvars) {
1.44      raeburn   951:         if ($env{$var} ne '') { 
                    952:             $envmsg .= '<span class="LC_helpform_receipt_cat">'.
                    953:                        $var.'</span>:&nbsp;'.$env{$var}.', ';
1.5       raeburn   954:         }
1.1       raeburn   955:     }
1.44      raeburn   956:     $envmsg =~ s/, $//;
                    957:     $r->print($envmsg."\n".
                    958:               &Apache::lonhtmlcommon::row_closure(1)."\n".
1.55      bisitz    959:               &Apache::lonhtmlcommon::end_pick_box().
                    960:               "</div>\n".
1.44      raeburn   961:               &Apache::loncommon::end_page());
1.1       raeburn   962: }
                    963: 
1.14      raeburn   964: sub print_header {
1.44      raeburn   965:     my ($r,$origurl,$command) = @_;
1.14      raeburn   966:     my $location=&Apache::loncommon::lonhttpdurl("/adm");
                    967:     my ($component_url);
                    968:     my $helpdesk_link = '<a href="javascript:validate()">';
1.44      raeburn   969:     if ($command eq 'process') {
1.14      raeburn   970:         $helpdesk_link = '<a href="/adm/helpdesk">';
                    971:     }
                    972:     my %lt = &Apache::lonlocal::texthash (
1.67      raeburn   973:                                            login    => 'Log-in help',
                    974:                                            ask      => 'Ask helpdesk',
                    975:                                            getst    => 'Getting started guide',
                    976:                                            back     =>  'Back to last location',
1.47      bisitz    977:                                            headline => 'help/support',
1.67      raeburn   978:                                            stud     => 'Students',
                    979:                                            ifyo     => 'If your problem is still unresolved, the form below can be used to send a question to the LON-CAPA helpdesk.',
                    980:                                            cont     => 'Contact your instructor instead.',
1.21      raeburn   981:                                          );
1.47      bisitz    982:     my ($getstartlink,$reviewtext);
1.21      raeburn   983:     if (-e $Apache::lonnet::perlvar{'lonDocRoot'}.'/adm/gettingstarted.html') {
                    984:         $getstartlink = qq|<td align="center">&nbsp;<b><a href="/adm/gettingstarted.html">$lt{'getst'}</a></td>|;
1.47      bisitz    985:         $reviewtext = &mt('Please review the information in "Log-in help" and the "Getting started" guide if you are unable to log-in.');
                    986:     } else {
                    987:         $reviewtext = &mt('Please review the information in "Log-in help" if you are unable to log-in.');
1.21      raeburn   988:     }
1.70      raeburn   989:     my $linkback;
1.59      raeburn   990:     if ($origurl eq '') {
1.70      raeburn   991:         $linkback = 'javascript:history.go(-1)';
                    992:     } else {
                    993:         $linkback = &HTML::Entities::encode($origurl,'"<>&');
1.59      raeburn   994:     }
1.68      raeburn   995:     my $loginhelp = &Apache::lonauth::loginhelpdisplay();
                    996:     if ($loginhelp eq '') {
                    997:         $loginhelp = '/adm/loginproblems.html';
                    998:     }
1.67      raeburn   999:     $r->print(<<"END");
                   1000: <table width="620" border="0" cellspacing="0" cellpadding="0" style="height: 55px;">
                   1001:  <tr>
                   1002:    <td width="5" height="50">&nbsp;</td>
                   1003:    <td height="50">
1.53      bisitz   1004:     <fieldset>
                   1005:       <legend>
1.67      raeburn  1006:         <img src="$location/lonIcons/minilogo.gif" height="20" width="29" alt="logo" style="vertical-align:bottom" />
1.53      bisitz   1007:         LON-CAPA $lt{'headline'}
                   1008:       </legend>
1.44      raeburn  1009:  <table id="LC_helpmenu_links">
                   1010:    <tr>
1.68      raeburn  1011:     <td align="center"><span class="LC_nobreak"><img src="$location/help/help.png" border="0" alt="($lt{'login'})" style="vertical-align:middle" />&nbsp;<b><a href="$loginhelp">$lt{'login'}</a></b>&nbsp;</span></td>
1.67      raeburn  1012:     <td align="center"><span class="LC_nobreak">&nbsp;<b>$helpdesk_link<img src="$location/lonIcons/helpdesk.gif" border="0" alt="($lt{'ask'})" style="vertical-align:middle" />&nbsp;$lt{'ask'}</a></b>&nbsp;</span></td>$getstartlink
1.70      raeburn  1013:     <td align="center"><span class="LC_nobreak">&nbsp;<b><a href="$linkback" target="_top"><img src="$location/lonIcons/move_up.gif" border="0" alt="($lt{'back'})" style="vertical-align:middle" />&nbsp;$lt{'back'}</a></b>&nbsp;</span></td>
1.44      raeburn  1014:    </tr>
1.14      raeburn  1015:  </table>
                   1016: </fieldset>
                   1017:   </td>
1.67      raeburn  1018:   <td width="5">&nbsp;</td>
1.14      raeburn  1019:  </tr>
1.67      raeburn  1020:  <tr>
                   1021:   <td colspan="3" height="5">&nbsp;</td>
1.14      raeburn  1022:  </tr>
                   1023: END
1.44      raeburn  1024:     if  ($command ne 'process') {
1.67      raeburn  1025:         my $stuwarn = &mt('Do [_1]not[_2] use this form to ask about course content.',
                   1026:                           '<b>','</b>');
                   1027:         $r->print(<<"END");
1.14      raeburn  1028:  <tr>
1.67      raeburn  1029:   <td colspan="3">$reviewtext 
1.76      bisitz   1030:   $lt{'ifyo'}
                   1031: <p class="LC_info">
                   1032: <b>$lt{'stud'}:</b> 
                   1033: $stuwarn $lt{'cont'}
                   1034: </p><br />
1.14      raeburn  1035:   </td>
1.67      raeburn  1036:  </tr>
                   1037: END
1.14      raeburn  1038:     }
                   1039:     $r->print('
                   1040: </table>');
                   1041:     return;
                   1042: }
                   1043: 
1.45      raeburn  1044: sub get_domain {
                   1045:     my $codedom;
                   1046:     if (exists($env{'form.codedom'})) {
1.70      raeburn  1047:         if (&Apache::lonnet::domain($env{'form.codedom'}) ne '') {
                   1048:             return $env{'form.codedom'};
                   1049:         }
                   1050:     }
                   1051:     if ($env{'request.course.id'}) {
1.45      raeburn  1052:         $codedom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1053:     } elsif ($env{'request.role.domain'}) {
                   1054:         $codedom = $env{'request.role.domain'};
                   1055:     } else {
1.54      raeburn  1056:         $codedom = &Apache::lonnet::default_login_domain();
1.45      raeburn  1057:     }
                   1058:     return $codedom;
                   1059: }
                   1060: 
1.1       raeburn  1061: 1;

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>