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

FrontController.php « modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bacad7ac081c3474f05d7add8e69ed7e1b5f362 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php

class Piwik_FrontController
{
	function dispatch()
	{
		$defaultModule = 'Home';
		
		// load the module requested
		$module = Piwik_Common::getRequestVar('module', $defaultModule, 'string');
		
		if(ctype_alnum($module))
		{
			$moduleController = PIWIK_PLUGINS_PATH . "/" . $module . "/Controller.php";
			if(is_readable($moduleController))
			{
				require_once $moduleController;
				
				$controllerClassName = "Piwik_".$module."_Controller";
				
				$controller = new $controllerClassName;
				
				$defaultAction = $controller->getDefaultAction();
				$action = Piwik_Common::getRequestVar('action', $defaultAction, 'string');
				
				try{
					$controller->$action();
				} catch(Piwik_Access_NoAccessException $e) {
					Piwik::log("NO ACCESS EXCEPTION =>");
					Piwik_PostEvent('FrontController.NoAccessException', $e);					
				}
			}
			else
			{
				throw new Exception("Module controller $moduleController not found!");
			}			
		}
		else
		{
			throw new Exception("Invalid module name");
		}
		
	}
	
	function end()
	{
		
		Piwik::printZendProfiler();
		Piwik::printMemoryUsage();
		Piwik::printQueryCount();		
//		Piwik::uninstall();

		Piwik::log($this->timer);
		
	}
	
	function init()
	{
		$this->timer = new Piwik_Timer;
		
		//move into a init() method
		Piwik::createConfigObject();
		
		// database object
		Piwik::createDatabaseObject();
		
		// Create the log objects
		Piwik::createLogObject();
		
		Piwik::printMemoryUsage('Start program');
		//TODO move all DB related methods in a DB static class
		
		//Piwik::createDatabase();
		//Piwik::createDatabaseObject();
		
		$doNotDrop = array(
				Piwik::prefixTable('log_visit'),
				Piwik::prefixTable('access'),
				Piwik::prefixTable('user'),
				Piwik::prefixTable('site'),
				Piwik::prefixTable('log_link_visit_action'),
				Piwik::prefixTable('log_action'),
				Piwik::prefixTable('log_profiling'),
				Piwik::prefixTable('archive'),
		);
		
		Piwik::dropTables($doNotDrop);
		Piwik::createTables();
		
		// load plugins
		Piwik_PluginsManager::getInstance()->setInstallPlugins(); 
		//TODO plugins install to handle in a better way
		Piwik::loadPlugins();
		
		// Create auth object
		Zend_Registry::set('auth', $authAdapter = new Piwik_Auth());
		
		// Setup the auth object
		Piwik_PostEvent('FrontController.authSetCredentials');

		// Perform the authentication query, saving the result
		$access = new Piwik_Access($authAdapter);
		Zend_Registry::set('access', $access);		
		Zend_Registry::get('access')->loadAccess();					
	}
}