MDL-35669 gravatar Provide default image URL to Gravatar
[moodle.git] / lib / portfoliolib.php
blob0cac1453db556a51f2f3dd6ee89e007c72248889
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
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.
8 //
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/>.
17 /**
18 * 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_portfolio
27 * @category 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)
60 * This class can be used like this:
61 * <code>
62 * $button = new portfolio_add_button();
63 * $button->set_callback_options('name_of_caller_class', array('id' => 6), '/your/mod/lib.php');
64 * $button->render(PORTFOLIO_ADD_FULL_FORM, get_string('addeverythingtoportfolio', 'yourmodule'));
65 * </code>
66 * or like this:
67 * <code>
68 * $button = new portfolio_add_button(array('callbackclass' => 'name_of_caller_class', 'callbackargs' => array('id' => 6), 'callbackfile' => '/your/mod/lib.php'));
69 * $somehtml .= $button->to_html(PORTFOLIO_ADD_TEXT_LINK);
70 * </code>
71 *{@link http://docs.moodle.org/dev/Adding_a_Portfolio_Button_to_a_page} for more information
73 * @package core_portfolio
74 * @category portfolio
75 * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
76 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
78 class portfolio_add_button {
80 /** @var string the name of the callback functions */
81 private $callbackclass;
83 /** @var array can be an array of arguments to pass back to the callback functions (passed by reference)*/
84 private $callbackargs;
86 /** @var string caller file */
87 private $callbackfile;
89 /** @var array array of more specific formats (eg based on mime detection) */
90 private $formats;
92 /** @var array array of portfolio instances */
93 private $instances;
95 /** @var stored_file for single-file exports */
96 private $file;
98 /** @var string for writing specific types of files*/
99 private $intendedmimetype;
102 * Constructor. Either pass the options here or set them using the helper methods.
103 * Generally the code will be clearer if you use the helper methods.
105 * @param array $options keyed array of options:
106 * key 'callbackclass': name of the caller class (eg forum_portfolio_caller')
107 * key 'callbackargs': the array of callback arguments your caller class wants passed to it in the constructor
108 * key 'callbackfile': the file containing the class definition of your caller class.
109 * See set_callback_options for more information on these three.
110 * key 'formats': an array of PORTFOLIO_FORMATS this caller will support
111 * See set_formats or set_format_by_file for more information on this.
113 public function __construct($options=null) {
114 global $SESSION, $CFG;
116 if (empty($CFG->enableportfolios)) {
117 debugging('Building portfolio add button while portfolios is disabled. This code can be optimised.', DEBUG_DEVELOPER);
120 $this->instances = portfolio_instances();
121 if (empty($options)) {
122 return true;
124 $constructoroptions = array('callbackclass', 'callbackargs', 'callbackfile', 'formats');
125 foreach ((array)$options as $key => $value) {
126 if (!in_array($key, $constructoroptions)) {
127 throw new portfolio_button_exception('invalidbuttonproperty', 'portfolio', $key);
129 $this->{$key} = $value;
134 * Function to set the callback options
136 * @param string $class Name of the class containing the callback functions
137 * activity modules should ALWAYS use their name_portfolio_caller
138 * other locations must use something unique
139 * @param array $argarray This can be an array or hash of arguments to pass
140 * back to the callback functions (passed by reference)
141 * these MUST be primatives to be added as hidden form fields.
142 * and the values get cleaned to PARAM_ALPHAEXT or PARAM_FLOAT or PARAM_PATH
143 * @param string $file This can be autodetected if it's in the same file as your caller,
144 * but often, the caller is a script.php and the class in a lib.php
145 * so you can pass it here if necessary.
146 * This path should be relative (ie, not include) dirroot, eg '/mod/forum/lib.php'
148 public function set_callback_options($class, array $argarray, $file=null) {
149 global $CFG;
150 if (empty($file)) {
151 $backtrace = debug_backtrace();
152 if (!array_key_exists(0, $backtrace) || !array_key_exists('file', $backtrace[0]) || !is_readable($backtrace[0]['file'])) {
153 throw new portfolio_button_exception('nocallbackfile', 'portfolio');
156 $file = substr($backtrace[0]['file'], strlen($CFG->dirroot));
157 } else if (!is_readable($CFG->dirroot . $file)) {
158 throw new portfolio_button_exception('nocallbackfile', 'portfolio', '', $file);
160 $this->callbackfile = $file;
161 require_once($CFG->libdir . '/portfolio/caller.php'); // require the base class first
162 require_once($CFG->dirroot . $file);
163 if (!class_exists($class)) {
164 throw new portfolio_button_exception('nocallbackclass', 'portfolio', '', $class);
167 // this will throw exceptions
168 // but should not actually do anything other than verify callbackargs
169 $test = new $class($argarray);
170 unset($test);
172 $this->callbackclass = $class;
173 $this->callbackargs = $argarray;
177 * Sets the available export formats for this content.
178 * This function will also poll the static function in the caller class
179 * and make sure we're not overriding a format that has nothing to do with mimetypes.
180 * Eg: if you pass IMAGE here but the caller can export LEAP2A it will keep LEAP2A as well.
181 * @see portfolio_most_specific_formats for more information
182 * @see portfolio_format_from_mimetype
184 * @param array $formats if the calling code knows better than the static method on the calling class (base_supported_formats).
185 * Eg: if it's going to be a single file, or if you know it's HTML, you can pass it here instead.
186 * This is almost always the case so it should be use all the times
187 * portfolio_format_from_mimetype for how to get the appropriate formats to pass here for uploaded files.
188 * or just call set_format_by_file instead
190 public function set_formats($formats=null) {
191 if (is_string($formats)) {
192 $formats = array($formats);
194 if (empty($formats)) {
195 $formats = array();
197 if (empty($this->callbackclass)) {
198 throw new portfolio_button_exception('noclassbeforeformats', 'portfolio');
200 $callerformats = call_user_func(array($this->callbackclass, 'base_supported_formats'));
201 $this->formats = portfolio_most_specific_formats($formats, $callerformats);
205 * Reset formats to the default,
206 * which is usually what base_supported_formats returns
208 public function reset_formats() {
209 $this->set_formats();
214 * If we already know we have exactly one file,
215 * bypass set_formats and just pass the file
216 * so we can detect the formats by mimetype.
218 * @param stored_file $file file to set the format from
219 * @param array $extraformats any additional formats other than by mimetype
220 * eg leap2a etc
222 public function set_format_by_file(stored_file $file, $extraformats=null) {
223 $this->file = $file;
224 $fileformat = portfolio_format_from_mimetype($file->get_mimetype());
225 if (is_string($extraformats)) {
226 $extraformats = array($extraformats);
227 } else if (!is_array($extraformats)) {
228 $extraformats = array();
230 $this->set_formats(array_merge(array($fileformat), $extraformats));
234 * Correllary this is use to set_format_by_file, but it is also used when there is no stored_file and
235 * when we're writing out a new type of file (like csv or pdf)
237 * @param string $extn the file extension we intend to generate
238 * @param array $extraformats any additional formats other than by mimetype
239 * eg leap2a etc
241 public function set_format_by_intended_file($extn, $extraformats=null) {
242 $mimetype = mimeinfo('type', 'something. ' . $extn);
243 $fileformat = portfolio_format_from_mimetype($mimetype);
244 $this->intendedmimetype = $fileformat;
245 if (is_string($extraformats)) {
246 $extraformats = array($extraformats);
247 } else if (!is_array($extraformats)) {
248 $extraformats = array();
250 $this->set_formats(array_merge(array($fileformat), $extraformats));
254 * Echo the form/button/icon/text link to the page
256 * @param int $format format to display the button or form or icon or link.
257 * See constants PORTFOLIO_ADD_XXX for more info.
258 * optional, defaults to PORTFOLIO_ADD_FULL_FORM
259 * @param string $addstr string to use for the button or icon alt text or link text.
260 * this is whole string, not key. optional, defaults to 'Export to portfolio';
262 public function render($format=null, $addstr=null) {
263 echo $this->to_html($format, $addstr);
267 * Returns the form/button/icon/text link as html
269 * @param int $format format to display the button or form or icon or link.
270 * See constants PORTFOLIO_ADD_XXX for more info.
271 * Optional, defaults to PORTFOLIO_ADD_FULL_FORM
272 * @param string $addstr string to use for the button or icon alt text or link text.
273 * This is whole string, not key. optional, defaults to 'Add to portfolio';
274 * @return void|string
276 public function to_html($format=null, $addstr=null) {
277 global $CFG, $COURSE, $OUTPUT, $USER;
278 if (!$this->is_renderable()) {
279 return;
281 if (empty($this->callbackclass) || empty($this->callbackfile)) {
282 throw new portfolio_button_exception('mustsetcallbackoptions', 'portfolio');
284 if (empty($this->formats)) {
285 // use the caller defaults
286 $this->set_formats();
288 $url = new moodle_url('/portfolio/add.php');
289 foreach ($this->callbackargs as $key => $value) {
290 if (!empty($value) && !is_string($value) && !is_numeric($value)) {
291 $a = new stdClass();
292 $a->key = $key;
293 $a->value = print_r($value, true);
294 debugging(get_string('nonprimative', 'portfolio', $a));
295 return;
297 $url->param('ca_' . $key, $value);
299 $url->param('sesskey', sesskey());
300 $url->param('callbackfile', $this->callbackfile);
301 $url->param('callbackclass', $this->callbackclass);
302 $url->param('course', (!empty($COURSE)) ? $COURSE->id : 0);
303 $url->param('callerformats', implode(',', $this->formats));
304 $mimetype = null;
305 if ($this->file instanceof stored_file) {
306 $mimetype = $this->file->get_mimetype();
307 } else if ($this->intendedmimetype) {
308 $mimetype = $this->intendedmimetype;
310 $selectoutput = '';
311 if (count($this->instances) == 1) {
312 $tmp = array_values($this->instances);
313 $instance = $tmp[0];
315 $formats = portfolio_supported_formats_intersect($this->formats, $instance->supported_formats());
316 if (count($formats) == 0) {
317 // bail. no common formats.
318 //debugging(get_string('nocommonformats', 'portfolio', (object)array('location' => $this->callbackclass, 'formats' => implode(',', $this->formats))));
319 return;
321 if ($error = portfolio_instance_sanity_check($instance)) {
322 // bail, plugin is misconfigured
323 //debugging(get_string('instancemisconfigured', 'portfolio', get_string($error[$instance->get('id')], 'portfolio_' . $instance->get('plugin'))));
324 return;
326 if (!$instance->allows_multiple_exports() && $already = portfolio_existing_exports($USER->id, $instance->get('plugin'))) {
327 //debugging(get_string('singleinstancenomultiallowed', 'portfolio'));
328 return;
330 if ($mimetype&& !$instance->file_mime_check($mimetype)) {
331 // bail, we have a specific file or mimetype and this plugin doesn't support it
332 //debugging(get_string('mimecheckfail', 'portfolio', (object)array('plugin' => $instance->get('plugin'), 'mimetype' => $mimetype)));
333 return;
335 $url->param('instance', $instance->get('id'));
337 else {
338 if (!$selectoutput = portfolio_instance_select($this->instances, $this->formats, $this->callbackclass, $mimetype, 'instance', true)) {
339 return;
342 // if we just want a url to redirect to, do it now
343 if ($format == PORTFOLIO_ADD_FAKE_URL) {
344 return $url->out(false);
347 if (empty($addstr)) {
348 $addstr = get_string('addtoportfolio', 'portfolio');
350 if (empty($format)) {
351 $format = PORTFOLIO_ADD_FULL_FORM;
354 $formoutput = '<form method="post" action="' . $CFG->wwwroot . '/portfolio/add.php" id="portfolio-add-button">' . "\n";
355 $formoutput .= html_writer::input_hidden_params($url);
356 $linkoutput = '<a class="portfolio-add-link" title="'.$addstr.'" href="' . $url->out();
358 switch ($format) {
359 case PORTFOLIO_ADD_FULL_FORM:
360 $formoutput .= $selectoutput;
361 $formoutput .= "\n" . '<input type="submit" value="' . $addstr .'" />';
362 $formoutput .= "\n" . '</form>';
363 break;
364 case PORTFOLIO_ADD_ICON_FORM:
365 $formoutput .= $selectoutput;
366 $formoutput .= "\n" . '<input class="portfolio-add-icon" type="image" src="' . $OUTPUT->pix_url('t/portfolioadd') . '" alt=' . $addstr .'" />';
367 $formoutput .= "\n" . '</form>';
368 break;
369 case PORTFOLIO_ADD_ICON_LINK:
370 $linkoutput .= '"><img class="portfolio-add-icon iconsmall" src="' . $OUTPUT->pix_url('t/portfolioadd') . '" alt="' . $addstr .'" /></a>';
371 break;
372 case PORTFOLIO_ADD_TEXT_LINK:
373 $linkoutput .= '">' . $addstr .'</a>';
374 break;
375 default:
376 debugging(get_string('invalidaddformat', 'portfolio', $format));
378 $output = (in_array($format, array(PORTFOLIO_ADD_FULL_FORM, PORTFOLIO_ADD_ICON_FORM)) ? $formoutput : $linkoutput);
379 return $output;
383 * Perform some internal checks.
384 * These are not errors, just situations
385 * where it's not appropriate to add the button
387 * @return bool
389 private function is_renderable() {
390 global $CFG;
391 if (empty($CFG->enableportfolios)) {
392 return false;
394 if (defined('PORTFOLIO_INTERNAL')) {
395 // something somewhere has detected a risk of this being called during inside the preparation
396 // eg forum_print_attachments
397 return false;
399 if (empty($this->instances) || count($this->instances) == 0) {
400 return false;
402 return true;
406 * Getter for $format property
408 * @return array
410 public function get_formats() {
411 return $this->formats;
415 * Getter for $callbackargs property
417 * @return array
419 public function get_callbackargs() {
420 return $this->callbackargs;
424 * Getter for $callbackfile property
426 * @return string
428 public function get_callbackfile() {
429 return $this->callbackfile;
433 * Getter for $callbackclass property
435 * @return string
437 public function get_callbackclass() {
438 return $this->callbackclass;
443 * Returns a drop menu with a list of available instances.
445 * @param array $instances array of portfolio plugin instance objects - the instances to put in the menu
446 * @param array $callerformats array of PORTFOLIO_FORMAT_XXX constants - the formats the caller supports (this is used to filter plugins)
447 * @param string $callbackclass the callback class name - used for debugging only for when there are no common formats
448 * @param string $mimetype if we already know we have exactly one file, or are going to write one, pass it here to do mime filtering.
449 * @param string $selectname the name of the select element. Optional, defaults to instance.
450 * @param bool $return whether to print or return the output. Optional, defaults to print.
451 * @param bool $returnarray if returning, whether to return the HTML or the array of options. Optional, defaults to HTML.
452 * @return void|array|string the html, from <select> to </select> inclusive.
454 function portfolio_instance_select($instances, $callerformats, $callbackclass, $mimetype=null, $selectname='instance', $return=false, $returnarray=false) {
455 global $CFG, $USER;
457 if (empty($CFG->enableportfolios)) {
458 return;
461 $insane = portfolio_instance_sanity_check();
462 $pinsane = portfolio_plugin_sanity_check();
464 $count = 0;
465 $selectoutput = "\n" . '<label class="accesshide" for="instanceid">' . get_string('plugin', 'portfolio') . '</label>';
466 $selectoutput .= "\n" . '<select id="instanceid" name="' . $selectname . '">' . "\n";
467 $existingexports = portfolio_existing_exports_by_plugin($USER->id);
468 foreach ($instances as $instance) {
469 $formats = portfolio_supported_formats_intersect($callerformats, $instance->supported_formats());
470 if (count($formats) == 0) {
471 // bail. no common formats.
472 continue;
474 if (array_key_exists($instance->get('id'), $insane)) {
475 // bail, plugin is misconfigured
476 //debugging(get_string('instanceismisconfigured', 'portfolio', get_string($insane[$instance->get('id')], 'portfolio_' . $instance->get('plugin'))));
477 continue;
478 } else if (array_key_exists($instance->get('plugin'), $pinsane)) {
479 // bail, plugin is misconfigured
480 //debugging(get_string('pluginismisconfigured', 'portfolio', get_string($pinsane[$instance->get('plugin')], 'portfolio_' . $instance->get('plugin'))));
481 continue;
483 if (!$instance->allows_multiple_exports() && in_array($instance->get('plugin'), $existingexports)) {
484 // bail, already exporting something with this plugin and it doesn't support multiple exports
485 continue;
487 if ($mimetype && !$instance->file_mime_check($mimetype)) {
488 //debugging(get_string('mimecheckfail', 'portfolio', (object)array('plugin' => $instance->get('plugin'), 'mimetype' => $mimetype())));
489 // bail, we have a specific file and this plugin doesn't support it
490 continue;
492 $count++;
493 $selectoutput .= "\n" . '<option value="' . $instance->get('id') . '">' . $instance->get('name') . '</option>' . "\n";
494 $options[$instance->get('id')] = $instance->get('name');
496 if (empty($count)) {
497 // bail. no common formats.
498 //debugging(get_string('nocommonformats', 'portfolio', (object)array('location' => $callbackclass, 'formats' => implode(',', $callerformats))));
499 return;
501 $selectoutput .= "\n" . "</select>\n";
502 if (!empty($returnarray)) {
503 return $options;
505 if (!empty($return)) {
506 return $selectoutput;
508 echo $selectoutput;
512 * Return all portfolio instances
514 * @todo MDL-15768 - check capabilities here
515 * @param bool $visibleonly Don't include hidden instances. Defaults to true and will be overridden to true if the next parameter is true
516 * @param bool $useronly Check the visibility preferences and permissions of the logged in user. Defaults to true.
517 * @return array of portfolio instances (full objects, not just database records)
519 function portfolio_instances($visibleonly=true, $useronly=true) {
521 global $DB, $USER;
523 $values = array();
524 $sql = 'SELECT * FROM {portfolio_instance}';
526 if ($visibleonly || $useronly) {
527 $values[] = 1;
528 $sql .= ' WHERE visible = ?';
530 if ($useronly) {
531 $sql .= ' AND id NOT IN (
532 SELECT instance FROM {portfolio_instance_user}
533 WHERE userid = ? AND name = ? AND ' . $DB->sql_compare_text('value') . ' = ?
535 $values = array_merge($values, array($USER->id, 'visible', 0));
537 $sql .= ' ORDER BY name';
539 $instances = array();
540 foreach ($DB->get_records_sql($sql, $values) as $instance) {
541 $instances[$instance->id] = portfolio_instance($instance->id, $instance);
543 return $instances;
547 * Supported formats currently in use.
548 * Canonical place for a list of all formats
549 * that portfolio plugins and callers
550 * can use for exporting content
552 * @return array keyed array of all the available export formats (constant => classname)
554 function portfolio_supported_formats() {
555 return array(
556 PORTFOLIO_FORMAT_FILE => 'portfolio_format_file',
557 PORTFOLIO_FORMAT_IMAGE => 'portfolio_format_image',
558 PORTFOLIO_FORMAT_RICHHTML => 'portfolio_format_richhtml',
559 PORTFOLIO_FORMAT_PLAINHTML => 'portfolio_format_plainhtml',
560 PORTFOLIO_FORMAT_TEXT => 'portfolio_format_text',
561 PORTFOLIO_FORMAT_VIDEO => 'portfolio_format_video',
562 PORTFOLIO_FORMAT_PDF => 'portfolio_format_pdf',
563 PORTFOLIO_FORMAT_DOCUMENT => 'portfolio_format_document',
564 PORTFOLIO_FORMAT_SPREADSHEET => 'portfolio_format_spreadsheet',
565 PORTFOLIO_FORMAT_PRESENTATION => 'portfolio_format_presentation',
566 /*PORTFOLIO_FORMAT_MBKP, */ // later
567 PORTFOLIO_FORMAT_LEAP2A => 'portfolio_format_leap2a',
568 PORTFOLIO_FORMAT_RICH => 'portfolio_format_rich',
573 * Deduce export format from file mimetype
574 * This function returns the revelant portfolio export format
575 * which is used to determine which portfolio plugins can be used
576 * for exporting this content
577 * according to the given mime type
578 * this only works when exporting exactly <b>one</b> file, or generating a new one
579 * (like a pdf or csv export)
581 * @param string $mimetype (usually $file->get_mimetype())
582 * @return string the format constant (see PORTFOLIO_FORMAT_XXX constants)
584 function portfolio_format_from_mimetype($mimetype) {
585 global $CFG;
586 static $alreadymatched;
587 if (empty($alreadymatched)) {
588 $alreadymatched = array();
590 if (array_key_exists($mimetype, $alreadymatched)) {
591 return $alreadymatched[$mimetype];
593 $allformats = portfolio_supported_formats();
594 require_once($CFG->libdir . '/portfolio/formats.php');
595 foreach ($allformats as $format => $classname) {
596 $supportedmimetypes = call_user_func(array($classname, 'mimetypes'));
597 if (!is_array($supportedmimetypes)) {
598 debugging("one of the portfolio format classes, $classname, said it supported something funny for mimetypes, should have been array...");
599 debugging(print_r($supportedmimetypes, true));
600 continue;
602 if (in_array($mimetype, $supportedmimetypes)) {
603 $alreadymatched[$mimetype] = $format;
604 return $format;
607 return PORTFOLIO_FORMAT_FILE; // base case for files...
611 * Intersection of plugin formats and caller formats.
612 * Walks both the caller formats and portfolio plugin formats
613 * and looks for matches (walking the hierarchy as well)
614 * and returns the intersection
616 * @param array $callerformats formats the caller supports
617 * @param array $pluginformats formats the portfolio plugin supports
618 * @return array
620 function portfolio_supported_formats_intersect($callerformats, $pluginformats) {
621 global $CFG;
622 $allformats = portfolio_supported_formats();
623 $intersection = array();
624 foreach ($callerformats as $cf) {
625 if (!array_key_exists($cf, $allformats)) {
626 if (!portfolio_format_is_abstract($cf)) {
627 debugging(get_string('invalidformat', 'portfolio', $cf));
629 continue;
631 require_once($CFG->libdir . '/portfolio/formats.php');
632 $cfobj = new $allformats[$cf]();
633 foreach ($pluginformats as $p => $pf) {
634 if (!array_key_exists($pf, $allformats)) {
635 if (!portfolio_format_is_abstract($pf)) {
636 debugging(get_string('invalidformat', 'portfolio', $pf));
638 unset($pluginformats[$p]); // to avoid the same warning over and over
639 continue;
641 if ($cfobj instanceof $allformats[$pf]) {
642 $intersection[] = $cf;
646 return $intersection;
650 * Tiny helper to figure out whether a portfolio format is abstract
652 * @param string $format the format to test
653 * @return bool
655 function portfolio_format_is_abstract($format) {
656 if (class_exists($format)) {
657 $class = $format;
658 } else if (class_exists('portfolio_format_' . $format)) {
659 $class = 'portfolio_format_' . $format;
660 } else {
661 $allformats = portfolio_supported_formats();
662 if (array_key_exists($format, $allformats)) {
663 $class = $allformats[$format];
666 if (empty($class)) {
667 return true; // it may as well be, we can't instantiate it :)
669 $rc = new ReflectionClass($class);
670 return $rc->isAbstract();
674 * Return the combination of the two arrays of formats with duplicates in terms of specificity removed
675 * and also removes conflicting formats.
676 * Use case: a module is exporting a single file, so the general formats would be FILE and MBKP
677 * while the specific formats would be the specific subclass of FILE based on mime (say IMAGE)
678 * and this function would return IMAGE and MBKP
680 * @param array $specificformats array of more specific formats (eg based on mime detection)
681 * @param array $generalformats array of more general formats (usually more supported)
682 * @return array merged formats with dups removed
684 function portfolio_most_specific_formats($specificformats, $generalformats) {
685 global $CFG;
686 $allformats = portfolio_supported_formats();
687 if (empty($specificformats)) {
688 return $generalformats;
689 } else if (empty($generalformats)) {
690 return $specificformats;
692 $removedformats = array();
693 foreach ($specificformats as $k => $f) {
694 // look for something less specific and remove it, ie outside of the inheritance tree of the current formats.
695 if (!array_key_exists($f, $allformats)) {
696 if (!portfolio_format_is_abstract($f)) {
697 throw new portfolio_button_exception('invalidformat', 'portfolio', $f);
700 if (in_array($f, $removedformats)) {
701 // already been removed from the general list
702 //debugging("skipping $f because it was already removed");
703 unset($specificformats[$k]);
705 require_once($CFG->libdir . '/portfolio/formats.php');
706 $fobj = new $allformats[$f];
707 foreach ($generalformats as $key => $cf) {
708 if (in_array($cf, $removedformats)) {
709 //debugging("skipping $cf because it was already removed");
710 continue;
712 $cfclass = $allformats[$cf];
713 $cfobj = new $allformats[$cf];
714 if ($fobj instanceof $cfclass && $cfclass != get_class($fobj)) {
715 //debugging("unsetting $key $cf because it's not specific enough ($f is better)");
716 unset($generalformats[$key]);
717 $removedformats[] = $cf;
718 continue;
720 // check for conflicts
721 if ($fobj->conflicts($cf)) {
722 //debugging("unsetting $key $cf because it conflicts with $f");
723 unset($generalformats[$key]);
724 $removedformats[] = $cf;
725 continue;
727 if ($cfobj->conflicts($f)) {
728 //debugging("unsetting $key $cf because it reverse-conflicts with $f");
729 $removedformats[] = $cf;
730 unset($generalformats[$key]);
731 continue;
734 //debugging('inside loop');
735 //print_object($generalformats);
738 //debugging('final formats');
739 $finalformats = array_unique(array_merge(array_values($specificformats), array_values($generalformats)));
740 //print_object($finalformats);
741 return $finalformats;
745 * Helper function to return a format object from the constant
747 * @param string $name the constant PORTFOLIO_FORMAT_XXX
748 * @return portfolio_format
750 function portfolio_format_object($name) {
751 global $CFG;
752 require_once($CFG->libdir . '/portfolio/formats.php');
753 $formats = portfolio_supported_formats();
754 return new $formats[$name];
758 * Helper function to return an instance of a plugin (with config loaded)
760 * @param int $instanceid id of instance
761 * @param object $record database row that corresponds to this instance
762 * this is passed to avoid unnecessary lookups
763 * Optional, and the record will be retrieved if null.
764 * @return object of portfolio_plugin_XXX
766 function portfolio_instance($instanceid, $record=null) {
767 global $DB, $CFG;
769 if ($record) {
770 $instance = $record;
771 } else {
772 if (!$instance = $DB->get_record('portfolio_instance', array('id' => $instanceid))) {
773 throw new portfolio_exception('invalidinstance', 'portfolio');
776 require_once($CFG->libdir . '/portfolio/plugin.php');
777 require_once($CFG->dirroot . '/portfolio/'. $instance->plugin . '/lib.php');
778 $classname = 'portfolio_plugin_' . $instance->plugin;
779 return new $classname($instanceid, $instance);
783 * Helper function to call a static function on a portfolio plugin class.
784 * This will figure out the classname and require the right file and call the function.
785 * You can send a variable number of arguments to this function after the first two
786 * and they will be passed on to the function you wish to call.
788 * @param string $plugin name of plugin
789 * @param string $function function to call
790 * @return mixed
792 function portfolio_static_function($plugin, $function) {
793 global $CFG;
795 $pname = null;
796 if (is_object($plugin) || is_array($plugin)) {
797 $plugin = (object)$plugin;
798 $pname = $plugin->name;
799 } else {
800 $pname = $plugin;
803 $args = func_get_args();
804 if (count($args) <= 2) {
805 $args = array();
807 else {
808 array_shift($args);
809 array_shift($args);
812 require_once($CFG->libdir . '/portfolio/plugin.php');
813 require_once($CFG->dirroot . '/portfolio/' . $plugin . '/lib.php');
814 return call_user_func_array(array('portfolio_plugin_' . $plugin, $function), $args);
818 * Helper function to check all the plugins for sanity and set any insane ones to invisible.
820 * @param array $plugins array of supported plugin types
821 * @return array array of insane instances (keys= id, values = reasons (keys for plugin lang)
823 function portfolio_plugin_sanity_check($plugins=null) {
824 global $DB;
825 if (is_string($plugins)) {
826 $plugins = array($plugins);
827 } else if (empty($plugins)) {
828 $plugins = get_plugin_list('portfolio');
829 $plugins = array_keys($plugins);
832 $insane = array();
833 foreach ($plugins as $plugin) {
834 if ($result = portfolio_static_function($plugin, 'plugin_sanity_check')) {
835 $insane[$plugin] = $result;
838 if (empty($insane)) {
839 return array();
841 list($where, $params) = $DB->get_in_or_equal(array_keys($insane));
842 $where = ' plugin ' . $where;
843 $DB->set_field_select('portfolio_instance', 'visible', 0, $where, $params);
844 return $insane;
848 * Helper function to check all the instances for sanity and set any insane ones to invisible.
850 * @param array $instances array of plugin instances
851 * @return array array of insane instances (keys= id, values = reasons (keys for plugin lang)
853 function portfolio_instance_sanity_check($instances=null) {
854 global $DB;
855 if (empty($instances)) {
856 $instances = portfolio_instances(false);
857 } else if (!is_array($instances)) {
858 $instances = array($instances);
861 $insane = array();
862 foreach ($instances as $instance) {
863 if (is_object($instance) && !($instance instanceof portfolio_plugin_base)) {
864 $instance = portfolio_instance($instance->id, $instance);
865 } else if (is_numeric($instance)) {
866 $instance = portfolio_instance($instance);
868 if (!($instance instanceof portfolio_plugin_base)) {
869 debugging('something weird passed to portfolio_instance_sanity_check, not subclass or id');
870 continue;
872 if ($result = $instance->instance_sanity_check()) {
873 $insane[$instance->get('id')] = $result;
876 if (empty($insane)) {
877 return array();
879 list ($where, $params) = $DB->get_in_or_equal(array_keys($insane));
880 $where = ' id ' . $where;
881 $DB->set_field_select('portfolio_instance', 'visible', 0, $where, $params);
882 portfolio_insane_notify_admins($insane, true);
883 return $insane;
887 * Helper function to display a table of plugins (or instances) and reasons for disabling
889 * @param array $insane array of portfolio plugin
890 * @param array $instances if reporting instances rather than whole plugins, pass the array (key = id, value = object) here
891 * @param bool $return option to deliver the report in html format or print it out directly to the page.
892 * @return void|string of portfolio report in html table format
894 function portfolio_report_insane($insane, $instances=false, $return=false) {
895 global $OUTPUT;
896 if (empty($insane)) {
897 return;
900 static $pluginstr;
901 if (empty($pluginstr)) {
902 $pluginstr = get_string('plugin', 'portfolio');
904 if ($instances) {
905 $headerstr = get_string('someinstancesdisabled', 'portfolio');
906 } else {
907 $headerstr = get_string('somepluginsdisabled', 'portfolio');
910 $output = $OUTPUT->notification($headerstr, 'notifyproblem');
911 $table = new html_table();
912 $table->head = array($pluginstr, '');
913 $table->data = array();
914 foreach ($insane as $plugin => $reason) {
915 if ($instances) {
916 $instance = $instances[$plugin];
917 $plugin = $instance->get('plugin');
918 $name = $instance->get('name');
919 } else {
920 $name = $plugin;
922 $table->data[] = array($name, get_string($reason, 'portfolio_' . $plugin));
924 $output .= html_writer::table($table);
925 $output .= '<br /><br /><br />';
927 if ($return) {
928 return $output;
930 echo $output;
935 * Event handler for the portfolio_send event
937 * @param int $eventdata event id
938 * @return bool
940 function portfolio_handle_event($eventdata) {
941 global $CFG;
943 require_once($CFG->libdir . '/portfolio/exporter.php');
944 $exporter = portfolio_exporter::rewaken_object($eventdata);
945 $exporter->process_stage_package();
946 $exporter->process_stage_send();
947 $exporter->save();
948 $exporter->process_stage_cleanup();
949 return true;
953 * Main portfolio cronjob.
954 * Currently just cleans up expired transfer records.
956 * @todo - MDL-15997 - Add hooks in the plugins - either per instance or per plugin
958 function portfolio_cron() {
959 global $DB, $CFG;
961 require_once($CFG->libdir . '/portfolio/exporter.php');
962 if ($expired = $DB->get_records_select('portfolio_tempdata', 'expirytime < ?', array(time()), '', 'id')) {
963 foreach ($expired as $d) {
964 try {
965 $e = portfolio_exporter::rewaken_object($d->id);
966 $e->process_stage_cleanup(true);
967 } catch (Exception $e) {
968 mtrace('Exception thrown in portfolio cron while cleaning up ' . $d->id . ': ' . $e->getMessage());
975 * Helper function to rethrow a caught portfolio_exception as an export exception.
976 * Used because when a portfolio_export exception is thrown the export is cancelled
977 * throws portfolio_export_exceptiog
979 * @param portfolio_exporter $exporter current exporter object
980 * @param object $exception exception to rethrow
982 function portfolio_export_rethrow_exception($exporter, $exception) {
983 throw new portfolio_export_exception($exporter, $exception->errorcode, $exception->module, $exception->link, $exception->a);
987 * Try and determine expected_time for purely file based exports
988 * or exports that might include large file attachments.
990 * @param stored_file|array $totest - either an array of stored_file objects or a single stored_file object
991 * @return string PORTFOLIO_TIME_XXX
993 function portfolio_expected_time_file($totest) {
994 global $CFG;
995 if ($totest instanceof stored_file) {
996 $totest = array($totest);
998 $size = 0;
999 foreach ($totest as $file) {
1000 if (!($file instanceof stored_file)) {
1001 debugging('something weird passed to portfolio_expected_time_file - not stored_file object');
1002 debugging(print_r($file, true));
1003 continue;
1005 $size += $file->get_filesize();
1008 $fileinfo = portfolio_filesize_info();
1010 $moderate = $high = 0; // avoid warnings
1012 foreach (array('moderate', 'high') as $setting) {
1013 $settingname = 'portfolio_' . $setting . '_filesize_threshold';
1014 if (empty($CFG->{$settingname}) || !array_key_exists($CFG->{$settingname}, $fileinfo['options'])) {
1015 debugging("weird or unset admin value for $settingname, using default instead");
1016 $$setting = $fileinfo[$setting];
1017 } else {
1018 $$setting = $CFG->{$settingname};
1022 if ($size < $moderate) {
1023 return PORTFOLIO_TIME_LOW;
1024 } else if ($size < $high) {
1025 return PORTFOLIO_TIME_MODERATE;
1027 return PORTFOLIO_TIME_HIGH;
1032 * The default filesizes and threshold information for file based transfers.
1033 * This shouldn't need to be used outside the admin pages and the portfolio code
1035 * @return array
1037 function portfolio_filesize_info() {
1038 $filesizes = array();
1039 $sizelist = array(10240, 51200, 102400, 512000, 1048576, 2097152, 5242880, 10485760, 20971520, 52428800);
1040 foreach ($sizelist as $size) {
1041 $filesizes[$size] = display_size($size);
1043 return array(
1044 'options' => $filesizes,
1045 'moderate' => 1048576,
1046 'high' => 5242880,
1051 * Try and determine expected_time for purely database based exports
1052 * or exports that might include large parts of a database.
1054 * @param int $recordcount number of records trying to export
1055 * @return string PORTFOLIO_TIME_XXX
1057 function portfolio_expected_time_db($recordcount) {
1058 global $CFG;
1060 if (empty($CFG->portfolio_moderate_dbsize_threshold)) {
1061 set_config('portfolio_moderate_dbsize_threshold', 10);
1063 if (empty($CFG->portfolio_high_dbsize_threshold)) {
1064 set_config('portfolio_high_dbsize_threshold', 50);
1066 if ($recordcount < $CFG->portfolio_moderate_dbsize_threshold) {
1067 return PORTFOLIO_TIME_LOW;
1068 } else if ($recordcount < $CFG->portfolio_high_dbsize_threshold) {
1069 return PORTFOLIO_TIME_MODERATE;
1071 return PORTFOLIO_TIME_HIGH;
1075 * Function to send portfolio report to admins
1077 * @param array $insane array of insane plugins
1078 * @param array $instances (optional) if reporting instances rather than whole plugins
1080 function portfolio_insane_notify_admins($insane, $instances=false) {
1082 global $CFG;
1084 if (defined('ADMIN_EDITING_PORTFOLIO')) {
1085 return true;
1088 $admins = get_admins();
1090 if (empty($admins)) {
1091 return;
1093 if ($instances) {
1094 $instances = portfolio_instances(false, false);
1097 $site = get_site();
1099 $a = new StdClass;
1100 $a->sitename = format_string($site->fullname, true, array('context' => context_course::instance(SITEID)));
1101 $a->fixurl = "$CFG->wwwroot/$CFG->admin/settings.php?section=manageportfolios";
1102 $a->htmllist = portfolio_report_insane($insane, $instances, true);
1103 $a->textlist = '';
1105 foreach ($insane as $k => $reason) {
1106 if ($instances) {
1107 $a->textlist = $instances[$k]->get('name') . ': ' . $reason . "\n";
1108 } else {
1109 $a->textlist = $k . ': ' . $reason . "\n";
1113 $subject = get_string('insanesubject', 'portfolio');
1114 $plainbody = get_string('insanebody', 'portfolio', $a);
1115 $htmlbody = get_string('insanebodyhtml', 'portfolio', $a);
1116 $smallbody = get_string('insanebodysmall', 'portfolio', $a);
1118 foreach ($admins as $admin) {
1119 $eventdata = new stdClass();
1120 $eventdata->modulename = 'portfolio';
1121 $eventdata->component = 'portfolio';
1122 $eventdata->name = 'notices';
1123 $eventdata->userfrom = $admin;
1124 $eventdata->userto = $admin;
1125 $eventdata->subject = $subject;
1126 $eventdata->fullmessage = $plainbody;
1127 $eventdata->fullmessageformat = FORMAT_PLAIN;
1128 $eventdata->fullmessagehtml = $htmlbody;
1129 $eventdata->smallmessage = $smallbody;
1130 message_send($eventdata);
1135 * Setup page export
1137 * @param moodle_page $PAGE global variable from page object
1138 * @param portfolio_caller_base $caller plugin type caller
1140 function portfolio_export_pagesetup($PAGE, $caller) {
1141 // set up the context so that build_navigation works nice
1142 $caller->set_context($PAGE);
1144 list($extranav, $cm) = $caller->get_navigation();
1146 // and now we know the course for sure and maybe the cm, call require_login with it
1147 require_login($PAGE->course, false, $cm);
1149 foreach ($extranav as $navitem) {
1150 $PAGE->navbar->add($navitem['name']);
1152 $PAGE->navbar->add(get_string('exporting', 'portfolio'));
1156 * Get export type id
1158 * @param string $type plugin type
1159 * @param int $userid the user to check for
1160 * @return mixed|bool
1162 function portfolio_export_type_to_id($type, $userid) {
1163 global $DB;
1164 $sql = 'SELECT t.id FROM {portfolio_tempdata} t JOIN {portfolio_instance} i ON t.instance = i.id WHERE t.userid = ? AND i.plugin = ?';
1165 return $DB->get_field_sql($sql, array($userid, $type));
1169 * Return a list of current exports for the given user.
1170 * This will not go through and call rewaken_object, because it's heavy.
1171 * It's really just used to figure out what exports are currently happening.
1172 * This is useful for plugins that don't support multiple exports per session
1174 * @param int $userid the user to check for
1175 * @param string $type (optional) the portfolio plugin to filter by
1176 * @return array
1178 function portfolio_existing_exports($userid, $type=null) {
1179 global $DB;
1180 $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 = ? ';
1181 $values = array($userid);
1182 if ($type) {
1183 $sql .= ' AND i.plugin = ?';
1184 $values[] = $type;
1186 return $DB->get_records_sql($sql, $values);
1190 * Return an array of existing exports by type for a given user.
1191 * This is much more lightweight than existing_exports because it only returns the types, rather than the whole serialised data
1192 * so can be used for checking availability of multiple plugins at the same time.
1193 * @see existing_exports
1195 * @param int $userid the user to check for
1196 * @return array
1198 function portfolio_existing_exports_by_plugin($userid) {
1199 global $DB;
1200 $sql = 'SELECT t.id,i.plugin FROM {portfolio_tempdata} t JOIN {portfolio_instance} i ON t.instance = i.id WHERE t.userid = ? ';
1201 $values = array($userid);
1202 return $DB->get_records_sql_menu($sql, $values);
1206 * Return default common options for {@link format_text()} when preparing a content to be exported.
1207 * It is important not to apply filters and not to clean the HTML in format_text()
1209 * @return stdClass
1211 function portfolio_format_text_options() {
1213 $options = new stdClass();
1214 $options->para = false;
1215 $options->newlines = true;
1216 $options->filter = false;
1217 $options->noclean = true;
1218 $options->overflowdiv = false;
1220 return $options;
1224 * callback function from {@link portfolio_rewrite_pluginfile_urls}
1225 * looks through preg_replace matches and replaces content with whatever the active portfolio export format says
1227 * @param int $contextid module context id
1228 * @param string $component module name (eg:mod_assignment)
1229 * @param string $filearea normal file_area arguments
1230 * @param int $itemid component item id
1231 * @param portfolio_format $format exporter format type
1232 * @param array $options extra options to pass through to the file_output function in the format (optional)
1233 * @param array $matches internal matching
1234 * @return object|array|string
1236 function portfolio_rewrite_pluginfile_url_callback($contextid, $component, $filearea, $itemid, $format, $options, $matches) {
1237 $matches = $matches[0]; // no internal matching
1238 $dom = new DomDocument();
1239 if (!$dom->loadXML($matches)) {
1240 return $matches;
1242 $attributes = array();
1243 foreach ($dom->documentElement->attributes as $attr => $node) {
1244 $attributes[$attr] = $node->value;
1246 // now figure out the file
1247 $fs = get_file_storage();
1248 $key = 'href';
1249 if (!array_key_exists('href', $attributes) && array_key_exists('src', $attributes)) {
1250 $key = 'src';
1252 if (!array_key_exists($key, $attributes)) {
1253 debugging('Couldn\'t find an attribute to use that contains @@PLUGINFILE@@ in portfolio_rewrite_pluginfile');
1254 return $matches;
1256 $filename = substr($attributes[$key], strpos($attributes[$key], '@@PLUGINFILE@@') + strlen('@@PLUGINFILE@@'));
1257 $filepath = '/';
1258 if (strpos($filename, '/') !== 0) {
1259 $bits = explode('/', $filename);
1260 $filename = array_pop($bits);
1261 $filepath = implode('/', $bits);
1263 if (!$file = $fs->get_file($contextid, $component, $filearea, $itemid, $filepath, $filename)) {
1264 debugging("Couldn't find a file from the embedded path info context $contextid component $component filearea $filearea itemid $itemid filepath $filepath name $filename");
1265 return $matches;
1267 if (empty($options)) {
1268 $options = array();
1270 $options['attributes'] = $attributes;
1271 return $format->file_output($file, $options);
1276 * Go through all the @@PLUGINFILE@@ matches in some text,
1277 * extract the file information and pass it back to the portfolio export format
1278 * to regenerate the html to output
1280 * @param string $text the text to search through
1281 * @param int $contextid normal file_area arguments
1282 * @param string $component module name
1283 * @param string $filearea normal file_area arguments
1284 * @param int $itemid normal file_area arguments
1285 * @param portfolio_format $format the portfolio export format
1286 * @param array $options additional options to be included in the plugin file url (optional)
1287 * @return mixed
1289 function portfolio_rewrite_pluginfile_urls($text, $contextid, $component, $filearea, $itemid, $format, $options=null) {
1290 $pattern = '/(<[^<]*?="@@PLUGINFILE@@\/[^>]*?(?:\/>|>.*?<\/[^>]*?>))/';
1291 $callback = partial('portfolio_rewrite_pluginfile_url_callback', $contextid, $component, $filearea, $itemid, $format, $options);
1292 return preg_replace_callback($pattern, $callback, $text);
1294 // this function has to go last, because the regexp screws up syntax highlighting in some editors