--- loncom/interface/lonsupportreq.pm 2004/07/03 18:49:42 1.1 +++ loncom/interface/lonsupportreq.pm 2007/05/07 14:02:45 1.43 @@ -1,30 +1,65 @@ +# +# $Id: lonsupportreq.pm,v 1.43 2007/05/07 14:02:45 raeburn Exp $ +# +# Copyright Michigan State University Board of Trustees +# +# This file is part of the LearningOnline Network with CAPA (LON-CAPA). +# +# LON-CAPA is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# LON-CAPA is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with LON-CAPA; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# /home/httpd/html/adm/gpl.txt +# +# http://www.lon-capa.org/ +# + package Apache::lonsupportreq; use strict; -use lib qw(/home/httpd/lib/perl); +use MIME::Types; +use MIME::Lite; +use CGI::Cookie(); use Apache::Constants qw(:common); -use Apache::loncommon; +use Apache::loncommon(); +use Apache::lonhtmlcommon; use Apache::lonnet; -use localenroll; use Apache::lonlocal; - -use Mail::Send; -# use MIME::Lite; -# use MIME::Types; +use Apache::lonacc(); +use Apache::courseclassifier; +use LONCAPA; + sub handler { - my $r = shift; - $r->content_type('text/html'); + my ($r) = @_; + &Apache::loncommon::content_type($r,'text/html'); $r->send_http_header; if ($r->header_only) { return OK; } + if ($r->uri eq '/adm/helpdesk') { + &Apache::lonlocal::get_language_handle($r); + } + + &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['origurl','function']); + if ($r->uri eq '/adm/helpdesk') { + &Apache::lonacc::get_posted_cgi($r); + } + my $function = $env{'form.function'}; + my $origurl = &unescape($env{'form.origurl'}); + my $action = $env{'form.action'}; - &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['action','origurl','function']); - my $action = $ENV{'form.action'}; - my $function = $ENV{'form.function'}; - my $origurl = &Apache::lonnet::unescape($ENV{'form.origurl'}); if ($action eq 'process') { &print_request_receipt($r,$origurl,$function); } else { @@ -35,23 +70,78 @@ sub handler { sub print_request_form { my ($r,$origurl,$function) = @_; - my ($os,$browser,$bversion,$uhost,$uname,$udom,$uhome,$urole,$usec,$email,$cid,$cdom,$cnum,$ctitle,$ccode,$sectionlist,$lastname,$firstname,$server); - my $bodytag = &Apache::loncommon::bodytag('',$function,'topmargin="0",marginheight="0"',1); + my ($os,$browser,$bversion,$uhost,$uname,$udom,$uhome,$urole,$usec,$email,$cid,$cdom,$cnum,$ctitle,$ccode,$sectionlist,$lastname,$firstname,$server,$formname); my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg'); - $os = $ENV{'browser.os'}; - $browser = $ENV{'browser.type'}; - $bversion = $ENV{'browser.version'}; - $uhost = $ENV{'request.host'}; - $uname = $ENV{'user.name'}; - $udom = $ENV{'user.domain'}; - $uhome = $ENV{'user.home'}; - $urole = $ENV{'request.role'}; - $usec = $ENV{'request.course.sec'}; - $cid = $ENV{'request.course.id'}; - $server = $ENV{'SERVER_NAME'}; - my $scripttag; + if (($tablecolor eq '') || ($tablecolor eq '#FFFFFF')) { + $tablecolor = '#EEEE99'; + } + $ccode = ''; + $os = $env{'browser.os'}; + $browser = $env{'browser.type'}; + $bversion = $env{'browser.version'}; + $uhost = $env{'request.host'}; + $uname = $env{'user.name'}; + $udom = $env{'user.domain'}; + $uhome = $env{'user.home'}; + $urole = $env{'request.role'}; + $usec = $env{'request.course.sec'}; + $cid = $env{'request.course.id'}; + $formname = 'logproblem'; + my $machine = &Apache::lonnet::absolute_url(); + if ($origurl =~ m-^https?://-) { + $server = $origurl; + } else { + $server = $machine.$origurl; + } + my %lt = &Apache::lonlocal::texthash ( + email => 'The e-mail address you entered', + notv => 'is not a valid e-mail address', + rsub => 'You must include a subject', + rdes => 'You must include a description', + name => 'Name', + subm => 'Submit Request', + emad => 'E-mail address', + unme => 'username', + doma => 'domain', + entr => 'Enter the username you use to log-in to your LON-CAPA system, and choose your domain.', + urlp => 'URL of page', + phon => 'Phone', + crsd => 'Course Details', + enin => 'Enter institutional course code', + pick => 'Pick', + enct => 'Enter course title', + secn => 'Section Number', + sele => 'Select', + titl => 'Title', + lsec => 'LON-CAPA sec', + subj => 'Subject', + detd => 'Detailed Description', + opfi => 'Optional file upload', + uplf => 'Upload a file (e.g., a screenshot) relevant to your support request (128 KB max. size)', + fini => 'Finish', + clfm => 'Clear Form', + ); + my $scripttag = (<<"END"); +function validate() { + if (validmail(document.logproblem.email) == false) { + alert("$lt{'email'}: "+document.logproblem.email.value+" $lt{'notv'}."); + return; + } + if (document.logproblem.subject.value == '') { + alert("$lt{'rsub'}."); + return; + } + if (document.logproblem.description.value == '') { + alert("$lt{'rdes'}."); + return; + } + document.logproblem.submit(); +} + +END + $scripttag .= &Apache::lonhtmlcommon::javascript_valid_email(); if ($cid =~ m/_/) { - ($cdom,$cnum) = split/_/,$cid; + ($cdom,$cnum) = split(/_/,$cid); } if ($cdom && $cnum) { my %csettings = &Apache::lonnet::get('environment',['description','internal.coursecode','internal.sectionnums'],$cdom,$cnum); @@ -59,65 +149,100 @@ sub print_request_form { $ccode = $csettings{'internal.coursecode'}; $sectionlist = $csettings{'internal.sectionnums'}; } - if ($ENV{'environment.critnotification'}) { - $email = $ENV{'environment.critnotification'}; + if ($env{'environment.critnotification'}) { + $email = $env{'environment.critnotification'}; } - if (!$email && $ENV{'environment.notification'}) { - $email = $ENV{'environment.notification'}; + if (!$email && $env{'environment.notification'}) { + $email = $env{'environment.notification'}; } - if ($ENV{'environment.lastname'}) { - $lastname = $ENV{'environment.lastname'}; + if ($env{'environment.lastname'}) { + $lastname = $env{'environment.lastname'}; } - if ($ENV{'environment.firstname'}) { - $firstname = $ENV{'environment.firstname'}; - } - my @sections = split/,/,$sectionlist; - my %groupid = (); - foreach (@sections) { - my ($sec,$grp) = split/:/,$_; + if ($env{'environment.firstname'}) { + $firstname = $env{'environment.firstname'}; + } + my @sections = split(/,/,$sectionlist); + my %groupid; + foreach my $section (@sections) { + my ($sec,$grp) = split(/:/,$section); $groupid{$sec} = $grp; } - $r->print(< - - LON-CAPA support request -END - my $defdom = $Apache::lonnet::perlvar{'lonDefDomain'}; - my $codedom = $defdom; - my %coursecodes = (); - my %codes = (); - my @codetitles = (); - my %cat_titles = (); - my %cat_order = (); + my $codedom = $Apache::lonnet::perlvar{'lonDefDomain'}; + &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['codedom']); + if (exists($env{'form.codedom'})) { + $codedom = $env{'form.codedom'}; + } + my $details_title; + if ($codedom) { + $details_title = '
('.$codedom.')'; + } + my %coursecodes; + my %codes; + my @codetitles; + my %cat_titles; + my %cat_order; + my %idlist; + my %idnums; + my %idlist_titles; my $caller = 'global'; my $totcodes = 0; my $format_reply; - + my $jscript = ''; + my $loaditems = qq| +function initialize_codes() { + return; +} + |; if ($cdom) { $codedom = $cdom; } if ($cnum) { $coursecodes{$cnum} = $ccode; if ($ccode eq '') { - $totcodes = &retrieve_instcodes(\%coursecodes,$codedom,$totcodes); + $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes); } else { $coursecodes{$cnum} = $ccode; $caller = $cnum; $totcodes ++; } } else { - $totcodes = &retrieve_instcodes(\%coursecodes,$codedom,$totcodes); + $totcodes = &Apache::courseclassifier::retrieve_instcodes(\%coursecodes,$codedom,$totcodes); } if ($totcodes > 0) { - $format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order); + if ($ccode eq '') { + $format_reply = &Apache::lonnet::auto_instcode_format($caller,$codedom,\%coursecodes,\%codes,\@codetitles,\%cat_titles,\%cat_order); + if ($format_reply eq 'ok') { + my $numtypes = @codetitles; + &Apache::courseclassifier::build_code_selections(\%codes,\@codetitles,\%cat_titles,\%cat_order,\%idlist,\%idnums,\%idlist_titles); + my ($scripttext,$longtitles) = &Apache::courseclassifier::javascript_definitions(\@codetitles,\%idlist,\%idlist_titles,\%idnums,\%cat_titles); + my $longtitles_str = join('","',@{$longtitles}); + my $allidlist = $idlist{$codetitles[0]}; + $jscript .= &Apache::courseclassifier::courseset_js_start($formname,$longtitles_str,$allidlist); + $jscript .= $scripttext; + $jscript .= &Apache::courseclassifier::javascript_code_selections($formname,@codetitles); + $loaditems = ''; + } + } } - $r->print(< - - LON-CAPA support request -$scripttag - -$bodytag + + my $js = ''; + my %add_entries = (topmargin => "0", + marginheight => "0", + onLoad =>"initialize_codes()",); + + my $start_page = + &Apache::loncommon::start_page('Support Request',$js, + { 'function' => $function, + 'add_entries' => \%add_entries, + 'only_body' => 1,}); + $r->print($start_page); + + if ($r->uri eq '/adm/helpdesk') { + &print_header($r,$origurl); + } + $r->print(<<"END"); +
+END + if (defined($env{'user.name'})) { + $r->print(< + + + + + +END + } + + $r->print(< +
@@ -128,12 +253,11 @@ $bodytag
-
-
Name: + $lt{'name'}:
@@ -153,9 +277,10 @@ END } elsif (defined($lastname) && $lastname ne '') { $fullname= " $lastname"; } - $r->print('
'); + $r->print(''); } $r->print(< 
@@ -163,14 +288,14 @@ END
-
+
-
E-mail address: + $lt{'emad'}:
@@ -187,14 +312,14 @@ END
-
+
-
username/domain: + $lt{'unme'}/$lt{'doma'}:
@@ -207,23 +332,23 @@ END my $udom_input = ''; my $uname_input = ''; if (defined($uname) && defined($udom)) { - $r->print('username: '.$uname.'  domain: '.$udom.$udom_input.$uname_input); + $r->print(''.$lt{'unme'}.': '.$uname.'  '.$lt{'doma'}.': '.$udom.$udom_input.$uname_input); } else { my $udomform = ''; my $unameform = ''; if (defined($udom)) { - $udomform = 'domain: '.$udom.$udom_input; + $udomform = ''.$lt{'doma'}.': '.$udom.$udom_input; } elsif (defined($uname)) { - $unameform = 'username: '.$uname.'  '.$uname_input; + $unameform = ''.$lt{'unme'}.': '.$uname.'  '.$uname_input; } if ($udomform eq '') { - $udomform = 'domain: '; - $udomform .= &Apache::loncommon::select_dom_form('','udom'); + $udomform = ''.$lt{'doma'}.': '; + $udomform .= &Apache::loncommon::select_dom_form($codedom,'udom'); } if ($unameform eq '') { - $unameform= 'username  '; + $unameform= ''.$lt{'unme'}.'  '; } - $r->print($unameform.$udomform.'
Enter the username you use to log-in to your LON-CAPA system, and choose your domain.'); + $r->print($unameform.$udomform.'
'.$lt{'entr'}); } $r->print(< @@ -233,14 +358,14 @@ END
-
+
-
URL of page: + $lt{'urlp'}:
@@ -249,7 +374,7 @@ END
- $server$origurl + $server
@@ -257,14 +382,14 @@ END
-
+
-
Phone #: + $lt{'phon'} #:
@@ -281,14 +406,14 @@ END
-
+
-
Course Details: + $lt{'crsd'}:$details_title
@@ -298,20 +423,81 @@ END
END - if ($coursecodes{$cnum}) { - foreach (@codetitles) { - $r->print(''.$_.': '.$codes{$cnum}{$_}); + if ($cnum) { + if ($coursecodes{$cnum}) { + foreach my $item (@codetitles) { + $r->print(''.$item.': '.$codes{$cnum}{$item}.'; '); + } + $r->print(' '); + } else { + $r->print($lt{'enin'}.':  + '); } - $r->print('. '); } else { - $r->print('Enter institutional course code:  + if ($totcodes > 0) { + my $numtitles = @codetitles; + if ($numtitles == 0) { + $r->print($lt{'enin'}.':  + '); + } else { + my $lasttitle = $numtitles; + if ($numtitles > 4) { + $lasttitle = 4; + } + $r->print(''); + for (my $i=1; $i<$numtitles; $i++) { + $r->print('' + ); + } + $r->print('
'.$codetitles[0].'
'."\n". + '
'.$codetitles[$i].'
'."\n". + ''."\n". + '
'); + if ($numtitles > 4) { + $r->print('

'.$codetitles[$numtitles].'
'."\n". + ''."\n"); + } + } + } else { + $r->print($lt{'enin'}.':  '); + } } if ($ctitle) { - $r->print('
Title: '.$ctitle.''); + $r->print('
'.$lt{'titl'}.': '.$ctitle.''); } else { - $r->print('
Enter course title:  - '); + $r->print('
'.$lt{'enct'}.':  + '); } $r->print(< @@ -321,14 +507,14 @@ END
-
+
-
Section Number: + $lt{'secn'}:
@@ -339,12 +525,13 @@ END
END if ($sectionlist) { - $r->print("". + " \n"); + foreach my $id (sort(keys(%groupid))) { + if ($id eq $groupid{$id} || $groupid{$id} eq '') { + $r->print(" \n"); } else { - $r->print("\n"); } } $r->print(""); @@ -359,14 +546,14 @@ END
-
+
-
Subject + $lt{'subj'}
@@ -383,14 +570,14 @@ END
-
+
-
Detailed description: + $lt{'detd'}:
@@ -407,14 +594,45 @@ END
-
+
- + +
Finish: + $lt{'opfi'}: +
+
+ + + + +
+
$lt{'uplf'} +
+
+
+
+ + +
$lt{'fini'}:
@@ -424,11 +642,11 @@ END
-   +     - +
@@ -444,97 +662,209 @@ END +
END - - -# What do we know about this user? -# foreach (sort keys %ENV) { -# if ($_ =~ m/^browser/) { -# $r->print("key is $_, value is $ENV{$_}"); -# } elsif ($_ =~ m/^environment/) { -# $r->print("key is $_, value is $ENV{$_}"); -# } elsif ($_ =~ m/^request/) { -# $r->print("key is $_, value is $ENV{$_}"); -# } elsif ($_ =~ m/^user\.(domain|home|name)/) { -# $r->print("key is $_, value is $ENV{$_}"); -# } elsif ($_ =~ /^[A-Z]/) { -# $r->print("key is $_, value is $ENV{$_}"); -# } -# } - return + $r->print(&Apache::loncommon::end_page()); + return; } sub print_request_receipt { my ($r,$url,$function) = @_; - my @envvars = ('lonID','HTTP_HOST','HTTP_USER_AGENT','REMOTE_ADDR','SERVER_ADDR','SERVER_NAME','browser.os','browser.type','browser.version','user.home','request.role'); - my $bodytag = &Apache::loncommon::bodytag('',$function,'topmargin="0" marginheight="0"',1); + my @ENVvars = ('HTTP_HOST','HTTP_USER_AGENT','REMOTE_ADDR','SERVER_ADDR','SERVER_NAME'); + my @envvars = ('browser.os','browser.type','browser.version','user.home','request.role'); + my @loncvars = ('user.name','user.domain','request.course.sec','request.course.id'); + my @cookievars = ('lonID'); + + my $admin = $Apache::lonnet::perlvar{'lonAdminMail'}; my $to = $Apache::lonnet::perlvar{'lonSupportEMail'}; + my $from = $admin; my $reporttime = &Apache::lonlocal::locallocaltime(time); my $fontcolor = &Apache::loncommon::designparm($function.'.font'); my $vlinkcolor = &Apache::loncommon::designparm($function.'.vlink'); my $tablecolor = &Apache::loncommon::designparm($function.'.tabbg'); - my @formvars = ('username','email','uname','udom','origurl','phone','section','coursecode','title','subject','description'); - &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},\@formvars); + my @formvars = ('username','email','uname','udom','sourceurl','phone','section','coursecode','title','subject','description','screenshot'); -# if ($ENV{'request.course.fn'}) { -# my $formdatafile = $ENV{'request.course.fn'}.'.formdata'; -# if (-e $formdatafile) { -# open(FILE,"<$formdatafile"); -# my @buffer =; -# close(FILE); -# foreach (@buffer) { -# print STDERR $_; -# } -# } -# } + &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},\@formvars); + my $coursecode = $env{'form.coursecode'}; + if ($coursecode eq '') { + if (defined($env{'form.Year'})) { + $coursecode .= $env{'form.Year'}; + } + if (defined($env{'form.Semester'})) { + $coursecode .= $env{'form.Semester'}; + } + if (defined($env{'form.Department'})) { + $coursecode .= $env{'form.Department'}; + } + if (defined($env{'form.Number'})) { + $coursecode .= $env{'form.Number'}; + } + } + my %lt = &Apache::lonlocal::texthash ( + name => 'Name', + email => 'Email', + unme => 'Username/domain', + tel => 'Tel', + crsi => 'Course Information', + subj => 'Subject', + desc => 'Description', + date => 'Date/Time', + secn => 'Section', + asup => 'A support request has been sent to', + warn => 'Warning: Problem with support e-mail address', + your => 'Your support request contained the following information', + sect => 'section', + info => 'Information supplied', + adin => 'Additional information recorded', + ); my $supportmsg = qq| -Name: $ENV{'form.username'} -Email: $ENV{'form.email'} -Username/domain: $ENV{'form.uname'} - $ENV{'form.udom'} -Tel: $ENV{'form.phone'} -Course Information: $ENV{'form.title'} - $ENV{'form.coursecode'} - section: $ENV{'form.section'} -Subject: $ENV{'form.subject'} -Description: $ENV{'form.description'} -URL: $ENV{'form.origurl'} -Date/Time: $reporttime +$lt{'name'}: $env{'form.username'} +$lt{'email'}: $env{'form.email'} +$lt{'unme'}: $env{'form.uname'} - $env{'form.udom'} +$lt{'tel'}: $env{'form.phone'} +$lt{'crsi'}: $env{'form.title'} - $coursecode - $lt{'secn'}: $env{'form.section'} +$lt{'subj'}: $env{'form.subject'} +$lt{'desc'}: $env{'form.description'} +URL: $env{'form.sourceurl'} +$lt{'date'}: $reporttime |; - if ($to =~ m/^[^\@]+\@[^\@]+$/) { - $r->print(< - - LON-CAPA support request recorded - -$bodytag -

A support request has been sent to $to

-END - } else { - $to = 'helpdesk@lon-capa.org'; - $r->print(< - - LON-CAPA support request recorded - -$bodytag -

Warning: Problem with support e-mail address

-As the e-mail address provided for this LON-CAPA server ($to) does not appear to be a valid e-mail address, your support request has not been sent to the LON-CAPA support staff at your institution. Instead a copy has been sent to the LON-CAPA support team at Michigan State University. + my $descrip = $env{'form.description'}; + $descrip =~ s#\n#
#g; + my $displaymsg = qq| +$lt{'name'}: $env{'form.username'}
+$lt{'email'}: $env{'form.email'}
+$lt{'unme'}: $env{'form.uname'} - $env{'form.udom'}
+$lt{'tel'}: $env{'form.phone'}
+$lt{'crsi'}: $env{'form.title'} - $coursecode - $lt{'sect'}: $env{'form.section'}
+$lt{'subj'}: $env{'form.subject'}
+$lt{'desc'}: $descrip
+URL: $env{'form.sourceurl'}
+$lt{'date'}: $reporttime
+ |; + + my $start_page = + &Apache::loncommon::start_page('Support request recorded',undef, + {'function' => $function, + 'add_entries' => { + topmargin => "0", + marginheight => "0", + }, + 'only_body' => 1,}); + + $r->print(<<"END"); +$start_page +
+ +
END + if ($r->uri eq '/adm/helpdesk') { + &print_header($r,$url,'process'); } - my $msg = new Mail::Send; - $msg->to($to); -# if (defined($ENV{'form.email'})) { -# if ($ENV{'form.email'} =~ m/^[^\@]+\@[^\@]+$/) { -# $msg->from($ENV{'form.email'}); -# } -# } - $msg->subject('[LON-CAPA] - support request'); - if (my $fh = $msg->open()) { - print $fh $supportmsg; - $fh->close; + if ($to =~ m/^[^\@]+\@[^\@]+$/) { + $r->print('

'.$lt{'asup'}.' '.$to.'

'); + } else { + $to = $admin; + if ($to =~ m/^[^\@]+\@[^\@]+$/) { + $r->print('

'.$lt{'asup'}.' '.$to.'

'); + } else { + $r->print(' +

'.$lt{'warn'}.'

'. +&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 not been sent to the LON-CAPA support staff or administrator at your institution.',$to).' '.&mt('Instead a copy has been sent to the LON-CAPA support team at Michigan State University.')); + $to = 'helpdesk@lon-capa.org'; + } } - $r->print(<Your support request contained the following information:

+ if (defined($env{'form.email'})) { + if ($env{'form.email'} =~ m/^[^\@]+\@[^\@]+$/) { + $from = $env{'form.email'}; + } + } + + my $subject = $env{'form.subject'}; + $subject =~ s#(`)#'#g; + $subject =~ s#\$#\(\$\)#g; + $supportmsg =~ s#(`)#'#g; + $supportmsg =~ s#\$#\(\$\)#g; + $displaymsg =~ s#(`)#'#g; + $displaymsg =~ s#\$#\(\$\)#g; + my $fname; + + my $attachmentpath = ''; + my $attachmentsize = ''; + if (defined($env{'user.name'})) { + if ($env{'form.screenshot.filename'}) { + $attachmentsize = length($env{'form.screenshot'}); + if ($attachmentsize > 131072) { + $displaymsg .= '
'.&mt('The uploaded screenshot file ([_1] bytes) included with your request exceeded the maximum allowed size - 128 KB, and has therefore been discarded.',$attachmentsize); + } else { + $attachmentpath=&Apache::lonnet::userfileupload('screenshot',undef,'helprequests'); + } + } + } + + my %cookies; + my $cookie=CGI::Cookie->parse($r->header_in('Cookie')); + if ($$cookie{'lonID'} =~ /lonID=($LONCAPA::handle_re);/) { + $cookies{'lonID'} = $1; + } + + if ($attachmentpath =~ m-/([^/]+)$-) { + $fname = $1; + $displaymsg .= '
'.&mt('An uploaded screenshot file - [_1] ([_2] bytes) was included in the request sent by [_3] from LON-CAPA domain',$fname,$attachmentsize,$env{'user.name'}.': '.$env{'user.domain'}); + $supportmsg .= "\n"; + foreach my $var (@cookievars) { + $supportmsg .= "$var: $cookies{$var}\n"; + } + foreach my $var(@ENVvars) { + $supportmsg .= "$var: $ENV{$var}\n"; + } + foreach my $var (@envvars) { + $supportmsg .= "$var: $env{$var}\n"; + } + } + + my $msg = MIME::Lite->new( + From => $from, + To => $to, + Subject => $subject, + Type =>'TEXT', + Data => $supportmsg, + ); + + if ($attachmentpath) { + my ($type, $encoding) = MIME::Types::by_suffix($attachmentpath); + $msg->attach(Type => $type, + Path => $attachmentpath, + Filename => $fname + ); + + } else { + my $envdata = ''; + foreach my $var (@cookievars) { + $envdata .= "$var: $cookies{$var}\n"; + } + foreach my $var (@ENVvars) { + $envdata .= "$var: $ENV{$var}\n"; + } + foreach my $var (@envvars) { + $envdata .= "$var: $env{$var}\n"; + } + foreach my $var (@loncvars) { + $envdata .= "$var: $env{$var}\n"; + } + $msg->attach(Type => 'TEXT', + Data => $envdata); + } + +### Send it: + $msg->send('sendmail'); + + if ($attachmentpath =~ m#$Apache::lonnet::perlvar{'lonDaemons'}/tmp/helprequests/(\d+)/[^/]+#) { + unlink($attachmentpath); + } + $r->print(qq| + $lt{'your'}:

-
@@ -549,7 +879,7 @@ END -
Information supplied + $lt{'info'}
@@ -557,24 +887,21 @@ END
- +
-END - my @textmsg = split/\n/,$supportmsg; - foreach my $line (@textmsg) { - $line =~ s|^||; - $line =~ s|:|:|; - $r->print("$line
"); - } - $r->print('
$displaymsg
- + + + + |; + $getstarttext = ' '.&mt('and the "Getting started" guide').' '; + } + $r->print(< + + + + + + +END + unless ($action eq 'process') { + $r->print(' + + + '); + } + $r->print(' +
+
+
+ -
Additional information recorded + $lt{'adin'}
@@ -583,10 +910,21 @@ END @@ -605,18 +943,77 @@ END
- '); - foreach (@envvars) { - $r->print("$_: print("$var: $cookies{$var}, "); + } + } + foreach my $var (@ENVvars) { + unless($ENV{$var} eq '') { + $r->print("$var: $ENV{$var}, "); + } + } + foreach my $var (@envvars) { + unless($env{$var} eq '') { + $r->print("$var: $env{$var}, "); + } } $r->print("
"); + $r->print(&Apache::loncommon::end_page()); } -sub retrieve_instcodes { - my ($coursecodes,$codedom,$totcodes) = @_; - my %courses = &Apache::lonnet::courseiddump($codedom,'.',1); - foreach my $course (keys %courses) { - if ($courses{$course} =~ m/^[^:]*:([^:]+)$/) { - $$coursecodes{$course} = &Apache::lonnet::unescape($1); - $totcodes ++; - } +sub print_header { + my ($r,$origurl,$action) = @_; + my $location=&Apache::loncommon::lonhttpdurl("/adm"); + my $tablecolor = '#EEEE99'; + my ($component_url); + my $helpdesk_link = ''; + if ($action eq 'process') { + $helpdesk_link = ''; } - return $totcodes; + my %lt = &Apache::lonlocal::texthash ( + login => 'Log-in help', + ask => 'Ask helpdesk', + getst => 'Getting started guide', + back => 'Back to last location' + ); + my ($getstartlink,$getstarttext); + if (-e $Apache::lonnet::perlvar{'lonDocRoot'}.'/adm/gettingstarted.html') { + $getstartlink = qq|
 $lt{'getst'}
  +
  LON-CAPA help/support + + + + +
+ + + + +
+ + + + +
+ + + + $getstartlink + + +
($lt{'login'}) $lt{'login'} $helpdesk_link($lt{'ask'}) $lt{'ask'}  ($lt{'back'}) $lt{'back'} 
+
+
+
+
+
 
 
'.&mt(' +Please review the information in "Log-in help"').$getstarttext.' '.&mt('if you are unable to log-in').'. '.&mt('If your problem is still unresolved, the form below can be used to send a question to the LON-CAPA helpdesk').'.
'.&mt('Note').': '.&mt('Student questions about course content should be directed to the course instructor').'.

+
'); + return; } 1;