3 // This file is part of Moodle - http://moodle.org/
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
20 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 defined('MOODLE_INTERNAL') ||
die();
26 require_once($CFG->dirroot
. '/mod/data/lib.php');
27 require_once($CFG->libdir
. '/portfolio/caller.php');
28 require_once($CFG->libdir
. '/filelib.php');
31 * The class to handle entry exports of a database module
33 class data_portfolio_caller
extends portfolio_module_caller_base
{
35 /** @var int the single record to export */
38 /** @var object the record from the data table */
41 /**#@+ @var array the fields used and their fieldtypes */
45 /** @var object the records to export */
48 /** @var int how many records are 'mine' */
52 * the required callback arguments for a single-record export
56 public static function expected_callbackargs() {
64 * @param array $callbackargs the arguments passed through
66 public function __construct($callbackargs) {
67 parent
::__construct($callbackargs);
71 * load up the data needed for the export
75 public function load_data() {
77 if (!$this->cm
= get_coursemodule_from_id('data', $this->id
)) {
78 throw new portfolio_caller_exception('invalidid', 'data');
80 if (!$this->data
= $DB->get_record('data', array('id' => $this->cm
->instance
))) {
81 throw new portfolio_caller_exception('invalidid', 'data');
83 $fieldrecords = $DB->get_records('data_fields', array('dataid' => $this->cm
->instance
), 'id');
84 // populate objets for this databases fields
85 $this->fields
= array();
86 foreach ($fieldrecords as $fieldrecord) {
87 $tmp = data_get_field($fieldrecord, $this->data
);
88 $this->fields
[] = $tmp;
89 $this->fieldtypes
[] = $tmp->type
;
92 $this->records
= array();
93 if ($this->recordid
) {
94 $tmp = $DB->get_record('data_records', array('id' => $this->recordid
));
95 $tmp->content
= $DB->get_records('data_content', array('recordid' => $this->recordid
));
96 $this->records
[] = $tmp;
98 $where = array('dataid' => $this->data
->id
);
99 if (!has_capability('mod/data:exportallentries', context_module
::instance($this->cm
->id
))) {
100 $where['userid'] = $USER->id
; // get them all in case, we'll unset ones that aren't ours later if necessary
102 $tmp = $DB->get_records('data_records', $where);
103 foreach ($tmp as $t) {
104 $t->content
= $DB->get_records('data_content', array('recordid' => $t->id
));
105 $this->records
[] = $t;
107 $this->minecount
= $DB->count_records('data_records', array('dataid' => $this->data
->id
, 'userid' => $USER->id
));
110 if ($this->recordid
) {
111 list($formats, $files) = self
::formats($this->fields
, $this->records
[0]);
112 $this->set_file_and_format_data($files);
117 * How long we think the export will take
118 * Single entry is probably not too long.
119 * But we check for filesizes
120 * Else base it on the number of records
122 * @return one of PORTFOLIO_TIME_XX constants
124 public function expected_time() {
125 if ($this->recordid
) {
126 return $this->expected_time_file();
128 return portfolio_expected_time_db(count($this->records
));
133 * Calculate the shal1 of this export
134 * Dependent on the export format.
137 public function get_sha1() {
138 // in the case that we're exporting a subclass of 'file' and we have a singlefile,
139 // then we're not exporting any metadata, just the file by itself by mimetype.
140 if ($this->exporter
->get('format') instanceof portfolio_format_file
&& $this->singlefile
) {
141 return $this->get_sha1_file();
143 // otherwise we're exporting some sort of multipart content so use the data
145 foreach ($this->records
as $record) {
146 foreach ($record as $data) {
147 if (is_array($data) ||
is_object($data)) {
148 $keys = array_keys($data);
149 $testkey = array_pop($keys);
150 if (is_array($data[$testkey]) ||
is_object($data[$testkey])) {
151 foreach ($data as $d) {
152 $str .= implode(',', (array)$d);
155 $str .= implode(',', (array)$data);
162 return sha1($str . ',' . $this->exporter
->get('formatclass'));
166 * Prepare the package for export
168 * @return stored_file object
170 public function prepare_package() {
175 $uid = $this->exporter
->get('user')->id
;
176 $users = array(); //cache
177 $onlymine = $this->get_export_config('mineonly');
178 if ($this->exporter
->get('formatclass') == PORTFOLIO_FORMAT_LEAP2A
) {
179 $leapwriter = $this->exporter
->get('format')->leap2a_writer();
183 if ($this->exporter
->get('format') instanceof portfolio_format_file
&& $this->singlefile
) {
184 return $this->get('exporter')->copy_existing_file($this->singlefile
);
186 foreach ($this->records
as $key => $record) {
187 if ($onlymine && $record->userid
!= $uid) {
188 unset($this->records
[$key]); // sha1
191 list($tmpcontent, $files) = $this->exportentry($record);
192 $content .= $tmpcontent;
194 $entry = new portfolio_format_leap2a_entry('dataentry' . $record->id
, $this->data
->name
, 'resource', $tmpcontent);
195 $entry->published
= $record->timecreated
;
196 $entry->updated
= $record->timemodified
;
197 if ($record->userid
!= $uid) {
198 if (!array_key_exists($record->userid
, $users)) {
199 $users[$record->userid
] = $DB->get_record('user', array('id' => $record->userid
), 'id,firstname,lastname');
201 $entry->author
= $users[$record->userid
];
204 $leapwriter->link_files($entry, $files, 'dataentry' . $record->id
. 'file');
205 $leapwriter->add_entry($entry);
209 if (count($this->records
) > 1) { // make a selection element to tie them all together
210 $selection = new portfolio_format_leap2a_entry('datadb' . $this->data
->id
,
211 get_string('entries', 'data') . ': ' . $this->data
->name
, 'selection');
212 $leapwriter->add_entry($selection);
213 $leapwriter->make_selection($selection, $ids, 'Grouping');
215 $filename = $this->exporter
->get('format')->manifest_name();
216 $content = $leapwriter->to_xml();
218 if (count($this->records
) == 1) {
219 $filename = clean_filename($this->cm
->name
. '-entry.html');
221 $filename = clean_filename($this->cm
->name
. '-full.html');
224 return $this->exporter
->write_new_file(
227 ($this->exporter
->get('format') instanceof PORTFOLIO_FORMAT_RICH
) // if we have associate files, this is a 'manifest'
232 * Verify the user can still export this entry
236 public function check_permissions() {
237 if ($this->recordid
) {
238 if (data_isowner($this->recordid
)) {
239 return has_capability('mod/data:exportownentry', context_module
::instance($this->cm
->id
));
241 return has_capability('mod/data:exportentry', context_module
::instance($this->cm
->id
));
243 if ($this->has_export_config() && !$this->get_export_config('mineonly')) {
244 return has_capability('mod/data:exportallentries', context_module
::instance($this->cm
->id
));
246 return has_capability('mod/data:exportownentry', context_module
::instance($this->cm
->id
));
252 public static function display_name() {
253 return get_string('modulename', 'data');
260 public function __wakeup() {
263 return true; // too early yet
265 foreach ($this->fieldtypes
as $key => $field) {
266 $filepath = $CFG->dirroot
. '/mod/data/field/' . $field .'/field.class.php';
267 if (!file_exists($filepath)) {
270 require_once($filepath);
271 $this->fields
[$key] = unserialize(serialize($this->fields
[$key]));
276 * Prepare a single entry for export, replacing all the content etc
278 * @param stdclass $record the entry to export
280 * @return array with key 0 = the html content, key 1 = array of attachments
282 private function exportentry($record) {
285 $replacement = array();
288 // Then we generate strings to replace for normal tags
289 $format = $this->get('exporter')->get('format');
290 foreach ($this->fields
as $field) {
291 $patterns[]='[['.$field->field
->name
.']]';
292 if (is_callable(array($field, 'get_file'))) {
293 if (!$file = $field->get_file($record->id
)) {
295 continue; // probably left empty
297 $replacement[] = $format->file_output($file);
298 $this->get('exporter')->copy_existing_file($file);
301 $replacement[] = $field->display_browse_field($record->id
, 'singletemplate');
305 // Replacing special tags (##Edit##, ##Delete##, ##More##)
306 $patterns[]='##edit##';
307 $patterns[]='##delete##';
308 $patterns[]='##export##';
309 $patterns[]='##more##';
310 $patterns[]='##moreurl##';
311 $patterns[]='##user##';
312 $patterns[]='##approve##';
313 $patterns[]='##disapprove##';
314 $patterns[]='##comments##';
315 $patterns[] = '##timeadded##';
316 $patterns[] = '##timemodified##';
326 $replacement[] = userdate($record->timecreated
);
327 $replacement[] = userdate($record->timemodified
);
329 if (empty($this->data
->singletemplate
)) {
330 // Use default template if the template is not created.
331 $this->data
->singletemplate
= data_generate_default_template($this->data
, 'singletemplate', 0, false, false);
334 // actual replacement of the tags
335 return array(str_ireplace($patterns, $replacement, $this->data
->singletemplate
), $files);
339 * Given the fields being exported, and the single record,
340 * work out which export format(s) we can use
342 * @param array $fields array of field objects
343 * @param object $record The data record object
345 * @uses PORTFOLIO_FORMAT_PLAINHTML
346 * @uses PORTFOLIO_FORMAT_RICHHTML
348 * @return array of PORTFOLIO_XX constants
350 public static function formats($fields, $record) {
351 $formats = array(PORTFOLIO_FORMAT_PLAINHTML
);
352 $includedfiles = array();
353 foreach ($fields as $singlefield) {
354 if (is_callable(array($singlefield, 'get_file'))) {
355 if ($file = $singlefield->get_file($record->id
)) {
356 $includedfiles[] = $file;
360 if (count($includedfiles) == 1 && count($fields) == 1) {
361 $formats = array(portfolio_format_from_mimetype($includedfiles[0]->get_mimetype()));
362 } else if (count($includedfiles) > 0) {
363 $formats = array(PORTFOLIO_FORMAT_RICHHTML
);
365 return array($formats, $includedfiles);
368 public static function has_files($data) {
370 $fieldrecords = $DB->get_records('data_fields', array('dataid' => $data->id
), 'id');
371 // populate objets for this databases fields
372 foreach ($fieldrecords as $fieldrecord) {
373 $field = data_get_field($fieldrecord, $data);
374 if (is_callable(array($field, 'get_file'))) {
382 * base supported formats before we know anything about the export
384 public static function base_supported_formats() {
385 return array(PORTFOLIO_FORMAT_RICHHTML
, PORTFOLIO_FORMAT_PLAINHTML
, PORTFOLIO_FORMAT_LEAP2A
);
388 public function has_export_config() {
389 // if we're exporting more than just a single entry,
390 // and we have the capability to export all entries,
391 // then ask whether we want just our own, or all of them
392 return (empty($this->recordid
) // multi-entry export
393 && $this->minecount
> 0 // some of them are mine
394 && $this->minecount
!= count($this->records
) // not all of them are mine
395 && has_capability('mod/data:exportallentries', context_module
::instance($this->cm
->id
))); // they actually have a choice in the matter
398 public function export_config_form(&$mform, $instance) {
399 if (!$this->has_export_config()) {
402 $mform->addElement('selectyesno', 'mineonly', get_string('exportownentries', 'data', (object)array('mine' => $this->minecount
, 'all' => count($this->records
))));
403 $mform->setDefault('mineonly', 1);
406 public function get_allowed_export_config() {
407 return array('mineonly');
413 * Class representing the virtual node with all itemids in the file browser
416 * @copyright 2012 David Mudrak <david@moodle.com>
417 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
419 class data_file_info_container
extends file_info
{
420 /** @var file_browser */
427 protected $component;
436 * Constructor (in case you did not realize it ;-)
438 * @param file_browser $browser
439 * @param stdClass $course
440 * @param stdClass $cm
441 * @param stdClass $context
442 * @param array $areas
443 * @param string $filearea
445 public function __construct($browser, $course, $cm, $context, $areas, $filearea) {
446 parent
::__construct($browser, $context);
447 $this->browser
= $browser;
448 $this->course
= $course;
450 $this->component
= 'mod_data';
451 $this->context
= $context;
452 $this->areas
= $areas;
453 $this->filearea
= $filearea;
457 * @return array with keys contextid, filearea, itemid, filepath and filename
459 public function get_params() {
461 'contextid' => $this->context
->id
,
462 'component' => $this->component
,
463 'filearea' => $this->filearea
,
471 * Can new files or directories be added via the file browser
475 public function is_writable() {
480 * Should this node be considered as a folder in the file browser
484 public function is_directory() {
489 * Returns localised visible name of this node
493 public function get_visible_name() {
494 return $this->areas
[$this->filearea
];
498 * Returns list of children nodes
500 * @return array of file_info instances
502 public function get_children() {
503 return $this->get_filtered_children('*', false, true);
507 * Help function to return files matching extensions or their count
509 * @param string|array $extensions, either '*' or array of lowercase extensions, i.e. array('.gif','.jpg')
510 * @param bool|int $countonly if false returns the children, if an int returns just the
511 * count of children but stops counting when $countonly number of children is reached
512 * @param bool $returnemptyfolders if true returns items that don't have matching files inside
513 * @return array|int array of file_info instances or the count
515 private function get_filtered_children($extensions = '*', $countonly = false, $returnemptyfolders = false) {
517 $params = array('contextid' => $this->context
->id
,
518 'component' => $this->component
,
519 'filearea' => $this->filearea
);
520 $sql = 'SELECT DISTINCT itemid
522 WHERE contextid = :contextid
523 AND component = :component
524 AND filearea = :filearea';
525 if (!$returnemptyfolders) {
526 $sql .= ' AND filename <> :emptyfilename';
527 $params['emptyfilename'] = '.';
529 list($sql2, $params2) = $this->build_search_files_sql($extensions);
531 $params = array_merge($params, $params2);
532 if ($countonly === false) {
533 $sql .= ' ORDER BY itemid DESC';
536 $rs = $DB->get_recordset_sql($sql, $params);
538 foreach ($rs as $record) {
539 if ($child = $this->browser
->get_file_info($this->context
, 'mod_data', $this->filearea
, $record->itemid
)) {
540 $children[] = $child;
542 if ($countonly !== false && count($children) >= $countonly) {
547 if ($countonly !== false) {
548 return count($children);
554 * Returns list of children which are either files matching the specified extensions
555 * or folders that contain at least one such file.
557 * @param string|array $extensions, either '*' or array of lowercase extensions, i.e. array('.gif','.jpg')
558 * @return array of file_info instances
560 public function get_non_empty_children($extensions = '*') {
561 return $this->get_filtered_children($extensions, false);
565 * Returns the number of children which are either files matching the specified extensions
566 * or folders containing at least one such file.
568 * @param string|array $extensions, for example '*' or array('.gif','.jpg')
569 * @param int $limit stop counting after at least $limit non-empty children are found
572 public function count_non_empty_children($extensions = '*', $limit = 1) {
573 return $this->get_filtered_children($extensions, $limit);
577 * Returns parent file_info instance
579 * @return file_info or null for root
581 public function get_parent() {
582 return $this->browser
->get_file_info($this->context
);
587 * This creates new calendar events given as timeavailablefrom and timeclose by $data.
589 * @param stdClass $data
592 function data_set_events($data) {
595 require_once($CFG->dirroot
.'/calendar/lib.php');
597 // Get CMID if not sent as part of $data.
598 if (!isset($data->coursemodule
)) {
599 $cm = get_coursemodule_from_instance('data', $data->id
, $data->course
);
600 $data->coursemodule
= $cm->id
;
602 // Data start calendar events.
603 $event = new stdClass();
604 $event->eventtype
= DATA_EVENT_TYPE_OPEN
;
605 // The DATA_EVENT_TYPE_OPEN event should only be an action event if no close time was specified.
606 $event->type
= empty($data->timeavailableto
) ? CALENDAR_EVENT_TYPE_ACTION
: CALENDAR_EVENT_TYPE_STANDARD
;
607 if ($event->id
= $DB->get_field('event', 'id',
608 array('modulename' => 'data', 'instance' => $data->id
, 'eventtype' => $event->eventtype
))) {
609 if ($data->timeavailablefrom
> 0) {
610 // Calendar event exists so update it.
611 $event->name
= get_string('calendarstart', 'data', $data->name
);
612 $event->description
= format_module_intro('data', $data, $data->coursemodule
, false);
613 $event->format
= FORMAT_HTML
;
614 $event->timestart
= $data->timeavailablefrom
;
615 $event->timesort
= $data->timeavailablefrom
;
616 $event->visible
= instance_is_visible('data', $data);
617 $event->timeduration
= 0;
618 $calendarevent = calendar_event
::load($event->id
);
619 $calendarevent->update($event, false);
621 // Calendar event is on longer needed.
622 $calendarevent = calendar_event
::load($event->id
);
623 $calendarevent->delete();
626 // Event doesn't exist so create one.
627 if (isset($data->timeavailablefrom
) && $data->timeavailablefrom
> 0) {
628 $event->name
= get_string('calendarstart', 'data', $data->name
);
629 $event->description
= format_module_intro('data', $data, $data->coursemodule
, false);
630 $event->format
= FORMAT_HTML
;
631 $event->courseid
= $data->course
;
634 $event->modulename
= 'data';
635 $event->instance
= $data->id
;
636 $event->timestart
= $data->timeavailablefrom
;
637 $event->timesort
= $data->timeavailablefrom
;
638 $event->visible
= instance_is_visible('data', $data);
639 $event->timeduration
= 0;
640 calendar_event
::create($event, false);
644 // Data end calendar events.
645 $event = new stdClass();
646 $event->type
= CALENDAR_EVENT_TYPE_ACTION
;
647 $event->eventtype
= DATA_EVENT_TYPE_CLOSE
;
648 if ($event->id
= $DB->get_field('event', 'id',
649 array('modulename' => 'data', 'instance' => $data->id
, 'eventtype' => $event->eventtype
))) {
650 if ($data->timeavailableto
> 0) {
651 // Calendar event exists so update it.
652 $event->name
= get_string('calendarend', 'data', $data->name
);
653 $event->description
= format_module_intro('data', $data, $data->coursemodule
, false);
654 $event->format
= FORMAT_HTML
;
655 $event->timestart
= $data->timeavailableto
;
656 $event->timesort
= $data->timeavailableto
;
657 $event->visible
= instance_is_visible('data', $data);
658 $event->timeduration
= 0;
659 $calendarevent = calendar_event
::load($event->id
);
660 $calendarevent->update($event, false);
662 // Calendar event is on longer needed.
663 $calendarevent = calendar_event
::load($event->id
);
664 $calendarevent->delete();
667 // Event doesn't exist so create one.
668 if (isset($data->timeavailableto
) && $data->timeavailableto
> 0) {
669 $event->name
= get_string('calendarend', 'data', $data->name
);
670 $event->description
= format_module_intro('data', $data, $data->coursemodule
, false);
671 $event->format
= FORMAT_HTML
;
672 $event->courseid
= $data->course
;
675 $event->modulename
= 'data';
676 $event->instance
= $data->id
;
677 $event->timestart
= $data->timeavailableto
;
678 $event->timesort
= $data->timeavailableto
;
679 $event->visible
= instance_is_visible('data', $data);
680 $event->timeduration
= 0;
681 calendar_event
::create($event, false);
687 * Check if a database is available for the current user.
689 * @param stdClass $data database record
690 * @param boolean $canmanageentries optional, if the user can manage entries
691 * @param stdClass $context Module context, required if $canmanageentries is not set
692 * @return array status (available or not and possible warnings)
695 function data_get_time_availability_status($data, $canmanageentries = null, $context = null) {
700 if ($canmanageentries === null) {
701 $canmanageentries = has_capability('mod/data:manageentries', $context);
704 if (!$canmanageentries) {
707 if (!empty($data->timeavailablefrom
) and $data->timeavailablefrom
> $timenow) {
710 if (!empty($data->timeavailableto
) and $timenow > $data->timeavailableto
) {
714 if (!$open or $closed) {
716 $warnings['notopenyet'] = userdate($data->timeavailablefrom
);
719 $warnings['expired'] = userdate($data->timeavailableto
);
721 return array(false, $warnings);
725 // Database is available.
726 return array(true, $warnings);
730 * Requires a database to be available for the current user.
732 * @param stdClass $data database record
733 * @param boolean $canmanageentries optional, if the user can manage entries
734 * @param stdClass $context Module context, required if $canmanageentries is not set
735 * @throws moodle_exception
738 function data_require_time_available($data, $canmanageentries = null, $context = null) {
740 list($available, $warnings) = data_get_time_availability_status($data, $canmanageentries, $context);
743 $reason = current(array_keys($warnings));
744 throw new moodle_exception($reason, 'data', '', $warnings[$reason]);
749 * Return the number of entries left to add to complete the activity.
751 * @param stdClass $data database object
752 * @param int $numentries the number of entries the current user has created
753 * @param bool $canmanageentries whether the user can manage entries (teachers, managers)
754 * @return int the number of entries left, 0 if no entries left or if is not required
757 function data_get_entries_left_to_add($data, $numentries, $canmanageentries) {
758 if ($data->requiredentries
> 0 && $numentries < $data->requiredentries
&& !$canmanageentries) {
759 return $data->requiredentries
- $numentries;
765 * Return the number of entires left to add to view other users entries..
767 * @param stdClass $data database object
768 * @param int $numentries the number of entries the current user has created
769 * @param bool $canmanageentries whether the user can manage entries (teachers, managers)
770 * @return int the number of entries left, 0 if no entries left or if is not required
773 function data_get_entries_left_to_view($data, $numentries, $canmanageentries) {
774 if ($data->requiredentriestoview
> 0 && $numentries < $data->requiredentriestoview
&& !$canmanageentries) {
775 return $data->requiredentriestoview
- $numentries;
781 * Returns data records tagged with a specified tag.
783 * This is a callback used by the tag area mod_data/data_records to search for data records
784 * tagged with a specific tag.
786 * @param core_tag_tag $tag
787 * @param bool $exclusivemode if set to true it means that no other entities tagged with this tag
788 * are displayed on the page and the per-page limit may be bigger
789 * @param int $fromctx context id where the link was displayed, may be used by callbacks
790 * to display items in the same context first
791 * @param int $ctx context id where to search for records
792 * @param bool $rec search in subcontexts as well
793 * @param int $page 0-based number of page being displayed
794 * @return \core_tag\output\tagindex
796 function mod_data_get_tagged_records($tag, $exclusivemode = false, $fromctx = 0, $ctx = 0, $rec = true, $page = 0) {
797 global $DB, $OUTPUT, $USER;
798 $perpage = $exclusivemode ?
20 : 5;
800 // Build the SQL query.
801 $ctxselect = context_helper
::get_preload_record_columns_sql('ctx');
802 $query = "SELECT dr.id, dr.dataid, dr.approved, d.timeviewfrom, d.timeviewto, dr.groupid, d.approval, dr.userid,
803 d.requiredentriestoview, cm.id AS cmid, c.id AS courseid, c.shortname, c.fullname, $ctxselect
804 FROM {data_records} dr
809 JOIN {course_modules} cm
810 ON cm.module = m.id AND cm.instance = d.id
811 JOIN {tag_instance} tt
816 ON ctx.instanceid = cm.id AND ctx.contextlevel = :coursemodulecontextlevel
817 WHERE tt.itemtype = :itemtype
818 AND tt.tagid = :tagid
819 AND tt.component = :component
820 AND cm.deletioninprogress = 0
821 AND dr.id %ITEMFILTER%
822 AND c.id %COURSEFILTER%";
825 'itemtype' => 'data_records',
827 'component' => 'mod_data',
828 'coursemodulecontextlevel' => CONTEXT_MODULE
832 $context = $ctx ? context
::instance_by_id($ctx) : context_system
::instance();
833 $query .= $rec ?
' AND (ctx.id = :contextid OR ctx.path LIKE :path)' : ' AND ctx.id = :contextid';
834 $params['contextid'] = $context->id
;
835 $params['path'] = $context->path
. '/%';
838 $query .= " ORDER BY ";
840 // In order-clause specify that modules from inside "fromctx" context should be returned first.
841 $fromcontext = context
::instance_by_id($fromctx);
842 $query .= ' (CASE WHEN ctx.id = :fromcontextid OR ctx.path LIKE :frompath THEN 0 ELSE 1 END),';
843 $params['fromcontextid'] = $fromcontext->id
;
844 $params['frompath'] = $fromcontext->path
. '/%';
846 $query .= ' c.sortorder, cm.id, dr.id';
848 $totalpages = $page +
1;
850 // Use core_tag_index_builder to build and filter the list of items.
851 $builder = new core_tag_index_builder('mod_data', 'data_records', $query, $params, $page * $perpage, $perpage +
1);
854 $activitygroupmode = [];
857 while ($item = $builder->has_item_that_needs_access_check()) {
858 context_helper
::preload_from_record($item);
859 $modinfo = get_fast_modinfo($item->courseid
);
860 $cm = $modinfo->get_cm($item->cmid
);
861 $context = \context_module
::instance($cm->id
);
862 $courseid = $item->courseid
;
864 if (!$builder->can_access_course($courseid)) {
865 $builder->set_accessible($item, false);
869 if (!$cm->uservisible
) {
870 $builder->set_accessible($item, false);
874 if (!has_capability('mod/data:viewentry', $context)) {
875 $builder->set_accessible($item, false);
879 if ($USER->id
!= $item->userid
&& (($item->timeviewfrom
&& $now < $item->timeviewfrom
)
880 ||
($item->timeviewto
&& $now > $item->timeviewto
))) {
881 $builder->set_accessible($item, false);
885 if ($USER->id
!= $item->userid
&& $item->approval
&& !$item->approved
) {
886 $builder->set_accessible($item, false);
890 if ($item->requiredentriestoview
) {
891 if (!isset($entrycount[$item->dataid
])) {
892 $entrycount[$item->dataid
] = $DB->count_records('data_records', array('dataid' => $item->dataid
));
894 $sufficiententries = $item->requiredentriestoview
> $entrycount[$item->dataid
];
895 $builder->set_accessible($item, $sufficiententries);
898 if (!isset($activitygroupmode[$cm->id
])) {
899 $activitygroupmode[$cm->id
] = groups_get_activity_groupmode($cm);
902 if (!isset($usergroups[$item->groupid
])) {
903 $usergroups[$item->groupid
] = groups_is_member($item->groupid
, $USER->id
);
906 if ($activitygroupmode[$cm->id
] == SEPARATEGROUPS
&& !$usergroups[$item->groupid
]) {
907 $builder->set_accessible($item, false);
911 $builder->set_accessible($item, true);
914 $items = $builder->get_items();
915 if (count($items) > $perpage) {
916 $totalpages = $page +
2; // We don't need exact page count, just indicate that the next page exists.
920 // Build the display contents.
922 $tagfeed = new core_tag\output\tagfeed
();
923 foreach ($items as $item) {
924 context_helper
::preload_from_record($item);
925 $modinfo = get_fast_modinfo($item->courseid
);
926 $cm = $modinfo->get_cm($item->cmid
);
927 $pageurl = new moodle_url('/mod/data/view.php', array(
932 if (!isset($titlefields[$item->dataid
])) {
933 $titlefields[$item->dataid
] = data_get_tag_title_field($item->dataid
);
936 $pagename = data_get_tag_title_for_entry($titlefields[$item->dataid
], $item);
937 $pagename = html_writer
::link($pageurl, $pagename);
938 $courseurl = course_get_url($item->courseid
, $cm->sectionnum
);
939 $cmname = html_writer
::link($cm->url
, $cm->get_formatted_name());
940 $coursename = format_string($item->fullname
, true, array('context' => context_course
::instance($item->courseid
)));
941 $coursename = html_writer
::link($courseurl, $coursename);
942 $icon = html_writer
::link($pageurl, html_writer
::empty_tag('img', array('src' => $cm->get_icon_url())));
943 $tagfeed->add($icon, $pagename, $cmname . '<br>' . $coursename);
945 $content = $OUTPUT->render_from_template('core_tag/tagfeed', $tagfeed->export_for_template($OUTPUT));
947 return new core_tag\output\tagindex
($tag, 'mod_data', 'data_records', $content, $exclusivemode,
948 $fromctx, $ctx, $rec, $page, $totalpages);
953 * Get the title of a field to show when displaying tag results.
955 * @param int $dataid The id of the data field
956 * @return stdClass The field data from the 'data_fields' table as well as it's priority
958 function data_get_tag_title_field($dataid) {
961 $validfieldtypes = array('text', 'textarea', 'menu', 'radiobutton', 'checkbox', 'multimenu', 'url');
962 $fields = $DB->get_records('data_fields', ['dataid' => $dataid]);
963 $template = $DB->get_field('data', 'addtemplate', ['id' => $dataid]);
964 if (empty($template)) {
965 $data = $DB->get_record('data', ['id' => $dataid]);
966 $template = data_generate_default_template($data, 'addtemplate', 0, false, false);
969 $filteredfields = [];
971 foreach ($fields as $field) {
972 if (!in_array($field->type
, $validfieldtypes)) {
975 $field->addtemplateposition
= strpos($template, '[['.$field->name
.']]');
976 if ($field->addtemplateposition
=== false) {
979 $field->type
= clean_param($field->type
, PARAM_ALPHA
);
980 $filepath = $CFG->dirroot
. '/mod/data/field/' . $field->type
. '/field.class.php';
981 if (!file_exists($filepath)) {
984 require_once($filepath);
985 $classname = 'data_field_' . $field->type
;
986 $field->priority
= $classname::get_priority();
987 $filteredfields[] = $field;
990 $sort = function($record1, $record2) {
991 // If a content's fieldtype is compulsory in the database than it would have priority than any other non-compulsory content.
992 if (($record1->required
&& $record2->required
) ||
(!$record1->required
&& !$record2->required
)) {
993 if ($record1->priority
=== $record2->priority
) {
994 return $record1->id
< $record2->id ?
1 : -1;
997 return $record1->priority
< $record2->priority ?
-1 : 1;
998 } else if ($record1->required
&& !$record2->required
) {
1005 usort($filteredfields, $sort);
1007 return array_shift($filteredfields);
1011 * Get the title of an entry to show when displaying tag results.
1013 * @param stdClass $field The field from the 'data_fields' table
1014 * @param stdClass $entry The entry from the 'data_records' table
1015 * @return string|null It will return the title of the entry or null if the field type is not available.
1017 function data_get_tag_title_for_entry($field, $entry) {
1020 if (!isset($field->type
)) {
1023 $field->type
= clean_param($field->type
, PARAM_ALPHA
);
1024 $filepath = $CFG->dirroot
. '/mod/data/field/' . $field->type
. '/field.class.php';
1025 if (!file_exists($filepath)) {
1028 require_once($filepath);
1030 $classname = 'data_field_' . $field->type
;
1032 FROM {data_content} dc
1033 INNER JOIN {data_fields} df
1034 ON dc.fieldid = df.id
1035 WHERE df.id = :fieldid
1036 AND dc.recordid = :recordid";
1037 $fieldcontents = $DB->get_record_sql($sql, array('recordid' => $entry->id
, 'fieldid' => $field->id
));
1039 return $classname::get_content_value($fieldcontents);
1043 * Search entries in a database.
1045 * @param stdClass $data database object
1046 * @param stdClass $cm course module object
1047 * @param stdClass $context context object
1048 * @param stdClass $mode in which mode we are viewing the database (list, single)
1049 * @param int $currentgroup the current group being used
1050 * @param str $search search for this text in the entry data
1051 * @param str $sort the field to sort by
1052 * @param str $order the order to use when sorting
1053 * @param int $page for pagination, the current page
1054 * @param int $perpage entries per page
1055 * @param bool $advanced whether we are using or not advanced search
1056 * @param array $searcharray when using advanced search, the advanced data to use
1057 * @param stdClass $record if we jsut want this record after doing all the access checks
1058 * @return array the entries found among other data related to the search
1061 function data_search_entries($data, $cm, $context, $mode, $currentgroup, $search = '', $sort = null, $order = null, $page = 0,
1062 $perpage = 0, $advanced = null, $searcharray = null, $record = null) {
1065 if ($sort === null) {
1066 $sort = $data->defaultsort
;
1068 if ($order === null) {
1069 $order = ($data->defaultsortdir
== 0) ?
'ASC' : 'DESC';
1071 if ($searcharray === null) {
1072 $searcharray = array();
1075 if (core_text
::strlen($search) < 2) {
1079 $approvecap = has_capability('mod/data:approve', $context);
1080 $canmanageentries = has_capability('mod/data:manageentries', $context);
1082 // If a student is not part of a group and seperate groups is enabled, we don't
1083 // want them seeing all records.
1084 $groupmode = groups_get_activity_groupmode($cm);
1085 if ($currentgroup == 0 && $groupmode == 1 && !$canmanageentries) {
1086 $canviewallrecords = false;
1088 $canviewallrecords = true;
1091 $numentries = data_numentries($data);
1092 $requiredentriesallowed = true;
1093 if (data_get_entries_left_to_view($data, $numentries, $canmanageentries)) {
1094 $requiredentriesallowed = false;
1097 // Initialise the first group of params for advanced searches.
1098 $initialparams = array();
1099 $params = array(); // Named params array.
1101 // Setup group and approve restrictions.
1102 if (!$approvecap && $data->approval
) {
1104 $approveselect = ' AND (r.approved=1 OR r.userid=:myid1) ';
1105 $params['myid1'] = $USER->id
;
1106 $initialparams['myid1'] = $params['myid1'];
1108 $approveselect = ' AND r.approved=1 ';
1111 $approveselect = ' ';
1114 if ($currentgroup) {
1115 $groupselect = " AND (r.groupid = :currentgroup OR r.groupid = 0)";
1116 $params['currentgroup'] = $currentgroup;
1117 $initialparams['currentgroup'] = $params['currentgroup'];
1119 if ($canviewallrecords) {
1122 // If separate groups are enabled and the user isn't in a group or
1123 // a teacher, manager, admin etc, then just show them entries for 'All participants'.
1124 $groupselect = " AND r.groupid = 0";
1128 // Init some variables to be used by advanced search.
1129 $advsearchselect = '';
1132 $advparams = array();
1133 // This is used for the initial reduction of advanced search results with required entries.
1135 $userfieldsapi = \core_user\fields
::for_userpic()->excluding('id');
1136 $namefields = $userfieldsapi->get_sql('u', false, '', '', false)->selects
;
1138 // Find the field we are sorting on.
1139 if ($sort <= 0 ||
!($sortfield = data_get_field_from_id($sort, $data))) {
1143 $ordering = "u.lastname $order, u.firstname $order";
1145 case DATA_FIRSTNAME
:
1146 $ordering = "u.firstname $order, u.lastname $order";
1149 $ordering = "r.approved $order, r.timecreated $order";
1151 case DATA_TIMEMODIFIED
:
1152 $ordering = "r.timemodified $order";
1154 case DATA_TIMEADDED
:
1157 $ordering = "r.timecreated $order";
1160 $what = ' DISTINCT r.id, r.approved, r.timecreated, r.timemodified, r.userid, r.groupid, r.dataid, ' . $namefields;
1161 $count = ' COUNT(DISTINCT c.recordid) ';
1162 $tables = '{data_content} c,{data_records} r, {user} u ';
1163 $where = 'WHERE c.recordid = r.id
1164 AND r.dataid = :dataid
1165 AND r.userid = u.id ';
1166 $params['dataid'] = $data->id
;
1167 $sortorder = " ORDER BY $ordering, r.id $order";
1170 // If requiredentries is not reached, only show current user's entries.
1171 if (!$requiredentriesallowed) {
1172 $where .= ' AND u.id = :myid2 ';
1173 $entrysql = ' AND r.userid = :myid3 ';
1174 $params['myid2'] = $USER->id
;
1175 $initialparams['myid3'] = $params['myid2'];
1179 $searchselect = " AND (".$DB->sql_like('c.content', ':search1', false)."
1180 OR ".$DB->sql_like('u.firstname', ':search2', false)."
1181 OR ".$DB->sql_like('u.lastname', ':search3', false)." ) ";
1182 $params['search1'] = "%$search%";
1183 $params['search2'] = "%$search%";
1184 $params['search3'] = "%$search%";
1186 $searchselect = ' ';
1191 $sortcontent = $DB->sql_compare_text('s.' . $sortfield->get_sort_field());
1192 $sortcontentfull = $sortfield->get_sort_sql($sortcontent);
1194 $what = ' DISTINCT r.id, r.approved, r.timecreated, r.timemodified, r.userid, r.groupid, r.dataid, ' . $namefields . ',
1195 ' . $sortcontentfull . ' AS sortorder ';
1196 $count = ' COUNT(DISTINCT c.recordid) ';
1197 $tables = '{data_content} c, {data_records} r, {user} u ';
1198 $where = 'WHERE c.recordid = r.id
1199 AND r.dataid = :dataid
1200 AND r.userid = u.id ';
1202 $where .= 'AND s.fieldid = :sort AND s.recordid = r.id';
1203 $tables .= ',{data_content} s ';
1205 $params['dataid'] = $data->id
;
1206 $params['sort'] = $sort;
1207 $sortorder = ' ORDER BY sortorder '.$order.' , r.id ASC ';
1210 // If requiredentries is not reached, only show current user's entries.
1211 if (!$requiredentriesallowed) {
1212 $where .= ' AND u.id = :myid2';
1213 $entrysql = ' AND r.userid = :myid3';
1214 $params['myid2'] = $USER->id
;
1215 $initialparams['myid3'] = $params['myid2'];
1219 $searchselect = " AND (".$DB->sql_like('c.content', ':search1', false)." OR
1220 ".$DB->sql_like('u.firstname', ':search2', false)." OR
1221 ".$DB->sql_like('u.lastname', ':search3', false)." ) ";
1222 $params['search1'] = "%$search%";
1223 $params['search2'] = "%$search%";
1224 $params['search3'] = "%$search%";
1226 $searchselect = ' ';
1230 // To actually fetch the records.
1232 $fromsql = "FROM $tables $advtables $where $advwhere $groupselect $approveselect $searchselect $advsearchselect";
1233 $allparams = array_merge($params, $advparams);
1235 // Provide initial sql statements and parameters to reduce the number of total records.
1236 $initialselect = $groupselect . $approveselect . $entrysql;
1238 $recordids = data_get_all_recordids($data->id
, $initialselect, $initialparams);
1239 $newrecordids = data_get_advance_search_ids($recordids, $searcharray, $data->id
);
1240 $selectdata = $where . $groupselect . $approveselect;
1242 if (!empty($advanced)) {
1243 $advancedsearchsql = data_get_advanced_search_sql($sort, $data, $newrecordids, $selectdata, $sortorder);
1244 $sqlselect = $advancedsearchsql['sql'];
1245 $allparams = array_merge($allparams, $advancedsearchsql['params']);
1246 $totalcount = count($newrecordids);
1248 $sqlselect = "SELECT $what $fromsql $sortorder";
1249 $sqlcountselect = "SELECT $count $fromsql";
1250 $totalcount = $DB->count_records_sql($sqlcountselect, $allparams);
1253 // Work out the paging numbers and counts.
1254 if (empty($searchselect) && empty($advsearchselect)) {
1255 $maxcount = $totalcount;
1257 $maxcount = count($recordids);
1260 if ($record) { // We need to just show one, so where is it in context?
1264 // TODO MDL-33797 - Reduce this or consider redesigning the paging system.
1265 if ($allrecordids = $DB->get_fieldset_sql($sqlselect, $allparams)) {
1266 $page = (int)array_search($record->id
, $allrecordids);
1267 unset($allrecordids);
1269 } else if ($mode == 'single') { // We rely on ambient $page settings
1273 $nowperpage = $perpage;
1276 // Get the actual records.
1277 if (!$records = $DB->get_records_sql($sqlselect, $allparams, $page * $nowperpage, $nowperpage)) {
1279 if ($record) { // Something was requested so try to show that at least (bug 5132)
1280 if (data_can_view_record($data, $record, $currentgroup, $canmanageentries)) {
1281 // OK, we can show this one
1282 $records = array($record->id
=> $record);
1289 return [$records, $maxcount, $totalcount, $page, $nowperpage, $sort, $mode];
1293 * Check if the current user can view the given record.
1295 * @param stdClass $data database record
1296 * @param stdClass $record the record (entry) to check
1297 * @param int $currentgroup current group
1298 * @param bool $canmanageentries if the user can manage entries
1299 * @return bool true if the user can view the entry
1302 function data_can_view_record($data, $record, $currentgroup, $canmanageentries) {
1305 if ($canmanageentries ||
empty($data->approval
) ||
1306 $record->approved ||
(isloggedin() && $record->userid
== $USER->id
)) {
1308 if (!$currentgroup ||
$record->groupid
== $currentgroup ||
$record->groupid
== 0) {
1316 * Return all the field instances for a given database.
1318 * @param stdClass $data database object
1319 * @return array field instances
1322 function data_get_field_instances($data) {
1326 if ($fields = $DB->get_records('data_fields', array('dataid' => $data->id
), 'id')) {
1327 foreach ($fields as $field) {
1328 $instances[] = data_get_field($field, $data);
1335 * Build the search array.
1337 * @param stdClass $data the database object
1338 * @param bool $paging if paging is being used
1339 * @param array $searcharray the current search array (saved by session)
1340 * @param array $defaults default values for the searchable fields
1341 * @param str $fn the first name to search (optional)
1342 * @param str $ln the last name to search (optional)
1343 * @return array the search array and plain search build based on the different elements
1346 function data_build_search_array($data, $paging, $searcharray, $defaults = null, $fn = '', $ln = '') {
1351 $fields = $DB->get_records('data_fields', array('dataid' => $data->id
));
1353 if (!empty($fields)) {
1354 foreach ($fields as $field) {
1355 $searchfield = data_get_field_from_id($field->id
, $data);
1356 // Get field data to build search sql with. If paging is false, get from user.
1357 // If paging is true, get data from $searcharray which is obtained from the $SESSION (see line 116).
1358 if (!$paging && $searchfield->type
!= 'unknown') {
1359 $val = $searchfield->parse_search_field($defaults);
1361 // Set value from session if there is a value @ the required index.
1362 if (isset($searcharray[$field->id
])) {
1363 $val = $searcharray[$field->id
]->data
;
1364 } else { // If there is not an entry @ the required index, set value to blank.
1369 $searcharray[$field->id
] = new stdClass();
1370 list($searcharray[$field->id
]->sql
, $searcharray[$field->id
]->params
) = $searchfield->generate_sql('c'.$field->id
, $val);
1371 $searcharray[$field->id
]->data
= $val;
1375 unset($searcharray[$field->id
]);
1380 $rawtagnames = optional_param_array('tags', false, PARAM_TAGLIST
);
1383 $searcharray[DATA_TAGS
] = new stdClass();
1384 $searcharray[DATA_TAGS
]->params
= [];
1385 $searcharray[DATA_TAGS
]->rawtagnames
= $rawtagnames;
1386 $searcharray[DATA_TAGS
]->sql
= '';
1388 unset($searcharray[DATA_TAGS
]);
1393 $fn = optional_param('u_fn', $fn, PARAM_NOTAGS
);
1394 $ln = optional_param('u_ln', $ln, PARAM_NOTAGS
);
1396 $fn = isset($searcharray[DATA_FIRSTNAME
]) ?
$searcharray[DATA_FIRSTNAME
]->data
: '';
1397 $ln = isset($searcharray[DATA_LASTNAME
]) ?
$searcharray[DATA_LASTNAME
]->data
: '';
1400 $searcharray[DATA_FIRSTNAME
] = new stdClass();
1401 $searcharray[DATA_FIRSTNAME
]->sql
= '';
1402 $searcharray[DATA_FIRSTNAME
]->params
= array();
1403 $searcharray[DATA_FIRSTNAME
]->field
= 'u.firstname';
1404 $searcharray[DATA_FIRSTNAME
]->data
= $fn;
1407 unset($searcharray[DATA_FIRSTNAME
]);
1410 $searcharray[DATA_LASTNAME
] = new stdClass();
1411 $searcharray[DATA_LASTNAME
]->sql
= '';
1412 $searcharray[DATA_LASTNAME
]->params
= array();
1413 $searcharray[DATA_LASTNAME
]->field
= 'u.lastname';
1414 $searcharray[DATA_LASTNAME
]->data
= $ln;
1417 unset($searcharray[DATA_LASTNAME
]);
1420 // In case we want to switch to simple search later - there might be multiple values there ;-).
1422 $val = reset($vals);
1423 if (is_string($val)) {
1427 return [$searcharray, $search];
1431 * Approves or unapproves an entry.
1433 * @param int $entryid the entry to approve or unapprove.
1434 * @param bool $approve Whether to approve or unapprove (true for approve false otherwise).
1437 function data_approve_entry($entryid, $approve) {
1440 $newrecord = new stdClass();
1441 $newrecord->id
= $entryid;
1442 $newrecord->approved
= $approve ?
1 : 0;
1443 $DB->update_record('data_records', $newrecord);
1447 * Populate the field contents of a new record with the submitted data.
1448 * An event has been previously triggered upon the creation of the new record in data_add_record().
1450 * @param stdClass $data database object
1451 * @param stdClass $context context object
1452 * @param int $recordid the new record id
1453 * @param array $fields list of fields of the database
1454 * @param stdClass $datarecord the submitted data
1455 * @param stdClass $processeddata pre-processed submitted fields
1458 function data_add_fields_contents_to_new_record($data, $context, $recordid, $fields, $datarecord, $processeddata) {
1461 // Insert a whole lot of empty records to make sure we have them.
1463 foreach ($fields as $field) {
1464 $content = new stdClass();
1465 $content->recordid
= $recordid;
1466 $content->fieldid
= $field->id
;
1467 $records[] = $content;
1470 // Bulk insert the records now. Some records may have no data but all must exist.
1471 $DB->insert_records('data_content', $records);
1473 // Add all provided content.
1474 foreach ($processeddata->fields
as $fieldname => $field) {
1475 $field->update_content($recordid, $datarecord->$fieldname, $fieldname);
1480 * Updates the fields contents of an existing record.
1482 * @param stdClass $data database object
1483 * @param stdClass $record record to update object
1484 * @param stdClass $context context object
1485 * @param stdClass $datarecord the submitted data
1486 * @param stdClass $processeddata pre-processed submitted fields
1489 function data_update_record_fields_contents($data, $record, $context, $datarecord, $processeddata) {
1492 // Reset the approved flag after edit if the user does not have permission to approve their own entries.
1493 if (!has_capability('mod/data:approve', $context)) {
1494 $record->approved
= 0;
1497 // Update the parent record.
1498 $record->timemodified
= time();
1499 $DB->update_record('data_records', $record);
1501 // Update all content.
1502 foreach ($processeddata->fields
as $fieldname => $field) {
1503 $field->update_content($record->id
, $datarecord->$fieldname, $fieldname);
1506 // Trigger an event for updating this record.
1507 $event = \mod_data\event\record_updated
::create(array(
1508 'objectid' => $record->id
,
1509 'context' => $context,
1510 'courseid' => $data->course
,
1512 'dataid' => $data->id
1515 $event->add_record_snapshot('data', $data);