Merge branch 'MDL-71943-master' of git://github.com/dravek/moodle

This commit is contained in:
Ilya Tregubov 2021-09-27 18:34:12 +02:00
commit d7620cc5bc
16 changed files with 755 additions and 1 deletions

View file

@ -0,0 +1,113 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
declare(strict_types=1);
namespace core\external;
use coding_exception;
use context_system;
use core\output\dynamic_tabs\base;
use external_api;
use external_function_parameters;
use external_single_structure;
use external_value;
defined('MOODLE_INTERNAL') || die();
global $CFG;
require_once("$CFG->libdir/externallib.php");
/**
* External method for getting tab contents
*
* @package core
* @copyright 2021 David Matamoros <davidmc@moodle.com> based on code from Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class dynamic_tabs_get_content extends external_api {
/**
* External method parameters
*
* @return external_function_parameters
*/
public static function execute_parameters(): external_function_parameters {
return new external_function_parameters([
'tab' => new external_value(PARAM_RAW_TRIMMED, 'Tab class', VALUE_REQUIRED),
'jsondata' => new external_value(PARAM_RAW, 'Json-encoded data', VALUE_REQUIRED),
]);
}
/**
* Tab content
*
* @param string $tabclass class of the tab
* @param string $jsondata
* @return array
*/
public static function execute(string $tabclass, string $jsondata): array {
global $PAGE, $OUTPUT;
[
'tab' => $tabclass,
'jsondata' => $jsondata,
] = self::validate_parameters(self::execute_parameters(), [
'tab' => $tabclass,
'jsondata' => $jsondata,
]);
$data = @json_decode($jsondata, true);
$context = context_system::instance();
self::validate_context($context);
// This call is needed to avoid debug messages on webserver log.
$PAGE->set_url('/');
// This call is needed to initiate moodle page.
$OUTPUT->header();
if (!class_exists($tabclass) || !is_subclass_of($tabclass, base::class)) {
throw new coding_exception('unknown dynamic tab class', $tabclass);
}
/** @var base $tab */
$tab = new $tabclass($data);
$tab->require_access();
$PAGE->start_collecting_javascript_requirements();
$content = $tab->export_for_template($PAGE->get_renderer('core'));
$jsfooter = $PAGE->requires->get_end_code();
return [
'template' => $tab->get_template(),
'content' => json_encode($content),
'javascript' => $jsfooter,
];
}
/**
* External method return value
*
* @return external_single_structure
*/
public static function execute_returns(): external_single_structure {
return new external_single_structure([
'template' => new external_value(PARAM_PATH, 'Template name'),
'content' => new external_value(PARAM_RAW, 'JSON-encoded data for template'),
'javascript' => new external_value(PARAM_RAW, 'JavaScript fragment'),
]);
}
}

View file

@ -0,0 +1,90 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
declare(strict_types=1);
namespace core\output;
use core\output\dynamic_tabs\base;
use renderer_base;
use templatable;
/**
* Class dynamic tabs
*
* @package core
* @copyright 2018 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class dynamic_tabs implements templatable {
/** @var array */
protected $attributes;
/** @var base[] */
protected $tabs = [];
/**
* tabs constructor.
*
* @param array $attributes additional attributes that will be passed to the webservice
* @param base[] $tabs array of tab
*/
public function __construct(array $attributes = [], array $tabs = []) {
$this->attributes = $attributes;
foreach ($tabs as $tab) {
$this->add_tab($tab);
}
}
/**
* Add a tab
*
* @param base $tab
*/
public function add_tab(base $tab): void {
$this->tabs[] = $tab;
}
/**
* Implementation of exporter from templatable interface
*
* @param renderer_base $output
* @return array
*/
public function export_for_template(renderer_base $output): array {
$data = [
'dataattributes' => [],
'tabs' => []
];
foreach ($this->attributes as $name => $value) {
$data['dataattributes'][] = ['name' => $name, 'value' => $value];
}
foreach ($this->tabs as $tab) {
$data['tabs'][] = [
'shortname' => $tab->get_tab_id(),
'displayname' => $tab->get_tab_label(),
'enabled' => $tab->is_available(),
'tabclass' => get_class($tab)
];
}
$data['showtabsnavigation'] = (count($data['tabs']) > 1) ? 1 : 0;
return $data;
}
}

View file

@ -0,0 +1,86 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle 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 3 of the License, or
// (at your option) any later version.
//
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
declare(strict_types=1);
namespace core\output\dynamic_tabs;
use moodle_exception;
use templatable;
/**
* Class tab_base
*
* @package core
* @copyright 2018 Marina Glancy
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
abstract class base implements templatable {
/** @var array */
protected $data;
/**
* tab constructor.
*
* @param array $data
*/
final public function __construct(array $data) {
$this->data = $data;
}
/**
* HTML "id" attribute that should be used for this tab, by default the last part of class name
*
* @return string
*/
public function get_tab_id(): string {
$parts = preg_split('/\\\\/', static::class);
return array_pop($parts);
}
/**
* The label to be displayed on the tab
*
* @return string
*/
abstract public function get_tab_label(): string;
/**
* Check permission of the current user to access this tab
*
* @return bool
*/
abstract public function is_available(): bool;
/**
* Check that tab is accessible, throw exception otherwise - used from WS requesting tab contents
*
* @throws moodle_exception
*/
final public function require_access() {
if (!$this->is_available()) {
throw new moodle_exception('nopermissiontoaccesspage', 'error');
}
}
/**
* Template to use to display tab contents
*
* @return string
*/
abstract public function get_template(): string;
}