-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.php
396 lines (379 loc) · 12.5 KB
/
main.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
<?php
/**
* This script generates data for graphics on the Chamilo stats page, as shown on
* http://version.chamilo.org/stats/
* @package chamilo.website.stats
* @author Alberto Torreblanca <[email protected]>
* @author Yannick Warnier <[email protected]>
*/
/**
* Includes the database and versions settings
*/
include_once('connection.php');
/**
* Functions
*/
/* Retrieve DATA */
/* Retrieve Installation per version */
$dsn = 'mysql:dbname='.DEFDB.';host='.SERVER;
try {
$myDB = new PDO($dsn, DBUSER, DBPASSWORD);
} catch (PDOException $e) {
die('Could not connect to the database');
}
$apcu = function_exists('apcu_exists');
// Before anything, collect an array of all the portals in their latest version
$ids = '';
if (apcu_exists('chamilo-stats-url-ids')) {
$ids = apcu_fetch('chamilo-stats-url-ids');
} else {
$sql = "SELECT portal_url, max(id) as pid
FROM community
WHERE portal_version IN (".CHA_VERSIONS.")
GROUP BY portal_url
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$ids .= $row['pid'].',';
}
$ids = substr($ids, 0, -1);
$cacheTime = 300;
if (!empty($statsCache)) {
$cacheTime = $statsCache;
}
apcu_store('chamilo-stats-url-ids', $ids, $cacheTime);
}
// Prepare an ordered list of versions
$versions = str_replace("'", '', CHA_VERSIONS);
$versions = preg_split('/,/', $versions);
/**
* Retrieves the data from the database and return it as a table
* @param int $type Type of data we want
* @return array Table of results
*/
function retrieveData($type) {
global $myDB, $ids, $versions;
$table = [];
switch ($type) {
case 0:
/* Retrieve number of installations per version */
$sql = "SELECT portal_version as portal,
COUNT(portal_url) AS number
FROM community
WHERE id IN ($ids)
GROUP BY portal
";
$result = $myDB->query($sql);
$temp = [];
while ($row = $result->fetch()) {
$temp[$row['portal']] = $row;
}
foreach ($versions as $version) {
if (!empty($temp[$version])) {
$table[] = $temp[$version];
}
}
break;
case 1:
/* Retrieve Courses per Version */
/*
$sql = "SELECT LEFT(portal_version,6) AS portal,
SUM( number_of_courses ) AS numcourses
FROM resume
GROUP BY portal
HAVING ( ( portal IN (".CHA_VERSIONS.") ) )
";
*/
$sql = "SELECT portal_version as portal,
SUM(number_of_courses) AS numcourses
FROM community
WHERE id IN ($ids)
GROUP BY portal
";
$result = $myDB->query($sql);
$temp = [];
while ($row = $result->fetch()) {
$temp[$row['portal']] = $row;
}
foreach ($versions as $version) {
if (!empty($temp[$version])) {
$table[] = $temp[$version];
}
}
break;
case 2:
/* Retrieve Users per Version */
// this should use the CHA_NO_USERS constant, but not really important for now
$sql = "SELECT portal_version as portal,
SUM(number_of_users) AS numusers
FROM community
WHERE id IN ($ids)
GROUP BY portal
";
$result = $myDB->query($sql);
$temp = [];
while ($row = $result->fetch()) {
$temp[$row['portal']] = $row;
}
foreach ($versions as $version) {
if (!empty($temp[$version])) {
$table[] = $temp[$version];
}
}
break;
case 3:
/* Retrieve History per portals */
$sql = "SELECT portal_version as portal,
SUM(number_of_users) AS numusers
FROM community
WHERE id IN ($ids)
GROUP BY portal
";
$result = $myDB->query($sql);
$temp = [];
while ($row = $result->fetch()) {
$temp[$row['portal']] = $row;
}
foreach ($versions as $version) {
if (!empty($temp[$version])) {
$table[] = $temp[$version];
}
}
break;
case 4:
/* Number of portals per month since 2010*/
$sql = "SELECT yearmonth AS fecha,
numportals as N
FROM monthly_history
GROUP BY fecha
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 5:
/* Number of courses per month since 2010*/
$sql = "SELECT yearmonth AS fecha,
numcourses as N
FROM monthly_history GROUP BY fecha
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 6:
/* Number of users per month since 2010*/
$sql = "SELECT yearmonth AS fecha,
numusers as N
FROM monthly_history
GROUP BY fecha
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 7:
/* Number of sessions per month since 2010*/
$sql = "SELECT yearmonth AS fecha,
numsessions as N
FROM monthly_history
GROUP BY fecha
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 8:
/* Ranges of number of users per portal*/
$ranges = preg_split('/,/', CHA_USERS_RANGES);
foreach ($ranges as $range) {
list($from, $to) = preg_split('/-/', $range);
$sql = "SELECT '$range' AS myrange,
COUNT(*) as N
FROM community
WHERE id IN ($ids)
AND number_of_users >= $from
AND number_of_users <= $to
";
$result = $myDB->query($sql);
$num = $result->rowCount();
if ($num == 0) {
$row = array($range, 0);
} else {
$row = $result->fetch();
}
$table[] = $row;
}
break;
case 9:
// Select only "relevant" portals with more than 65 users (demo set is = 60)
$twoYears = time()-(86400*365*2);
$twoYearsAgo = date('Y-m-d', $twoYears);
$sql = "SELECT distinct(language) AS language, count(id) as N
FROM community
WHERE language in (".CHA_LANGUAGES.")
AND number_of_users > 65
AND updated_on > '$twoYearsAgo'
GROUP BY language order by 2 DESC LIMIT 20";
$result = $myDB->query($sql);
$num = $result->rowCount();
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 10:
// Select packagers vs number of portals in the last 2 years
$twoYears = time()-(86400*365*2);
$twoYearsAgo = date('Y-m-d', $twoYears);
$sql = "SELECT distinct(packager) AS packager, count(id) as N
FROM community
WHERE updated_on > '$twoYearsAgo'
GROUP BY packager ORDER BY 2 DESC LIMIT 20";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 11:
// Select portals per year
$sql = "SELECT LEFT(yearmonth,2) AS fecha,
MAX(numportals) as N
FROM monthly_history
GROUP BY fecha
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 12:
// Select users per year
$sql = "SELECT LEFT(yearmonth,2) AS fecha,
MAX(numusers) as N
FROM monthly_history
GROUP BY fecha
";
$result = $myDB->query($sql);
while ($row = $result->fetch()) {
$table[] = $row;
}
break;
case 13:
// Select new users per month, non-cumulative
$sql = "SELECT LEFT(log_time,7) AS fecha,
MAX(numusers) as N
FROM history
WHERE log_time > DATE_SUB(NOW(), INTERVAL 27 MONTH)
GROUP BY fecha
";
$result = $myDB->query($sql);
$tableTemp = [];
while ($row = $result->fetch()) {
$tableTemp[] = $row;
}
// Use the difference between this month and the previous one to
// determine the number of new users
foreach($tableTemp as $i => $line) {
$num = 0;
if ($i != 0) {
$num = $tableTemp[$i]['N'] - $tableTemp[$i-1]['N'];
}
$table[] = [
'fecha' => $line['fecha'],
'N' => $num,
];
}
break;
}
return $table;
}
/**
* Formats the charts data
* @param int Type of data to show in chart
* @param string Type of chart
* @return string Formatted chart data to be treated by JS
*/
function chart($num = 0, $op = 'values')
{
$chart1 = "";
$dato = "";
switch ($num) {
case 0:
$etiqueta = "portal";
$dato = "number";
break;
case 1:
$etiqueta = "portal";
$dato = "numcourses";
break;
case 2:
$etiqueta = "portal";
$dato = "numusers";
break;
case 4:
case 5:
case 6:
case 7:
$etiqueta = "fecha";
$dato = "N";
break;
case 8:
$etiqueta = "myrange";
$dato = "N";
break;
case 9:
$etiqueta = "language";
$dato = "N";
break;
case 10:
$etiqueta = "packager";
$dato = "N";
break;
case 11:
case 12:
$etiqueta = 'fecha';
$dato = 'N';
break;
case 13:
$etiqueta = 'fecha';
$dato = 'N';
break;
}
$apcu = false;
$apcuVar = 'statschamiloorg_retrieve_'.$num;
if (function_exists('apcu_fetch')) {
$apcu = true;
}
// @todo This function is still called 2 or 3 times per chart. Reduce that!
if ($apcu) {
if (apcu_exists($apcuVar) && (empty($_GET['r']))) {
$serialized = apcu_fetch($apcuVar);
$table = unserialize($serialized);
} else {
$table = retrieveData($num);
$serialized = serialize($table);
apcu_store($apcuVar, $serialized, 300);
}
} else {
$table = retrieveData($num);
}
foreach ($table as $value) {
switch ($op) {
case "values":
$chart1 .= $value[$dato] . ",";
break;
case "ticks":
$chart1 .= "'" . $value[$etiqueta] . "',";
break;
case "pie":
$chart1 .= "['" . $value[$etiqueta] . "'," . $value[$dato] . "],";
break;
}
}
$chart1 = substr($chart1, 0, -1);
return rtrim($chart1, ',');
}