File:  [LON-CAPA] / loncom / interface / lonsupportreq.pm
Revision 1.79.2.3.2.1: download - view: text, annotated - select for diffs
Sun Oct 15 03:43:52 2017 UTC (6 years, 6 months ago) by raeburn
Branches: version_2_11_2_msu
Diff to branchpoint 1.79.2.3: preferred, unified
- For 2.11.2 (modified).
  - Include changes in rev. 1.93.

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

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