MDL-59388 calendar: Break out event exporter into a base class
This commit is contained in:
committed by
Simey Lameze
parent
b16dca435a
commit
6ad2bfd124
+25
-149
@@ -26,6 +26,7 @@ namespace core_calendar\external;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
|
||||
require_once($CFG->dirroot . "/calendar/lib.php");
|
||||
|
||||
use \core\external\exporter;
|
||||
@@ -42,112 +43,7 @@ use \renderer_base;
|
||||
* @copyright 2017 Ryan Wyllie <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class event_exporter extends exporter {
|
||||
|
||||
/**
|
||||
* @var event_interface $event
|
||||
*/
|
||||
protected $event;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param event_interface $event
|
||||
* @param array $related The related data.
|
||||
*/
|
||||
public function __construct(event_interface $event, $related = []) {
|
||||
$this->event = $event;
|
||||
|
||||
$starttimestamp = $event->get_times()->get_start_time()->getTimestamp();
|
||||
$endtimestamp = $event->get_times()->get_end_time()->getTimestamp();
|
||||
$groupid = $event->get_group() ? $event->get_group()->get('id') : null;
|
||||
$userid = $event->get_user() ? $event->get_user()->get('id') : null;
|
||||
|
||||
$data = new \stdClass();
|
||||
$data->id = $event->get_id();
|
||||
$data->name = $event->get_name();
|
||||
$data->description = $event->get_description()->get_value();
|
||||
$data->descriptionformat = $event->get_description()->get_format();
|
||||
$data->groupid = $groupid;
|
||||
$data->userid = $userid;
|
||||
$data->eventtype = $event->get_type();
|
||||
$data->timestart = $starttimestamp;
|
||||
$data->timeduration = $endtimestamp - $starttimestamp;
|
||||
$data->timesort = $event->get_times()->get_sort_time()->getTimestamp();
|
||||
$data->visible = $event->is_visible() ? 1 : 0;
|
||||
$data->timemodified = $event->get_times()->get_modified_time()->getTimestamp();
|
||||
|
||||
if ($repeats = $event->get_repeats()) {
|
||||
$data->repeatid = $repeats->get_id();
|
||||
}
|
||||
|
||||
if ($cm = $event->get_course_module()) {
|
||||
$data->modulename = $cm->get('modname');
|
||||
$data->instance = $cm->get('id');
|
||||
}
|
||||
|
||||
parent::__construct($data, $related);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the list of properties.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected static function define_properties() {
|
||||
return [
|
||||
'id' => ['type' => PARAM_INT],
|
||||
'name' => ['type' => PARAM_TEXT],
|
||||
'description' => [
|
||||
'type' => PARAM_RAW,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'descriptionformat' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'groupid' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'userid' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'repeatid' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'modulename' => [
|
||||
'type' => PARAM_TEXT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'instance' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'eventtype' => ['type' => PARAM_TEXT],
|
||||
'timestart' => ['type' => PARAM_INT],
|
||||
'timeduration' => ['type' => PARAM_INT],
|
||||
'timesort' => ['type' => PARAM_INT],
|
||||
'visible' => ['type' => PARAM_INT],
|
||||
'timemodified' => ['type' => PARAM_INT],
|
||||
];
|
||||
}
|
||||
class event_exporter extends event_exporter_base {
|
||||
|
||||
/**
|
||||
* Return the list of additional properties.
|
||||
@@ -155,34 +51,26 @@ class event_exporter extends exporter {
|
||||
* @return array
|
||||
*/
|
||||
protected static function define_other_properties() {
|
||||
return [
|
||||
'url' => ['type' => PARAM_URL],
|
||||
'editurl' => [
|
||||
'type' => PARAM_URL,
|
||||
'optional' => true
|
||||
],
|
||||
'icon' => [
|
||||
'type' => event_icon_exporter::read_properties_definition(),
|
||||
],
|
||||
'action' => [
|
||||
'type' => event_action_exporter::read_properties_definition(),
|
||||
'optional' => true,
|
||||
],
|
||||
'course' => [
|
||||
'type' => course_summary_exporter::read_properties_definition(),
|
||||
'optional' => true,
|
||||
],
|
||||
'canedit' => ['type' => PARAM_BOOL],
|
||||
'displayeventsource' => ['type' => PARAM_BOOL],
|
||||
'subscription' => [
|
||||
'type' => PARAM_RAW,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'isactionevent' => ['type' => PARAM_BOOL],
|
||||
'candelete' => ['type' => PARAM_BOOL]
|
||||
|
||||
$values = parent::define_other_properties();
|
||||
|
||||
$values['canedit'] = ['type' => PARAM_BOOL];
|
||||
$values['displayeventsource'] = ['type' => PARAM_BOOL];
|
||||
$values['subscription'] = [
|
||||
'type' => PARAM_RAW,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
];
|
||||
$values['isactionevent'] = ['type' => PARAM_BOOL];
|
||||
$values['candelete'] = ['type' => PARAM_BOOL];
|
||||
$values['url'] = ['type' => PARAM_URL];
|
||||
$values['action'] = [
|
||||
'type' => event_action_exporter::read_properties_definition(),
|
||||
'optional' => true,
|
||||
];
|
||||
|
||||
return $values;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -192,12 +80,14 @@ class event_exporter extends exporter {
|
||||
* @return array Keys are the property names, values are their values.
|
||||
*/
|
||||
protected function get_other_values(renderer_base $output) {
|
||||
$values = [];
|
||||
$values = parent::get_other_values($output);
|
||||
|
||||
$event = $this->event;
|
||||
$legacyevent = container::get_event_mapper()->from_event_to_legacy_event($event);
|
||||
|
||||
$context = $this->related['context'];
|
||||
$values['isactionevent'] = false;
|
||||
|
||||
if ($moduleproxy = $event->get_course_module()) {
|
||||
$modulename = $moduleproxy->get('modname');
|
||||
$moduleid = $moduleproxy->get('id');
|
||||
@@ -215,11 +105,8 @@ class event_exporter extends exporter {
|
||||
require_once($CFG->dirroot.'/course/lib.php');
|
||||
$url = \course_get_url($this->related['course'] ?: SITEID);
|
||||
}
|
||||
$timesort = $event->get_times()->get_sort_time()->getTimestamp();
|
||||
$iconexporter = new event_icon_exporter($event, ['context' => $context]);
|
||||
|
||||
$values['url'] = $url->out(false);
|
||||
$values['icon'] = $iconexporter->export($output);
|
||||
|
||||
if ($event instanceof action_event_interface) {
|
||||
$actionrelated = [
|
||||
@@ -253,18 +140,7 @@ class event_exporter extends exporter {
|
||||
$values['subscription'] = json_encode($subscriptiondata);
|
||||
}
|
||||
}
|
||||
|
||||
return $values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of objects that are related.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected static function define_related() {
|
||||
return [
|
||||
'context' => 'context',
|
||||
'course' => 'stdClass?',
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
+225
@@ -0,0 +1,225 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Contains event class for displaying a calendar event.
|
||||
*
|
||||
* @package core_calendar
|
||||
* @copyright 2017 Ryan Wyllie <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace core_calendar\external;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
use \core\external\exporter;
|
||||
use \core_calendar\local\event\entities\event_interface;
|
||||
use \core_calendar\local\event\entities\action_event_interface;
|
||||
use \core_course\external\course_summary_exporter;
|
||||
use \renderer_base;
|
||||
|
||||
/**
|
||||
* Class for displaying a calendar event.
|
||||
*
|
||||
* @package core_calendar
|
||||
* @copyright 2017 Ryan Wyllie <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class event_exporter_base extends exporter {
|
||||
|
||||
/**
|
||||
* @var event_interface $event
|
||||
*/
|
||||
protected $event;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param event_interface $event
|
||||
* @param array $related The related data.
|
||||
*/
|
||||
public function __construct(event_interface $event, $related = []) {
|
||||
$this->event = $event;
|
||||
|
||||
$starttimestamp = $event->get_times()->get_start_time()->getTimestamp();
|
||||
$endtimestamp = $event->get_times()->get_end_time()->getTimestamp();
|
||||
$groupid = $event->get_group() ? $event->get_group()->get('id') : null;
|
||||
$userid = $event->get_user() ? $event->get_user()->get('id') : null;
|
||||
|
||||
$data = new \stdClass();
|
||||
$data->id = $event->get_id();
|
||||
$data->name = $event->get_name();
|
||||
$data->description = $event->get_description()->get_value();
|
||||
$data->descriptionformat = $event->get_description()->get_format();
|
||||
$data->groupid = $groupid;
|
||||
$data->userid = $userid;
|
||||
$data->eventtype = $event->get_type();
|
||||
$data->timestart = $starttimestamp;
|
||||
$data->timeduration = $endtimestamp - $starttimestamp;
|
||||
$data->timesort = $event->get_times()->get_sort_time()->getTimestamp();
|
||||
$data->visible = $event->is_visible() ? 1 : 0;
|
||||
$data->timemodified = $event->get_times()->get_modified_time()->getTimestamp();
|
||||
|
||||
if ($repeats = $event->get_repeats()) {
|
||||
$data->repeatid = $repeats->get_id();
|
||||
}
|
||||
|
||||
if ($cm = $event->get_course_module()) {
|
||||
$data->modulename = $cm->get('modname');
|
||||
$data->instance = $cm->get('id');
|
||||
}
|
||||
|
||||
parent::__construct($data, $related);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the list of properties.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected static function define_properties() {
|
||||
return [
|
||||
'id' => ['type' => PARAM_INT],
|
||||
'name' => ['type' => PARAM_TEXT],
|
||||
'description' => [
|
||||
'type' => PARAM_RAW,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'descriptionformat' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'groupid' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'userid' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'repeatid' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'modulename' => [
|
||||
'type' => PARAM_TEXT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'instance' => [
|
||||
'type' => PARAM_INT,
|
||||
'optional' => true,
|
||||
'default' => null,
|
||||
'null' => NULL_ALLOWED
|
||||
],
|
||||
'eventtype' => ['type' => PARAM_TEXT],
|
||||
'timestart' => ['type' => PARAM_INT],
|
||||
'timeduration' => ['type' => PARAM_INT],
|
||||
'timesort' => ['type' => PARAM_INT],
|
||||
'visible' => ['type' => PARAM_INT],
|
||||
'timemodified' => ['type' => PARAM_INT],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the list of additional properties.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected static function define_other_properties() {
|
||||
return [
|
||||
'url' => ['type' => PARAM_URL],
|
||||
'icon' => [
|
||||
'type' => event_icon_exporter::read_properties_definition(),
|
||||
],
|
||||
'action' => [
|
||||
'type' => event_action_exporter::read_properties_definition(),
|
||||
'optional' => true,
|
||||
],
|
||||
'course' => [
|
||||
'type' => course_summary_exporter::read_properties_definition(),
|
||||
'optional' => true,
|
||||
]
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the additional values to inject while exporting.
|
||||
*
|
||||
* @param renderer_base $output The renderer.
|
||||
* @return array Keys are the property names, values are their values.
|
||||
*/
|
||||
protected function get_other_values(renderer_base $output) {
|
||||
$values = [];
|
||||
$event = $this->event;
|
||||
$context = $this->related['context'];
|
||||
if ($moduleproxy = $event->get_course_module()) {
|
||||
$modulename = $moduleproxy->get('modname');
|
||||
$moduleid = $moduleproxy->get('id');
|
||||
$url = new \moodle_url(sprintf('/mod/%s/view.php', $modulename), ['id' => $moduleid]);
|
||||
} else {
|
||||
// TODO MDL-58866 We do not have any way to find urls for events outside of course modules.
|
||||
global $CFG;
|
||||
require_once($CFG->dirroot.'/course/lib.php');
|
||||
$url = \course_get_url($this->related['course'] ?: SITEID);
|
||||
}
|
||||
$timesort = $event->get_times()->get_sort_time()->getTimestamp();
|
||||
$iconexporter = new event_icon_exporter($event, ['context' => $context]);
|
||||
|
||||
$values['url'] = $url->out(false);
|
||||
$values['icon'] = $iconexporter->export($output);
|
||||
|
||||
if ($event instanceof action_event_interface) {
|
||||
$actionrelated = [
|
||||
'context' => $context,
|
||||
'event' => $event
|
||||
];
|
||||
$actionexporter = new event_action_exporter($event->get_action(), $actionrelated);
|
||||
$values['action'] = $actionexporter->export($output);
|
||||
}
|
||||
|
||||
if ($course = $this->related['course']) {
|
||||
$coursesummaryexporter = new course_summary_exporter($course, ['context' => $context]);
|
||||
$values['course'] = $coursesummaryexporter->export($output);
|
||||
}
|
||||
|
||||
return $values;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns a list of objects that are related.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected static function define_related() {
|
||||
return [
|
||||
'context' => 'context',
|
||||
'course' => 'stdClass?',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user