File:  [LON-CAPA] / loncom / publisher / lonunauthorized.pm
Revision 1.9: download - view: text, annotated - select for diffs
Thu May 14 15:36:29 2009 UTC (14 years, 11 months ago) by bisitz
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_99_1, version_2_8_99_0, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, bz6209-base, bz6209, bz5969, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, GCI_2, BZ5971-printing-apage
- Standard error style for error messages
- Consistent username:domain output

    1: # The LearningOnline Network
    2: # Unauthorized to access construction space
    3: #
    4: # $Id: lonunauthorized.pm,v 1.9 2009/05/14 15:36:29 bisitz Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: 
   29: package Apache::lonunauthorized;
   30: 
   31: use strict;
   32: use Apache::Constants qw(:common);
   33: use Apache::loncommon;
   34: use Apache::lonnet;
   35: use Apache::loncacc;
   36: use Apache::lonlocal;
   37: use LONCAPA();
   38: 
   39: sub handler {
   40:     my $r = shift;
   41:     &Apache::loncommon::content_type($r,'text/html');
   42:     $r->send_http_header;
   43:     return OK if $r->header_only;
   44: 
   45: # ------------------------------------------------------------ Print the screen
   46: # Figure out who the user is and what they wanted to access
   47: 
   48:     my ($ownername,$ownerdomain)=
   49:      &Apache::loncacc::constructaccess($env{'request.editurl'},$r->dir_config('lonDefDomain'));
   50: # print header
   51:     $r->print(&Apache::loncommon::start_page("Failed Access to Construction Space",
   52: 					     undef,
   53: 					     {'domain' => $ownerdomain,}));
   54: # figure out what went wrong
   55: 
   56:     if ($ownerdomain) {
   57: 	$r->print('<p class="LC_error">'
   58:                  .&mt('The construction space for this resource is located on another server.')
   59:                  .'</p>'
   60:                  .'<p>'
   61:                  .&mt('Choose another server.')
   62:                  .'</p>');
   63:         my $ownerhome=&Apache::lonnet::homeserver($ownername,$ownerdomain);
   64:         unless ($ownerhome eq 'no_host') {
   65: 	    $r->print('<p>'
   66:                      .&mt('Please log into [_1] to edit.'
   67:                          ,'<tt>'.&Apache::lonnet::hostname($ownerhome).'</tt>')
   68:                      .'</p>');
   69:         }
   70:     } else {
   71:         $r->print('<p class="LC_error">'
   72:                  .&mt('You do not have authoring privileges for this resource')
   73:                  .'</p>');
   74:         my ($realownername)=
   75: 	    ($env{'request.editurl'}=~m{/(?:~|priv/|home/)($LONCAPA::username_re)});
   76:         my $realownerhome=
   77: 	    &Apache::lonnet::homeserver($realownername,
   78: 					$r->dir_config('lonDefDomain'));
   79:         unless ($realownerhome eq 'no_host') {
   80:             my $plainname=&Apache::loncommon::plainname($realownername,$r->dir_config('lonDefDomain'));
   81:             my $user=$realownername.':'.$r->dir_config('lonDefDomain');
   82:             my $userlink=&Apache::loncommon::aboutmewrapper(
   83:                              $plainname.' ('.$user.')'
   84:                             ,$realownername
   85:                             ,$r->dir_config('lonDefDomain'));
   86: 	    $r->print('<p>'
   87:                      .&mt('Contact [_1] for access.',$userlink)
   88:                      .'</p>');
   89:         }
   90:     }
   91:     
   92:     $r->print(&Apache::loncommon::end_page());
   93:     return OK;
   94: } 
   95: 
   96: 1;
   97: __END__

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