2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * class block_recent_activity
20 * @package block_recent_activity
21 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 require_once($CFG->dirroot
.'/course/lib.php');
28 * class block_recent_activity
30 * @package block_recent_activity
31 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
32 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34 class block_recent_activity
extends block_base
{
37 * Use {@link block_recent_activity::get_timestart()} to access
39 * @var int stores the time since when we want to show recent activity
41 protected $timestart = null;
44 * Initialises the block
47 $this->title
= get_string('pluginname', 'block_recent_activity');
51 * Returns the content object
55 function get_content() {
56 if ($this->content
!== NULL) {
57 return $this->content
;
60 if (empty($this->instance
)) {
62 return $this->content
;
65 $this->content
= new stdClass
;
66 $this->content
->text
= '';
67 $this->content
->footer
= '';
69 $renderer = $this->page
->get_renderer('block_recent_activity');
70 $this->content
->text
= $renderer->recent_activity($this->page
->course
,
71 $this->get_timestart(),
72 $this->get_recent_enrolments(),
73 $this->get_structural_changes(),
74 $this->get_modules_recent_activity());
76 return $this->content
;
80 * Returns the time since when we want to show recent activity
82 * For guest users it is 2 days, for registered users it is the time of last access to the course
86 protected function get_timestart() {
88 if ($this->timestart
=== null) {
89 $this->timestart
= round(time() - COURSE_MAX_RECENT_PERIOD
, -2); // better db caching for guests - 100 seconds
92 if (!empty($USER->lastcourseaccess
[$this->page
->course
->id
])) {
93 if ($USER->lastcourseaccess
[$this->page
->course
->id
] > $this->timestart
) {
94 $this->timestart
= $USER->lastcourseaccess
[$this->page
->course
->id
];
99 return $this->timestart
;
103 * Returns all recent enrolments.
105 * This function previously used get_recent_enrolments located in lib/deprecatedlib.php which would
106 * return an empty array which was identified in MDL-36993. The use of this function outside the
107 * deprecated lib was removed in MDL-40649.
109 * @todo MDL-36993 this function always return empty array
110 * @return array array of entries from {user} table
112 protected function get_recent_enrolments() {
117 * Returns list of recent changes in course structure
119 * It includes adding, editing or deleting of the resources or activities
120 * Excludes changes on modules without a view link (i.e. labels), and also
121 * if activity was both added and deleted
123 * @return array array of changes. Each element is an array containing attributes:
124 * 'action' - one of: 'add mod', 'update mod', 'delete mod'
125 * 'module' - instance of cm_info (for 'delete mod' it is an object with attributes modname and modfullname)
127 protected function get_structural_changes() {
129 $course = $this->page
->course
;
130 $context = context_course
::instance($course->id
);
131 $canviewdeleted = has_capability('block/recent_activity:viewdeletemodule', $context);
132 $canviewupdated = has_capability('block/recent_activity:viewaddupdatemodule', $context);
133 if (!$canviewdeleted && !$canviewupdated) {
137 $timestart = $this->get_timestart();
138 $changelist = array();
139 // The following query will retrieve the latest action for each course module in the specified course.
140 // Also the query filters out the modules that were created and then deleted during the given interval.
142 cmid, MIN(action) AS minaction, MAX(action) AS maxaction, MAX(modname) AS modname
143 FROM {block_recent_activity}
144 WHERE timecreated > ? AND courseid = ?
146 ORDER BY MAX(timecreated) ASC";
147 $params = array($timestart, $course->id
);
148 $logs = $DB->get_records_sql($sql, $params);
149 if (isset($logs[0])) {
150 // If special record for this course and cmid=0 is present, migrate logs.
151 self
::migrate_logs($course);
152 $logs = $DB->get_records_sql($sql, $params);
155 $modinfo = get_fast_modinfo($course);
156 foreach ($logs as $log) {
157 // We used aggregate functions since constants CM_CREATED, CM_UPDATED and CM_DELETED have ascending order (0,1,2).
158 $wasdeleted = ($log->maxaction
== block_recent_activity_observer
::CM_DELETED
);
159 $wascreated = ($log->minaction
== block_recent_activity_observer
::CM_CREATED
);
161 if ($wasdeleted && $wascreated) {
162 // Activity was created and deleted within this interval. Do not show it.
164 } else if ($wasdeleted && $canviewdeleted) {
165 if (plugin_supports('mod', $log->modname
, FEATURE_NO_VIEW_LINK
, false)) {
166 // Better to call cm_info::has_view() because it can be dynamic.
167 // But there is no instance of cm_info now.
170 // Unfortunately we do not know if the mod was visible.
171 $modnames = get_module_types_names();
172 $changelist[$log->cmid
] = array('action' => 'delete mod',
173 'module' => (object)array(
174 'modname' => $log->modname
,
175 'modfullname' => isset($modnames[$log->modname
]) ?
$modnames[$log->modname
] : $log->modname
178 } else if (!$wasdeleted && isset($modinfo->cms
[$log->cmid
]) && $canviewupdated) {
179 // Module was either added or updated during this interval and it currently exists.
180 // If module was both added and updated show only "add" action.
181 $cm = $modinfo->cms
[$log->cmid
];
182 if ($cm->has_view() && $cm->uservisible
) {
183 $changelist[$log->cmid
] = array(
184 'action' => $wascreated ?
'add mod' : 'update mod',
195 * Returns list of recent activity within modules
197 * For each used module type executes callback MODULE_print_recent_activity()
199 * @return array array of pairs moduletype => content
201 protected function get_modules_recent_activity() {
202 $context = context_course
::instance($this->page
->course
->id
);
203 $viewfullnames = has_capability('moodle/site:viewfullnames', $context);
206 $modinfo = get_fast_modinfo($this->page
->course
);
207 $usedmodules = $modinfo->get_used_module_names();
208 $recentactivity = array();
209 foreach ($usedmodules as $modname => $modfullname) {
210 // Each module gets it's own logs and prints them
212 $hascontent = component_callback('mod_'. $modname, 'print_recent_activity',
213 array($this->page
->course
, $viewfullnames, $this->get_timestart()), false);
215 $recentactivity[$modname] = ob_get_contents();
219 return $recentactivity;
223 * Which page types this block may appear on.
225 * @return array page-type prefix => true/false.
227 function applicable_formats() {
228 return array('all' => true, 'my' => false, 'tag' => false);
232 * Migrates entries from table {log} into {block_recent_activity}
234 * We only migrate logs for the courses that actually have recent activity
235 * block and that are being viewed within COURSE_MAX_RECENT_PERIOD time
238 * The presence of entry in {block_recent_activity} with the cmid=0 indicates
239 * that the course needs log migration. Those entries were installed in
240 * db/upgrade.php when the table block_recent_activity was created.
242 * @param stdClass $course
244 protected static function migrate_logs($course) {
246 if (!$logstarted = $DB->get_record('block_recent_activity',
247 array('courseid' => $course->id
, 'cmid' => 0),
248 'id, timecreated')) {
251 $DB->delete_records('block_recent_activity', array('id' => $logstarted->id
));
253 $logs = $DB->get_records_select('log',
254 "time > ? AND time < ? AND course = ? AND
255 module = 'course' AND
256 (action = 'add mod' OR action = 'update mod' OR action = 'delete mod')",
257 array(time()-COURSE_MAX_RECENT_PERIOD
, $logstarted->timecreated
, $course->id
),
258 'id ASC', 'id, time, userid, cmid, action, info');
259 } catch (Exception
$e) {
260 // Probably table {log} was already removed.
266 $modinfo = get_fast_modinfo($course);
268 foreach ($logs as $log) {
269 $info = explode(' ', $log->info
);
270 if (count($info) != 2) {
274 $instanceid = $info[1];
275 $entry = array('courseid' => $course->id
, 'userid' => $log->userid
,
276 'timecreated' => $log->time
, 'modname' => $modname);
277 if ($log->action
== 'delete mod') {
281 $entry['action'] = 2;
282 $entry['cmid'] = $log->cmid
;
284 if (!isset($modinfo->instances
[$modname][$instanceid])) {
287 if ($log->action
== 'add mod') {
288 $entry['action'] = 0;
290 $entry['action'] = 1;
292 $entry['cmid'] = $modinfo->instances
[$modname][$instanceid]->id
;
296 $DB->insert_records('block_recent_activity', $entries);