forked from jfruitet/graph_stats-1
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlocallib.php
198 lines (181 loc) · 7.25 KB
/
locallib.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
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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.
//
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* This file is used to setting the block allover the site
*
* @package block_graph_stats
* @copyright 2011 Éric Bugnet with help of Jean Fruitet
* @copyright 2014 Wesley Ellis, Code Improvements.
* @copyright 2014 Vadim Dvorovenko
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die;
/**
* Draws stat grapch using google visualization API
*
* @param int $courseid Course for wich stats is displaying. For main page $courseid=1
* @return string HTML for including into block
*/
function block_graph_stats_graph_google($courseid) {
global $DB, $COURSE;
$cfg = get_config('block_graph_stats');
// Number of day for the graph.
if (isset($cfg->daysnb)) {
$daysnb = $cfg->daysnb;
} else {
$daysnb = 30;
}
// Define type.
if ($cfg->style == 'area') {
$type1 = 'area';
$type2 = 'area';
} else {
$type1 = 'bars';
$type2 = 'line';
}
$days = array();
$visits1 = array();
$visits2 = array();
$cache = cache::make('block_graph_stats', 'visits');
// Let's get the datas.
$a = 0;
if ($courseid > 1) {
for ($i = $daysnb; $i > -1; $i--) { // Days count.
$time1 = usergetmidnight(time() - $i * 60 * 60 * 24);
$time2 = usergetmidnight(time() - ($i - 1) * 60 * 60 * 24);
$visits1[$a] = $cache->get('visits1_' . $courseid . '_' . $time1);
if ($visits1[$a] === false) {
$sql = "SELECT COUNT(DISTINCT(userid)) as countid
FROM {logstore_standard_log}
WHERE timecreated >= :time1 AND timecreated < :time2 AND eventname = :eventname AND courseid = :course";
$params = array(
'time1' => $time1,
'time2' => $time2,
'eventname' => '\core\event\course_viewed',
'course' => $COURSE->id);
$visits1[$a] = $DB->get_field_sql($sql, $params);
if ($i > 0) {
$cache->set('visits1_' . $courseid . '_' . $time1, $visits1[$a]);
}
}
$days[$a] = userdate($time1, get_string('strftimedaydate', 'core_langconfig'));
$a = $a + 1;
}
} else {
for ($i = $daysnb; $i > -1; $i--) { // Days count.
$time1 = usergetmidnight(time() - $i * 60 * 60 * 24);
$time2 = usergetmidnight(time() - ($i - 1) * 60 * 60 * 24);
$visits2[$a] = $cache->get('visits2_' . $courseid . '_' . $time1);
if ($visits2[$a] === false) {
$sql = "SELECT COUNT(DISTINCT(userid)) as countid
FROM {logstore_standard_log}
WHERE timecreated >= :time1 AND timecreated < :time2 AND eventname = :eventname";
$params = array(
'time1' => $time1,
'time2' => $time2,
'eventname' => '\core\event\user_loggedin');
$visits2[$a] = $DB->get_field_sql($sql, $params);
if ($i > 0) { // Do not cache today, because visits count can change.
$cache->set('visits2_' . $courseid . '_' . $time1, $visits2[$a]);
}
}
if ($cfg->multi == 1) {
$visits1[$a] = $cache->get('visits1_' . $courseid . '_' . $time1);
if ($visits1[$a] === false) {
$sql = "SELECT COUNT(userid) as countid
FROM {logstore_standard_log}
WHERE timecreated >= :time1 AND timecreated < :time2 AND eventname = :eventname";
$params = array(
'time1' => $time1,
'time2' => $time2,
'eventname' => '\core\event\user_loggedin');
$visits1[$a] = $DB->get_field_sql($sql, $params);
if ($i > 0) { // Do not cache today, because visits count can change.
$cache->set('visits1_' . $courseid . '_' . $time1, $visits1[$a]);
}
}
} else {
$visits1[$a] = '';
}
$days[$a] = userdate($time1, get_string('strftimedaydate', 'core_langconfig'));
$a = $a + 1;
}
}
$graph = '
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn("string", "Day");';
if ($courseid > 1) {
$graph .= 'data.addColumn("number", "'. get_string('visitors', 'block_graph_stats') . '");';
} else {
$graph .= 'data.addColumn("number", "'. get_string('visitors', 'block_graph_stats') . '");';
$graph .= 'data.addColumn("number", "'. get_string('uniquevisitors', 'block_graph_stats') . '");';
}
$graph .= 'data.addRows([ ';
$a = 0;
for ($i = $daysnb; $i > -1; $i--) {
if ($courseid > 1) {
$graph .= '["' . $days[$a] . '",' . $visits1[$a] . '],';
} else {
$graph .= '["' . $days[$a] . '",' . $visits1[$a] . ',' . $visits2[$a] . '],';
}
$a++;
}
$graph .= ' ]);';
$graph .= '
var options = {
legend: {position: "none"},
backgroundColor: {
fill: "' . $cfg->outer_background . '",
stroke: "' . $cfg->inner_border . '",
strokeWidth: "' . $cfg->border_width . '"
},
hAxis: {
textPosition: "none"
},
vAxis: {
gridlines: {
color: "' . $cfg->axis_colour . '"
}
},
series: {
0: {
color: "' . $cfg->color1 . '",
type: "'. $type1. '"
},
1: {
color: "' . $cfg->color2 .'",
type: "' . $type2 . '"
}
}
};';
$graph .= '
var chart = new google.visualization.AreaChart(document.getElementById("chart_div"));
chart.draw(data, options);
}
$(document).ready(function(){
$(window).resize(function(){
drawChart();
});
});
</script>
<div id="chart_div" style="width:100%; height:' . $cfg->graphheight .'"></div>';
return $graph;
}