MDL-39416 do not try to get detailed perflog info before PAGE int
[moodle.git] / lib / portfolio / exporter.php
blob79bfc8f6b4f6239ffb2026c7b772b9fc0cc8387c
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 the class definition for the exporter object.
20 * @package core_portfolio
21 * @copyright 2008 Penny Leach <penny@catalyst.net.nz>
22 * Martin Dougiamas <http://dougiamas.com>
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
28 /**
29 * The class that handles the various stages of the actual export
30 * and the communication between the caller and the portfolio plugin.
32 * This is stored in the database between page requests in serialized base64 encoded form
33 * also contains helper methods for the plugin and caller to use (at the end of the file)
34 * @see get_base_filearea - where to write files to
35 * @see write_new_file - write some content to a file in the export filearea
36 * @see copy_existing_file - copy an existing file into the export filearea
37 * @see get_tempfiles - return list of all files in the export filearea
39 * @package core_portfolio
40 * @category portfolio
41 * @copyright 2008 Penny Leach <penny@catalyst.net.nz>
42 * Martin Dougiamas <http://dougiamas.com>
43 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
45 class portfolio_exporter {
47 /** @var portfolio_caller_base the caller object used during the export */
48 private $caller;
50 /** @var portfolio_plugin_base the portfolio plugin instanced used during the export */
51 private $instance;
53 /** @var bool if there has been no config form displayed to the user */
54 private $noexportconfig;
56 /**
57 * @var stdClass the user currently exporting content always $USER,
58 * but more conveniently placed here
60 private $user;
62 /**
63 * @var string the file to include that contains the class defintion of
64 * the portfolio instance plugin used to re-waken the object after sleep
66 public $instancefile;
68 /**
69 * @var string the file to include that contains the class definition of
70 * the caller object used to re-waken the object after sleep
72 public $callerfile;
74 /** @var int the current stage of the export */
75 private $stage;
77 /** @var bool whether something (usually the portfolio plugin) has forced queuing */
78 private $forcequeue;
80 /**
81 * @var int id of this export matches record in portfolio_tempdata table
82 * and used for itemid for file storage.
84 private $id;
86 /** @var array of stages that have had the portfolio plugin already steal control from them */
87 private $alreadystolen;
89 /**
90 * @var stored_file files that the exporter has written to this temp area keep track of
91 * this in case of duplicates within one export see MDL-16390
93 private $newfilehashes;
95 /**
96 * @var string selected exportformat this is also set in
97 * export_config in the portfolio and caller classes
99 private $format;
101 /** @var bool queued - this is set after the event is triggered */
102 private $queued = false;
104 /** @var int expiry time - set the first time the object is saved out */
105 private $expirytime;
108 * @var bool deleted - this is set during the cleanup routine so
109 * that subsequent save() calls can detect it
111 private $deleted = false;
114 * Construct a new exporter for use
116 * @param portfolio_plugin_base $instance portfolio instance (passed by reference)
117 * @param portfolio_caller_base $caller portfolio caller (passed by reference)
118 * @param string $callerfile path to callerfile (relative to dataroot)
120 public function __construct(&$instance, &$caller, $callerfile) {
121 $this->instance =& $instance;
122 $this->caller =& $caller;
123 if ($instance) {
124 $this->instancefile = 'portfolio/' . $instance->get('plugin') . '/lib.php';
125 $this->instance->set('exporter', $this);
127 $this->callerfile = $callerfile;
128 $this->stage = PORTFOLIO_STAGE_CONFIG;
129 $this->caller->set('exporter', $this);
130 $this->alreadystolen = array();
131 $this->newfilehashes = array();
135 * Generic getter for properties belonging to this instance
136 * <b>outside</b> the subclasses like name, visible etc.
138 * @param string $field property's name
139 * @return portfolio_format|mixed
141 public function get($field) {
142 if ($field == 'format') {
143 return portfolio_format_object($this->format);
144 } else if ($field == 'formatclass') {
145 return $this->format;
147 if (property_exists($this, $field)) {
148 return $this->{$field};
150 $a = (object)array('property' => $field, 'class' => get_class($this));
151 throw new portfolio_export_exception($this, 'invalidproperty', 'portfolio', null, $a);
155 * Generic setter for properties belonging to this instance
156 * <b>outside</b> the subclass like name, visible, etc.
158 * @param string $field property's name
159 * @param mixed $value property's value
160 * @return bool
161 * @throws portfolio_export_exception
163 public function set($field, &$value) {
164 if (property_exists($this, $field)) {
165 $this->{$field} =& $value;
166 if ($field == 'instance') {
167 $this->instancefile = 'portfolio/' . $this->instance->get('plugin') . '/lib.php';
168 $this->instance->set('exporter', $this);
170 $this->dirty = true;
171 return true;
173 $a = (object)array('property' => $field, 'class' => get_class($this));
174 throw new portfolio_export_exception($this, 'invalidproperty', 'portfolio', null, $a);
179 * Sets this export to force queued.
180 * Sometimes plugins need to set this randomly
181 * if an external system changes its mind
182 * about what's supported
184 public function set_forcequeue() {
185 $this->forcequeue = true;
189 * Process the given stage calling whatever functions are necessary
191 * @param int $stage (see PORTFOLIO_STAGE_* constants)
192 * @param bool $alreadystolen used to avoid letting plugins steal control twice.
193 * @return bool whether or not to process the next stage. this is important as the function is called recursively.
195 public function process_stage($stage, $alreadystolen=false) {
196 $this->set('stage', $stage);
197 if ($alreadystolen) {
198 $this->alreadystolen[$stage] = true;
199 } else {
200 if (!array_key_exists($stage, $this->alreadystolen)) {
201 $this->alreadystolen[$stage] = false;
204 if (!$this->alreadystolen[$stage] && $url = $this->instance->steal_control($stage)) {
205 $this->save();
206 redirect($url); // does not return
207 } else {
208 $this->save();
211 $waiting = $this->instance->get_export_config('wait');
212 if ($stage > PORTFOLIO_STAGE_QUEUEORWAIT && empty($waiting)) {
213 $stage = PORTFOLIO_STAGE_FINISHED;
215 $functionmap = array(
216 PORTFOLIO_STAGE_CONFIG => 'config',
217 PORTFOLIO_STAGE_CONFIRM => 'confirm',
218 PORTFOLIO_STAGE_QUEUEORWAIT => 'queueorwait',
219 PORTFOLIO_STAGE_PACKAGE => 'package',
220 PORTFOLIO_STAGE_CLEANUP => 'cleanup',
221 PORTFOLIO_STAGE_SEND => 'send',
222 PORTFOLIO_STAGE_FINISHED => 'finished'
225 $function = 'process_stage_' . $functionmap[$stage];
226 try {
227 if ($this->$function()) {
228 // if we get through here it means control was returned
229 // as opposed to wanting to stop processing
230 // eg to wait for user input.
231 $this->save();
232 $stage++;
233 return $this->process_stage($stage);
234 } else {
235 $this->save();
236 return false;
238 } catch (portfolio_caller_exception $e) {
239 portfolio_export_rethrow_exception($this, $e);
240 } catch (portfolio_plugin_exception $e) {
241 portfolio_export_rethrow_exception($this, $e);
242 } catch (portfolio_export_exception $e) {
243 throw $e;
244 } catch (Exception $e) {
245 debugging(get_string('thirdpartyexception', 'portfolio', get_class($e)));
246 debugging($e);
247 portfolio_export_rethrow_exception($this, $e);
252 * Helper function to return the portfolio instance
254 * @return portfolio_plugin_base subclass
256 public function instance() {
257 return $this->instance;
261 * Helper function to return the caller object
263 * @return portfolio_caller_base subclass
265 public function caller() {
266 return $this->caller;
270 * Processes the 'config' stage of the export
272 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
274 public function process_stage_config() {
275 global $OUTPUT, $CFG;
276 $pluginobj = $callerobj = null;
277 if ($this->instance->has_export_config()) {
278 $pluginobj = $this->instance;
280 if ($this->caller->has_export_config()) {
281 $callerobj = $this->caller;
283 $formats = portfolio_supported_formats_intersect($this->caller->supported_formats(), $this->instance->supported_formats());
284 $expectedtime = $this->instance->expected_time($this->caller->expected_time());
285 if (count($formats) == 0) {
286 // something went wrong, we should not have gotten this far.
287 throw new portfolio_export_exception($this, 'nocommonformats', 'portfolio', null, array('location' => get_class($this->caller), 'formats' => implode(',', $formats)));
289 // even if neither plugin or caller wants any config, we have to let the user choose their format, and decide to wait.
290 if ($pluginobj || $callerobj || count($formats) > 1 || ($expectedtime != PORTFOLIO_TIME_LOW && $expectedtime != PORTFOLIO_TIME_FORCEQUEUE)) {
291 $customdata = array(
292 'instance' => $this->instance,
293 'id' => $this->id,
294 'plugin' => $pluginobj,
295 'caller' => $callerobj,
296 'userid' => $this->user->id,
297 'formats' => $formats,
298 'expectedtime' => $expectedtime,
300 require_once($CFG->libdir . '/portfolio/forms.php');
301 $mform = new portfolio_export_form('', $customdata);
302 if ($mform->is_cancelled()){
303 $this->cancel_request();
304 } else if ($fromform = $mform->get_data()){
305 if (!confirm_sesskey()) {
306 throw new portfolio_export_exception($this, 'confirmsesskeybad');
308 $pluginbits = array();
309 $callerbits = array();
310 foreach ($fromform as $key => $value) {
311 if (strpos($key, 'plugin_') === 0) {
312 $pluginbits[substr($key, 7)] = $value;
313 } else if (strpos($key, 'caller_') === 0) {
314 $callerbits[substr($key, 7)] = $value;
317 $callerbits['format'] = $pluginbits['format'] = $fromform->format;
318 $pluginbits['wait'] = $fromform->wait;
319 if ($expectedtime == PORTFOLIO_TIME_LOW) {
320 $pluginbits['wait'] = 1;
321 $pluginbits['hidewait'] = 1;
322 } else if ($expectedtime == PORTFOLIO_TIME_FORCEQUEUE) {
323 $pluginbits['wait'] = 0;
324 $pluginbits['hidewait'] = 1;
325 $this->forcequeue = true;
327 $callerbits['hideformat'] = $pluginbits['hideformat'] = (count($formats) == 1);
328 $this->caller->set_export_config($callerbits);
329 $this->instance->set_export_config($pluginbits);
330 $this->set('format', $fromform->format);
331 return true;
332 } else {
333 $this->print_header(get_string('configexport', 'portfolio'));
334 echo $OUTPUT->box_start();
335 $mform->display();
336 echo $OUTPUT->box_end();
337 echo $OUTPUT->footer();
338 return false;;
340 } else {
341 $this->noexportconfig = true;
342 $format = array_shift($formats);
343 $config = array(
344 'hidewait' => 1,
345 'wait' => (($expectedtime == PORTFOLIO_TIME_LOW) ? 1 : 0),
346 'format' => $format,
347 'hideformat' => 1
349 $this->set('format', $format);
350 $this->instance->set_export_config($config);
351 $this->caller->set_export_config(array('format' => $format, 'hideformat' => 1));
352 if ($expectedtime == PORTFOLIO_TIME_FORCEQUEUE) {
353 $this->forcequeue = true;
355 return true;
356 // do not break - fall through to confirm
361 * Processes the 'confirm' stage of the export
363 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
365 public function process_stage_confirm() {
366 global $CFG, $DB, $OUTPUT;
368 $previous = $DB->get_records(
369 'portfolio_log',
370 array(
371 'userid' => $this->user->id,
372 'portfolio' => $this->instance->get('id'),
373 'caller_sha1' => $this->caller->get_sha1(),
376 if (isset($this->noexportconfig) && empty($previous)) {
377 return true;
379 $strconfirm = get_string('confirmexport', 'portfolio');
380 $baseurl = $CFG->wwwroot . '/portfolio/add.php?sesskey=' . sesskey() . '&id=' . $this->get('id');
381 $yesurl = $baseurl . '&stage=' . PORTFOLIO_STAGE_QUEUEORWAIT;
382 $nourl = $baseurl . '&cancel=1';
383 $this->print_header(get_string('confirmexport', 'portfolio'));
384 echo $OUTPUT->box_start();
385 echo $OUTPUT->heading(get_string('confirmsummary', 'portfolio'), 3);
386 $mainsummary = array();
387 if (!$this->instance->get_export_config('hideformat')) {
388 $mainsummary[get_string('selectedformat', 'portfolio')] = get_string('format_' . $this->instance->get_export_config('format'), 'portfolio');
390 if (!$this->instance->get_export_config('hidewait')) {
391 $mainsummary[get_string('selectedwait', 'portfolio')] = get_string(($this->instance->get_export_config('wait') ? 'yes' : 'no'));
393 if ($previous) {
394 $previousstr = '';
395 foreach ($previous as $row) {
396 $previousstr .= userdate($row->time);
397 if ($row->caller_class != get_class($this->caller)) {
398 require_once($CFG->dirroot . '/' . $row->caller_file);
399 $previousstr .= ' (' . call_user_func(array($row->caller_class, 'display_name')) . ')';
401 $previousstr .= '<br />';
403 $mainsummary[get_string('exportedpreviously', 'portfolio')] = $previousstr;
405 if (!$csummary = $this->caller->get_export_summary()) {
406 $csummary = array();
408 if (!$isummary = $this->instance->get_export_summary()) {
409 $isummary = array();
411 $mainsummary = array_merge($mainsummary, $csummary, $isummary);
412 $table = new html_table();
413 $table->attributes['class'] = 'generaltable exportsummary';
414 $table->data = array();
415 foreach ($mainsummary as $string => $value) {
416 $table->data[] = array($string, $value);
418 echo html_writer::table($table);
419 echo $OUTPUT->confirm($strconfirm, $yesurl, $nourl);
420 echo $OUTPUT->box_end();
421 echo $OUTPUT->footer();
422 return false;
426 * Processes the 'queueornext' stage of the export
428 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
430 public function process_stage_queueorwait() {
431 $wait = $this->instance->get_export_config('wait');
432 if (empty($wait)) {
433 events_trigger('portfolio_send', $this->id);
434 $this->queued = true;
435 return $this->process_stage_finished(true);
437 return true;
441 * Processes the 'package' stage of the export
443 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
444 * @throws portfolio_export_exception
446 public function process_stage_package() {
447 // now we've agreed on a format,
448 // the caller is given control to package it up however it wants
449 // and then the portfolio plugin is given control to do whatever it wants.
450 try {
451 $this->caller->prepare_package();
452 } catch (portfolio_exception $e) {
453 throw new portfolio_export_exception($this, 'callercouldnotpackage', 'portfolio', null, $e->getMessage());
455 catch (file_exception $e) {
456 throw new portfolio_export_exception($this, 'callercouldnotpackage', 'portfolio', null, $e->getMessage());
458 try {
459 $this->instance->prepare_package();
461 catch (portfolio_exception $e) {
462 throw new portfolio_export_exception($this, 'plugincouldnotpackage', 'portfolio', null, $e->getMessage());
464 catch (file_exception $e) {
465 throw new portfolio_export_exception($this, 'plugincouldnotpackage', 'portfolio', null, $e->getMessage());
467 return true;
471 * Processes the 'cleanup' stage of the export
473 * @param bool $pullok normally cleanup is deferred for pull plugins until after the file is requested from portfolio/file.php
474 * if you want to clean up earlier, pass true here (defaults to false)
475 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
477 public function process_stage_cleanup($pullok=false) {
478 global $CFG, $DB;
480 if (!$pullok && $this->get('instance') && !$this->get('instance')->is_push()) {
481 return true;
483 if ($this->get('instance')) {
484 // might not be set - before export really starts
485 $this->get('instance')->cleanup();
487 $DB->delete_records('portfolio_tempdata', array('id' => $this->id));
488 $fs = get_file_storage();
489 $fs->delete_area_files(SYSCONTEXTID, 'portfolio', 'exporter', $this->id);
490 $this->deleted = true;
491 return true;
495 * Processes the 'send' stage of the export
497 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
499 public function process_stage_send() {
500 // send the file
501 try {
502 $this->instance->send_package();
504 catch (portfolio_plugin_exception $e) {
505 // not catching anything more general here. plugins with dependencies on other libraries that throw exceptions should catch and rethrow.
506 // eg curl exception
507 throw new portfolio_export_exception($this, 'failedtosendpackage', 'portfolio', null, $e->getMessage());
509 // only log push types, pull happens in send_file
510 if ($this->get('instance')->is_push()) {
511 $this->log_transfer();
513 return true;
517 * Log the transfer
519 * this should only be called after the file has been sent
520 * either via push, or sent from a pull request.
522 public function log_transfer() {
523 global $DB;
524 $l = array(
525 'userid' => $this->user->id,
526 'portfolio' => $this->instance->get('id'),
527 'caller_file' => $this->callerfile,
528 'caller_sha1' => $this->caller->get_sha1(),
529 'caller_class' => get_class($this->caller),
530 'continueurl' => $this->instance->get_static_continue_url(),
531 'returnurl' => $this->caller->get_return_url(),
532 'tempdataid' => $this->id,
533 'time' => time(),
535 $DB->insert_record('portfolio_log', $l);
539 * In some cases (mahara) we need to update this after the log has been done
540 * because of MDL-20872
542 * @param string $url link to be recorded to portfolio log
544 public function update_log_url($url) {
545 global $DB;
546 $DB->set_field('portfolio_log', 'continueurl', $url, array('tempdataid' => $this->id));
550 * Processes the 'finish' stage of the export
552 * @param bool $queued let the process to be queued
553 * @return bool whether or not to process the next stage. this is important as the control function is called recursively.
555 public function process_stage_finished($queued=false) {
556 global $OUTPUT;
557 $returnurl = $this->caller->get_return_url();
558 $continueurl = $this->instance->get_interactive_continue_url();
559 $extras = $this->instance->get_extra_finish_options();
561 $key = 'exportcomplete';
562 if ($queued || $this->forcequeue) {
563 $key = 'exportqueued';
564 if ($this->forcequeue) {
565 $key = 'exportqueuedforced';
568 $this->print_header(get_string($key, 'portfolio'), false);
569 self::print_finish_info($returnurl, $continueurl, $extras);
570 echo $OUTPUT->footer();
571 return false;
576 * Local print header function to be reused across the export
578 * @param string $headingstr full language string
579 * @param bool $summary (optional) to print summary, default is set to true
580 * @return void
582 public function print_header($headingstr, $summary=true) {
583 global $OUTPUT, $PAGE;
584 $titlestr = get_string('exporting', 'portfolio');
585 $headerstr = get_string('exporting', 'portfolio');
587 $PAGE->set_title($titlestr);
588 $PAGE->set_heading($headerstr);
589 echo $OUTPUT->header();
590 echo $OUTPUT->heading($headingstr);
592 if (!$summary) {
593 return;
596 echo $OUTPUT->box_start();
597 echo $OUTPUT->box_start();
598 echo $this->caller->heading_summary();
599 echo $OUTPUT->box_end();
600 if ($this->instance) {
601 echo $OUTPUT->box_start();
602 echo $this->instance->heading_summary();
603 echo $OUTPUT->box_end();
605 echo $OUTPUT->box_end();
609 * Cancels a potfolio request and cleans up the tempdata
610 * and redirects the user back to where they started
612 * @param bool $logreturn options to return to porfolio log or caller return page
613 * @return void
614 * @uses exit
616 public function cancel_request($logreturn=false) {
617 global $CFG;
618 if (!isset($this)) {
619 return;
621 $this->process_stage_cleanup(true);
622 if ($logreturn) {
623 redirect($CFG->wwwroot . '/user/portfoliologs.php');
625 redirect($this->caller->get_return_url());
626 exit;
630 * Writes out the contents of this object and all its data to the portfolio_tempdata table and sets the 'id' field.
632 * @return void
634 public function save() {
635 global $DB;
636 if (empty($this->id)) {
637 $r = (object)array(
638 'data' => base64_encode(serialize($this)),
639 'expirytime' => time() + (60*60*24),
640 'userid' => $this->user->id,
641 'instance' => (empty($this->instance)) ? null : $this->instance->get('id'),
643 $this->id = $DB->insert_record('portfolio_tempdata', $r);
644 $this->expirytime = $r->expirytime;
645 $this->save(); // call again so that id gets added to the save data.
646 } else {
647 if (!$r = $DB->get_record('portfolio_tempdata', array('id' => $this->id))) {
648 if (!$this->deleted) {
649 //debugging("tried to save current object, but failed - see MDL-20872");
651 return;
653 $r->data = base64_encode(serialize($this));
654 $r->instance = (empty($this->instance)) ? null : $this->instance->get('id');
655 $DB->update_record('portfolio_tempdata', $r);
660 * Rewakens the data from the database given the id.
661 * Makes sure to load the required files with the class definitions
663 * @param int $id id of data
664 * @return portfolio_exporter
666 public static function rewaken_object($id) {
667 global $DB, $CFG;
668 require_once($CFG->libdir . '/filelib.php');
669 require_once($CFG->libdir . '/portfolio/exporter.php');
670 require_once($CFG->libdir . '/portfolio/caller.php');
671 require_once($CFG->libdir . '/portfolio/plugin.php');
672 if (!$data = $DB->get_record('portfolio_tempdata', array('id' => $id))) {
673 // maybe it's been finished already by a pull plugin
674 // so look in the logs
675 if ($log = $DB->get_record('portfolio_log', array('tempdataid' => $id))) {
676 self::print_cleaned_export($log);
678 throw new portfolio_exception('invalidtempid', 'portfolio');
680 $exporter = unserialize(base64_decode($data->data));
681 if ($exporter->instancefile) {
682 require_once($CFG->dirroot . '/' . $exporter->instancefile);
684 require_once($CFG->dirroot . '/' . $exporter->callerfile);
685 $exporter = unserialize(serialize($exporter));
686 if (!$exporter->get('id')) {
687 // workaround for weird case
688 // where the id doesn't get saved between a new insert
689 // and the subsequent call that sets this field in the serialised data
690 $exporter->set('id', $id);
691 $exporter->save();
693 return $exporter;
697 * Helper function to create the beginnings of a file_record object
698 * to create a new file in the portfolio_temporary working directory.
699 * Use write_new_file or copy_existing_file externally
700 * @see write_new_file
701 * @see copy_existing_file
703 * @param string $name filename of new record
704 * @return object
706 private function new_file_record_base($name) {
707 return (object)array_merge($this->get_base_filearea(), array(
708 'filepath' => '/',
709 'filename' => $name,
714 * Verifies a rewoken object.
715 * Checks to make sure it belongs to the same user and session as is currently in use.
717 * @param bool $readonly if we're reawakening this for a user to just display in the log view, don't verify the sessionkey
718 * @throws portfolio_exception
720 public function verify_rewaken($readonly=false) {
721 global $USER, $CFG;
722 if ($this->get('user')->id != $USER->id) { // make sure it belongs to the right user
723 throw new portfolio_exception('notyours', 'portfolio');
725 if (!$readonly && $this->get('instance') && !$this->get('instance')->allows_multiple_exports()) {
726 $already = portfolio_existing_exports($this->get('user')->id, $this->get('instance')->get('plugin'));
727 $already = array_keys($already);
729 if (array_shift($already) != $this->get('id')) {
731 $a = (object)array(
732 'plugin' => $this->get('instance')->get('plugin'),
733 'link' => $CFG->wwwroot . '/user/portfoliologs.php',
735 throw new portfolio_exception('nomultipleexports', 'portfolio', '', $a);
738 if (!$this->caller->check_permissions()) { // recall the caller permission check
739 throw new portfolio_caller_exception('nopermissions', 'portfolio', $this->caller->get_return_url());
743 * Copies a file from somewhere else in moodle
744 * to the portfolio temporary working directory
745 * associated with this export
747 * @param stored_file $oldfile existing stored file object
748 * @return stored_file|bool new file object
750 public function copy_existing_file($oldfile) {
751 if (array_key_exists($oldfile->get_contenthash(), $this->newfilehashes)) {
752 return $this->newfilehashes[$oldfile->get_contenthash()];
754 $fs = get_file_storage();
755 $file_record = $this->new_file_record_base($oldfile->get_filename());
756 if ($dir = $this->get('format')->get_file_directory()) {
757 $file_record->filepath = '/'. $dir . '/';
759 try {
760 $newfile = $fs->create_file_from_storedfile($file_record, $oldfile->get_id());
761 $this->newfilehashes[$newfile->get_contenthash()] = $newfile;
762 return $newfile;
763 } catch (file_exception $e) {
764 return false;
769 * Writes out some content to a file
770 * in the portfolio temporary working directory
771 * associated with this export.
773 * @param string $content content to write
774 * @param string $name filename to use
775 * @param bool $manifest whether this is the main file or an secondary file (eg attachment)
776 * @return stored_file
778 public function write_new_file($content, $name, $manifest=true) {
779 $fs = get_file_storage();
780 $file_record = $this->new_file_record_base($name);
781 if (empty($manifest) && ($dir = $this->get('format')->get_file_directory())) {
782 $file_record->filepath = '/' . $dir . '/';
784 return $fs->create_file_from_string($file_record, $content);
788 * Zips all files in the temporary directory
790 * @param string $filename name of resulting zipfile (optional, defaults to portfolio-export.zip)
791 * @param string $filepath subpath in the filearea (optional, defaults to final)
792 * @return stored_file|bool resulting stored_file object, or false
794 public function zip_tempfiles($filename='portfolio-export.zip', $filepath='/final/') {
795 $zipper = new zip_packer();
797 list ($contextid, $component, $filearea, $itemid) = array_values($this->get_base_filearea());
798 if ($newfile = $zipper->archive_to_storage($this->get_tempfiles(), $contextid, $component, $filearea, $itemid, $filepath, $filename, $this->user->id)) {
799 return $newfile;
801 return false;
806 * Returns an arary of files in the temporary working directory
807 * for this export.
808 * Always use this instead of the files api directly
810 * @param string $skipfile name of the file to be skipped
811 * @return array of stored_file objects keyed by name
813 public function get_tempfiles($skipfile='portfolio-export.zip') {
814 $fs = get_file_storage();
815 $files = $fs->get_area_files(SYSCONTEXTID, 'portfolio', 'exporter', $this->id, 'sortorder, itemid, filepath, filename', false);
816 if (empty($files)) {
817 return array();
819 $returnfiles = array();
820 foreach ($files as $f) {
821 if ($f->get_filename() == $skipfile) {
822 continue;
824 $returnfiles[$f->get_filepath() . '/' . $f->get_filename()] = $f;
826 return $returnfiles;
830 * Returns the context, filearea, and itemid.
831 * Parts of a filearea (not filepath) to be used by
832 * plugins if they want to do things like zip up the contents of
833 * the temp area to here, or something that can't be done just using
834 * write_new_file, copy_existing_file or get_tempfiles
836 * @return array contextid, filearea, itemid are the keys.
838 public function get_base_filearea() {
839 return array(
840 'contextid' => SYSCONTEXTID,
841 'component' => 'portfolio',
842 'filearea' => 'exporter',
843 'itemid' => $this->id,
848 * Wrapper function to print a friendly error to users
849 * This is generally caused by them hitting an expired transfer
850 * through the usage of the backbutton
852 * @uses exit
854 public static function print_expired_export() {
855 global $CFG, $OUTPUT, $PAGE;
856 $title = get_string('exportexpired', 'portfolio');
857 $PAGE->navbar->add(get_string('exportexpired', 'portfolio'));
858 $PAGE->set_title($title);
859 $PAGE->set_heading($title);
860 echo $OUTPUT->header();
861 echo $OUTPUT->notification(get_string('exportexpireddesc', 'portfolio'));
862 echo $OUTPUT->continue_button($CFG->wwwroot);
863 echo $OUTPUT->footer();
864 exit;
868 * Wrapper function to print a friendly error to users
870 * @param stdClass $log portfolio_log object
871 * @param portfolio_plugin_base $instance portfolio instance
872 * @uses exit
874 public static function print_cleaned_export($log, $instance=null) {
875 global $CFG, $OUTPUT, $PAGE;
876 if (empty($instance) || !$instance instanceof portfolio_plugin_base) {
877 $instance = portfolio_instance($log->portfolio);
879 $title = get_string('exportalreadyfinished', 'portfolio');
880 $PAGE->navbar->add($title);
881 $PAGE->set_title($title);
882 $PAGE->set_heading($title);
883 echo $OUTPUT->header();
884 echo $OUTPUT->notification(get_string('exportalreadyfinished', 'portfolio'));
885 self::print_finish_info($log->returnurl, $instance->resolve_static_continue_url($log->continueurl));
886 echo $OUTPUT->continue_button($CFG->wwwroot);
887 echo $OUTPUT->footer();
888 exit;
892 * Wrapper function to print continue and/or return link
894 * @param string $returnurl link to previos page
895 * @param string $continueurl continue to next page
896 * @param array $extras (optional) other links to be display.
898 public static function print_finish_info($returnurl, $continueurl, $extras=null) {
899 if ($returnurl) {
900 echo '<a href="' . $returnurl . '">' . get_string('returntowhereyouwere', 'portfolio') . '</a><br />';
902 if ($continueurl) {
903 echo '<a href="' . $continueurl . '">' . get_string('continuetoportfolio', 'portfolio') . '</a><br />';
905 if (is_array($extras)) {
906 foreach ($extras as $link => $string) {
907 echo '<a href="' . $link . '">' . $string . '</a><br />';