Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Login.php « Login « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c13cb2f6bd19f6ae3f942a0cc26d89277530b46 (plain)
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
<?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$
 * 
 * @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',
		);
		return $hooks;
	}
	
	function noAccess( $notification )
	{
		$exception  = $notification->getNotificationObject();
		$exceptionMessage = $exception->getMessage(); 

		$controller = new Piwik_Login_Controller;
		$controller->login($exceptionMessage);
	}
	
	function initAuthenticationObject($notification)
	{
		$authAdapter = new Piwik_Login_Auth();
     	Zend_Registry::set('auth', $authAdapter);
		
     	if(Piwik::getModule() === 'API')
     	{
			$tokenAuthAPIInUrl = Piwik_Common::getRequestVar('token_auth', 'anonymous', 'string');
			if( !empty($tokenAuthAPIInUrl))
			{
				$authAdapter->setTokenAuth($tokenAuthAPIInUrl);
			}
     	}
		else
		{
			$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');
			}
			self::prepareAuthObject($defaultLogin, $defaultTokenAuth);
		}
	}
	
	static function prepareAuthObject( $login, $tokenAuth )
	{		
		$auth = Zend_Registry::get('auth');
		$auth->setLogin($login);
		$auth->setTokenAuth($tokenAuth);
	}
}