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

Login.php « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbcc3ddf9277659c24b316b03e5eaf12428d2e76 (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
<?php
require "Login/Controller.php";
require "LogStats/Cookie.php";

class Piwik_Login extends Piwik_Plugin
{	
	public function __construct()
	{
		parent::__construct();
	}
	
	public function getInformation()
	{
		$info = array(
			// name must be the className prefix!
			'name' => 'Login',
			'description' => 'Description',
			'author' => 'Piwik',
			'homepage' => 'http://piwik.org/',
			'version' => '0.1',
			'translationAvailable' => false,
		);
		
		return $info;
	}
	
	function install()
	{
	}
	
	function uninstall()
	{
	}
	
	function getListHooksRegistered()
	{
		$hooks = array(
			'FrontController.authSetCredentials' 		=> 'authSetCredentials',
			'FrontController.NoAccessException'			=> 'noAccess',
		);
		return $hooks;
	}
	
	function noAccess()
	{
		$controller = new Piwik_Login_Controller;
		$controller->login();
	}
	
	function authSetCredentials($notification)
	{
		$auth = $notification->getNotificationObject();
					
		$authCookieName = 'piwik-auth';
		$authCookieExpiry = time() + 3600;

		$authCookie = new Piwik_LogStats_Cookie($authCookieName, $authCookieExpiry);
		
		$login = $tokenAuth = 'abc';
		
		if($authCookie->isCookieFound())
		{
			$login = $authCookie->get('login');
			$tokenAuth =  $authCookie->get('auth');
		}
		
		$this->prepareAuthObject( $login, $tokenAuth);		
	}
	
	static function prepareAuthObject( $login, $tokenAuth )
	{		
		$auth = Zend_Registry::get('auth');
		$auth->setTableName(Piwik::prefixTable('user'))
			->setIdentityColumn('login')
			->setCredentialColumn('token_auth')
//			->setCredentialTreatment('MD5(?)')
			->setIdentity($login)
	     	->setCredential($tokenAuth);
	}
}