Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
tao_models_classes_HttpBasicAuthAdapter
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 2
20
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 authenticate
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
19 *
20 *
21 */
22
23use oat\oatbox\user\LoginService;
24use oat\oatbox\user\LoginFailedException;
25
26/**
27 * HTTP Authentication implementation of RFC 2617 (http://tools.ietf.org/html/rfc2617)
28 *
29 * @access public
30 * @author Joel Bout, <joel@taotesting.com>
31 * @package tao
32 */
33class tao_models_classes_HttpBasicAuthAdapter implements common_user_auth_Adapter
34{
35    /**
36     * @var common_http_Request
37     */
38    private $request;
39
40    /**
41     * Creates an Authentication adapter from an OAuth Request
42     *
43     * @param common_http_Request $request
44     */
45    public function __construct(common_http_Request $request)
46    {
47        $this->request = $request;
48    }
49
50    /**
51     * @see common_user_auth_Adapter::authenticate()
52     *
53     * @return common_user_User
54     * @throws LoginFailedException
55     */
56    public function authenticate()
57    {
58        if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER'] == "") {
59            throw new LoginFailedException(['Rest (Basic) login failed for user (missing login/password)']);
60        }
61        return LoginService::authenticate($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
62    }
63}