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

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

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