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

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

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