2008-05-14 10:54:36 -04:00
|
|
|
<?php
|
2009-01-20 20:55:16 +00:00
|
|
|
/**
|
|
|
|
* Logout action.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 18:12:20 -04:00
|
|
|
* @package StatusNet
|
2009-08-25 18:19:04 -04:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-01-20 20:55:16 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 18:16:46 -04:00
|
|
|
* @link http://status.net/
|
2009-01-20 20:55:16 +00:00
|
|
|
*
|
2009-08-25 18:14:12 -04:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 18:12:20 -04:00
|
|
|
* Copyright (C) 2008, 2009, StatusNet, Inc.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2008-05-20 15:14:12 -04:00
|
|
|
*
|
2008-05-14 15:26:48 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 10:41:36 -04:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-01-20 20:55:16 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-05-14 10:54:36 -04:00
|
|
|
|
2009-01-20 20:55:16 +00:00
|
|
|
/**
|
|
|
|
* Logout action class.
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 18:12:20 -04:00
|
|
|
* @package StatusNet
|
2009-08-25 18:19:04 -04:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Robin Millette <millette@status.net>
|
2009-01-20 20:55:16 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 18:16:46 -04:00
|
|
|
* @link http://status.net/
|
2009-01-20 20:55:16 +00:00
|
|
|
*/
|
2008-12-23 14:49:23 -05:00
|
|
|
class LogoutAction extends Action
|
|
|
|
{
|
2009-01-20 20:55:16 +00:00
|
|
|
/**
|
|
|
|
* This is read only.
|
2009-04-01 15:30:59 -04:00
|
|
|
*
|
2009-01-20 20:55:16 +00:00
|
|
|
* @return boolean true
|
|
|
|
*/
|
2009-04-13 15:49:26 -04:00
|
|
|
function isReadOnly($args)
|
2008-12-23 14:33:23 -05:00
|
|
|
{
|
2009-01-23 09:15:15 +00:00
|
|
|
return false;
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
2009-01-20 20:55:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class handler.
|
2009-04-01 15:30:59 -04:00
|
|
|
*
|
2009-01-20 20:55:16 +00:00
|
|
|
* @param array $args array of arguments
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2008-12-23 14:33:23 -05:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 14:19:07 -05:00
|
|
|
parent::handle($args);
|
|
|
|
if (!common_logged_in()) {
|
2011-04-04 00:41:21 +02:00
|
|
|
// TRANS: Error message displayed when trying to perform an action that requires a logged in user.
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('Not logged in.'));
|
2008-12-23 14:19:07 -05:00
|
|
|
} else {
|
2009-05-15 21:41:41 +00:00
|
|
|
if (Event::handle('StartLogout', array($this))) {
|
|
|
|
$this->logout();
|
|
|
|
}
|
|
|
|
Event::handle('EndLogout', array($this));
|
|
|
|
|
2009-04-01 15:30:59 -04:00
|
|
|
common_redirect(common_local_url('public'), 303);
|
2008-12-23 14:19:07 -05:00
|
|
|
}
|
|
|
|
}
|
2009-05-15 21:41:41 +00:00
|
|
|
|
|
|
|
function logout()
|
|
|
|
{
|
|
|
|
common_set_user(null);
|
|
|
|
common_real_login(false); // not logged in
|
2009-11-09 20:01:46 +01:00
|
|
|
common_forgetme(); // don't log back in!
|
2009-05-15 21:41:41 +00:00
|
|
|
}
|
2008-05-14 10:54:36 -04:00
|
|
|
}
|