-
Notifications
You must be signed in to change notification settings - Fork 28
/
view.php
183 lines (150 loc) · 6.43 KB
/
view.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
<?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/>.
/**
* Local plugin "staticpage" - View page
*
* @package local_staticpage
* @copyright 2013 Alexander Bias, Ulm University <alexander.bias@uni-ulm.de>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
// Include config.php.
// phpcs:disable moodle.Files.RequireLogin.Missing
// Let codechecker ignore the next line because otherwise it would complain about a missing login check
// after requiring config.php which is really not needed.
require(__DIR__ . '/../../config.php');
// Globals.
global $CFG, $PAGE, $USER;
// Include lib.php.
require_once($CFG->dirroot.'/local/staticpage/lib.php');
// Get plugin config.
$localstaticpageconfig = get_config('local_staticpage');
// Require login if the plugin or Moodle is configured to force login.
if ($localstaticpageconfig->forcelogin == STATICPAGE_FORCELOGIN_YES ||
($localstaticpageconfig->forcelogin == STATICPAGE_FORCELOGIN_GLOBAL && $CFG->forcelogin)) {
require_login();
}
// View only with /static/ URL.
if ($localstaticpageconfig->apacherewrite == true) {
if (strpos($_SERVER['REQUEST_URI'], '/static/') === false) { /* We used to check if /static/ is at the beginning of the
REQUEST_URI, but this would break on Moodle subdirectory
installations. And there is no better check available in
core, so we just accept this rather loose check. */
die;
}
}
// Get requested page's name.
$page = required_param('page', PARAM_ALPHANUMEXT);
// Put together document file names.
$filename = "$page.html";
// Fetch context.
$context = \context_system::instance();
// Get filearea.
$fs = get_file_storage();
// Get document from filearea.
$file = $fs->get_file($context->id, 'local_staticpage', 'documents', 0, '/', $filename);
// If no file is found, quit with error message.
if (!$file) {
throw new \moodle_exception('pagenotfound', 'local_staticpage');
}
// Get file content.
$filecontents = $file->get_content();
// Import the document, load DOM.
$staticdoc = new DOMDocument();
$staticdoc->loadHTML($filecontents);
// Set page url.
if ($localstaticpageconfig->apacherewrite == true) {
$PAGE->set_url('/static/'.$page.'.html');
} else {
$PAGE->set_url('/local/staticpage/view.php?page='.$page);
}
// Set page context.
$PAGE->set_context(context_system::instance());
// Set page layout.
$PAGE->set_pagelayout('standard');
// Add page name as body class.
$PAGE->add_body_class('local-staticpage-'.$page);
// Extract page's first h1 (if present).
if (!empty($staticdoc->getElementsByTagName('h1')->item(0)->nodeValue)) {
$firsth1 = format_string($staticdoc->getElementsByTagName('h1')->item(0)->nodeValue);
} else {
$firsth1 = $page;
}
// Extract page title (if present).
if (!empty($staticdoc->getElementsByTagName('title')->item(0)->nodeValue)) {
$title = format_string($staticdoc->getElementsByTagName('title')->item(0)->nodeValue);
} else {
$title = $page;
}
// Extract style tag in head (if present) and insert into HTML head.
if (!empty($staticdoc->getElementsByTagName('style')->item(0)->nodeValue)) {
$style = $staticdoc->getElementsByTagName('style')->item(0)->nodeValue;
$CFG->additionalhtmlhead = $CFG->additionalhtmlhead.'<style>'.$style.'</style>';
}
// Extract link tags in head (if present) and insert into HTML head.
if (!empty($staticdoc->getElementsByTagName('link'))) {
$linknodes = $staticdoc->getElementsByTagName('link');
foreach ($linknodes as $linknode) {
$CFG->additionalhtmlhead .= $staticdoc->saveHTML($linknode);
}
}
// Set page title.
if ($localstaticpageconfig->documenttitlesource == STATICPAGE_TITLE_H1) {
$PAGE->set_title($firsth1);
} else if ($localstaticpageconfig->documenttitlesource == STATICPAGE_TITLE_HEAD) {
$PAGE->set_title($title);
} else {
$PAGE->set_title($title);
}
// Set page heading.
if ($localstaticpageconfig->documentheadingsource == STATICPAGE_TITLE_H1) {
$PAGE->set_heading($firsth1);
} else if ($localstaticpageconfig->documentheadingsource == STATICPAGE_TITLE_H1) {
$PAGE->set_heading($title);
} else {
$PAGE->set_heading($title);
}
echo $OUTPUT->header();
// Get body tag.
$body = $staticdoc->getElementsByTagName('body')->item(0);
// Get page content from body tag.
$pagecontent = $staticdoc->saveHTML($body);
// Print page content.
if ($localstaticpageconfig->processfilters == STATICPAGE_PROCESSFILTERS_YES &&
$localstaticpageconfig->cleanhtml == STATICPAGE_CLEANHTML_YES) {
echo format_text($pagecontent, FORMAT_HTML, ['trusted' => false, 'noclean' => false, 'filter' => true]);
} else if ($localstaticpageconfig->processfilters == STATICPAGE_PROCESSFILTERS_YES &&
$localstaticpageconfig->cleanhtml == STATICPAGE_CLEANHTML_NO) {
echo format_text($pagecontent, FORMAT_HTML, ['trusted' => true, 'noclean' => true, 'filter' => true]);
} else if ($localstaticpageconfig->processfilters == STATICPAGE_PROCESSFILTERS_NO &&
$localstaticpageconfig->cleanhtml == STATICPAGE_CLEANHTML_YES) {
echo format_text($pagecontent, FORMAT_HTML, ['trusted' => false, 'noclean' => false, 'filter' => false]);
} else if ($localstaticpageconfig->processfilters == STATICPAGE_PROCESSFILTERS_NO &&
$localstaticpageconfig->cleanhtml == STATICPAGE_CLEANHTML_NO) {
echo format_text($pagecontent, FORMAT_HTML, ['trusted' => true, 'noclean' => true, 'filter' => false]);
} else { // This should not happen.
echo $pagecontent;
}
// Log this view.
$logevent = \local_staticpage\event\staticpage_viewed::create([
'userid' => $USER->id,
'context' => $context,
'other' => [
'title' => $title,
'page' => $page,
],
]);
$logevent->trigger();
echo $OUTPUT->footer();