forked from philippK-de/Collabtive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.php
154 lines (152 loc) · 5.77 KB
/
init.php
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
ini_set("arg_separator.output", "&");
ini_set('default_charset', 'utf-8');
// Set content security policy header. This instructs the browser to block various unsafe behaviours.
header("Content-Security-Policy:default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval';frame-src 'self'");
// Start output buffering with gzip compression and start the session
ob_start('ob_gzhandler');
session_start();
// get full path to collabtive
define("CL_ROOT", realpath(dirname(__FILE__)));
// configuration to load
define("CL_CONFIG", "standard");
// collabtive version and release date
define("CL_VERSION", 2.0);
define("CL_PUBDATE", "1426201200");
// uncomment next line for debugging
// error_reporting(E_ALL || E_STRICT);
// include config file , pagination and global functions
require(CL_ROOT . "/config/" . CL_CONFIG . "/config.php");
require(CL_ROOT . "/include/SmartyPaginate.class.php");
// require html purifier
require(CL_ROOT . "/include/HTMLPurifier.standalone.php");
// load init functions
require(CL_ROOT . "/include/initfunctions.php");
//assume mysql as the default db
if(!isset($db_driver))
{
$db_driver = "mysql";
}
// Start database connection
// Depending on the DB driver, instantiate a PDO object with the necessary credentials.
switch ($db_driver) {
case "mysql":
if (!empty($db_name) and !empty($db_user)) {
$conn = new PDO("mysql:host=$db_host;dbname=$db_name;charset=utf8", $db_user, $db_pass);
break;
}
case "sqlite":
$conn = new PDO("sqlite:" . CL_ROOT . "/files/collabtive.sdb");
break;
}
// Start template engine
$template = new Smarty();
// STOP smarty from spewing notices all over the html code
$template->error_reporting = E_ALL &~E_NOTICE;
// get the available languages
$languages = getAvailableLanguages();
// get URL to collabtive
$url = getMyUrl();
$template->assign("url", $url);
$template->assign("languages", $languages);
// set the version number for display
$template->assign("myversion", "2.1.1");
$template->assign("cl_config", CL_CONFIG);
// Assign globals to all templates
if (isset($_SESSION["userid"])) {
// unique ID of the user
$userid = $_SESSION["userid"];
// name of the user
$username = $_SESSION["username"];
// timestamp of last login
$lastlogin = $_SESSION["lastlogin"];
// selected locale
$locale = $_SESSION["userlocale"];
// gender
$gender = $_SESSION["usergender"];
// what the user may or may not do
$userpermissions = $_SESSION["userpermissions"];
// update user lastlogin for the onlinelist
$mynow = time();
$upd = $conn->exec("UPDATE user SET lastlogin='$mynow' WHERE ID = $userid");
// assign it all to the templates
$template->assign("userid", $userid);
$template->assign("username", $username);
$template->assign("lastlogin", $lastlogin);
$template->assign("usergender", $gender);
$template->assign("userpermissions", $userpermissions);
$template->assign("loggedin", 1);
}else {
$template->assign("loggedin", 0);
}
// get system settings
if (isset($conn)) {
// Set PDO options
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
//$conn->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
// create a global mylog object for loging system events
$mylog = new mylog();
// get a settings object, and fetch an array containing the system settings
$set = (object) new settings();
$settings = $set->getSettings();
// define a constant that holds the default dateformat
define("CL_DATEFORMAT", $settings["dateformat"]);
// set the default TZ for date etc
date_default_timezone_set($settings["timezone"]);
$template->assign("settings", $settings);
}
// Set template directory
// If no directory is set in the system settings, default to the standard theme
if (isset($settings['template'])) {
$template->template_dir = CL_ROOT . "/templates/$settings[template]/";
// $template->tname = $settings["template"];
}else {
$template->template_dir = CL_ROOT . "/templates/standard/";
// $template->tname = "standard";
}
// If no locale is set, get the settings locale or default to english
if (!isset($locale)) {
if (isset($settings["locale"])) {
$locale = $settings['locale'];
}else {
$locale = "en";
}
$_SESSION['userlocale'] = $locale;
}
// if detected locale doesnt have a corresponding langfile , use system default locale
// if, for whatever reason, no system default language is set, default to english as a last resort
if (!file_exists(CL_ROOT . "/language/$locale/lng.conf")) {
$locale = $settings['locale'];
$_SESSION['userlocale'] = $locale;
}
// Set locale directory
$template->config_dir = CL_ROOT . "/language/$locale/";
// Smarty 3 seems to have a problem with re-compiling the config if the user config is different than the system config.
// this forces a compile of the config.
// uncomment this if you have issues with language switching
// $template->compileAllConfig('.config',true);
// read language file into PHP array
$langfile = readLangfile($locale);
$template->assign("langfile", $langfile);
$template->assign("locale", $locale);
// css classes for headmenue
// this indicates which of the 3 main stages the user is on
$mainclasses = array("desktop" => "desktop",
"profil" => "profil",
"admin" => "admin"
);
$template->assign("mainclasses", $mainclasses);
// get current year and month
$they = date("Y");
$them = date("n");
$template->assign("theM", $them);
$template->assign("theY", $they);
// Get the user's projects for the quickfinder in the sidebar
if (isset($userid)) {
$project = new project();
$myOpenProjects = $project->getMyProjects($userid);
$template->assign("openProjects", $myOpenProjects);
}
// clear session data for pagination
SmartyPaginate::disconnect();
?>