Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
PretenderSession
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 2
6
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 restoreOriginal
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
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) 2016 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\tao\model\session;
23
24use common_session_DefaultSession;
25use common_session_Session;
26use common_session_SessionManager;
27use oat\oatbox\user\User;
28
29/**
30 * PretenderSession allows a user pretend to be another user.
31 *
32 * @access private
33 * @author Aleh Hutnikau <hutnikau@1pt.com>
34 * @package oat\tao\model
35 */
36class PretenderSession extends common_session_DefaultSession
37{
38    /**
39     * Real user session
40     *
41     * @var common_session_Session
42     */
43    private $internalSession;
44
45    /**
46     * @param User $user
47     */
48    public function __construct(User $user)
49    {
50        parent::__construct($user);
51        $this->internalSession = common_session_SessionManager::getSession();
52    }
53
54    /**
55     * Revert back to the original Session
56     */
57    public function restoreOriginal()
58    {
59        common_session_SessionManager::startSession($this->internalSession);
60    }
61}