3 define('PORTFOLIO_MAHARA_ERR_NETWORKING_OFF', 'err_networkingoff');
4 define('PORTFOLIO_MAHARA_ERR_NOHOSTS', 'err_nomnethosts');
5 define('PORTFOLIO_MAHARA_ERR_INVALIDHOST', 'err_invalidhost');
6 define('PORTFOLIO_MAHARA_ERR_NOMNETAUTH', 'err_nomnetauth');
8 require_once($CFG->dirroot . '/lib/portfoliolib.php');
9 require_once($CFG->dirroot . '/mnet/lib.php');
11 define('PORTFOLIO_MAHARA_QUEUE', PORTFOLIO_TIME_HIGH);
12 define('PORTFOLIO_MAHARA_IMMEDIATE', PORTFOLIO_TIME_MODERATE);
14 class portfolio_plugin_mahara extends portfolio_plugin_pull_base {
16 private $hosts; // used in the admin config form
17 private $mnethost; // privately set during export from the admin config value (mnethostid)
18 private $hostrecord; // the host record that corresponds to the peer
19 private $token; // during-transfer token
20 private $sendtype; // whatever mahara has said it can handle (immediate or queued)
21 private $filesmanifest; // manifest of files to send to mahara (set during prepare_package and sent later)
22 private $totalsize; // total size of all included files added together
24 public static function get_name() {
25 return get_string('pluginname', 'portfolio_mahara');
28 public static function get_allowed_config() {
29 return array('mnethostid');
32 public static function supported_formats() {
33 return array(PORTFOLIO_FORMAT_FILE);
36 public function expected_time($callertime) {
37 if ($this->sendtype == PORTFOLIO_MAHARA_QUEUE) {
38 return PORTFOLIO_TIME_FORCEQUEUE;
43 public static function has_admin_config() {
47 public function admin_config_form(&$mform) {
48 $strrequired = get_string('required');
49 $hosts = self::get_mnet_hosts(); // this is called by sanity check but it's ok because it's cached
50 foreach ($hosts as $host) {
51 $hosts[$host->id] = $host->name;
53 $mform->addElement('select', 'mnethostid', get_string('mnethost', 'portfolio_mahara'), $hosts);
54 $mform->addRule('mnethostid', $strrequired, 'required', null, 'client');
57 public function instance_sanity_check() {
58 // make sure the host record exists since we don't have referential integrity
59 if (!is_enabled_auth('mnet')) {
60 return PORTFOLIO_MAHARA_ERR_NOMNETAUTH;
63 $this->ensure_mnethost();
65 catch (portfolio_exception $e) {
66 return PORTFOLIO_MAHARA_ERR_INVALIDHOST;
68 // make sure we have the right services
69 $hosts = $this->get_mnet_hosts();
70 if (!array_key_exists($this->get_config('mnethostid'), $hosts)) {
71 return PORTFOLIO_MAHARA_ERR_INVALIDHOST;
76 public static function plugin_sanity_check() {
79 if (!isset($CFG->mnet_dispatcher_mode) || $CFG->mnet_dispatcher_mode != 'strict') {
80 $errorcode = PORTFOLIO_MAHARA_ERR_NETWORKING_OFF;
82 if (!is_enabled_auth('mnet')) {
83 $errorcode = PORTFOLIO_MAHARA_ERR_NOMNETAUTH;
85 if (!self::get_mnet_hosts()) {
86 $errorcode = PORTFOLIO_MAHARA_ERR_NOHOSTS;
91 private static function get_mnet_hosts() {
94 if (isset($this) && is_object($this) && isset($this->hosts)) {
96 } else if (!isset($this) && isset($hosts)) {
99 $hosts = $DB->get_records_sql(' SELECT
105 h.public_key_expires,
112 a.display_name as app_display_name,
115 JOIN {mnet_application} a ON h.applicationid=a.id
116 JOIN {mnet_host2service} hs1 ON hs1.hostid = h.id
117 JOIN {mnet_service} s1 ON hs1.serviceid = s1.id
118 JOIN {mnet_host2service} hs2 ON hs2.hostid = h.id
119 JOIN {mnet_service} s2 ON hs2.serviceid = s2.id
120 JOIN {mnet_host2service} hs3 ON hs3.hostid = h.id
121 JOIN {mnet_service} s3 ON hs3.serviceid = s3.id
126 s1.name = ? AND hs1.publish = ? AND
127 s2.name = ? AND hs2.subscribe = ? AND
128 s3.name = ? AND hs3.subscribe = ?',
129 array($CFG->mnet_localhost_id, 'mahara', 'sso_idp', 1, 'sso_sp', 1, 'pf', 1));;
130 if (empty($hosts)) { $hosts = array(); }
131 if (isset($this) && is_object($this)) {
132 $this->hosts = $hosts;
137 public function prepare_package() {
138 $files = $this->exporter->get_tempfiles();
139 $this->totalsize = 0;
140 foreach ($files as $f) {
141 $this->filesmanifest[$f->get_contenthash()] = array(
142 'filename' => $f->get_filename(),
143 'sha1' => $f->get_contenthash(),
144 'size' => $f->get_filesize(),
146 $this->totalsize += $f->get_filesize();
149 $this->set('file', $this->exporter->zip_tempfiles()); // this will throw a file_exception which the exporter catches separately.
152 private function ensure_environment() {
155 $MNET = new mnet_environment();
157 } // no idea why this happens :(
160 public function send_package() {
162 $this->ensure_environment();
163 // send the 'content_ready' request to mahara
164 require_once($CFG->dirroot . '/mnet/xmlrpc/client.php');
165 $client = new mnet_xmlrpc_client();
166 $client->set_method('portfolio/mahara/lib.php/send_content_ready');
167 $client->add_param($this->token);
168 $client->add_param($this->get('user')->username);
169 $client->add_param($this->resolve_format());
170 $client->add_param(array(
171 'filesmanifest' => $this->filesmanifest,
172 'zipfilesha1' => $this->get('file')->get_contenthash(),
173 'zipfilesize' => $this->get('file')->get_filesize(),
174 'totalsize' => $this->totalsize,
176 $client->add_param($this->get_export_config('wait'));
177 $this->ensure_mnethost();
178 if (!$client->send($this->mnethost)) {
179 foreach ($client->error as $errormessage) {
180 list($code, $message) = array_map('trim',explode(':', $errormessage, 2));
181 $message .= "ERROR $code:<br/>$errormessage<br/>";
183 throw new portfolio_export_exception($this->get('exporter'), 'failedtoping', 'portfolio_mahara', '', $message);
185 // we should get back... an ok and a status
186 // either we've been waiting a while and mahara has fetched the file or has queued it.
187 $response = (object)$client->response;
188 if (!$response->status) {
189 throw new portfolio_export_exception($this->get('exporter'), 'failedtoping', 'portfolio_mahara');
191 if ($response->type =='queued') {
192 $this->exporter->set('forcequeue', true);
196 public function get_continue_url() {
197 $this->ensure_mnethost();
198 $this->ensure_environment();
199 $mnetauth = get_auth_plugin('mnet');
200 $remoteurl = '/artefact/file/';// @todo penny this might change later when we change formats.
201 if (!$url = $mnetauth->start_jump_session($this->get_config('mnethostid'), $remoteurl)) {
207 public function steal_control($stage) {
208 if ($stage != PORTFOLIO_STAGE_CONFIG) {
212 return $CFG->wwwroot . '/portfolio/type/mahara/preconfig.php?id=' . $this->exporter->get('id');
215 public function verify_file_request_params($params) {
217 // the data comes from an xmlrpc request,
218 // not a request to file.php
222 * sends the 'content_intent' ping to mahara
223 * if all goes well, this will set the 'token' and 'sendtype' member variables.
225 public function send_intent() {
227 require_once($CFG->dirroot . '/mnet/xmlrpc/client.php');
228 $client = new mnet_xmlrpc_client();
229 $client->set_method('portfolio/mahara/lib.php/send_content_intent');
230 $client->add_param($this->get('user')->username);
231 $this->ensure_mnethost();
232 if (!$client->send($this->mnethost)) {
233 foreach ($client->error as $errormessage) {
234 list($code, $message) = array_map('trim',explode(':', $errormessage, 2));
235 $message .= "ERROR $code:<br/>$errormessage<br/>";
237 throw new portfolio_export_exception($this->get('exporter'), 'failedtoping', 'portfolio_mahara', '', $message);
239 // we should get back... the send type and a shared token
240 $response = (object)$client->response;
241 if (empty($response->sendtype) || empty($response->token)) {
242 throw new portfolio_export_exception($this->get('exporter'), 'senddisallowed', 'portfolio_mahara');
244 switch ($response->sendtype) {
246 $this->sendtype = PORTFOLIO_MAHARA_IMMEDIATE;
249 $this->sendtype = PORTFOLIO_MAHARA_QUEUE;
253 throw new portfolio_export_exception($this->get('exporter'), 'senddisallowed', 'portfolio_mahara');
255 $this->token = $response->token;
256 $this->get('exporter')->save();
257 // put the entry in the mahara queue table now too
259 $q->token = $this->token;
260 $q->transferid = $this->get('exporter')->get('id');
261 $DB->insert_record('portfolio_mahara_queue', $q);
264 private function ensure_mnethost() {
265 if (!empty($this->hostrecord) && !empty($this->mnethost)) {
269 if (!$this->hostrecord = $DB->get_record('mnet_host', array('id' => $this->get_config('mnethostid')))) {
270 throw new portfolio_plugin_exception(PORTFOLIO_MAHARA_ERR_INVALIDHOST, 'portfolio_mahara');
272 $this->mnethost = new mnet_peer();
273 $this->mnethost->set_wwwroot($this->hostrecord->wwwroot);
276 public static function mnet_publishes() {
278 $pf['name'] = 'pf'; // Name & Description go in lang file
279 $pf['apiversion'] = 1;
280 $pf['methods'] = array('send_content_intent', 'send_content_ready', 'fetch_file');
286 * xmlrpc (mnet) function to get the file.
287 * reads in the file and returns it base_64 encoded
288 * so that it can be enrypted by mnet.
290 * @param string $token the token recieved previously during send_content_intent
292 public static function fetch_file($token) {
293 global $DB, $MNET_REMOTE_CLIENT;;
295 if (!$transferid = $DB->get_field('portfolio_mahara_queue', 'transferid', array('token' => $token))) {
296 exit(mnet_server_fault(8009, get_string('mnet_notoken', 'portfolio_mahara')));
298 $exporter = portfolio_exporter::rewaken_object($transferid);
299 } catch (portfolio_exception $e) {
300 exit(mnet_server_fault(8010, get_string('mnet_noid', 'portfolio_mahara')));
302 if ($exporter->get('instance')->get_config('mnethostid') != $MNET_REMOTE_CLIENT->id) {
303 exit(mnet_server_fault(8011, get_string('mnet_wronghost', 'portfolio_mahara')));
307 $i = $exporter->get('instance');
308 $f = $i->get('file');
309 if (empty($f) || !($f instanceof stored_file)) {
310 exit(mnet_server_fault(8012, get_string('mnet_nofile', 'portfolio_mahara')));
313 $c = $f->get_content();
314 } catch (file_exception $e) {
315 exit(mnet_server_fault(8013, get_string('mnet_nofilecontents', 'portfolio_mahara', $e->getMessage())));
317 $contents = base64_encode($c);
318 } catch (Exception $e) {
319 exit(mnet_server_fault(8013, get_string('mnet_nofile', 'portfolio_mahara')));
321 $exporter->log_transfer();
322 $exporter->process_stage_cleanup(true);
326 public function cleanup() {
328 $DB->delete_records('portfolio_mahara_queue', array('transferid' => $this->get('exporter')->get('id'), 'token' => $this->token));
332 private function resolve_format() {
333 $thisformat = $this->get_export_config('format');
334 $allformats = portfolio_supported_formats();
335 $thisobj = new $allformats[$thisformat];
336 foreach ($this->supported_formats() as $f) {
337 $class = $allformats[$f];
338 if ($thisobj instanceof $class) {