login.php

来自「一款可以和GOOGLE媲美的开源统计系统,运用AJAX.功能强大. 无色提示:」· PHP 代码 · 共 84 行

PHP
84
字号
<?php/** * Piwik - Open source web analytics *  * @link http://piwik.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later * @version $Id: Login.php 661 2008-10-29 17:19:06Z matt $ *  * @package Piwik_Login */require "Login/Controller.php";require "Login/Auth.php";require "Cookie.php";/** *  * @package Piwik_Login */class Piwik_Login extends Piwik_Plugin{		public function getInformation()	{		$info = array(			'name' => 'Login',			'description' => 'Login Authentication plugin, reading the credentials from the config/config.inc.php file for the Super User, and from the Database for the other users. Can be easily replaced to introduce a new Authentication mechanism (OpenID, htaccess, custom Auth, etc.).',			'author' => 'Piwik',			'homepage' => 'http://piwik.org/',			'version' => '0.1',		);		return $info;	}		function getListHooksRegistered()	{		$hooks = array(			'FrontController.initAuthenticationObject'	=> 'initAuthenticationObject',			'FrontController.NoAccessException'		=> 'noAccess',			'API.Request.authenticate' => 'ApiRequestAuthenticate',		);		return $hooks;	}		function noAccess( $notification )	{		$exception  = $notification->getNotificationObject();		$exceptionMessage = $exception->getMessage(); 		$controller = new Piwik_Login_Controller;		$controller->login($exceptionMessage);	}		function ApiRequestAuthenticate($notification)	{		$tokenAuth = $notification->getNotificationObject();		Zend_Registry::get('auth')->setTokenAuth($tokenAuth);	}		function initAuthenticationObject($notification)	{		$auth = new Piwik_Login_Auth();     	Zend_Registry::set('auth', $auth);		     	$action = Piwik::getAction();     	if(Piwik::getModule() === 'API'      		&& (empty($action) || $action == 'index'))     	{     		return;     	}     				$authCookieName = 'piwik-auth';		$authCookieExpiry = time() + 3600;		$authCookie = new Piwik_Cookie($authCookieName, $authCookieExpiry);		$defaultLogin = 'anonymous';		$defaultTokenAuth = 'anonymous';		if($authCookie->isCookieFound())		{			$defaultLogin = $authCookie->get('login');			$defaultTokenAuth = $authCookie->get('token_auth');		}		$auth->setLogin($defaultLogin);		$auth->setTokenAuth($defaultTokenAuth);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?