This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
forked from wnoisephx/TaskFreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.php
184 lines (156 loc) · 6.2 KB
/
rss.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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
/****************************************************************************\
* TaskFreak! *
* multi user *
******************************************************************************
* Version: 0.6.3 *
* Authors: Stan Ozier <[email protected]> *
* License: http://www.gnu.org/licenses/gpl.txt (GPL) *
******************************************************************************
* This file is part of "TaskFreak! single user" program. *
* *
* TaskFreak! single user 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 2 of the License, or (at *
* your option) any later version. *
* *
* TaskFreak! single user 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 this program; if not, write to the Free Software *
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
\****************************************************************************/
include './_include.php';
include PRJ_CLASS_PATH.'tzn_generic.php';
include PRJ_CLASS_PATH.TZN_DB_CLASS;
include PRJ_CLASS_PATH.'tzn_user.php';
include PRJ_CLASS_PATH.'pkg_member.php';
include PRJ_CLASS_PATH.'pkg_project.php';
$objItemList = new ItemStats();
// --- check user ---------------------------------------------------------
$pUserIsLoggedIn = false;
$objUser = new Member();
if ($pUserName = Tzn::getReg($_REQUEST['user'],"^[a-zA-Z0-9]+$")) {
if ($objUser->loadByKey('username',$pUserName)) {
$pUserIsLoggedIn = $objUser->checkRssCode($_REQUEST['c']);
}
}
// --- Filter per date -----------------------------------------------------
// show today's tasks
$sqlFilter = '((deadlineDate >= \''
.strftime(TZN_DATE_SQL,PRJ_DTE_NOW).'\' AND statusKey < '
.FRK_STATUS_LEVELS.')'.' OR statusKey < '.FRK_STATUS_LEVELS.')';
if (@constant('FRK_NO_DEADLINE_TOO')) {
// show tasks with no deadline (unplanned tasks)
$sqlFilter .= ' AND deadlineDate <> \'9999-00-00\'';
} else {
$sqlFilter = '('.$sqlFilter
.' OR (deadlineDate = \'9999-00-00\' AND statusKey < '
.FRK_STATUS_LEVELS.'))';
}
$objItemList->addDateFilter($sqlFilter);
// --- Filter per user's projects -----------------------------------------
$pOwnOnly = @constant('FRK_DEFAULT_RSS_OWN_ONLY');
if (!$pOwnOnly) {
$objUserProjectList = new ProjectStats();
$objUserProjectList->addOrder('statusKey ASC, name ASC');
$objUserProjectList->addHaving('projectStatus_statusKey < 40');
$objUserProjectList->loadList($objUser->id,(!$objUser->checkLevel(6)));
// user can only access his own projects
if ($objUserProjectList->rMore()) {
$arrProject = array();
while($objTmp = $objUserProjectList->rNext()) {
$arrProject[] = $objTmp->id;
}
$objItemList->addWhere('(ii.projectId IN ('.implode(',',$arrProject).')'
.' OR ii.memberId = '.$objUser->id.' OR ii.authorId = '
.$objUser->id.')');
unset($arrProject);
} else {
$pOwnOnly = true;
}
}
if ($pOwnOnly) {
// no project to look at? just list own tasks then!
$objItemList->addWhere('ii.memberId='.$objUser->id
.' OR ii.authorId='.$objUser->id);
}
// --- private tasks --------------------------------------------------------
$sqlFilter = '(showPrivate';
if ($objUser->checkLevel(12)) {
$sqlFilter .= ' < 2';
} else {
$sqlFilter .= ' = 0';
}
$sqlFilter .= ' OR (showPrivate = 2 AND (ii.authorId = '.$objUser->id
.' OR ii.memberId = '.$objUser->id.')))';
$objItemList->addWhere($sqlFilter);
// --- Task order ---------------------------------------------------------
$pSort = ($_REQUEST['sort'])?$_REQUEST['sort']:
((defined('FRK_SORT_COLUMN'))?FRK_SORT_COLUMN:'deadlineDate');
$pDir = ($_REQUEST['dir'])?$_REQUEST['dir']:
((defined('FRK_SORT_ORDER'))?FRK_SORT_ORDER:1);
$objItemList->setOrder($pSort,$pDir);
// number of items to load
if ($pUserIsLoggedIn && defined('FRK_DEFAULT_RSS_SIZE')) {
$objItemList->addWhere('ii.memberId='.$objUser->id);
$objItemList->setPagination(FRK_DEFAULT_RSS_SIZE);
$objItemList->loadList();
}
header('Content-type: text/xml');
echo '<'.'?xml version="1.0"?'.'>';
echo "\n";
?>
<rss version="2.0">
<channel>
<title>TaskFreak! Todo list</title>
<link><?php echo PRJ_WWW_URL; ?></link>
<?php
if ($pUserIsLoggedIn && $objItemList->rMore()) {
while ($objItem = $objItemList->rNext()) {
$pProject = '';
if ($objItem->project->name) {
$pProject = $objItem->project->get('name').': ';
}
?>
<item>
<title><![CDATA[<?php echo $pProject.$objItem->title; ?>]]></title>
<?php
if ($objItem->deadlineDate != '9999-00-00' || $objItem->description) {
?>
<description><![CDATA[<?php
if ($objItem->deadlineDate != '9999-00-00') {
echo '['.$objItem->getDte('deadlineDate','SHT').'] ';
}
if ($objItem->description) {
echo "\n".$objItem->description;
}
?>]]></description>
<?php
}
?>
<link><?php echo PRJ_WWW_URL; ?>?rssId=<?php echo $objItem->id; ?></link>
</item>
<?php
}
} else {
include PRJ_INCLUDE_PATH.'language/'.FRK_DEFAULT_LANGUAGE.'/freak.php';
?>
<item>
<title><?php
if ($pUserIsLoggedIn) {
echo $langRss['no_task'];
} else {
echo $langRss['error_login'];
}
?></title>
<link><?php echo PRJ_WWW_URL; ?></link>
</item>
<?php
}
?>
</channel>
</rss>