| Current Path : /home/wuectly/www/plugins/system/ic_autologin/ |
| Current File : /home/wuectly/www/plugins/system/ic_autologin/ic_autologin.php |
<?php
/**
* Plugin System - iCagenda :: Autologin
*----------------------------------------------------------------------------
* @package com_icagenda
* @copyright Copyright (c)2012-2015 Cyril Rezé, Jooml!C - All rights reserved
* @license GNU General Public License version 3 or later; see LICENSE.txt
* @author Cyril Rezé (Lyr!C)
* @link http://www.joomlic.com
*
* @update 3.4.0 2014-06-29
* @version 1.3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*----------------------------------------------------------------------------
*/
// No direct access to this file
defined('_JEXEC') or die();
jimport('joomla.plugin.plugin');
class PlgSystemic_autologin extends JPlugin
{
protected $_icu;
protected $_icp;
function __construct(& $subject, $config)
{
parent::__construct($subject, $config);
$this->loadLanguage();
}
function onAfterInitialise()
{
$this->_icu = JRequest::getVar('icu', null);
$this->_icp = JRequest::getVar('icp', null);
if (!empty($this->_icu) && !empty($this->_icp))
{
$result = $this->icLogin();
$urllink = JURI::getInstance()->toString();
$cleanurl = preg_replace('/&icu=[^&]*/', '', $urllink);
$cleanurl = preg_replace('/&icp=[^&]*/', '', $cleanurl);
// Cleaned URL
if (!JError::isError($result))
{
$app = JFactory::getApplication();
$app->redirect($cleanurl);
}
}
return true;
}
/**
* LOGIN with ENCRYPT PASSWORD
*/
function icLogin()
{
// Get the application object.
$app = JFactory::getApplication();
$db = JFactory::getDBO();
$query = 'SELECT `id`, `username`, `password`'
. ' FROM `#__users`'
. ' WHERE username=' . $db->Quote( $this->_icu )
. ' AND password=' . $db->Quote( $this->_icp )
;
$db->setQuery( $query );
$result = $db->loadObject();
if($result)
{
JPluginHelper::importPlugin('user');
$options = array();
$options['action'] = 'core.login.site';
$response['username'] = $result->username;
$result = $app->triggerEvent('onUserLogin', array((array)$response, $options));
}
}
}