Merge branch 'm20_MDL-26672_aiccfix' of git://github.com/danmarsden/moodle
[moodle.git] / lib / portfoliolib.php
blob3a90f1b0943642877be6662ba20a12b051e77067
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
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.
9 //
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/>.
18 /**
19 * This file contains all global functions to do with manipulating portfolios
20 * everything else that is logically namespaced by class is in its own file
21 * in lib/portfolio/ directory.
23 * Major Contributors
24 * - Penny Leach <penny@catalyst.net.nz>
26 * @package core
27 * @subpackage portfolio
28 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
29 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
32 defined('MOODLE_INTERNAL') || die();
34 // require some of the sublibraries first.
35 // this is not an exhaustive list, the others are pulled in as they're needed
36 // so we don't have to always include everything unnecessarily for performance
38 // very lightweight list of constants. always needed and no further dependencies
39 require_once($CFG->libdir . '/portfolio/constants.php');
40 // a couple of exception deinitions. always needed and no further dependencies
41 require_once($CFG->libdir . '/portfolio/exceptions.php'); // exception classes used by portfolio code
42 // The base class for the caller classes. We always need this because we're either drawing a button,
43 // in which case the button needs to know the calling class definition, which requires the base class,
44 // or we're exporting, in which case we need the caller class anyway.
45 require_once($CFG->libdir . '/portfolio/caller.php');
47 // the other dependencies are included on demand:
48 // libdir/portfolio/formats.php - the classes for the export formats
49 // libdir/portfolio/forms.php - all portfolio form classes (requires formslib)
50 // libdir/portfolio/plugin.php - the base class for the export plugins
51 // libdir/portfolio/exporter.php - the exporter class
54 /**
55 * use this to add a portfolio button or icon or form to a page
57 * These class methods do not check permissions. the caller must check permissions first.
58 * Later, during the export process, the caller class is instantiated and the check_permissions method is called
59 * If you are exporting a single file, you should always call set_format_by_file($file)
61 * This class can be used like this:
62 * <code>
63 * $button = new portfolio_add_button();
64 * $button->set_callback_options('name_of_caller_class', array('id' => 6), '/your/mod/lib.php');
65 * $button->render(PORTFOLIO_ADD_FULL_FORM, get_string('addeverythingtoportfolio', 'yourmodule'));
66 * </code>
68 * or like this:
69 * <code>
70 * $button = new portfolio_add_button(array('callbackclass' => 'name_of_caller_class', 'callbackargs' => array('id' => 6), 'callbackfile' => '/your/mod/lib.php'));
71 * $somehtml .= $button->to_html(PORTFOLIO_ADD_TEXT_LINK);
72 * </code>
74 * See {@link http://docs.moodle.org/en/Development:Adding_a_Portfolio_Button_to_a_page} for more information
76 * @package moodlecore
77 * @subpackage portfolio
78 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
79 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
81 class portfolio_add_button {
83 private $callbackclass;
84 private $callbackargs;
85 private $callbackfile;
86 private $formats;
87 private $instances;
88 private $file; // for single-file exports
89 private $intendedmimetype; // for writing specific types of files
91 /**
92 * constructor. either pass the options here or set them using the helper methods.
93 * generally the code will be clearer if you use the helper methods.
95 * @param array $options keyed array of options:
96 * key 'callbackclass': name of the caller class (eg forum_portfolio_caller')
97 * key 'callbackargs': the array of callback arguments your caller class wants passed to it in the constructor
98 * key 'callbackfile': the file containing the class definition of your caller class.
99 * See set_callback_options for more information on these three.
100 * key 'formats': an array of PORTFOLIO_FORMATS this caller will support
101 * See set_formats or set_format_by_file for more information on this.
103 public function __construct($options=null) {
104 global $SESSION, $CFG;
105 $this->instances = portfolio_instances();
106 if (empty($options)) {
107 return true;
109 $constructoroptions = array('callbackclass', 'callbackargs', 'callbackfile', 'formats');
110 foreach ((array)$options as $key => $value) {
111 if (!in_array($key, $constructoroptions)) {
112 throw new portfolio_button_exception('invalidbuttonproperty', 'portfolio', $key);
114 $this->{$key} = $value;
119 * @param string $class name of the class containing the callback functions
120 * activity modules should ALWAYS use their name_portfolio_caller
121 * other locations must use something unique
122 * @param mixed $argarray this can be an array or hash of arguments to pass
123 * back to the callback functions (passed by reference)
124 * these MUST be primatives to be added as hidden form fields.
125 * and the values get cleaned to PARAM_ALPHAEXT or PARAM_NUMBER or PARAM_PATH
126 * @param string $file this can be autodetected if it's in the same file as your caller,
127 * but often, the caller is a script.php and the class in a lib.php
128 * so you can pass it here if necessary.
129 * this path should be relative (ie, not include) dirroot, eg '/mod/forum/lib.php'
131 public function set_callback_options($class, array $argarray, $file=null) {
132 global $CFG;
133 if (empty($file)) {
134 $backtrace = debug_backtrace();
135 if (!array_key_exists(0, $backtrace) || !array_key_exists('file', $backtrace[0]) || !is_readable($backtrace[0]['file'])) {
136 throw new portfolio_button_exception('nocallbackfile', 'portfolio');
139 $file = substr($backtrace[0]['file'], strlen($CFG->dirroot));
140 } else if (!is_readable($CFG->dirroot . $file)) {
141 throw new portfolio_button_exception('nocallbackfile', 'portfolio', '', $file);
143 $this->callbackfile = $file;
144 require_once($CFG->libdir . '/portfolio/caller.php'); // require the base class first
145 require_once($CFG->dirroot . $file);
146 if (!class_exists($class)) {
147 throw new portfolio_button_exception('nocallbackclass', 'portfolio', '', $class);
150 // this will throw exceptions
151 // but should not actually do anything other than verify callbackargs
152 $test = new $class($argarray);
153 unset($test);
155 $this->callbackclass = $class;
156 $this->callbackargs = $argarray;
160 * sets the available export formats for this content
161 * this function will also poll the static function in the caller class
162 * and make sure we're not overriding a format that has nothing to do with mimetypes
163 * eg if you pass IMAGE here but the caller can export LEAP2A it will keep LEAP2A as well.
164 * see portfolio_most_specific_formats for more information
166 * @param array $formats if the calling code knows better than the static method on the calling class (base_supported_formats)
167 * eg, if it's going to be a single file, or if you know it's HTML, you can pass it here instead
168 * this is almost always the case so you should always use this.
169 * {@see portfolio_format_from_mimetype} for how to get the appropriate formats to pass here for uploaded files.
170 * or just call set_format_by_file instead
172 public function set_formats($formats=null) {
173 if (is_string($formats)) {
174 $formats = array($formats);
176 if (empty($formats)) {
177 $formats = array();
179 if (empty($this->callbackclass)) {
180 throw new portfolio_button_exception('noclassbeforeformats', 'portfolio');
182 $callerformats = call_user_func(array($this->callbackclass, 'base_supported_formats'));
183 $this->formats = portfolio_most_specific_formats($formats, $callerformats);
187 * reset formats to the default
188 * which is usually what base_supported_formats returns
190 public function reset_formats() {
191 $this->set_formats();
196 * if we already know we have exactly one file,
197 * bypass set_formats and just pass the file
198 * so we can detect the formats by mimetype.
200 * @param stored_file $file file to set the format from
201 * @param mixed $extraformats any additional formats other than by mimetype
202 * eg leap2a etc
204 public function set_format_by_file(stored_file $file, $extraformats=null) {
205 $this->file = $file;
206 $fileformat = portfolio_format_from_mimetype($file->get_mimetype());
207 if (is_string($extraformats)) {
208 $extraformats = array($extraformats);
209 } else if (!is_array($extraformats)) {
210 $extraformats = array();
212 $this->set_formats(array_merge(array($fileformat), $extraformats));
216 * correllary to set_format_by_file, but this is used when we don't yet have a stored_file
217 * when we're writing out a new type of file (like csv or pdf)
219 * @param string $extn the file extension we intend to generate
220 * @param mixed $extraformats any additional formats other than by mimetype
221 * eg leap2a etc
223 public function set_format_by_intended_file($extn, $extraformats=null) {
224 $mimetype = mimeinfo('type', 'something. ' . $extn);
225 $fileformat = portfolio_format_from_mimetype($mimetype);
226 $this->intendedmimetype = $fileformat;
227 if (is_string($extraformats)) {
228 $extraformats = array($extraformats);
229 } else if (!is_array($extraformats)) {
230 $extraformats = array();
232 $this->set_formats(array_merge(array($fileformat), $extraformats));
236 * echo the form/button/icon/text link to the page
238 * @param int $format format to display the button or form or icon or link.
239 * See constants PORTFOLIO_ADD_XXX for more info.
240 * optional, defaults to PORTFOLIO_ADD_FULL_FORM
241 * @param str $addstr string to use for the button or icon alt text or link text.
242 * this is whole string, not key. optional, defaults to 'Export to portfolio';
244 public function render($format=null, $addstr=null) {
245 echo $this->to_html($format, $addstr);
249 * returns the form/button/icon/text link as html
251 * @param int $format format to display the button or form or icon or link.
252 * See constants PORTFOLIO_ADD_XXX for more info.
253 * optional, defaults to PORTFOLI_ADD_FULL_FORM
254 * @param str $addstr string to use for the button or icon alt text or link text.
255 * this is whole string, not key. optional, defaults to 'Add to portfolio';
257 public function to_html($format=null, $addstr=null) {
258 global $CFG, $COURSE, $OUTPUT, $USER;
259 if (!$this->is_renderable()) {
260 return;
262 if (empty($this->callbackclass) || empty($this->callbackfile)) {
263 throw new portfolio_button_exception('mustsetcallbackoptions', 'portfolio');
265 if (empty($this->formats)) {
266 // use the caller defaults
267 $this->set_formats();
269 $url = new moodle_url('/portfolio/add.php');
270 foreach ($this->callbackargs as $key => $value) {
271 if (!empty($value) && !is_string($value) && !is_numeric($value)) {
272 $a = new stdClass();
273 $a->key = $key;
274 $a->value = print_r($value, true);
275 debugging(get_string('nonprimative', 'portfolio', $a));
276 return;
278 $url->param('ca_' . $key, $value);
280 $url->param('sesskey', sesskey());
281 $url->param('callbackfile', $this->callbackfile);
282 $url->param('callbackclass', $this->callbackclass);
283 $url->param('course', (!empty($COURSE)) ? $COURSE->id : 0);
284 $url->param('callerformats', implode(',', $this->formats));
285 $mimetype = null;
286 if ($this->file instanceof stored_file) {
287 $mimetype = $this->file->get_mimetype();
288 } else if ($this->intendedmimetype) {
289 $mimetype = $this->intendedmimetype;
291 $selectoutput = '';
292 if (count($this->instances) == 1) {
293 $tmp = array_values($this->instances);
294 $instance = $tmp[0];
296 $formats = portfolio_supported_formats_intersect($this->formats, $instance->supported_formats());
297 if (count($formats) == 0) {
298 // bail. no common formats.
299 //debugging(get_string('nocommonformats', 'portfolio', (object)array('location' => $this->callbackclass, 'formats' => implode(',', $this->formats))));
300 return;
302 if ($error = portfolio_instance_sanity_check($instance)) {
303 // bail, plugin is misconfigured
304 //debugging(get_string('instancemisconfigured', 'portfolio', get_string($error[$instance->get('id')], 'portfolio_' . $instance->get('plugin'))));
305 return;
307 if (!$instance->allows_multiple_exports() && $already = portfolio_existing_exports($USER->id, $instance->get('plugin'))) {
308 //debugging(get_string('singleinstancenomultiallowed', 'portfolio'));
309 return;
311 if ($mimetype&& !$instance->file_mime_check($mimetype)) {
312 // bail, we have a specific file or mimetype and this plugin doesn't support it
313 //debugging(get_string('mimecheckfail', 'portfolio', (object)array('plugin' => $instance->get('plugin'), 'mimetype' => $mimetype)));
314 return;
316 $url->param('instance', $instance->get('id'));
318 else {
319 if (!$selectoutput = portfolio_instance_select($this->instances, $this->formats, $this->callbackclass, $mimetype, 'instance', true)) {
320 return;
323 // if we just want a url to redirect to, do it now
324 if ($format == PORTFOLIO_ADD_FAKE_URL) {
325 return $url->out(false);
328 if (empty($addstr)) {
329 $addstr = get_string('addtoportfolio', 'portfolio');
331 if (empty($format)) {
332 $format = PORTFOLIO_ADD_FULL_FORM;
335 $formoutput = '<form method="post" action="' . $CFG->wwwroot . '/portfolio/add.php" id="portfolio-add-button">' . "\n";
336 $formoutput .= html_writer::input_hidden_params($url);
337 $linkoutput = '<a class="portfolio-add-link" title="'.$addstr.'" href="' . $url->out();
339 switch ($format) {
340 case PORTFOLIO_ADD_FULL_FORM:
341 $formoutput .= $selectoutput;
342 $formoutput .= "\n" . '<input type="submit" value="' . $addstr .'" />';
343 $formoutput .= "\n" . '</form>';
344 break;
345 case PORTFOLIO_ADD_ICON_FORM:
346 $formoutput .= $selectoutput;
347 $formoutput .= "\n" . '<input class="portfolio-add-icon" type="image" src="' . $OUTPUT->pix_url('t/portfolioadd') . '" alt=' . $addstr .'" />';
348 $formoutput .= "\n" . '</form>';
349 break;
350 case PORTFOLIO_ADD_ICON_LINK:
351 $linkoutput .= '"><img class="portfolio-add-icon" src="' . $OUTPUT->pix_url('t/portfolioadd') . '" alt="' . $addstr .'" /></a>';
352 break;
353 case PORTFOLIO_ADD_TEXT_LINK:
354 $linkoutput .= '">' . $addstr .'</a>';
355 break;
356 default:
357 debugging(get_string('invalidaddformat', 'portfolio', $format));
359 $output = (in_array($format, array(PORTFOLIO_ADD_FULL_FORM, PORTFOLIO_ADD_ICON_FORM)) ? $formoutput : $linkoutput);
360 return $output;
364 * does some internal checks
365 * these are not errors, just situations
366 * where it's not appropriate to add the button
368 private function is_renderable() {
369 global $CFG;
370 if (empty($CFG->enableportfolios)) {
371 return false;
373 if (defined('PORTFOLIO_INTERNAL')) {
374 // something somewhere has detected a risk of this being called during inside the preparation
375 // eg forum_print_attachments
376 return false;
378 if (empty($this->instances) || count($this->instances) == 0) {
379 return false;
381 return true;
385 * Getter for $format property
386 * @return array
388 public function get_formats() {
389 return $this->formats;
393 * Getter for $callbackargs property
394 * @return array
396 public function get_callbackargs() {
397 return $this->callbackargs;
401 * Getter for $callbackfile property
402 * @return array
404 public function get_callbackfile() {
405 return $this->callbackfile;
409 * Getter for $callbackclass property
410 * @return array
412 public function get_callbackclass() {
413 return $this->callbackclass;
418 * returns a drop menu with a list of available instances.
420 * @param array $instances array of portfolio plugin instance objects - the instances to put in the menu
421 * @param array $callerformats array of PORTFOLIO_FORMAT_XXX constants - the formats the caller supports (this is used to filter plugins)
422 * @param array $callbackclass the callback class name - used for debugging only for when there are no common formats
423 * @param mimetype $mimetype if we already know we have exactly one file, or are going to write one, pass it here to do mime filtering.
424 * @param string $selectname the name of the select element. Optional, defaults to instance.
425 * @param boolean $return whether to print or return the output. Optional, defaults to print.
426 * @param booealn $returnarray if returning, whether to return the HTML or the array of options. Optional, defaults to HTML.
428 * @return string the html, from <select> to </select> inclusive.
430 function portfolio_instance_select($instances, $callerformats, $callbackclass, $mimetype=null, $selectname='instance', $return=false, $returnarray=false) {
431 global $CFG, $USER;
433 if (empty($CFG->enableportfolios)) {
434 return;
437 $insane = portfolio_instance_sanity_check();
438 $pinsane = portfolio_plugin_sanity_check();
440 $count = 0;
441 $selectoutput = "\n" . '<select name="' . $selectname . '">' . "\n";
442 $existingexports = portfolio_existing_exports_by_plugin($USER->id);
443 foreach ($instances as $instance) {
444 $formats = portfolio_supported_formats_intersect($callerformats, $instance->supported_formats());
445 if (count($formats) == 0) {
446 // bail. no common formats.
447 continue;
449 if (array_key_exists($instance->get('id'), $insane)) {
450 // bail, plugin is misconfigured
451 //debugging(get_string('instanceismisconfigured', 'portfolio', get_string($insane[$instance->get('id')], 'portfolio_' . $instance->get('plugin'))));
452 continue;
453 } else if (array_key_exists($instance->get('plugin'), $pinsane)) {
454 // bail, plugin is misconfigured
455 //debugging(get_string('pluginismisconfigured', 'portfolio', get_string($pinsane[$instance->get('plugin')], 'portfolio_' . $instance->get('plugin'))));
456 continue;
458 if (!$instance->allows_multiple_exports() && in_array($instance->get('plugin'), $existingexports)) {
459 // bail, already exporting something with this plugin and it doesn't support multiple exports
460 continue;
462 if ($mimetype && !$instance->file_mime_check($mimetype)) {
463 //debugging(get_string('mimecheckfail', 'portfolio', (object)array('plugin' => $instance->get('plugin'), 'mimetype' => $mimetype())));
464 // bail, we have a specific file and this plugin doesn't support it
465 continue;
467 $count++;
468 $selectoutput .= "\n" . '<option value="' . $instance->get('id') . '">' . $instance->get('name') . '</option>' . "\n";
469 $options[$instance->get('id')] = $instance->get('name');
471 if (empty($count)) {
472 // bail. no common formats.
473 //debugging(get_string('nocommonformats', 'portfolio', (object)array('location' => $callbackclass, 'formats' => implode(',', $callerformats))));
474 return;
476 $selectoutput .= "\n" . "</select>\n";
477 if (!empty($returnarray)) {
478 return $options;
480 if (!empty($return)) {
481 return $selectoutput;
483 echo $selectoutput;
487 * return all portfolio instances
489 * @todo check capabilities here - see MDL-15768
491 * @param boolean visibleonly Don't include hidden instances. Defaults to true and will be overridden to true if the next parameter is true
492 * @param boolean useronly Check the visibility preferences and permissions of the logged in user. Defaults to true.
494 * @return array of portfolio instances (full objects, not just database records)
496 function portfolio_instances($visibleonly=true, $useronly=true) {
498 global $DB, $USER;
500 $values = array();
501 $sql = 'SELECT * FROM {portfolio_instance}';
503 if ($visibleonly || $useronly) {
504 $values[] = 1;
505 $sql .= ' WHERE visible = ?';
507 if ($useronly) {
508 $sql .= ' AND id NOT IN (
509 SELECT instance FROM {portfolio_instance_user}
510 WHERE userid = ? AND name = ? AND ' . $DB->sql_compare_text('value') . ' = ?
512 $values = array_merge($values, array($USER->id, 'visible', 0));
514 $sql .= ' ORDER BY name';
516 $instances = array();
517 foreach ($DB->get_records_sql($sql, $values) as $instance) {
518 $instances[$instance->id] = portfolio_instance($instance->id, $instance);
520 return $instances;
524 * Supported formats currently in use.
526 * Canonical place for a list of all formats
527 * that portfolio plugins and callers
528 * can use for exporting content
530 * @return keyed array of all the available export formats (constant => classname)
532 function portfolio_supported_formats() {
533 return array(
534 PORTFOLIO_FORMAT_FILE => 'portfolio_format_file',
535 PORTFOLIO_FORMAT_IMAGE => 'portfolio_format_image',
536 PORTFOLIO_FORMAT_RICHHTML => 'portfolio_format_richhtml',
537 PORTFOLIO_FORMAT_PLAINHTML => 'portfolio_format_plainhtml',
538 PORTFOLIO_FORMAT_TEXT => 'portfolio_format_text',
539 PORTFOLIO_FORMAT_VIDEO => 'portfolio_format_video',
540 PORTFOLIO_FORMAT_PDF => 'portfolio_format_pdf',
541 PORTFOLIO_FORMAT_DOCUMENT => 'portfolio_format_document',
542 PORTFOLIO_FORMAT_SPREADSHEET => 'portfolio_format_spreadsheet',
543 PORTFOLIO_FORMAT_PRESENTATION => 'portfolio_format_presentation',
544 /*PORTFOLIO_FORMAT_MBKP, */ // later
545 PORTFOLIO_FORMAT_LEAP2A => 'portfolio_format_leap2a',
546 PORTFOLIO_FORMAT_RICH => 'portfolio_format_rich',
551 * Deduce export format from file mimetype
553 * This function returns the revelant portfolio export format
554 * which is used to determine which portfolio plugins can be used
555 * for exporting this content
556 * according to the given mime type
557 * this only works when exporting exactly <b>one</b> file, or generating a new one
558 * (like a pdf or csv export)
560 * @param string $mimetype (usually $file->get_mimetype())
562 * @return string the format constant (see PORTFOLIO_FORMAT_XXX constants)
564 function portfolio_format_from_mimetype($mimetype) {
565 global $CFG;
566 static $alreadymatched;
567 if (empty($alreadymatched)) {
568 $alreadymatched = array();
570 if (array_key_exists($mimetype, $alreadymatched)) {
571 return $alreadymatched[$mimetype];
573 $allformats = portfolio_supported_formats();
574 require_once($CFG->libdir . '/portfolio/formats.php');
575 foreach ($allformats as $format => $classname) {
576 $supportedmimetypes = call_user_func(array($classname, 'mimetypes'));
577 if (!is_array($supportedmimetypes)) {
578 debugging("one of the portfolio format classes, $classname, said it supported something funny for mimetypes, should have been array...");
579 debugging(print_r($supportedmimetypes, true));
580 continue;
582 if (in_array($mimetype, $supportedmimetypes)) {
583 $alreadymatched[$mimetype] = $format;
584 return $format;
587 return PORTFOLIO_FORMAT_FILE; // base case for files...
591 * Intersection of plugin formats and caller formats
593 * Walks both the caller formats and portfolio plugin formats
594 * and looks for matches (walking the hierarchy as well)
595 * and returns the intersection
597 * @param array $callerformats formats the caller supports
598 * @param array $pluginformats formats the portfolio plugin supports
600 function portfolio_supported_formats_intersect($callerformats, $pluginformats) {
601 global $CFG;
602 $allformats = portfolio_supported_formats();
603 $intersection = array();
604 foreach ($callerformats as $cf) {
605 if (!array_key_exists($cf, $allformats)) {
606 if (!portfolio_format_is_abstract($cf)) {
607 debugging(get_string('invalidformat', 'portfolio', $cf));
609 continue;
611 require_once($CFG->libdir . '/portfolio/formats.php');
612 $cfobj = new $allformats[$cf]();
613 foreach ($pluginformats as $p => $pf) {
614 if (!array_key_exists($pf, $allformats)) {
615 if (!portfolio_format_is_abstract($pf)) {
616 debugging(get_string('invalidformat', 'portfolio', $pf));
618 unset($pluginformats[$p]); // to avoid the same warning over and over
619 continue;
621 if ($cfobj instanceof $allformats[$pf]) {
622 $intersection[] = $cf;
626 return $intersection;
630 * tiny helper to figure out whether a portfolio format is abstract
632 * @param string $format the format to test
634 * @retun bool
636 function portfolio_format_is_abstract($format) {
637 if (class_exists($format)) {
638 $class = $format;
639 } else if (class_exists('portfolio_format_' . $format)) {
640 $class = 'portfolio_format_' . $format;
641 } else {
642 $allformats = portfolio_supported_formats();
643 if (array_key_exists($format, $allformats)) {
644 $class = $allformats[$format];
647 if (empty($class)) {
648 return true; // it may as well be, we can't instantiate it :)
650 $rc = new ReflectionClass($class);
651 return $rc->isAbstract();
655 * return the combination of the two arrays of formats with duplicates in terms of specificity removed
656 * and also removes conflicting formats
657 * use case: a module is exporting a single file, so the general formats would be FILE and MBKP
658 * while the specific formats would be the specific subclass of FILE based on mime (say IMAGE)
659 * and this function would return IMAGE and MBKP
661 * @param array $specificformats array of more specific formats (eg based on mime detection)
662 * @param array $generalformats array of more general formats (usually more supported)
664 * @return array merged formats with dups removed
666 function portfolio_most_specific_formats($specificformats, $generalformats) {
667 global $CFG;
668 $allformats = portfolio_supported_formats();
669 if (empty($specificformats)) {
670 return $generalformats;
671 } else if (empty($generalformats)) {
672 return $specificformats;
674 $removedformats = array();
675 foreach ($specificformats as $k => $f) {
676 // look for something less specific and remove it, ie outside of the inheritance tree of the current formats.
677 if (!array_key_exists($f, $allformats)) {
678 if (!portfolio_format_is_abstract($f)) {
679 throw new portfolio_button_exception('invalidformat', 'portfolio', $f);
682 if (in_array($f, $removedformats)) {
683 // already been removed from the general list
684 //debugging("skipping $f because it was already removed");
685 unset($specificformats[$k]);
687 require_once($CFG->libdir . '/portfolio/formats.php');
688 $fobj = new $allformats[$f];
689 foreach ($generalformats as $key => $cf) {
690 if (in_array($cf, $removedformats)) {
691 //debugging("skipping $cf because it was already removed");
692 continue;
694 $cfclass = $allformats[$cf];
695 $cfobj = new $allformats[$cf];
696 if ($fobj instanceof $cfclass && $cfclass != get_class($fobj)) {
697 //debugging("unsetting $key $cf because it's not specific enough ($f is better)");
698 unset($generalformats[$key]);
699 $removedformats[] = $cf;
700 continue;
702 // check for conflicts
703 if ($fobj->conflicts($cf)) {
704 //debugging("unsetting $key $cf because it conflicts with $f");
705 unset($generalformats[$key]);
706 $removedformats[] = $cf;
707 continue;
709 if ($cfobj->conflicts($f)) {
710 //debugging("unsetting $key $cf because it reverse-conflicts with $f");
711 $removedformats[] = $cf;
712 unset($generalformats[$key]);
713 continue;
716 //debugging('inside loop');
717 //print_object($generalformats);
720 //debugging('final formats');
721 $finalformats = array_unique(array_merge(array_values($specificformats), array_values($generalformats)));
722 //print_object($finalformats);
723 return $finalformats;
727 * helper function to return a format object from the constant
729 * @param string $name the constant PORTFOLIO_FORMAT_XXX
731 * @return portfolio_format object
733 function portfolio_format_object($name) {
734 global $CFG;
735 require_once($CFG->libdir . '/portfolio/formats.php');
736 $formats = portfolio_supported_formats();
737 return new $formats[$name];
741 * helper function to return an instance of a plugin (with config loaded)
743 * @param int $instance id of instance
744 * @param array $record database row that corresponds to this instance
745 * this is passed to avoid unnecessary lookups
746 * Optional, and the record will be retrieved if null.
748 * @return subclass of portfolio_plugin_base
750 function portfolio_instance($instanceid, $record=null) {
751 global $DB, $CFG;
753 if ($record) {
754 $instance = $record;
755 } else {
756 if (!$instance = $DB->get_record('portfolio_instance', array('id' => $instanceid))) {
757 throw new portfolio_exception('invalidinstance', 'portfolio');
760 require_once($CFG->libdir . '/portfolio/plugin.php');
761 require_once($CFG->dirroot . '/portfolio/'. $instance->plugin . '/lib.php');
762 $classname = 'portfolio_plugin_' . $instance->plugin;
763 return new $classname($instanceid, $instance);
767 * Helper function to call a static function on a portfolio plugin class
769 * This will figure out the classname and require the right file and call the function.
770 * you can send a variable number of arguments to this function after the first two
771 * and they will be passed on to the function you wish to call.
773 * @param string $plugin name of plugin
774 * @param string $function function to call
776 function portfolio_static_function($plugin, $function) {
777 global $CFG;
779 $pname = null;
780 if (is_object($plugin) || is_array($plugin)) {
781 $plugin = (object)$plugin;
782 $pname = $plugin->name;
783 } else {
784 $pname = $plugin;
787 $args = func_get_args();
788 if (count($args) <= 2) {
789 $args = array();
791 else {
792 array_shift($args);
793 array_shift($args);
796 require_once($CFG->libdir . '/portfolio/plugin.php');
797 require_once($CFG->dirroot . '/portfolio/' . $plugin . '/lib.php');
798 return call_user_func_array(array('portfolio_plugin_' . $plugin, $function), $args);
802 * helper function to check all the plugins for sanity and set any insane ones to invisible.
804 * @param array $plugins to check (if null, defaults to all)
805 * one string will work too for a single plugin.
807 * @return array array of insane instances (keys= id, values = reasons (keys for plugin lang)
809 function portfolio_plugin_sanity_check($plugins=null) {
810 global $DB;
811 if (is_string($plugins)) {
812 $plugins = array($plugins);
813 } else if (empty($plugins)) {
814 $plugins = get_plugin_list('portfolio');
815 $plugins = array_keys($plugins);
818 $insane = array();
819 foreach ($plugins as $plugin) {
820 if ($result = portfolio_static_function($plugin, 'plugin_sanity_check')) {
821 $insane[$plugin] = $result;
824 if (empty($insane)) {
825 return array();
827 list($where, $params) = $DB->get_in_or_equal(array_keys($insane));
828 $where = ' plugin ' . $where;
829 $DB->set_field_select('portfolio_instance', 'visible', 0, $where, $params);
830 return $insane;
834 * helper function to check all the instances for sanity and set any insane ones to invisible.
836 * @param array $instances to check (if null, defaults to all)
837 * one instance or id will work too
839 * @return array array of insane instances (keys= id, values = reasons (keys for plugin lang)
841 function portfolio_instance_sanity_check($instances=null) {
842 global $DB;
843 if (empty($instances)) {
844 $instances = portfolio_instances(false);
845 } else if (!is_array($instances)) {
846 $instances = array($instances);
849 $insane = array();
850 foreach ($instances as $instance) {
851 if (is_object($instance) && !($instance instanceof portfolio_plugin_base)) {
852 $instance = portfolio_instance($instance->id, $instance);
853 } else if (is_numeric($instance)) {
854 $instance = portfolio_instance($instance);
856 if (!($instance instanceof portfolio_plugin_base)) {
857 debugging('something weird passed to portfolio_instance_sanity_check, not subclass or id');
858 continue;
860 if ($result = $instance->instance_sanity_check()) {
861 $insane[$instance->get('id')] = $result;
864 if (empty($insane)) {
865 return array();
867 list ($where, $params) = $DB->get_in_or_equal(array_keys($insane));
868 $where = ' id ' . $where;
869 $DB->set_field_select('portfolio_instance', 'visible', 0, $where, $params);
870 portfolio_insane_notify_admins($insane, true);
871 return $insane;
875 * helper function to display a table of plugins (or instances) and reasons for disabling
877 * @param array $insane array of insane plugins (key = plugin (or instance id), value = reason)
878 * @param array $instances if reporting instances rather than whole plugins, pass the array (key = id, value = object) here
881 function portfolio_report_insane($insane, $instances=false, $return=false) {
882 global $OUTPUT;
883 if (empty($insane)) {
884 return;
887 static $pluginstr;
888 if (empty($pluginstr)) {
889 $pluginstr = get_string('plugin', 'portfolio');
891 if ($instances) {
892 $headerstr = get_string('someinstancesdisabled', 'portfolio');
893 } else {
894 $headerstr = get_string('somepluginsdisabled', 'portfolio');
897 $output = $OUTPUT->notification($headerstr, 'notifyproblem');
898 $table = new html_table();
899 $table->head = array($pluginstr, '');
900 $table->data = array();
901 foreach ($insane as $plugin => $reason) {
902 if ($instances) {
903 $instance = $instances[$plugin];
904 $plugin = $instance->get('plugin');
905 $name = $instance->get('name');
906 } else {
907 $name = $plugin;
909 $table->data[] = array($name, get_string($reason, 'portfolio_' . $plugin));
911 $output .= html_writer::table($table);
912 $output .= '<br /><br /><br />';
914 if ($return) {
915 return $output;
917 echo $output;
922 * event handler for the portfolio_send event
924 function portfolio_handle_event($eventdata) {
925 global $CFG;
927 require_once($CFG->libdir . '/portfolio/exporter.php');
928 $exporter = portfolio_exporter::rewaken_object($eventdata);
929 $exporter->process_stage_package();
930 $exporter->process_stage_send();
931 $exporter->save();
932 $exporter->process_stage_cleanup();
933 return true;
937 * main portfolio cronjob
938 * currently just cleans up expired transfer records.
940 * @todo add hooks in the plugins - either per instance or per plugin
942 function portfolio_cron() {
943 global $DB, $CFG;
945 require_once($CFG->libdir . '/portfolio/exporter.php');
946 if ($expired = $DB->get_records_select('portfolio_tempdata', 'expirytime < ?', array(time()), '', 'id')) {
947 foreach ($expired as $d) {
948 try {
949 $e = portfolio_exporter::rewaken_object($d->id);
950 $e->process_stage_cleanup(true);
951 } catch (Exception $e) {
952 mtrace('Exception thrown in portfolio cron while cleaning up ' . $d->id . ': ' . $e->getMessage());
959 * helper function to rethrow a caught portfolio_exception as an export exception
961 * used because when a portfolio_export exception is thrown the export is cancelled
963 * throws portfolio_export_exceptiog
965 * @param portfolio_exporter $exporter current exporter object
966 * @param exception $exception exception to rethrow
968 * @return void
970 function portfolio_export_rethrow_exception($exporter, $exception) {
971 throw new portfolio_export_exception($exporter, $exception->errorcode, $exception->module, $exception->link, $exception->a);
975 * try and determine expected_time for purely file based exports
976 * or exports that might include large file attachments.
978 * @global object
979 * @param mixed $totest - either an array of stored_file objects or a single stored_file object
980 * @return constant PORTFOLIO_TIME_XXX
982 function portfolio_expected_time_file($totest) {
983 global $CFG;
984 if ($totest instanceof stored_file) {
985 $totest = array($totest);
987 $size = 0;
988 foreach ($totest as $file) {
989 if (!($file instanceof stored_file)) {
990 debugging('something weird passed to portfolio_expected_time_file - not stored_file object');
991 debugging(print_r($file, true));
992 continue;
994 $size += $file->get_filesize();
997 $fileinfo = portfolio_filesize_info();
999 $moderate = $high = 0; // avoid warnings
1001 foreach (array('moderate', 'high') as $setting) {
1002 $settingname = 'portfolio_' . $setting . '_filesize_threshold';
1003 if (empty($CFG->{$settingname}) || !array_key_exists($CFG->{$settingname}, $fileinfo['options'])) {
1004 debugging("weird or unset admin value for $settingname, using default instead");
1005 $$setting = $fileinfo[$setting];
1006 } else {
1007 $$setting = $CFG->{$settingname};
1011 if ($size < $moderate) {
1012 return PORTFOLIO_TIME_LOW;
1013 } else if ($size < $high) {
1014 return PORTFOLIO_TIME_MODERATE;
1016 return PORTFOLIO_TIME_HIGH;
1021 * the default filesizes and threshold information for file based transfers
1022 * this shouldn't need to be used outside the admin pages and the portfolio code
1024 function portfolio_filesize_info() {
1025 $filesizes = array();
1026 $sizelist = array(10240, 51200, 102400, 512000, 1048576, 2097152, 5242880, 10485760, 20971520, 52428800);
1027 foreach ($sizelist as $size) {
1028 $filesizes[$size] = display_size($size);
1030 return array(
1031 'options' => $filesizes,
1032 'moderate' => 1048576,
1033 'high' => 5242880,
1038 * try and determine expected_time for purely database based exports
1039 * or exports that might include large parts of a database
1041 * @global object
1042 * @param integer $recordcount - number of records trying to export
1043 * @return constant PORTFOLIO_TIME_XXX
1045 function portfolio_expected_time_db($recordcount) {
1046 global $CFG;
1048 if (empty($CFG->portfolio_moderate_dbsize_threshold)) {
1049 set_config('portfolio_moderate_dbsize_threshold', 10);
1051 if (empty($CFG->portfolio_high_dbsize_threshold)) {
1052 set_config('portfolio_high_dbsize_threshold', 50);
1054 if ($recordcount < $CFG->portfolio_moderate_dbsize_threshold) {
1055 return PORTFOLIO_TIME_LOW;
1056 } else if ($recordcount < $CFG->portfolio_high_dbsize_threshold) {
1057 return PORTFOLIO_TIME_MODERATE;
1059 return PORTFOLIO_TIME_HIGH;
1063 * @global object
1065 function portfolio_insane_notify_admins($insane, $instances=false) {
1067 global $CFG;
1069 if (defined('ADMIN_EDITING_PORTFOLIO')) {
1070 return true;
1073 $admins = get_admins();
1075 if (empty($admins)) {
1076 return;
1078 if ($instances) {
1079 $instances = portfolio_instances(false, false);
1082 $site = get_site();
1084 $a = new StdClass;
1085 $a->sitename = $site->fullname;
1086 $a->fixurl = "$CFG->wwwroot/$CFG->admin/settings.php?section=manageportfolios";
1087 $a->htmllist = portfolio_report_insane($insane, $instances, true);
1088 $a->textlist = '';
1090 foreach ($insane as $k => $reason) {
1091 if ($instances) {
1092 $a->textlist = $instances[$k]->get('name') . ': ' . $reason . "\n";
1093 } else {
1094 $a->textlist = $k . ': ' . $reason . "\n";
1098 $subject = get_string('insanesubject', 'portfolio');
1099 $plainbody = get_string('insanebody', 'portfolio', $a);
1100 $htmlbody = get_string('insanebodyhtml', 'portfolio', $a);
1101 $smallbody = get_string('insanebodysmall', 'portfolio', $a);
1103 foreach ($admins as $admin) {
1104 $eventdata = new stdClass();
1105 $eventdata->modulename = 'portfolio';
1106 $eventdata->component = 'portfolio';
1107 $eventdata->name = 'notices';
1108 $eventdata->userfrom = $admin;
1109 $eventdata->userto = $admin;
1110 $eventdata->subject = $subject;
1111 $eventdata->fullmessage = $plainbody;
1112 $eventdata->fullmessageformat = FORMAT_PLAIN;
1113 $eventdata->fullmessagehtml = $htmlbody;
1114 $eventdata->smallmessage = $smallbody;
1115 message_send($eventdata);
1119 function portfolio_export_pagesetup($PAGE, $caller) {
1120 // set up the context so that build_navigation works nice
1121 $caller->set_context($PAGE);
1123 list($extranav, $cm) = $caller->get_navigation();
1125 // and now we know the course for sure and maybe the cm, call require_login with it
1126 require_login($PAGE->course, false, $cm);
1128 foreach ($extranav as $navitem) {
1129 $PAGE->navbar->add($navitem['name']);
1131 $PAGE->navbar->add(get_string('exporting', 'portfolio'));
1134 function portfolio_export_type_to_id($type, $userid) {
1135 global $DB;
1136 $sql = 'SELECT t.id FROM {portfolio_tempdata} t JOIN {portfolio_instance} i ON t.instance = i.id WHERE t.userid = ? AND i.plugin = ?';
1137 return $DB->get_field_sql($sql, array($userid, $type));
1141 * return a list of current exports for the given user
1142 * this will not go through and call rewaken_object, because it's heavy
1143 * it's really just used to figure out what exports are currently happening.
1144 * this is useful for plugins that don't support multiple exports per session
1146 * @param int $userid the user to check for
1147 * @param string $type (optional) the portfolio plugin to filter by
1149 * @return array
1151 function portfolio_existing_exports($userid, $type=null) {
1152 global $DB;
1153 $sql = 'SELECT t.*,t.instance,i.plugin,i.name FROM {portfolio_tempdata} t JOIN {portfolio_instance} i ON t.instance = i.id WHERE t.userid = ? ';
1154 $values = array($userid);
1155 if ($type) {
1156 $sql .= ' AND i.plugin = ?';
1157 $values[] = $type;
1159 return $DB->get_records_sql($sql, $values);
1163 * Return an array of existing exports by type for a given user.
1164 * This is much more lightweight than {@see existing_exports} because it only returns the types, rather than the whole serialised data
1165 * so can be used for checking availability of multiple plugins at the same time.
1167 function portfolio_existing_exports_by_plugin($userid) {
1168 global $DB;
1169 $sql = 'SELECT t.id,i.plugin FROM {portfolio_tempdata} t JOIN {portfolio_instance} i ON t.instance = i.id WHERE t.userid = ? ';
1170 $values = array($userid);
1171 return $DB->get_records_sql_menu($sql, $values);
1175 * Return default common options for {@link format_text()} when preparing a content to be exported
1177 * It is important not to apply filters and not to clean the HTML in format_text()
1179 * @return stdClass
1181 function portfolio_format_text_options() {
1183 $options = new stdClass();
1184 $options->para = false;
1185 $options->newlines = true;
1186 $options->filter = false;
1187 $options->noclean = true;
1188 $options->overflowdiv = false;
1190 return $options;
1194 * callback function from {@link portfolio_rewrite_pluginfile_urls}
1195 * looks through preg_replace matches and replaces content with whatever the active portfolio export format says
1197 function portfolio_rewrite_pluginfile_url_callback($contextid, $component, $filearea, $itemid, $format, $options, $matches) {
1198 $matches = $matches[0]; // no internal matching
1199 $dom = new DomDocument();
1200 if (!$dom->loadXML($matches)) {
1201 return $matches;
1203 $attributes = array();
1204 foreach ($dom->documentElement->attributes as $attr => $node) {
1205 $attributes[$attr] = $node->value;
1207 // now figure out the file
1208 $fs = get_file_storage();
1209 $key = 'href';
1210 if (!array_key_exists('href', $attributes) && array_key_exists('src', $attributes)) {
1211 $key = 'src';
1213 if (!array_key_exists($key, $attributes)) {
1214 debugging('Couldn\'t find an attribute to use that contains @@PLUGINFILE@@ in portfolio_rewrite_pluginfile');
1215 return $matches;
1217 $filename = substr($attributes[$key], strpos($attributes[$key], '@@PLUGINFILE@@') + strlen('@@PLUGINFILE@@'));
1218 $filepath = '/';
1219 if (strpos($filename, '/') !== 0) {
1220 $bits = explode('/', $filename);
1221 $filename = array_pop($bits);
1222 $filepath = implode('/', $bits);
1224 if (!$file = $fs->get_file($contextid, $component, $filearea, $itemid, $filepath, $filename)) {
1225 debugging("Couldn't find a file from the embedded path info context $contextid component $component filearea $filearea itemid $itemid filepath $filepath name $filename");
1226 return $matches;
1228 if (empty($options)) {
1229 $options = array();
1231 $options['attributes'] = $attributes;
1232 return $format->file_output($file, $options);
1237 * go through all the @@PLUGINFILE@@ matches in some text,
1238 * extract the file information and pass it back to the portfolio export format
1239 * to regenerate the html to output
1241 * @param string $text the text to search through
1242 * @param int $contextid normal file_area arguments
1243 * @param string $component
1244 * @param string $filearea normal file_area arguments
1245 * @param int $itemid normal file_area arguments
1246 * @param portfolio_format $format the portfolio export format
1247 * @param array $options extra options to pass through to the file_output function in the format (optional)
1249 * @return string
1251 function portfolio_rewrite_pluginfile_urls($text, $contextid, $component, $filearea, $itemid, $format, $options=null) {
1252 $pattern = '/(<[^<]*?="@@PLUGINFILE@@\/[^>]*?(?:\/>|>.*?<\/[^>]*?>))/';
1253 $callback = partial('portfolio_rewrite_pluginfile_url_callback', $contextid, $component, $filearea, $itemid, $format, $options);
1254 return preg_replace_callback($pattern, $callback, $text);
1256 // this function has to go last, because the regexp screws up syntax highlighting in some editors