~ubuntu-branches/ubuntu/oneiric/bugzilla/oneiric

« back to all changes in this revision

Viewing changes to Bugzilla/Auth/Login/Env.pm

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2008-06-27 22:34:34 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080627223434-0ib57vstn43bb4a3
Tags: 3.0.4.1-1
* Update of French, Russian and German translations. (closes: #488251)
* Added Bulgarian and Belarusian translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- Mode: perl; indent-tabs-mode: nil -*-
2
 
#
3
 
# The contents of this file are subject to the Mozilla Public
4
 
# License Version 1.1 (the "License"); you may not use this file
5
 
# except in compliance with the License. You may obtain a copy of
6
 
# the License at http://www.mozilla.org/MPL/
7
 
#
8
 
# Software distributed under the License is distributed on an "AS
9
 
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10
 
# implied. See the License for the specific language governing
11
 
# rights and limitations under the License.
12
 
#
13
 
# The Original Code is the Bugzilla Bug Tracking System.
14
 
#
15
 
# The Initial Developer of the Original Code is Netscape Communications
16
 
# Corporation. Portions created by Netscape are
17
 
# Copyright (C) 1998 Netscape Communications Corporation. All
18
 
# Rights Reserved.
19
 
#
20
 
# Contributor(s): Erik Stambaugh <erik@dasbistro.com>
21
 
#                 Max Kanat-Alexander <mkanat@bugzilla.org>
22
 
 
23
 
package Bugzilla::Auth::Login::Env;
24
 
use strict;
25
 
use base qw(Bugzilla::Auth::Login);
26
 
 
27
 
use Bugzilla::Constants;
28
 
use Bugzilla::Error;
29
 
 
30
 
use constant can_logout => 0;
31
 
use constant can_login  => 0;
32
 
use constant requires_verification => 0;
33
 
 
34
 
sub get_login_info {
35
 
    my ($self) = @_;
36
 
    my $dbh = Bugzilla->dbh;
37
 
 
38
 
    my $env_id       = $ENV{Bugzilla->params->{"auth_env_id"}} || '';
39
 
    my $env_email    = $ENV{Bugzilla->params->{"auth_env_email"}} || '';
40
 
    my $env_realname = $ENV{Bugzilla->params->{"auth_env_realname"}} || '';
41
 
 
42
 
    return { failure => AUTH_NODATA } if !$env_email;
43
 
 
44
 
    return { username => $env_email, extern_id => $env_id, 
45
 
             realname => $env_realname };
46
 
}
47
 
 
48
 
sub fail_nodata {
49
 
    ThrowCodeError('env_no_email');
50
 
}
51
 
 
52
 
1;