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

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

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