forked from moodleou/moodle-mod_ouwiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entirewiki.php
264 lines (231 loc) · 10.1 KB
/
entirewiki.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
<?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/>.
/**
* Save template feature. Saves entire subwiki contents as an XML template.
*
* @copyright © 2007 The Open University
* @author [email protected]
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
* @package ouwiki
*/
require_once(dirname(__FILE__) . '/../../config.php');
require($CFG->dirroot.'/mod/ouwiki/basicpage.php');
$id = required_param('id', PARAM_INT); // Course Module ID
$pagename = optional_param('page', '', PARAM_TEXT);
$filesexist = optional_param('filesexist', 0, PARAM_INT);
$url = new moodle_url('/mod/ouwiki/view.php', array('id' => $id, 'page' => $pagename));
$PAGE->set_url($url);
if ($id) {
if (!$cm = get_coursemodule_from_id('ouwiki', $id)) {
print_error('invalidcoursemodule');
}
// Checking course instance
$course = $DB->get_record('course', array('id' => $cm->course), '*', MUST_EXIST);
if (!$ouwiki = $DB->get_record('ouwiki', array('id' => $cm->instance))) {
print_error('invalidcoursemodule');
}
$PAGE->set_cm($cm);
}
$context = context_module::instance($cm->id);
$PAGE->set_pagelayout('incourse');
require_course_login($course, true, $cm);
$ouwikioutput = $PAGE->get_renderer('mod_ouwiki');
$format = required_param('format', PARAM_ALPHA);
if ($format !== OUWIKI_FORMAT_HTML && $format !== OUWIKI_FORMAT_RTF && $format !== OUWIKI_FORMAT_TEMPLATE) {
print_error('Unexpected format');
}
// Get basic wiki details for filename
$filename = $course->shortname.'.'.$ouwiki->name;
$filename = preg_replace('/[^A-Za-z0-9.-]/' , '_', $filename);
$markup = '';
$fs = null;
switch ($format) {
case OUWIKI_FORMAT_TEMPLATE:
$markup = '<wiki>';
$files = array();
$fs = get_file_storage();
break;
case OUWIKI_FORMAT_RTF:
require_once($CFG->dirroot.'/local/rtf.php');
$markup = '<root><p>'.get_string('savedat', 'ouwiki', userdate(time())).'</p><hr />';
break;
case OUWIKI_FORMAT_HTML:
// Do header
echo $ouwikioutput->ouwiki_print_start($ouwiki, $cm, $course, $subwiki, get_string('entirewiki', 'ouwiki'), $context, null, false, true);
print '<div class="ouwiki_content">';
break;
}
// Get list of all pages.
$first = true;
$index = ouwiki_get_subwiki_index($subwiki->id);
$brokenimagestr = get_string('brokenimage', 'ouwiki');
$orphans = false;
$treemode = optional_param('type', '', PARAM_ALPHA) == 'tree';
// Check for orphan posts.
foreach ($index as $indexitem) {
if (count($indexitem->linksfrom) == 0 && $indexitem->title !== '') {
$orphans = true;
break;
}
}
// If tree view specified.
if (($treemode) && ($format == OUWIKI_FORMAT_HTML) ) {
ouwiki_build_tree($index);
// Print out in hierarchical form...
print '<ul class="ouw_indextree">';
$functionname = 'ouwiki_display_entirewiki_page_in_index';
print ouwiki_tree_index($functionname, reset($index)->pageid, $index, $subwiki, $cm, $context);
print '</ul>';
if ($orphans) {
print '<h2 class="ouw_orphans">'.get_string('orphanpages', 'ouwiki').'</h2>';
print '<ul class="ouw_indextree">';
foreach ($index as $indexitem) {
if (count($indexitem->linksfrom) == 0 && $indexitem->title !== '') {
$orphanindex = ouwiki_get_sub_tree_from_index($indexitem->pageid, $index);
ouwiki_build_tree($orphanindex);
print ouwiki_tree_index($functionname, $indexitem->pageid, $orphanindex, $subwiki, $cm, $context);
}
}
print '</ul>';
}
} else {
foreach ($index as $pageinfo) {
if (count($pageinfo->linksfrom)!= 0 || $pageinfo->title === '') {
// Get page details.
$pageversion = ouwiki_get_current_page($subwiki, $pageinfo->title);
// If the page hasn't really been created yet, skip it.
if (is_null($pageversion->xhtml)) {
continue;
}
$markup .= get_online_display_content($format, $pageversion, $context, $subwiki, $cm, $index, $fs, $files);
if ($first) {
$first = false;
}
}
}
if ($orphans) {
if ($format == OUWIKI_FORMAT_HTML) {
print '<h2 class="ouw_orphans">'.get_string('orphanpages', 'ouwiki').'</h2>';
} else if ($format != OUWIKI_FORMAT_TEMPLATE) {
$markup .= '<h2 class="ouw_orphans">'.get_string('orphanpages', 'ouwiki').'</h2>';
}
foreach ($index as $indexitem) {
if (count($indexitem->linksfrom) == 0 && $indexitem->title !== '') {
// Get page details.
$pageversion = ouwiki_get_current_page($subwiki, $indexitem->title);
// If the page hasn't really been created yet, skip it.
if (is_null($pageversion->xhtml)) {
continue;
}
$markup .= get_online_display_content($format, $pageversion, $context, $subwiki, $cm, $index, $fs, $files);
if ($first) {
$first = false;
}
}
}
}
}
switch ($format) {
case OUWIKI_FORMAT_TEMPLATE:
$markup .= '</wiki>';
// Create temp xml file.
$filerec = new stdClass();
$filerec->contextid = $context->id;
$filerec->component = 'mod_ouwiki';
$filerec->filearea = 'temp';
$filerec->filepath = '/';
$filerec->itemid = $id;
$filerec->filename = strtolower(get_string('template', 'mod_ouwiki')) . '.xml';
$files[$filerec->filename] = $fs->create_file_from_string($filerec, $markup);
$zip = get_file_packer();
$file = $zip->archive_to_storage($files, $context->id, 'mod_ouwiki', 'temp', $id, '/', $filename . '.zip');
send_stored_file($file, 0, 0, true, array('dontdie' => true));
// Delete all our temp files used in this process.
$fs->delete_area_files($context->id, 'mod_ouwiki', 'temp', $id);
exit;
break;
case OUWIKI_FORMAT_RTF:
$markup .= '</root>';
rtf_from_html($filename.'.rtf', $markup);
break;
case OUWIKI_FORMAT_HTML:
ouwiki_print_footer($course, $cm, $subwiki);
break;
}
function get_online_display_content($format, $pageversion, $context, $subwiki, $cm, $index, $fs, &$files) {
$markup = '';
$visibletitle = $pageversion->title === '' ? get_string('startpage', 'ouwiki') : $pageversion->title;
if ($format != OUWIKI_FORMAT_TEMPLATE) {
$pageversion->xhtml = file_rewrite_pluginfile_urls($pageversion->xhtml, 'pluginfile.php',
$context->id, 'mod_ouwiki', 'content', $pageversion->versionid);
}
switch ($format) {
case OUWIKI_FORMAT_TEMPLATE:
// Print template wiki page.
$markup .= '<page>';
if ($pageversion->title !== '') {
$markup .= '<title>' . htmlspecialchars($pageversion->title) . '</title>';
}
$markup .= '<versionid>' . $pageversion->versionid . '</versionid>';
// Copy images found in content.
preg_match_all('#<img.*?src="@@PLUGINFILE@@/(.*?)".*?/>#', $pageversion->xhtml, $matches);
if (! empty($matches)) {
// Extract the file names from the matches.
foreach ($matches[1] as $key => $match) {
// Get file name and copy to zip.
$match = urldecode($match);
// Copy image - on fail swap tag with string.
if ($file = $fs->get_file($context->id, 'mod_ouwiki', 'content',
$pageversion->versionid, '/', $match)) {
$files["/$pageversion->versionid/$match/"] = $file;
} else {
$pageversion->xhtml = str_replace($matches[0][$key], $brokenimagestr,
$pageversion->xhtml);
}
}
}
$markup .= '<xhtml>' . htmlspecialchars($pageversion->xhtml) . '</xhtml>';
// Add attachments.
if ($attachments = $fs->get_area_files($context->id, 'mod_ouwiki', 'attachment',
$pageversion->versionid, 'itemid', false)) {
// We have attachements.
$markup .= '<attachments>';
$attachmentsarray = array();
foreach ($attachments as $attachment) {
$filename = $attachment->get_filename();
array_push($attachmentsarray, $filename);
$files["/$pageversion->versionid/$filename/"] = $attachment;
}
$markup .= implode('|', $attachmentsarray);
$markup .= '</attachments>';
}
$markup .= '</page>';
break;
case OUWIKI_FORMAT_RTF:
$markup .= '<h1>' . htmlspecialchars($visibletitle) . '</h1>';
$markup .= trim($pageversion->xhtml);
$markup .= '<br /><br /><hr />';
break;
case OUWIKI_FORMAT_HTML:
print '<div class="ouw_entry"><a name="' . $pageversion->pageid . '"></a><h1 class="ouw_entry_heading">' .
'<a href="view.php?' . ouwiki_display_wiki_parameters($pageversion->title, $subwiki, $cm) .
'">' . htmlspecialchars($visibletitle) . '</a></h1>';
print ouwiki_convert_content($pageversion->xhtml, $subwiki, $cm, $index, $pageversion->xhtmlformat);
print '</div>';
break;
}
return $markup;
}