2 // This file is part of Moodle - http://moodle.org/
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.
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 use core_external\external_api
;
18 use core_external\external_multiple_structure
;
19 use core_external\external_single_structure
;
22 * Web service documentation renderer.
24 * @package core_webservice
26 * @copyright 2009 Jerome Mouneyrac <jerome@moodle.com>
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 class core_webservice_renderer
extends plugin_renderer_base
{
32 * Display the authorised user selector
34 * @param stdClass $options It contains alloweduserselector, potentialuserselector and serviceid
37 public function admin_authorised_user_selector(&$options) {
39 $formcontent = html_writer
::empty_tag('input',
40 array('name' => 'sesskey', 'value' => sesskey(), 'type' => 'hidden'));
42 $table = new html_table();
43 $table->size
= array('45%', '10%', '45%');
44 $table->attributes
['class'] = 'roleassigntable generaltable generalbox boxaligncenter';
46 $table->cellspacing
= 0;
47 $table->cellpadding
= 0;
49 // LTR/RTL support, for drawing button arrows in the right direction
50 if (right_to_left()) {
58 //create the add and remove button
59 $addinput = html_writer
::empty_tag('input',
60 array('name' => 'add', 'id' => 'add', 'type' => 'submit',
61 'value' => $addarrow . ' ' . get_string('add'),
62 'title' => get_string('add')));
63 $addbutton = html_writer
::tag('div', $addinput, array('id' => 'addcontrols'));
64 $removeinput = html_writer
::empty_tag('input',
65 array('name' => 'remove', 'id' => 'remove', 'type' => 'submit',
66 'value' => $removearrow . ' ' . get_string('remove'),
67 'title' => get_string('remove')));
68 $removebutton = html_writer
::tag('div', $removeinput, array('id' => 'removecontrols'));
71 //create the three cells
72 $label = html_writer
::tag('label', get_string('serviceusers', 'webservice'),
73 array('for' => 'removeselect'));
74 $label = html_writer
::tag('p', $label);
75 $authoriseduserscell = new html_table_cell($label .
76 $options->alloweduserselector
->display(true));
77 $authoriseduserscell->id
= 'existingcell';
78 $buttonscell = new html_table_cell($addbutton . html_writer
::empty_tag('br') . $removebutton);
79 $buttonscell->id
= 'buttonscell';
80 $label = html_writer
::tag('label', get_string('potusers', 'webservice'),
81 array('for' => 'addselect'));
82 $label = html_writer
::tag('p', $label);
83 $otheruserscell = new html_table_cell($label .
84 $options->potentialuserselector
->display(true));
85 $otheruserscell->id
= 'potentialcell';
87 $cells = array($authoriseduserscell, $buttonscell, $otheruserscell);
88 $row = new html_table_row($cells);
89 $table->data
[] = $row;
90 $formcontent .= html_writer
::table($table);
92 $formcontent = html_writer
::tag('div', $formcontent);
94 $actionurl = new moodle_url('/' . $CFG->admin
. '/webservice/service_users.php',
95 array('id' => $options->serviceid
));
96 $html = html_writer
::tag('form', $formcontent,
97 array('id' => 'assignform', 'action' => $actionurl, 'method' => 'post'));
102 * Display list of authorised users for the given external service.
104 * @param array $users authorised users
105 * @param int $serviceid service id
106 * @return string $html
108 public function admin_authorised_user_list($users, $serviceid) {
112 $extrafields = \core_user\fields
::get_identity_fields(context_system
::instance());
114 foreach ($users as $user) {
115 $settingsurl = new moodle_url('/admin/webservice/service_user_settings.php',
116 ['userid' => $user->id
, 'serviceid' => $serviceid]);
119 foreach ($extrafields as $extrafield) {
120 if (isset($user->{$extrafield})) {
121 $identity[] = s($user->{$extrafield});
124 $identity = $identity ? html_writer
::div(implode(', ', $identity), 'small') : '';
126 $link = html_writer
::link($settingsurl, fullname($user));
128 if (!empty($user->missingcapabilities
)) {
129 $count = html_writer
::span(count($user->missingcapabilities
), 'badge badge-danger');
130 $links = array_map(function($capname) {
131 return get_capability_docs_link((object)['name' => $capname]) . html_writer
::div($capname, 'text-muted');
132 }, $user->missingcapabilities
);
133 $list = html_writer
::alist($links);
134 $help = $this->output
->help_icon('missingcaps', 'webservice');
135 $missingcaps = print_collapsible_region(html_writer
::div($list . $help, 'missingcaps'), 'small',
136 html_writer
::random_id('usermissingcaps'), get_string('usermissingcaps', 'webservice', $count), '', true, true);
142 $listitems[] = $link . $identity . $missingcaps;
145 $html = html_writer
::div(html_writer
::alist($listitems), 'alloweduserlist');
151 * Display a confirmation page to remove a function from a service
153 * @param stdClass $function It needs function id + function name properties.
154 * @param stdClass $service It needs service id + service name properties.
155 * @return string html
157 public function admin_remove_service_function_confirmation($function, $service) {
158 $optionsyes = array('id' => $service->id
, 'action' => 'delete',
159 'confirm' => 1, 'sesskey' => sesskey(), 'fid' => $function->id
);
160 $optionsno = array('id' => $service->id
);
161 $formcontinue = new single_button(new moodle_url('service_functions.php',
162 $optionsyes), get_string('remove'));
163 $formcancel = new single_button(new moodle_url('service_functions.php',
164 $optionsno), get_string('cancel'), 'get');
165 return $this->output
->confirm(get_string('removefunctionconfirm', 'webservice',
166 (object) array('service' => $service->name
, 'function' => $function->name
)),
167 $formcontinue, $formcancel);
171 * Display a confirmation page to remove a service
173 * @param stdClass $service It needs service id + service name properties.
174 * @return string html
176 public function admin_remove_service_confirmation($service) {
178 $optionsyes = array('id' => $service->id
, 'action' => 'delete',
179 'confirm' => 1, 'sesskey' => sesskey());
180 $optionsno = array('section' => 'externalservices');
181 $formcontinue = new single_button(new moodle_url('service.php', $optionsyes),
182 get_string('delete'), 'post');
183 $formcancel = new single_button(
184 new moodle_url($CFG->wwwroot
. "/" . $CFG->admin
. "/settings.php", $optionsno),
185 get_string('cancel'), 'get');
186 return $this->output
->confirm(get_string('deleteserviceconfirm', 'webservice', $service->name
),
187 $formcontinue, $formcancel);
191 * Display a list of functions for a given service
192 * If the service is built-in, do not display remove/add operation (read-only)
194 * @param array $functions list of functions
195 * @param stdClass $service the given service
196 * @return string the table html + add operation html
198 public function admin_service_function_list($functions, $service) {
200 if (!empty($functions)) {
201 $table = new html_table();
202 $table->head
= array(get_string('function', 'webservice'),
203 get_string('description'), get_string('requiredcaps', 'webservice'));
204 $table->align
= array('left', 'left', 'left');
205 $table->size
= array('15%', '40%', '40%');
206 $table->width
= '100%';
207 $table->align
[] = 'left';
209 //display remove function operation (except for build-in service)
210 if (empty($service->component
)) {
211 $table->head
[] = get_string('edit');
212 $table->align
[] = 'center';
215 $anydeprecated = false;
216 foreach ($functions as $function) {
217 $function = external_api
::external_function_info($function);
219 if (!empty($function->deprecated
)) {
220 $anydeprecated = true;
222 $requiredcaps = html_writer
::tag('div',
223 empty($function->capabilities
) ?
'' : $function->capabilities
,
224 array('class' => 'functiondesc'));
226 $description = html_writer
::tag('div', $function->description
,
227 array('class' => 'functiondesc'));
228 //display remove function operation (except for build-in service)
229 if (empty($service->component
)) {
230 $removeurl = new moodle_url('/' . $CFG->admin
. '/webservice/service_functions.php',
231 array('sesskey' => sesskey(), 'fid' => $function->id
,
232 'id' => $service->id
,
233 'action' => 'delete'));
234 $removelink = html_writer
::tag('a',
235 get_string('removefunction', 'webservice'),
236 array('href' => $removeurl));
237 $table->data
[] = array($function->name
, $description, $requiredcaps, $removelink);
239 $table->data
[] = array($function->name
, $description, $requiredcaps);
243 $html = html_writer
::table($table);
245 $html = get_string('nofunctions', 'webservice') . html_writer
::empty_tag('br');
248 //display add function operation (except for build-in service)
249 if (empty($service->component
)) {
251 if (!empty($anydeprecated)) {
252 debugging('This service uses deprecated functions, replace them by the proposed ones and update your client/s.', DEBUG_DEVELOPER
);
254 $addurl = new moodle_url('/' . $CFG->admin
. '/webservice/service_functions.php',
255 array('sesskey' => sesskey(), 'id' => $service->id
, 'action' => 'add'));
256 $html .= html_writer
::tag('a', get_string('addfunctions', 'webservice'), array('href' => $addurl));
263 * Display Reset token confirmation box
265 * @param stdClass $token token to reset
266 * @return string html
268 public function user_reset_token_confirmation($token) {
269 $managetokenurl = '/user/managetoken.php';
270 $optionsyes = ['tokenid' => $token->id
, 'action' => 'resetwstoken', 'confirm' => 1];
271 $formcontinue = new single_button(new moodle_url($managetokenurl, $optionsyes), get_string('reset'));
272 $formcancel = new single_button(new moodle_url($managetokenurl), get_string('cancel'), 'get');
273 $html = $this->output
->confirm(get_string('resettokenconfirm', 'webservice',
274 (object) array('user' => $token->firstname
. " " .
275 $token->lastname
, 'service' => $token->name
)),
276 $formcontinue, $formcancel);
281 * Display user tokens with buttons to reset them
283 * @param stdClass $tokens user tokens
284 * @param int $userid user id
285 * @param bool $documentation if true display a link to the API documentation
286 * @return string html code
288 public function user_webservice_tokens_box($tokens, $userid, $documentation = false) {
292 $stroperation = get_string('operation', 'webservice');
293 $strtoken = get_string('key', 'webservice');
294 $strservice = get_string('service', 'webservice');
295 $strcreator = get_string('tokencreator', 'webservice');
296 $strcontext = get_string('context', 'webservice');
297 $strvaliduntil = get_string('validuntil', 'webservice');
299 $return = $this->output
->heading(get_string('securitykeys', 'webservice'), 3, 'main', true);
300 $return .= $this->output
->box_start('generalbox webservicestokenui');
302 $return .= get_string('keyshelp', 'webservice');
304 $table = new html_table();
305 $table->head
= array($strtoken, $strservice, $strvaliduntil, $strcreator, $stroperation);
306 $table->align
= array('left', 'left', 'left', 'center', 'left', 'center');
307 $table->width
= '100%';
308 $table->data
= array();
310 if ($documentation) {
311 $table->head
[] = get_string('doc', 'webservice');
312 $table->align
[] = 'center';
315 if (!empty($tokens)) {
316 foreach ($tokens as $token) {
318 if ($token->creatorid
== $userid) {
319 $reset = html_writer
::link(new moodle_url('/user/managetoken.php', [
320 'action' => 'resetwstoken',
321 'tokenid' => $token->id
,
322 ]), get_string('reset'));
323 $creator = $token->firstname
. " " . $token->lastname
;
325 //retrieve administrator name
326 $admincreator = $DB->get_record('user', array('id'=>$token->creatorid
));
327 $creator = $admincreator->firstname
. " " . $admincreator->lastname
;
331 $userprofilurl = new moodle_url('/user/view.php?id=' . $token->creatorid
);
332 $creatoratag = html_writer
::start_tag('a', array('href' => $userprofilurl));
333 $creatoratag .= $creator;
334 $creatoratag .= html_writer
::end_tag('a');
337 if (!empty($token->validuntil
)) {
338 $validuntil = userdate($token->validuntil
, get_string('strftimedatetime', 'langconfig'));
341 $tokenname = $token->name
;
342 if (!$token->enabled
) { //that is the (1 token-1ws) related ws is not enabled.
343 $tokenname = '<span class="dimmed_text">'.$token->name
.'</span>';
345 $row = array($token->token
, $tokenname, $validuntil, $creatoratag, $reset);
347 if ($documentation) {
348 $doclink = new moodle_url('/webservice/wsdoc.php',
349 array('id' => $token->id
));
350 $row[] = html_writer
::tag('a', get_string('doc', 'webservice'),
351 array('href' => $doclink));
354 $table->data
[] = $row;
356 $return .= html_writer
::table($table);
358 $return .= get_string('notoken', 'webservice');
361 $return .= $this->output
->box_end();
366 * Return documentation for a ws description object
367 * ws description object can be 'external_multiple_structure', 'external_single_structure'
368 * or 'external_value'
370 * Example of documentation for core_group_create_groups function:
373 * courseid int //id of course
374 * name string //multilang compatible name, course unique
375 * description string //group description text
376 * enrolmentkey string //group enrol secret phrase
380 * @param stdClass $params a part of parameter/return description
381 * @return string the html to display
383 public function detailed_description_html($params) {
384 // retrieve the description of the description object
386 if (!empty($params->desc
)) {
387 $paramdesc .= html_writer
::start_tag('span', array('style' => "color:#2A33A6"));
388 if ($params->required
== VALUE_REQUIRED
) {
391 if ($params->required
== VALUE_DEFAULT
) {
392 if ($params->default === null) {
393 $params->default = "null";
395 $required = html_writer
::start_tag('b', array()) .
396 get_string('default', 'webservice', print_r($params->default, true))
397 . html_writer
::end_tag('b');
399 if ($params->required
== VALUE_OPTIONAL
) {
400 $required = html_writer
::start_tag('b', array()) .
401 get_string('optional', 'webservice') . html_writer
::end_tag('b');
403 $paramdesc .= " " . $required . " ";
404 $paramdesc .= html_writer
::start_tag('i', array());
407 $paramdesc .= s($params->desc
);
409 $paramdesc .= html_writer
::end_tag('i');
411 $paramdesc .= html_writer
::end_tag('span');
412 $paramdesc .= html_writer
::empty_tag('br', array());
415 // description object is a list
416 if ($params instanceof external_multiple_structure
) {
417 return $paramdesc . "list of ( " . html_writer
::empty_tag('br', array())
418 . $this->detailed_description_html($params->content
) . ")";
419 } else if ($params instanceof external_single_structure
) {
420 // description object is an object
421 $singlestructuredesc = $paramdesc . "object {" . html_writer
::empty_tag('br', array());
422 foreach ($params->keys
as $attributname => $attribut) {
423 $singlestructuredesc .= html_writer
::start_tag('b', array());
424 $singlestructuredesc .= $attributname;
425 $singlestructuredesc .= html_writer
::end_tag('b');
426 $singlestructuredesc .= " " .
427 $this->detailed_description_html($params->keys
[$attributname]);
429 $singlestructuredesc .= "} ";
430 $singlestructuredesc .= html_writer
::empty_tag('br', array());
431 return $singlestructuredesc;
433 // description object is a primary type (string, integer)
434 switch ($params->type
) {
435 case PARAM_BOOL
: // 0 or 1 only for now
445 return $type . " " . $paramdesc;
450 * Return a description object in indented xml format (for REST response)
451 * It is indented to be output within <pre> tags
453 * @param external_description $returndescription the description structure of the web service function returned value
454 * @param string $indentation Indentation in the generated HTML code; should contain only spaces.
455 * @return string the html to diplay
457 public function description_in_indented_xml_format($returndescription, $indentation = "") {
458 $indentation = $indentation . " ";
463 // description object is a list
464 if ($returndescription instanceof external_multiple_structure
) {
465 $return = $indentation . "<MULTIPLE>" . $brakeline;
466 $return .= $this->description_in_indented_xml_format($returndescription->content
,
468 $return .= $indentation . "</MULTIPLE>" . $brakeline;
470 } else if ($returndescription instanceof external_single_structure
) {
471 // description object is an object
472 $singlestructuredesc = $indentation . "<SINGLE>" . $brakeline;
473 $keyindentation = $indentation . " ";
474 foreach ($returndescription->keys
as $attributname => $attribut) {
475 $singlestructuredesc .= $keyindentation . "<KEY name=\"" . $attributname . "\">"
477 $this->description_in_indented_xml_format(
478 $returndescription->keys
[$attributname], $keyindentation) .
479 $keyindentation . "</KEY>" . $brakeline;
481 $singlestructuredesc .= $indentation . "</SINGLE>" . $brakeline;
482 return $singlestructuredesc;
484 // description object is a primary type (string, integer)
485 switch ($returndescription->type
) {
486 case PARAM_BOOL
: // 0 or 1 only for now
496 return $indentation . "<VALUE>" . $type . "</VALUE>" . $brakeline;
501 * Create indented XML-RPC param description
503 * @todo MDL-76078 - Incorrect inter-communication, core cannot have plugin dependencies like this.
505 * @param external_description $paramdescription the description structure of the web service function parameters
506 * @param string $indentation Indentation in the generated HTML code; should contain only spaces.
507 * @return string the html to diplay
509 public function xmlrpc_param_description_html($paramdescription, $indentation = "") {
510 $indentation = $indentation . " ";
515 // description object is a list
516 if ($paramdescription instanceof external_multiple_structure
) {
517 $return = $brakeline . $indentation . "Array ";
518 $indentation = $indentation . " ";
519 $return .= $brakeline . $indentation . "(";
520 $return .= $brakeline . $indentation . "[0] =>";
521 $return .= $this->xmlrpc_param_description_html($paramdescription->content
, $indentation);
522 $return .= $brakeline . $indentation . ")";
524 } else if ($paramdescription instanceof external_single_structure
) {
525 // description object is an object
526 $singlestructuredesc = $brakeline . $indentation . "Array ";
527 $keyindentation = $indentation . " ";
528 $singlestructuredesc .= $brakeline . $keyindentation . "(";
529 foreach ($paramdescription->keys
as $attributname => $attribut) {
530 $singlestructuredesc .= $brakeline . $keyindentation . "[" . $attributname . "] =>" .
531 $this->xmlrpc_param_description_html(
532 $paramdescription->keys
[$attributname], $keyindentation) .
535 $singlestructuredesc .= $brakeline . $keyindentation . ")";
536 return $singlestructuredesc;
538 // description object is a primary type (string, integer)
539 switch ($paramdescription->type
) {
540 case PARAM_BOOL
: // 0 or 1 only for now
555 * Return the html of a coloured box with content
557 * @param string $title - the title of the box
558 * @param string $content - the content to displayed
559 * @param string $rgb - the background color of the box
560 * @return string HTML code
562 public function colored_box_with_pre_tag($title, $content, $rgb = 'FEEBE5') {
563 //TODO MDL-31192 this tag removes xhtml strict error but cause warning
564 $coloredbox = html_writer
::start_tag('div', array());
565 $coloredbox .= html_writer
::start_tag('div',
566 array('style' => "border:solid 1px #DEDEDE;background:#" . $rgb
567 . ";color:#222222;padding:4px;"));
568 $coloredbox .= html_writer
::start_tag('pre', array());
569 $coloredbox .= html_writer
::start_tag('b', array());
570 $coloredbox .= $title;
571 $coloredbox .= html_writer
::end_tag('b', array());
572 $coloredbox .= html_writer
::empty_tag('br', array());
573 $coloredbox .= "\n" . $content . "\n";
574 $coloredbox .= html_writer
::end_tag('pre', array());
575 $coloredbox .= html_writer
::end_tag('div', array());
576 $coloredbox .= html_writer
::end_tag('div', array());
581 * Return indented REST param description
583 * @todo MDL-76078 - Incorrect inter-communication, core cannot have plugin dependencies like this.
585 * @param external_description $paramdescription the description structure of the web service function parameters
586 * @param string $paramstring parameter
587 * @return string the html to diplay
589 public function rest_param_description_html($paramdescription, $paramstring) {
594 // description object is a list
595 if ($paramdescription instanceof external_multiple_structure
) {
596 $paramstring = $paramstring . '[0]';
597 $return = $this->rest_param_description_html($paramdescription->content
, $paramstring);
599 } else if ($paramdescription instanceof external_single_structure
) {
600 // description object is an object
601 $singlestructuredesc = "";
602 $initialparamstring = $paramstring;
603 foreach ($paramdescription->keys
as $attributname => $attribut) {
604 $paramstring = $initialparamstring . '[' . $attributname . ']';
605 $singlestructuredesc .= $this->rest_param_description_html(
606 $paramdescription->keys
[$attributname], $paramstring);
608 return $singlestructuredesc;
610 // description object is a primary type (string, integer)
611 $paramstring = $paramstring . '=';
612 switch ($paramdescription->type
) {
613 case PARAM_BOOL
: // 0 or 1 only for now
623 return $paramstring . " " . $type . $brakeline;
628 * Displays all the documentation
630 * @todo MDL-76078 - Incorrect inter-communication, core cannot have plugin dependencies like this.
632 * @param array $functions external_description of all the web service functions
633 * @param boolean $printableformat true if we want to display the documentation in a printable format
634 * @param array $activatedprotocol the currently enabled protocol
635 * @param array $authparams url parameters (it contains 'tokenid' and sometimes 'print')
636 * @param string $parenturl url of the calling page - needed for the print button url:
637 * '/admin/documentation.php' or '/webservice/wsdoc.php' (default)
638 * @return string the html to diplay
640 public function documentation_html($functions, $printableformat, $activatedprotocol,
641 $authparams, $parenturl = '/webservice/wsdoc.php') {
643 $documentationhtml = $this->output
->heading(get_string('wsdocapi', 'webservice'));
645 $br = html_writer
::empty_tag('br', array());
650 // Some general information
651 $docinfo = new stdClass();
652 $docurl = new moodle_url('http://docs.moodle.org/dev/Creating_a_web_service_client');
653 $docinfo->doclink
= html_writer
::tag('a',
654 get_string('wsclientdoc', 'webservice'), array('href' => $docurl));
655 $documentationhtml .= get_string('wsdocumentationintro', 'webservice', $docinfo);
656 $documentationhtml .= $br . $br;
660 $authparams['print'] = true;
661 $url = new moodle_url($parenturl, $authparams); // Required
662 $documentationhtml .= $this->output
->single_button($url, get_string('print', 'webservice'));
663 $documentationhtml .= $br;
666 // each functions will be displayed into a collapsible region
667 //(opened if printableformat = true)
668 foreach ($functions as $functionname => $description) {
671 if (!empty($description->deprecated
)) {
672 $tags .= ' ' . html_writer
::span(get_string('deprecated', 'core_webservice'), 'badge badge-warning');
675 if (empty($printableformat)) {
676 $documentationhtml .= print_collapsible_region_start('',
677 'aera_' . $functionname,
678 html_writer
::start_tag('strong', array())
679 . $functionname . html_writer
::end_tag('strong') . $tags,
684 $documentationhtml .= html_writer
::tag('strong', $functionname) . $tags;
685 $documentationhtml .= $br;
688 // function global description
689 $documentationhtml .= $br;
690 $documentationhtml .= html_writer
::start_tag('div',
691 array('style' => 'border:solid 1px #DEDEDE;background:#E2E0E0;
692 color:#222222;padding:4px;'));
693 $documentationhtml .= s($description->description
);
694 $documentationhtml .= html_writer
::end_tag('div');
695 $documentationhtml .= $br . $br;
697 // function arguments documentation
698 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'color:#EA33A6'));
699 $documentationhtml .= get_string('arguments', 'webservice');
700 $documentationhtml .= html_writer
::end_tag('span');
701 $documentationhtml .= $br;
702 foreach ($description->parameters_desc
->keys
as $paramname => $paramdesc) {
703 // a argument documentation
704 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'font-size:80%'));
706 if ($paramdesc->required
== VALUE_REQUIRED
) {
707 $required = get_string('required', 'webservice');
709 if ($paramdesc->required
== VALUE_DEFAULT
) {
710 if ($paramdesc->default === null) {
713 $default = print_r($paramdesc->default, true);
715 $required = get_string('default', 'webservice', $default);
717 if ($paramdesc->required
== VALUE_OPTIONAL
) {
718 $required = get_string('optional', 'webservice');
721 $documentationhtml .= html_writer
::start_tag('b', array());
722 $documentationhtml .= $paramname;
723 $documentationhtml .= html_writer
::end_tag('b');
724 $documentationhtml .= " (" . $required . ")"; // argument is required or optional ?
725 $documentationhtml .= $br;
726 $documentationhtml .= " "
727 . s($paramdesc->desc
); // Argument description.
728 $documentationhtml .= $br . $br;
729 // general structure of the argument
730 $documentationhtml .= $this->colored_box_with_pre_tag(
731 get_string('generalstructure', 'webservice'),
732 $this->detailed_description_html($paramdesc),
734 // xml-rpc structure of the argument in PHP format
735 if (!empty($activatedprotocol['xmlrpc'])) {
736 $documentationhtml .= $this->colored_box_with_pre_tag(
737 get_string('phpparam', 'webservice'),
738 htmlentities('[' . $paramname . '] =>'
739 . $this->xmlrpc_param_description_html($paramdesc), ENT_COMPAT
),
742 // POST format for the REST protocol for the argument
743 if (!empty($activatedprotocol['rest'])) {
744 $documentationhtml .= $this->colored_box_with_pre_tag(
745 get_string('restparam', 'webservice'),
746 htmlentities($this->rest_param_description_html(
747 $paramdesc, $paramname), ENT_COMPAT
),
750 $documentationhtml .= html_writer
::end_tag('span');
752 $documentationhtml .= $br . $br;
755 // function response documentation
756 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'color:#EA33A6'));
757 $documentationhtml .= get_string('response', 'webservice');
758 $documentationhtml .= html_writer
::end_tag('span');
759 $documentationhtml .= $br;
760 // function response description
761 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'font-size:80%'));
762 if (!empty($description->returns_desc
->desc
)) {
763 $documentationhtml .= $description->returns_desc
->desc
;
764 $documentationhtml .= $br . $br;
766 if (!empty($description->returns_desc
)) {
767 // general structure of the response
768 $documentationhtml .= $this->colored_box_with_pre_tag(
769 get_string('generalstructure', 'webservice'),
770 $this->detailed_description_html($description->returns_desc
),
772 // xml-rpc structure of the response in PHP format
773 if (!empty($activatedprotocol['xmlrpc'])) {
774 $documentationhtml .= $this->colored_box_with_pre_tag(
775 get_string('phpresponse', 'webservice'),
776 htmlentities($this->xmlrpc_param_description_html(
777 $description->returns_desc
), ENT_COMPAT
),
780 // XML response for the REST protocol
781 if (!empty($activatedprotocol['rest'])) {
782 $restresponse = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>"
783 . $brakeline . "<RESPONSE>" . $brakeline;
784 $restresponse .= $this->description_in_indented_xml_format(
785 $description->returns_desc
);
786 $restresponse .="</RESPONSE>" . $brakeline;
787 $documentationhtml .= $this->colored_box_with_pre_tag(
788 get_string('restcode', 'webservice'),
789 htmlentities($restresponse, ENT_COMPAT
),
793 $documentationhtml .= html_writer
::end_tag('span');
794 $documentationhtml .= $br . $br;
796 // function errors documentation for REST protocol
797 if (!empty($activatedprotocol['rest'])) {
798 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'color:#EA33A6'));
799 $documentationhtml .= get_string('errorcodes', 'webservice');
800 $documentationhtml .= html_writer
::end_tag('span');
801 $documentationhtml .= $br . $br;
802 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'font-size:80%'));
803 $errormessage = get_string('invalidparameter', 'debug');
804 $restexceptiontext = <<<EOF
805 <?xml version="1.0" encoding="UTF-8"?>
806 <EXCEPTION class="invalid_parameter_exception">
807 <MESSAGE>{$errormessage}</MESSAGE>
808 <DEBUGINFO></DEBUGINFO>
811 $documentationhtml .= $this->colored_box_with_pre_tag(
812 get_string('restexception', 'webservice'),
813 htmlentities($restexceptiontext, ENT_COMPAT
),
816 $documentationhtml .= html_writer
::end_tag('span');
818 $documentationhtml .= $br . $br;
820 // Login required info.
821 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'color:#EA33A6'));
822 $documentationhtml .= get_string('loginrequired', 'webservice') . $br;
823 $documentationhtml .= html_writer
::end_tag('span');
824 $documentationhtml .= $description->loginrequired ?
get_string('yes') : get_string('no');
825 $documentationhtml .= $br . $br;
828 $documentationhtml .= html_writer
::start_tag('span', array('style' => 'color:#EA33A6'));
829 $documentationhtml .= get_string('callablefromajax', 'webservice') . $br;
830 $documentationhtml .= html_writer
::end_tag('span');
831 $documentationhtml .= $description->allowed_from_ajax ?
get_string('yes') : get_string('no');
832 $documentationhtml .= $br . $br;
834 if (empty($printableformat)) {
835 $documentationhtml .= print_collapsible_region_end(true);
839 return $documentationhtml;