forked from Opencast-Moodle/moodle-block_opencast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deletedraft.php
113 lines (94 loc) · 4.4 KB
/
deletedraft.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
<?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/>.
/**
* View for deleting a draft video which has still the status readytoupload
*
* @package block_opencast
* @copyright 2020 Educational Technologies, Graz, University of Technology
* @author Behnam Taraghi
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once('../../config.php');
use block_opencast\local\upload_helper;
global $PAGE, $OUTPUT, $CFG;
$identifier = required_param('identifier', PARAM_ALPHANUMEXT);
$courseid = required_param('courseid', PARAM_INT);
$action = optional_param('action', '', PARAM_ALPHA);
$ocinstanceid = optional_param('ocinstanceid', \tool_opencast\local\settings_api::get_default_ocinstance()->id, PARAM_INT);
$redirectpage = optional_param('redirectpage', null, PARAM_ALPHA);
$series = optional_param('series', null, PARAM_ALPHANUMEXT);
$baseurl = new moodle_url('/blocks/opencast/deletedraft.php',
array('identifier' => $identifier, 'courseid' => $courseid, 'ocinstanceid' => $ocinstanceid,
'redirectpage' => $redirectpage, 'series' => $series));
$PAGE->set_url($baseurl);
require_login($courseid, false);
$PAGE->set_pagelayout('incourse');
$PAGE->set_title(get_string('pluginname', 'block_opencast'));
$PAGE->set_heading(get_string('pluginname', 'block_opencast'));
if ($redirectpage == 'overviewvideos') {
$redirecturl = new moodle_url('/blocks/opencast/overview_videos.php', array('ocinstanceid' => $ocinstanceid,
'series' => $series));
} else {
$redirecturl = new moodle_url('/blocks/opencast/index.php', array('courseid' => $courseid, 'ocinstanceid' => $ocinstanceid));
}
$PAGE->navbar->add(get_string('pluginname', 'block_opencast'), $redirecturl);
$PAGE->navbar->add(get_string('deletedraft', 'block_opencast'), $baseurl);
// Capability check.
// the one who is allowed to add the video is also allowed to delete the video before it is uploaded.
$coursecontext = context_course::instance($courseid);
require_capability('block/opencast:addvideo', $coursecontext);
$uploadjobs = upload_helper::get_upload_jobs($ocinstanceid, $courseid);
$jobtodelete = null;
foreach ($uploadjobs as $uploadjob) {
if ($uploadjob->id == $identifier) {
$jobtodelete = $uploadjob;
break;
}
}
if (!$jobtodelete) {
$message = get_string('videodraftnotfound', 'block_opencast');
redirect($redirecturl, $message, null, \core\output\notification::NOTIFY_WARNING);
}
if ($jobtodelete->status != upload_helper::STATUS_READY_TO_UPLOAD) {
$message = get_string('videodraftnotdeletable', 'block_opencast',
upload_helper::get_status_string($jobtodelete->status));
redirect($redirecturl, $message, null, \core\output\notification::NOTIFY_WARNING);
}
if (($action == 'delete') && confirm_sesskey()) {
$deleted = upload_helper::delete_video_draft($jobtodelete);
$message = $deleted ? get_string('videodraftdeletionsucceeded', 'block_opencast') :
get_string('videodraftnotdeletable', 'block_opencast',
upload_helper::get_status_string($jobtodelete->status));
redirect($redirecturl, $message);
}
$html = $OUTPUT->notification(get_string('deletedraftdesc', 'block_opencast'), 'error');
$renderer = $PAGE->get_renderer('block_opencast');
$html .= $renderer->render_upload_jobs($ocinstanceid, [$jobtodelete], false);
$label = get_string('dodeletedraft', 'block_opencast');
$params = array(
'identifier' => $identifier,
'courseid' => $courseid,
'action' => 'delete',
'ocinstanceid' => $ocinstanceid,
'redirectpage' => $redirectpage,
'series' => $series
);
$urldelete = new \moodle_url('/blocks/opencast/deletedraft.php', $params);
$html .= $OUTPUT->confirm($label, $urldelete, $redirecturl);
echo $OUTPUT->header();
echo $OUTPUT->heading(get_string('deletedraft', 'block_opencast'));
echo $html;
echo $OUTPUT->footer();