forked from lbayle/codev
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.php
147 lines (120 loc) · 5.54 KB
/
index.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
<?php
require('include/session.inc.php');
/*
This file is part of CoDev-Timetracking.
CoDev-Timetracking is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CoDev-Timetracking is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CoDev-Timetracking. If not, see <http://www.gnu.org/licenses/>.
*/
require('path.inc.php');
// check if INSTALL needed
if (!file_exists(Constants::$config_file)) {
header('Location: install/install.php');
exit;
}
class IndexController extends Controller {
/**
* Initialize complex static variables
* @static
*/
public static function staticInit() {
// Nothing special
}
protected function display() {
// Drifted tasks
if(Tools::isConnectedUser()) {
$isAdmin = $this->session_user->isTeamMember(Config::getInstance()->getValue(Config::id_adminTeamId));
$isManager = $this->session_user->isTeamManager($this->teamid);
// check codevtt version
if (1 == Constants::$isCheckLatestVersion) {
try {
if ($isAdmin || ($isManager && (date('d') < 4))) {
$latestVersionInfo = Tools::getLatestVersionInfo(3);
if (FALSE !== $latestVersionInfo) {
if ( strcasecmp(Config::codevVersion, $latestVersionInfo['version']) < 0 ) {
$this->smartyHelper->assign('latestVersionInfo', $latestVersionInfo);
}
}
}
} catch (Exception $e) {
// version check should never break CodevTT usage...
// (no log, even logs could raise errors)
}
}
// if CodevTT installed since at least 6 month,
// then display FairPlay message every 3 month (mar, jun, sep, dec) during 3 days.
if (($isManager || $isAdmin) &&
(0 == date('m') % 3) && (date('d') > 27) &&
(time() - Constants::$codevInstall_timestamp > (60*60*24 * 180))
) {
$this->smartyHelper->assign('displayFairPlay', true);
$this->smartyHelper->assign('codevInstall_date', date('Y-m-d', Constants::$codevInstall_timestamp));
}
if ($isAdmin) {
// check global configuration
$cerrList1 = ConsistencyCheck2::checkMantisDefaultProjectWorkflow();
$cerrList2 = ConsistencyCheck2::checkDatabaseVersion();
$cerrList3 = ConsistencyCheck2::checkConfigFiles();
$cerrList = array_merge($cerrList1, $cerrList2, $cerrList3);
// add more checks here
if (count($cerrList) > 0) {
$systemConsistencyErrors = array();
foreach ($cerrList as $cerr) {
$systemConsistencyErrors[] = array('severity' => $cerr->getLiteralSeverity(),
'desc' => $cerr->desc);
}
$this->smartyHelper->assign('systemConsistencyErrors', $systemConsistencyErrors);
}
}
if (0 != $this->teamid) {
// homepage dashboard configuration
$this->setDashboard();
}
}
}
private function setDashboard() {
$team = TeamCache::getInstance()->getTeam($this->teamid);
$projList = $team->getProjects(false, false, false);
$issueList = $this->session_user->getAssignedIssues($projList, true);
$issueSel = new IssueSelection('userAssigned');
$issueSel->addIssueList($issueList);
// feed the PluginDataProvider
$pluginDataProvider = PluginDataProvider::getInstance();
$pluginDataProvider->setParam(PluginDataProviderInterface::PARAM_SESSION_USER_ID, $this->session_userid);
$pluginDataProvider->setParam(PluginDataProviderInterface::PARAM_TEAM_ID, $this->teamid);
$pluginDataProvider->setParam(PluginDataProviderInterface::PARAM_ISSUE_SELECTION, $issueSel);
$dashboardName = 'homepage'.$this->teamid;
// save the DataProvider for Ajax calls
$_SESSION[PluginDataProviderInterface::SESSION_ID.$dashboardName] = serialize($pluginDataProvider);
// create the Dashboard
$dashboard = new Dashboard($dashboardName);
$dashboard->setDomain(IndicatorPluginInterface::DOMAIN_HOMEPAGE);
$dashboard->setCategories(array(
IndicatorPluginInterface::CATEGORY_QUALITY,
IndicatorPluginInterface::CATEGORY_ACTIVITY,
IndicatorPluginInterface::CATEGORY_ROADMAP,
IndicatorPluginInterface::CATEGORY_PLANNING,
IndicatorPluginInterface::CATEGORY_RISK,
IndicatorPluginInterface::CATEGORY_TEAM,
IndicatorPluginInterface::CATEGORY_ADMIN,
IndicatorPluginInterface::CATEGORY_INTERNAL,
));
$dashboard->setTeamid($this->teamid);
$dashboard->setUserid($this->session_userid);
$data = $dashboard->getSmartyVariables($this->smartyHelper);
foreach ($data as $smartyKey => $smartyVariable) {
$this->smartyHelper->assign($smartyKey, $smartyVariable);
}
}
}
// ========== MAIN ===========
IndexController::staticInit();
$controller = new IndexController('./', Constants::$homepage_title,'index');
$controller->execute();