controller.php
2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
/**
* @package Joomla.Administrator
* @subpackage com_login
*
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
/**
* Login Controller.
*
* @since 1.5
*/
class LoginController extends JControllerLegacy
{
/**
* Method to display a view.
*
* @param boolean $cachable If true, the view output will be cached
* @param array $urlparams An array of safe URL parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
*
* @return JController This object to support chaining.
*
* @since 1.5
*/
public function display($cachable = false, $urlparams = false)
{
/*
* Special treatment is required for this component, as this view may be called
* after a session timeout. We must reset the view and layout prior to display
* otherwise an error will occur.
*/
$this->input->set('view', 'login');
$this->input->set('layout', 'default');
// For non-html formats we do not have login view, so just display 403 instead
if ($this->input->get('format', 'html') !== 'html')
{
throw new RuntimeException(JText::_('JERROR_ALERTNOAUTHOR'), 403);
}
parent::display();
}
/**
* Method to log in a user.
*
* @return void
*/
public function login()
{
// Check for request forgeries.
$this->checkToken('request');
$app = JFactory::getApplication();
$model = $this->getModel('login');
$credentials = $model->getState('credentials');
$return = $model->getState('return');
$result = $app->login($credentials, array('action' => 'core.login.admin'));
if ($result && !($result instanceof Exception))
{
// Only redirect to an internal URL.
if (JUri::isInternal($return))
{
// If &tmpl=component - redirect to index.php
if (strpos($return, 'tmpl=component') === false)
{
$app->redirect($return);
}
else
{
$app->redirect('index.php');
}
}
}
$this->display();
}
/**
* Method to log out a user.
*
* @return void
*/
public function logout()
{
$this->checkToken('request');
$app = JFactory::getApplication();
$userid = $this->input->getInt('uid', null);
if ($app->get('shared_session', '0'))
{
$clientid = null;
}
else
{
$clientid = $userid ? 0 : 1;
}
$options = array(
'clientid' => $clientid,
);
$result = $app->logout($userid, $options);
if (!($result instanceof Exception))
{
$model = $this->getModel('login');
$return = $model->getState('return');
// Only redirect to an internal URL.
if (JUri::isInternal($return))
{
$app->redirect($return);
}
}
parent::display();
}
}