moodle/lib/portfolio/plugin.php

777 lines
26 KiB
PHP
Raw Normal View History

<?php
/**
* Moodle - Modular Object-Oriented Dynamic Learning Environment
* http://moodle.org
* Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package moodle
* @subpackage portfolio
* @author Penny Leach <penny@catalyst.net.nz>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL
* @copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com
*
* This file contains the base classes for portfolio plugins to inherit from:
* portfolio_plugin_pull_base and portfolio_plugin_push_base
* which both in turn inherit from portfolio_plugin_base.
* See http://docs.moodle.org/en/Development:Writing_a_Portfolio_Plugin
*/
/**
* the base class for portfolio plugins
* all plugins must subclass this
* either via {@see portfolio_plugin_pull_base} or {@see portfolio_plugin_push_base}
*/
abstract class portfolio_plugin_base {
/**
* whether this object needs writing out to the database
* @var boolean $dirty
*/
protected $dirty;
/**
* id of instance
* @var integer $id
*/
protected $id;
/**
* name of instance
* @var string $name
*/
protected $name;
/**
* plugin this instance belongs to
* @var string $plugin
*/
protected $plugin;
/**
* whether this instance is visible or not
* @var boolean $visible
*/
protected $visible;
/**
* named array
* admin configured config
* use {@link set_config} and {@get_config} to access
*/
protected $config;
/**
*
* user config cache
* named array of named arrays
* keyed on userid and then on config field => value
* use {@link get_user_config} and {@link set_user_config} to access.
*/
protected $userconfig;
/**
* named array
* export config during export
* use {@link get_export_config} and {@link set export_config} to access.
*/
protected $exportconfig;
/**
* stdclass object
* user currently exporting data
*/
protected $user;
/**
* a reference to the exporter object
*/
protected $exporter;
/**
* array of formats this portfolio supports
* the intersection of what this function returns
* and what the caller supports will be used
* use the constants PORTFOLIO_FORMAT_*
*
* @return array list of formats
*/
public static function supported_formats() {
return array(PORTFOLIO_FORMAT_FILE, PORTFOLIO_FORMAT_RICHHTML);
}
/**
* override this if you are supporting the 'file' type (or a subformat)
* but have restrictions on mimetypes (see googledocs plugin for more info)
*
* @return boolean
*/
public static function file_mime_check($mimetype) {
return true;
}
/**
* how long does this reasonably expect to take..
* should we offer the user the option to wait..
* this is deliberately nonstatic so it can take filesize into account
*
* @param string $callertime - what the caller thinks
* the portfolio plugin instance
* is given the final say
* because it might be (for example) download.
* @return string (see PORTFOLIO_TIME_* constants)
*/
public abstract function expected_time($callertime);
/**
* is this plugin push or pill.
* if push, cleanup will be called directly after send_package
* if not, cleanup will be called after portfolio/file.php is requested
*
* @return boolean
*/
public abstract function is_push();
public static abstract function get_name();
/**
* check sanity of plugin
* if this function returns something non empty, ALL instances of your plugin
* will be set to invisble and not be able to be set back until it's fixed
*
* @return mixed - string = error string KEY (must be inside plugin_$yourplugin) or 0/false if you're ok
*/
public static function plugin_sanity_check() {
return 0;
}
/**
* check sanity of instances
* if this function returns something non empty, the instance will be
* set to invislbe and not be able to be set back until it's fixed.
*
* @return mixed - string = error string KEY (must be inside plugin_$yourplugin) or 0/false if you're ok
*/
public function instance_sanity_check() {
return 0;
}
/**
* does this plugin need any configuration by the administrator?
*
* if you override this to return true,
* you <b>must</b> implement {@see admin_config_form}
*/
public static function has_admin_config() {
return false;
}
/**
* can this plugin be configured by the user in their profile?
*
* if you override this to return true,
* you <b>must</b> implement {@see user_config_form}
*/
public function has_user_config() {
return false;
}
/**
* does this plugin need configuration during export time?
*
* if you override this to return true,
* you <b>must</b> implement {@see export_config_form}
*/
public function has_export_config() {
return false;
}
/**
* just like the moodle form validation function
* this is passed in the data array from the form
* and if a non empty array is returned, form processing will stop.
*
* @param array $data data from form.
* @return array keyvalue pairs - form element => error string
*/
public function export_config_validation() {}
/**
* just like the moodle form validation function
* this is passed in the data array from the form
* and if a non empty array is returned, form processing will stop.
*
* @param array $data data from form.
* @return array keyvalue pairs - form element => error string
*/
public function user_config_validation() {}
/**
* sets the export time config from the moodle form.
* you can also use this to set export config that
* isn't actually controlled by the user
* eg things that your subclasses want to keep in state
* across the export.
* keys must be in {@see get_allowed_export_config}
*
* this is deliberately not final (see boxnet plugin)
*
* @param array $config named array of config items to set.
*/
public function set_export_config($config) {
$allowed = array_merge(
array('wait', 'hidewait', 'format', 'hideformat'),
$this->get_allowed_export_config()
);
foreach ($config as $key => $value) {
if (!in_array($key, $allowed)) {
$a = (object)array('property' => $key, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invalidexportproperty', 'portfolio', null, $a);
}
$this->exportconfig[$key] = $value;
}
}
/**
* gets an export time config value.
* subclasses should not override this.
*
* @param string key field to fetch
*
* @return string config value
*
*/
public final function get_export_config($key) {
$allowed = array_merge(
array('hidewait', 'wait', 'format', 'hideformat'),
$this->get_allowed_export_config()
);
if (!in_array($key, $allowed)) {
$a = (object)array('property' => $key, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invalidexportproperty', 'portfolio', null, $a);
}
if (!array_key_exists($key, $this->exportconfig)) {
return null;
}
return $this->exportconfig[$key];
}
/**
* after the user submits their config
* they're given a confirm screen
* summarising what they've chosen.
*
* this function should return a table of nice strings => values
* of what they've chosen
* to be displayed in a table.
*
* @return array array of config items.
*/
public function get_export_summary() {
return false;
}
/**
* called after the caller has finished having control
* of its prepare_package function.
* this function should read all the files from the portfolio
* working file area and zip them and send them or whatever it wants.
* {@see get_tempfiles} to get the list of files.
*
*/
public abstract function prepare_package();
/**
* this is the function that is responsible for sending
* the package to the remote system,
* or whatever request is necessary to initiate the transfer.
*
* @return boolean success
*/
public abstract function send_package();
/**
* once everything is done and the user
* has the finish page displayed to them
* the base class takes care of printing them
* "return to where you are" or "continue to portfolio" links
* this function allows for exta finish options from the plugin
*
* @return array named array of links => titles
*/
public function get_extra_finish_options() {
return false;
}
/**
* the url for the user to continue to their portfolio
*
* @return string url or false.
*/
public abstract function get_continue_url();
/**
* mform to display to the user in their profile
* if your plugin can't be configured by the user,
* (see {@link has_user_config})
* don't bother overriding this function
*
* @param moodleform $mform passed by reference, add elements to it
*/
public function user_config_form(&$mform) {}
/**
* mform to display to the admin configuring the plugin.
* if your plugin can't be configured by the admin,
* (see {@link} has_admin_config)
* don't bother overriding this function
*
* this function can be called statically or non statically,
* depending on whether it's creating a new instance (statically),
* or editing an existing one (non statically)
*
* @param moodleform $mform passed by reference, add elements to it.
*/
public function admin_config_form(&$mform) {}
/**
* just like the moodle form validation function
* this is passed in the data array from the form
* and if a non empty array is returned, form processing will stop.
*
* @param array $data data from form.
* @return array keyvalue pairs - form element => error string
*/
public function admin_config_validation($data) {}
/**
* mform to display to the user exporting data using this plugin.
* if your plugin doesn't need user input at this time,
* (see {@link has_export_config}
* don't bother overrideing this function
*
* @param moodleform $mform passed by reference, add elements to it.
*/
public function export_config_form(&$mform) {}
/**
* override this if your plugin doesn't allow multiple instances
*
* @return boolean
*/
public static function allows_multiple() {
return true;
}
/**
*
* If at any point the caller wants to steal control
* it can, by returning something that isn't false
* in this function
* The controller will redirect to whatever url
* this function returns.
* Afterwards, you can redirect back to portfolio/add.php?postcontrol=1
* and {@link post_control} is called before the rest of the processing
* for the stage is done
*
* @param int stage to steal control *before* (see constants PARAM_STAGE_*}
*
* @return boolean or string url
*/
public function steal_control($stage) {
return false;
}
/**
* after a plugin has elected to steal control,
* and control returns to portfolio/add.php|postcontrol=1,
* this function is called, and passed the stage that was stolen control from
* and the request (get and post but not cookie) parameters
* this is useful for external systems that need to redirect the user back
* with some extra data in the url (like auth tokens etc)
* for an example implementation, see boxnet portfolio plugin.
*
* @param int $stage the stage before control was stolen
* @param array $params a merge of $_GET and $_POST
*
*/
public function post_control($stage, $params) { }
/**
* this function creates a new instance of a plugin
* saves it in the database, saves the config
* and returns it.
* you shouldn't need to override it
* unless you're doing something really funky
*
* @param string $plugin portfolio plugin to create
* @param string $name name of new instance
* @param array $config what the admin config form returned
*
* @return object subclass of portfolio_plugin_base
*/
public static function create_instance($plugin, $name, $config) {
global $DB, $CFG;
$new = (object)array(
'plugin' => $plugin,
'name' => $name,
);
if (!portfolio_static_function($plugin, 'allows_multiple')) {
// check we don't have one already
if ($DB->record_exists('portfolio_instance', array('plugin' => $plugin))) {
throw new portfolio_exception('multipledisallowed', 'portfolio', '', $plugin);
}
}
$newid = $DB->insert_record('portfolio_instance', $new);
require_once($CFG->dirroot . '/portfolio/type/' . $plugin . '/lib.php');
$classname = 'portfolio_plugin_' . $plugin;
$obj = new $classname($newid);
$obj->set_config($config);
return $obj;
}
/**
* construct a plugin instance
* subclasses should not need to override this unless they're doing something special
* and should call parent::__construct afterwards
*
* @param int $instanceid id of plugin instance to construct
* @param mixed $record stdclass object or named array - use this i you already have the record to avoid another query
*
* @return object subclass of portfolio_plugin_base
*/
public function __construct($instanceid, $record=null) {
global $DB;
if (!$record) {
if (!$record = $DB->get_record('portfolio_instance', array('id' => $instanceid))) {
throw new portfolio_exception('invalidinstance', 'portfolio');
}
}
foreach ((array)$record as $key =>$value) {
if (property_exists($this, $key)) {
$this->{$key} = $value;
}
}
$this->config = new StdClass;
$this->userconfig = array();
$this->exportconfig = array();
foreach ($DB->get_records('portfolio_instance_config', array('instance' => $instanceid)) as $config) {
$this->config->{$config->name} = $config->value;
}
return $this;
}
/**
* a list of fields that can be configured per instance.
* this is used for the save handlers of the config form
* and as checks in set_config and get_config
*
* @return array array of strings (config item names)
*/
public static function get_allowed_config() {
return array();
}
/**
* a list of fields that can be configured by the user.
* this is used for the save handlers in the config form
* and as checks in set_user_config and get_user_config.
*
* @return array array of strings (config field names)
*/
public function get_allowed_user_config() {
return array();
}
/**
* a list of fields that can be configured by the user.
* this is used for the save handlers in the config form
* and as checks in set_export_config and get_export_config.
*
* @return array array of strings (config field names)
*/
public function get_allowed_export_config() {
return array();
}
/**
* saves (or updates) the config stored in portfolio_instance_config.
* you shouldn't need to override this unless you're doing something funky.
*
* @param array $config array of config items.
*/
public final function set_config($config) {
global $DB;
foreach ($config as $key => $value) {
// try set it in $this first
try {
$this->set($key, $value);
continue;
} catch (portfolio_exception $e) { }
if (!in_array($key, $this->get_allowed_config())) {
$a = (object)array('property' => $key, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invalidconfigproperty', 'portfolio', null, $a);
}
if (!isset($this->config->{$key})) {
$DB->insert_record('portfolio_instance_config', (object)array(
'instance' => $this->id,
'name' => $key,
'value' => $value,
));
} else if ($this->config->{$key} != $value) {
$DB->set_field('portfolio_instance_config', 'value', $value, array('name' => $key, 'instance' => $this->id));
}
$this->config->{$key} = $value;
}
}
/**
* gets the value of a particular config item
*
* @param string $key key to fetch
*
* @return string the corresponding value
*/
public final function get_config($key) {
if (!in_array($key, $this->get_allowed_config())) {
$a = (object)array('property' => $key, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invalidconfigproperty', 'portfolio', null, $a);
}
if (isset($this->config->{$key})) {
return $this->config->{$key};
}
return null;
}
/**
* get the value of a config item for a particular user
*
* @param string $key key to fetch
* @param integer $userid id of user (defaults to current)
*
* @return string the corresponding value
*
*/
public final function get_user_config($key, $userid=0) {
global $DB;
if (empty($userid)) {
$userid = $this->user->id;
}
if ($key != 'visible') { // handled by the parent class
if (!in_array($key, $this->get_allowed_user_config())) {
$a = (object)array('property' => $key, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invaliduserproperty', 'portfolio', null, $a);
}
}
if (!array_key_exists($userid, $this->userconfig)) {
$this->userconfig[$userid] = (object)array_fill_keys(array_merge(array('visible'), $this->get_allowed_user_config()), null);
foreach ($DB->get_records('portfolio_instance_user', array('instance' => $this->id, 'userid' => $userid)) as $config) {
$this->userconfig[$userid]->{$config->name} = $config->value;
}
}
if ($this->userconfig[$userid]->visible === null) {
$this->set_user_config(array('visible' => 1), $userid);
}
return $this->userconfig[$userid]->{$key};
}
/**
*
* sets config options for a given user
*
* @param mixed $config array or stdclass containing key/value pairs to set
* @param integer $userid userid to set config for (defaults to current)
*
*/
public final function set_user_config($config, $userid=0) {
global $DB;
if (empty($userid)) {
$userid = $this->user->id;
}
foreach ($config as $key => $value) {
if ($key != 'visible' && !in_array($key, $this->get_allowed_user_config())) {
$a = (object)array('property' => $key, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invaliduserproperty', 'portfolio', null, $a);
}
if (!$existing = $DB->get_record('portfolio_instance_user', array('instance'=> $this->id, 'userid' => $userid, 'name' => $key))) {
$DB->insert_record('portfolio_instance_user', (object)array(
'instance' => $this->id,
'name' => $key,
'value' => $value,
'userid' => $userid,
));
} else if ($existing->value != $value) {
$DB->set_field('portfolio_instance_user', 'value', $value, array('name' => $key, 'instance' => $this->id, 'userid' => $userid));
}
$this->userconfig[$userid]->{$key} = $value;
}
}
/**
* generic getter for properties belonging to this instance
* <b>outside</b> the subclasses
* like name, visible etc.
*
*/
public final function get($field) {
if (property_exists($this, $field)) {
return $this->{$field};
}
$a = (object)array('property' => $field, 'class' => get_class($this));
throw new portfolio_export_exception($this->get('exporter'), 'invalidproperty', 'portfolio', null, $a);
}
/**
* generic setter for properties belonging to this instance
* <b>outside</b> the subclass
* like name, visible, etc.
*
*/
public final function set($field, $value) {
if (property_exists($this, $field)) {
$this->{$field} =& $value;
$this->dirty = true;
return true;
}
$a = (object)array('property' => $field, 'class' => get_class($this));
if ($this->get('exporter')) {
throw new portfolio_export_exception($this->get('exporter'), 'invalidproperty', 'portfolio', null, $a);
}
throw new portfolio_exception('invalidproperty', 'portfolio', null, $a); // this happens outside export (eg admin settings)
}
/**
* saves stuff that's been stored in the object to the database
* you shouldn't need to override this
* unless you're doing something really funky.
* and if so, call parent::save when you're done.
*/
public function save() {
global $DB;
if (!$this->dirty) {
return true;
}
$fordb = new StdClass();
foreach (array('id', 'name', 'plugin', 'visible') as $field) {
$fordb->{$field} = $this->{$field};
}
$DB->update_record('portfolio_instance', $fordb);
$this->dirty = false;
return true;
}
/**
* deletes everything from the database about this plugin instance.
* you shouldn't need to override this unless you're storing stuff
* in your own tables. and if so, call parent::delete when you're done.
*/
public function delete() {
global $DB;
$DB->delete_records('portfolio_instance_config', array('instance' => $this->get('id')));
$DB->delete_records('portfolio_instance_user', array('instance' => $this->get('id')));
$DB->delete_records('portfolio_instance', array('id' => $this->get('id')));
$this->dirty = false;
return true;
}
/**
* perform any required cleanup functions
*/
public function cleanup() {
return true;
}
public static function mnet_publishes() {
return array();
}
}
/**
* class to inherit from for 'push' type plugins
* eg those that send the file via a HTTP post or whatever
*/
abstract class portfolio_plugin_push_base extends portfolio_plugin_base {
public function is_push() {
return true;
}
}
/**
* class to inherit from for 'pull' type plugins
* eg those that write a file and wait for the remote system to request it
* from portfolio/file.php
* if you're using this you must do $this->set('file', $file) so that it can be served.
*/
abstract class portfolio_plugin_pull_base extends portfolio_plugin_base {
protected $file;
public function is_push() {
return false;
}
/**
* the base part of the download file url to pull files from
* your plugin might need to add &foo=bar on the end
* {@see verify_file_request_params}
*
* @return string the url
*/
public function get_base_file_url() {
global $CFG;
return $CFG->wwwroot . '/portfolio/file.php?id=' . $this->exporter->get('id');
}
/**
* before sending the file when the pull is requested, verify the request parameters
* these might include a token of some sort of whatever
*
* @param array request parameters (POST wins over GET)
*/
public abstract function verify_file_request_params($params);
/**
* called from portfolio/file.php
* this function sends the stored file out to the browser
* the default is to just use send_stored_file,
* but other implementations might do something different
* for example, send back the file base64 encoded and encrypted
* mahara does this but in the response to an xmlrpc request
* rather than through file.php
*/
public function send_file() {
$file = $this->get('file');
if (!($file instanceof stored_file)) {
throw new portfolio_export_exception($this->get('exporter'), 'filenotfound', 'portfolio');
}
// the last 'true' on the end of this means don't die(); afterwards, so we can clean up.
send_stored_file($file, 0, 0, true, null, true);
$this->get('exporter')->log_transfer();
}
}
?>