aboutsummaryrefslogtreecommitdiff
path: root/engine/start.php
blob: aade0a8170380678fcaa47d1ca7c67ab772806bd (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
/**
 * Elgg engine bootstrapper
 * Loads the various elements of the Elgg engine
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */

/*
 * Basic profiling
 */
global $START_MICROTIME;
$START_MICROTIME = microtime(true);

/*
 * Create global CONFIG object
 */
global $CONFIG;
if (!isset($CONFIG)) {
	$CONFIG = new stdClass;
}

$lib_dir = dirname(__FILE__) . '/lib/';

// bootstrapping with required files in a required order
$required_files = array(
	'exceptions.php', 'elgglib.php', 'access.php', 'system_log.php', 'export.php',
	'sessions.php', 'languages.php', 'input.php', 'install.php', 'cache.php',
);

foreach ($required_files as $file) {
	$path = $lib_dir . $file;
	if (!include($path)) {
		echo "Could not load file '$path'. "
		. 'Please check your Elgg installation for all required files.';
		exit;
	}
}

// Use fallback view until sanitised
$oldview = get_input('view');
set_input('view', 'failsafe');

// Register the error handler
set_error_handler('__elgg_php_error_handler');
set_exception_handler('__elgg_php_exception_handler');

// attempt to save settings.php and .htaccess if in installation.
if ($sanitised = sanitised()) {

	// load library files
	$lib_files = array(
		'actions.php', 'activity.php', 'admin.php', 'annotations.php', 'api.php',
		'cache.php', 'calendar.php', 'configuration.php', 'cron.php',
		'entities.php', 'export.php', 'extender.php', 'database.php', 'filestore.php',
		'group.php', 'input.php', 'install.php', 'location.php', 'mb_wrapper.php',
		'memcache.php', 'metadata.php', 'metastrings.php', 'notification.php',
		'objects.php', 'opendd.php', 'pagehandler.php', 'pageowner.php', 'pam.php',
		'plugins.php', 'query.php', 'relationships.php', 'river2.php', 'sites.php',
		'social.php', 'statistics.php', 'system_log.php', 'tags.php',
		'usersettings.php', 'users.php', 'version.php', 'widgets.php', 'xml.php',
		'xml-rpc.php'
	);

	foreach($lib_files as $file) {
		$file = $lib_dir . $file;
		elgg_log("Loading $file...");
		if (!include_once($file)) {
			throw new InstallationException("Could not load {$file}");
		}
	}

	// Load system settings
	if (!include_once(dirname(__FILE__) . "/settings.php")) {
		throw new InstallationException("Elgg could not load the settings file.");
	}
} else {
	throw new InstallationException(elgg_echo('installation:error:configuration'));
}

// Autodetect some default configuration settings
set_default_config();

// Trigger events
trigger_elgg_event('boot', 'system');

// Load plugins
$installed = is_installed();
$db_installed = is_db_installed();

// Load plugins, if we're not in light mode
if (($installed) && ($db_installed) && ($sanitised)) {
	load_plugins();

	trigger_elgg_event('plugins_boot', 'system');
}

// Forward if we haven't been installed
if ((!$installed || !$db_installed)
	&& !substr_count($_SERVER["PHP_SELF"], "install.php")
	&& !substr_count($_SERVER["PHP_SELF"], "css.php")
	&& !substr_count($_SERVER["PHP_SELF"], "action_handler.php")) {

		header("Location: install.php");
		exit;
}

// Trigger events
if (!substr_count($_SERVER["PHP_SELF"],"install.php")
	&& !substr_count($_SERVER["PHP_SELF"],"setup.php")
	&& !(defined('upgrading') && upgrading == 'upgrading')) {

	trigger_elgg_event('init', 'system');
}

// System booted, return to normal view
set_input('view', $oldview);
if (empty($oldview)) {
	if (empty($CONFIG->view)) {
		$oldview = 'default';
	} else {
		$oldview = $CONFIG->view;
	}
}

if (($installed) && ($db_installed)) {
	$lastupdate = datalist_get('simplecache_lastupdate');
	$lastcached = datalist_get('simplecache_'.$oldview);
	if ($lastupdate == 0 || $lastcached < $lastupdate) {
		elgg_view_regenerate_simplecache();
		$lastcached = time();
		datalist_set('simplecache_lastupdate',$lastcached);
		datalist_set('simplecache_'.$oldview,$lastcached);
	}
	$CONFIG->lastcache = $lastcached;
}