forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'MDL-75235' of https://github.com/paulholden/moodle
- Loading branch information
Showing
11 changed files
with
244 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?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_reportbuilder\external\filters; | ||
|
||
use external_api; | ||
use external_function_parameters; | ||
use external_value; | ||
use core_reportbuilder\manager; | ||
use core_reportbuilder\permission; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
global $CFG; | ||
require_once("{$CFG->libdir}/externallib.php"); | ||
|
||
/** | ||
* External method for setting report filter values | ||
* | ||
* @package core_reportbuilder | ||
* @copyright 2022 Paul Holden <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
class set extends external_api { | ||
|
||
/** | ||
* External method parameters | ||
* | ||
* @return external_function_parameters | ||
*/ | ||
public static function execute_parameters(): external_function_parameters { | ||
return new external_function_parameters([ | ||
'reportid' => new external_value(PARAM_INT, 'Report ID'), | ||
'parameters' => new external_value(PARAM_RAW, 'JSON encoded report parameters', VALUE_DEFAULT, ''), | ||
'values' => new external_value(PARAM_RAW, 'JSON encoded filter values'), | ||
]); | ||
} | ||
|
||
/** | ||
* External method execution | ||
* | ||
* @param int $reportid | ||
* @param string $parameters | ||
* @param string $values | ||
* @return bool | ||
*/ | ||
public static function execute(int $reportid, string $parameters, string $values): bool { | ||
[ | ||
'reportid' => $reportid, | ||
'parameters' => $parameters, | ||
'values' => $values, | ||
] = self::validate_parameters(self::execute_parameters(), [ | ||
'reportid' => $reportid, | ||
'parameters' => $parameters, | ||
'values' => $values, | ||
]); | ||
|
||
$report = manager::get_report_from_id($reportid, (array) json_decode($parameters)); | ||
self::validate_context($report->get_context()); | ||
|
||
// System report permission is implicitly handled, we need to make sure custom report can be viewed. | ||
$persistent = $report->get_report_persistent(); | ||
if ($persistent->get('type') === $report::TYPE_CUSTOM_REPORT) { | ||
permission::require_can_view_report($persistent); | ||
} | ||
|
||
return $report->set_filter_values((array) json_decode($values)); | ||
} | ||
|
||
/** | ||
* External method return value | ||
* | ||
* @return external_value | ||
*/ | ||
public static function execute_returns(): external_value { | ||
return new external_value(PARAM_BOOL, 'Success'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.