forked from Opencast-Moodle/moodle-block_opencast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addactivityepisode.php
155 lines (129 loc) · 6.53 KB
/
addactivityepisode.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?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/>.
/**
* Allows users to add a mod_opencast activity for a video.
*
* @package block_opencast
* @copyright 2020 Alexander Bias, Ulm University <[email protected]>, 2021 Justus Dieckmann WWU
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once('../../config.php');
global $PAGE, $OUTPUT, $CFG;
$episodeuuid = required_param('episodeuuid', PARAM_ALPHANUMEXT);
$courseid = required_param('courseid', PARAM_INT);
$submitbutton2 = optional_param('submitbutton2', '', PARAM_ALPHA);
$ocinstanceid = required_param('ocinstanceid', PARAM_INT);
$baseurl = new moodle_url('/blocks/opencast/addactivityepisode.php', array('episodeuuid' => $episodeuuid, 'courseid' => $courseid, 'ocinstanceid' => $ocinstanceid));
$PAGE->set_url($baseurl);
$redirecturloverview = new moodle_url('/blocks/opencast/index.php', array('courseid' => $courseid, 'ocinstanceid' => $ocinstanceid));
$redirecturlcourse = new moodle_url('/course/view.php', array('id' => $courseid));
require_login($courseid, false);
$PAGE->set_pagelayout('incourse');
$PAGE->set_title(get_string('pluginname', 'block_opencast'));
$PAGE->set_heading(get_string('pluginname', 'block_opencast'));
$PAGE->navbar->add(get_string('pluginname', 'block_opencast'), $redirecturloverview);
$PAGE->navbar->add(get_string('addactivityepisode_addicontitle', 'block_opencast'), $baseurl);
// Check if the Opencast Activity module feature is enabled and working.
if (\block_opencast\local\activitymodulemanager::is_enabled_and_working_for_episodes($ocinstanceid) == false) {
throw new moodle_exception('add opencast activity episode module not enabled or working',
'block_opencast', $redirecturloverview);
}
// Capability check.
$coursecontext = context_course::instance($courseid);
require_capability('block/opencast:addactivityepisode', $coursecontext);
// Existing Opencast Activity module check.
$moduleid = \block_opencast\local\activitymodulemanager::get_module_for_episode($courseid, $episodeuuid, $ocinstanceid);
if ($moduleid) {
// Redirect to Opencast videos overview page.
redirect($redirecturloverview,
get_string('addactivityepisode_moduleexists', 'block_opencast'), null, \core\output\notification::NOTIFY_WARNING);
}
// Episode UUID Check.
// We do not validate if the given episode is really published in the given course.
// But we validate if the given episode UUID is really a UUID.
// The test code is borrowed from /lib/tests/setuplib_tests.php.
$uuidv4pattern = '/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i';
if (strlen($episodeuuid) != 36 || preg_match($uuidv4pattern, $episodeuuid) !== 1) {
throw new moodle_exception('The given episode UUID is not valid', 'block_opencast',
$redirecturloverview);
}
$addactivityform = new \block_opencast\local\addactivityepisode_form(null,
array('episodeuuid' => $episodeuuid, 'courseid' => $courseid, 'ocinstanceid' => $ocinstanceid));
if ($addactivityform->is_cancelled()) {
redirect($redirecturloverview);
}
if ($data = $addactivityform->get_data()) {
// Verify again that we have a title. If not, use the default title.
if (!$data->title) {
$data->title = get_string('addactivityepisode_defaulttitle', 'block_opencast');
}
// If the intro feature is disabled or if we do not have an intro, use an empty string as intro.
if (get_config('block_opencast', 'addactivityepisodeintro_' . $ocinstanceid) != true || !isset($data->intro) || !$data->intro) {
$introtext = '';
$introformat = FORMAT_HTML;
// Otherwise.
} else {
$introtext = $data->intro['text'];
$introformat = $data->intro['format'];
}
// If the section feature is disabled or if we do not have an intro, use the default section.
if (get_config('block_opencast', 'addactivityepisodesection_' . $ocinstanceid) != true || !isset($data->section) || !$data->section) {
$sectionid = 0;
// Otherwise.
} else {
$sectionid = $data->section;
}
// If the availability feature is disabled or if we do not have an availability given, use null.
if (get_config('block_opencast', 'addactivityepisodeavailability_' . $ocinstanceid) != true || empty($CFG->enableavailability) ||
!isset($data->availabilityconditionsjson) || !$data->availabilityconditionsjson) {
$availability = null;
// Otherwise.
} else {
$availability = $data->availabilityconditionsjson;
}
// Create the module.
$result = \block_opencast\local\activitymodulemanager::create_module_for_episode($courseid, $ocinstanceid, $data->title, $episodeuuid,
$sectionid, $introtext, $introformat, $availability);
// Check if the module was created successfully.
if ($result == true) {
// Form was submitted with second submit button.
if ($submitbutton2) {
// Redirect to course overview.
redirect($redirecturlcourse,
get_string('addactivityepisode_modulecreated', 'block_opencast', $data->title),
null,
\core\output\notification::NOTIFY_SUCCESS);
// Form was submitted with first submit button.
} else {
// Redirect to Opencast videos overview page.
redirect($redirecturloverview,
get_string('addactivityepisode_modulecreated', 'block_opencast', $data->title),
null,
\core\output\notification::NOTIFY_SUCCESS);
}
// Otherwise.
} else {
// Redirect to Opencast videos overview page.
redirect($redirecturloverview,
get_string('addactivityepisode_modulenotcreated', 'block_opencast', $data->title),
null,
\core\output\notification::NOTIFY_ERROR);
}
}
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('addactivityepisode_addicontitle', 'block_opencast'));
$addactivityform->display();
echo $OUTPUT->footer();