forked from catalyst/moodle-tool_objectfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renderer.php
272 lines (236 loc) · 10.1 KB
/
renderer.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<?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/>.
/**
* File status renderer.
*
* @package tool_objectfs
* @author Kenneth Hendricks <kennethhendricks@catalyst-au.net>
* @copyright Catalyst IT
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
use tool_objectfs\local\manager;
use tool_objectfs\local\report\objectfs_report;
use tool_objectfs\local\store\object_file_system;
defined('MOODLE_INTERNAL') || die();
class tool_objectfs_renderer extends plugin_renderer_base {
/**
* Delete test files from files table
* @throws coding_exception
* @throws dml_exception
*/
public function delete_presignedurl_tests_files() {
$filestorage = get_file_storage();
$filesarea = $filestorage->get_area_files(
\context_system::instance()->id,
OBJECTFS_PLUGIN_NAME,
'settings',
0
);
foreach ($filesarea as $testfile) {
if ('.' === $testfile->get_filename()) {
continue;
}
$testfile->delete();
}
}
public function presignedurl_tests_load_files($fs) {
global $CFG;
$filestorage = get_file_storage();
$fixturespath = $CFG->dirroot.'/admin/tool/objectfs/tests/fixtures/';
$fixturesfiles = glob($fixturespath.'*');
$syscontext = \context_system::instance();
foreach ($fixturesfiles as $fixturesfile) {
// Filter out possible compressed files.
if (false !== strpos($fixturesfile, '.br')) {
continue;
}
$testfilename = str_replace($fixturespath, '', $fixturesfile);
$contextid = $syscontext->id;
$component = 'tool_objectfs';
$filearea = 'settings';
$itemid = 0;
$filepath = '/';
$filerecord = array(
'contextid' => $contextid,
'component' => $component,
'filearea' => $filearea,
'itemid' => $itemid,
'filepath' => $filepath,
'filename' => $testfilename
);
$testfile = $filestorage->get_file($contextid, $component, $filearea, $itemid, $filepath, $testfilename);
if (!$testfile) {
$testfile = $filestorage->create_file_from_pathname($filerecord, $fixturesfile);
}
$contenthash = $testfile->get_contenthash();
$readable = $fs->is_file_readable_externally_by_hash($contenthash);
if (!$readable) {
$fs->copy_from_local_to_external($contenthash);
}
$testfiles[] = $testfile;
}
return $testfiles;
}
public function presignedurl_tests_content($fs, $testfiles) {
global $CFG;
$CFG->enablepresignedurls = true;
$output = '';
$output .= $this->box('');
$output .= $this->heading(get_string('presignedurl_testing:test1', 'tool_objectfs'), 4);
foreach ($testfiles as $file) {
$presignedurl = $this->generate_file_url($file, false, true);
$output .= $this->heading($this->get_output($fs, $presignedurl, $file, 'downloadfile'), 5);
}
$output .= $this->box('');
$output .= $this->heading(get_string('presignedurl_testing:test2', 'tool_objectfs'), 4);
foreach ($testfiles as $file) {
$presignedurl = $this->generate_file_url($file, false, true);
$output .= $this->heading($this->get_output($fs, $presignedurl, $file, 'downloadfile'), 5);
}
$output .= $this->box('');
$output .= $this->heading(get_string('presignedurl_testing:test3', 'tool_objectfs'), 4);
foreach ($testfiles as $file) {
$presignedurl = $this->generate_file_url($file);
$output .= $this->heading($this->get_output($fs, $presignedurl, $file, 'openinbrowser'), 5);
}
$output .= $this->box('');
$output .= $this->heading(get_string('presignedurl_testing:test4', 'tool_objectfs'), 4);
foreach ($testfiles as $file) {
$presignedurl = $this->generate_file_url($file);
$outputstring = '"'.$file->get_filename().'" '.get_string('presignedurl_testing:fileiniframe', 'tool_objectfs').':';
$output .= $this->heading($outputstring, 5);
$output .= $this->box($this->get_output($fs, $presignedurl, $file, 'iframesnotsupported'));
$output .= $this->box('');
}
$output .= $this->box('');
$output .= $this->heading(get_string('presignedurl_testing:test5', 'tool_objectfs'), 4);
// Expires in seconds.
$testexpirefiles = ['testimage.png' => 0, 'testlarge.pdf' => 10, 'test.txt' => -1];
foreach ($testfiles as $key => $file) {
$filename = $file->get_filename();
if (!isset($testexpirefiles[$filename])) {
continue;
}
$presignedurl = $this->generate_file_url($file, $testexpirefiles[$filename]);
$outputstring = '"' . $filename . '" '.
get_string('presignedurl_testing:fileiniframe', OBJECTFS_PLUGIN_NAME) . ':';
$output .= $this->heading($outputstring, 5);
$output .= $this->box($this->get_output($fs, $presignedurl, $file, 'iframesnotsupported'));
$output .= $this->box('');
}
return $output;
}
/**
* Generate a file url with adding a param to set 'Expires' header.
* @param stored_file $file
* @param int|bool $expires
* @param bool $forcedownload
* @return string
* @throws dml_exception
*/
private function generate_file_url($file, $expires = false, $forcedownload = false) {
$url = \moodle_url::make_pluginfile_url(
\context_system::instance()->id,
OBJECTFS_PLUGIN_NAME,
'settings',
0,
'/',
$file->get_filename(),
$forcedownload
);
$expires = (-1 !== $expires) ? $expires : false;
if (false !== $expires) {
$url->param('expires', $expires);
}
return $url->out();
}
/**
* Generates the output string that contains the presignedurl or local url.
* @param object_file_system $fs
* @param string $url
* @param stored_file $file
* @param string $identifier
* @return string
* @throws coding_exception
*/
private function get_output($fs, $url, $file, $identifier) {
$icon = $this->output->pix_icon('i/grade_correct', '', 'moodle', ['class' => 'icon']);
$redirect = $icon . 'Redirecting to external storage: ';
if (!$fs->presigned_url_should_redirect($file->get_contenthash())) {
$redirect = $this->output->pix_icon('i/grade_incorrect', '', 'moodle', ['class' => 'icon']) . 'Not redirecting: ';
}
$output = get_string('presignedurl_testing:' . $identifier, 'tool_objectfs') . ': '.
'<a href="'. $url .'">'. $file->get_filename() . '</a>';
if ('iframesnotsupported' === $identifier) {
$output = '<iframe height="400" width="100%" src="' . $url . '">'.
get_string('presignedurl_testing:' . $identifier, 'tool_objectfs').'</iframe>';
}
return $output . '<br><small>' . $redirect . $url . '</small>';;
}
/**
* Returns a header for Object status history page.
*
* @param array $reports Report ids and dates array
* @param int $reportid Requested report id
*
* @return string HTML string
* @throws /moodle_exception
*/
public function object_status_history_page_header($reports, $reportid) {
$output = '';
$baseurl = '/admin/tool/objectfs/object_status.php';
$previd = array();
$nextid = array();
$prevdisabled = array('disabled' => true);
$nextdisabled = array('disabled' => true);
end($reports);
$oldestid = array('reportid' => key($reports));
reset($reports);
$latestid = array('reportid' => key($reports));
while ($reportid != key($reports)) {
next($reports);
}
if (next($reports)) {
$previd = ['reportid' => key($reports)];
$prevdisabled = array();
prev($reports);
} else {
end($reports);
}
if (prev($reports)) {
$nextid = ['reportid' => key($reports)];
$nextdisabled = array();
next($reports);
} else {
reset($reports);
}
foreach ($reports as $id => $timestamp) {
$userdates[$id] = userdate($timestamp, get_string('strftimedaydatetime'));
}
$output .= $this->output->box_start();
$output .= $this->output->single_button(new \moodle_url($baseurl, $oldestid), '<<', 'get', $prevdisabled);
$output .= $this->output->spacer();
$output .= $this->output->single_button(new \moodle_url($baseurl, $previd), '<', 'get', $prevdisabled);
$output .= $this->output->spacer();
$output .= $this->output->single_select(new \moodle_url($baseurl), 'reportid', $userdates, $reportid, false);
$output .= $this->output->spacer();
$output .= $this->output->single_button(new \moodle_url($baseurl, $nextid), '>', 'get', $nextdisabled);
$output .= $this->output->spacer();
$output .= $this->output->single_button(new \moodle_url($baseurl, $latestid), '>>', 'get', $nextdisabled);
$output .= $this->output->box_end();
return $output;
}
}