MDL-27942 Use picture not displayed during quiz attempts.
[moodle.git] / repository / filepicker.php
blobe35039fa387310ef6fa09447bbf1e9576b4f0adc
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
19 /**
20 * This file is used to browse repositories in non-javascript mode
22 * @since 2.0
23 * @package core
24 * @subpackage repository
25 * @copyright 2009 Dongsheng Cai <dongsheng@moodle.com>
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
29 require_once('../config.php');
30 require_once($CFG->libdir.'/filelib.php');
31 require_once('lib.php');
32 /// Wait as long as it takes for this script to finish
33 set_time_limit(0);
35 require_sesskey();
36 require_login();
38 // disable blocks in this page
39 $PAGE->set_pagelayout('embedded');
41 // general parameters
42 $action = optional_param('action', '', PARAM_ALPHA);
43 $client_id = optional_param('client_id', '', PARAM_RAW); // client ID
44 $itemid = optional_param('itemid', '', PARAM_INT);
46 // parameters for repository
47 $callback = optional_param('callback', '', PARAM_CLEANHTML);
48 $contextid = optional_param('ctx_id', SYSCONTEXTID, PARAM_INT); // context ID
49 $courseid = optional_param('course', SITEID, PARAM_INT); // course ID
50 $env = optional_param('env', 'filepicker', PARAM_ALPHA); // opened in file picker, file manager or html editor
51 $filename = optional_param('filename', '', PARAM_FILE);
52 $fileurl = optional_param('fileurl', '', PARAM_RAW);
53 $thumbnail = optional_param('thumbnail', '', PARAM_RAW);
54 $targetpath = optional_param('targetpath', '', PARAM_PATH);
55 $repo_id = optional_param('repo_id', 0, PARAM_INT); // repository ID
56 $req_path = optional_param('p', '', PARAM_RAW); // the path in repository
57 $curr_page = optional_param('page', '', PARAM_RAW); // What page in repository?
58 $search_text = optional_param('s', '', PARAM_CLEANHTML);
59 $maxfiles = optional_param('maxfiles', -1, PARAM_INT); // maxfiles
60 $maxbytes = optional_param('maxbytes', 0, PARAM_INT); // maxbytes
61 $subdirs = optional_param('subdirs', 0, PARAM_INT); // maxbytes
63 // the path to save files
64 $savepath = optional_param('savepath', '/', PARAM_PATH);
65 // path in draft area
66 $draftpath = optional_param('draftpath', '/', PARAM_PATH);
69 // user context
70 $user_context = get_context_instance(CONTEXT_USER, $USER->id);
72 $PAGE->set_context($user_context);
73 if (!$course = $DB->get_record('course', array('id'=>$courseid))) {
74 print_error('invalidcourseid');
76 $PAGE->set_course($course);
78 // init repository plugin
79 $sql = 'SELECT i.name, i.typeid, r.type FROM {repository} r, {repository_instances} i '.
80 'WHERE i.id=? AND i.typeid=r.id';
81 if ($repository = $DB->get_record_sql($sql, array($repo_id))) {
82 $type = $repository->type;
83 if (file_exists($CFG->dirroot.'/repository/'.$type.'/lib.php')) {
84 require_once($CFG->dirroot.'/repository/'.$type.'/lib.php');
85 $classname = 'repository_' . $type;
86 try {
87 $repo = new $classname($repo_id, $contextid, array('ajax'=>false, 'name'=>$repository->name, 'type'=>$type));
88 } catch (repository_exception $e){
89 print_error('pluginerror', 'repository');
91 } else {
92 print_error('invalidplugin', 'repository');
96 $moodle_maxbytes = get_max_upload_file_size();
97 // to prevent maxbytes greater than moodle maxbytes setting
98 if ($maxbytes == 0 || $maxbytes>=$moodle_maxbytes) {
99 $maxbytes = $moodle_maxbytes;
102 $params = array('ctx_id' => $contextid, 'itemid' => $itemid, 'env' => $env, 'course'=>$courseid, 'maxbytes'=>$maxbytes, 'maxfiles'=>$maxfiles, 'subdirs'=>$subdirs, 'sesskey'=>sesskey());
103 $params['action'] = 'browse';
104 $params['draftpath'] = $draftpath;
105 $home_url = new moodle_url('/repository/draftfiles_manager.php', $params);
107 $params['savepath'] = $savepath;
108 $params['repo_id'] = $repo_id;
109 $url = new moodle_url($CFG->httpswwwroot."/repository/filepicker.php", $params);
110 $PAGE->set_url('/repository/filepicker.php', $params);
112 switch ($action) {
113 case 'upload':
114 // The uploaded file has been processed in plugin construct function
115 // redirect to default page
116 $repo->upload('', $maxbytes);
117 redirect($home_url, get_string('uploadsucc','repository'));
118 break;
120 case 'search':
121 echo '<div><a href="' . $home_url->out() . '">'.get_string('back', 'repository')."</a></div>";
122 try {
123 $search_result = $repo->search($search_text);
124 $search_result['issearchresult'] = true;
125 $search_result['repo_id'] = $repo_id;
127 // TODO: need a better solution
128 $purl = new moodle_url($url, array('search_paging' => 1, 'action' => 'search', 'repo_id' => $repo_id));
129 $pagingbar = new paging_bar($search_result['total'], $search_result['page'] - 1, $search_result['perpage'], $purl, 'p');
130 echo $OUTPUT->render($pagingbar);
132 echo '<table>';
133 foreach ($search_result['list'] as $item) {
134 echo '<tr>';
135 echo '<td><img src="'.$item['thumbnail'].'" />';
136 echo '</td><td>';
137 if (!empty($item['url'])) {
138 echo html_writer::link($item['url'], $item['title'], array('target'=>'_blank'));
139 } else {
140 echo $item['title'];
142 echo '</td>';
143 echo '<td>';
144 echo '<form method="post">';
145 echo '<input type="hidden" name="fileurl" value="'.s($item['source']).'"/>';
146 echo '<input type="hidden" name="action" value="confirm"/>';
147 echo '<input type="hidden" name="filename" value="'.s($item['title']).'"/>';
148 echo '<input type="hidden" name="thumbnail" value="'.s($item['thumbnail']).'"/>';
149 echo '<input type="submit" value="'.s(get_string('select','repository')).'" />';
150 echo '</form>';
151 echo '</td>';
152 echo '</tr>';
154 echo '</table>';
155 } catch (repository_exception $e) {
157 break;
159 case 'list':
160 case 'sign':
161 echo $OUTPUT->header();
163 echo $OUTPUT->container_start();
164 echo html_writer::link($url, get_string('back', 'repository'));
165 echo $OUTPUT->container_end();
167 if ($repo->check_login()) {
168 $list = $repo->get_listing($req_path, $curr_page);
169 $dynload = !empty($list['dynload'])?true:false;
170 if (!empty($list['upload'])) {
171 echo '<form action="'.$url->out().'" method="post" enctype="multipart/form-data" style="display:inline">';
172 echo '<label>'.$list['upload']['label'].': </label>';
173 echo '<input type="file" name="repo_upload_file" /><br />';
174 echo '<input type="hidden" name="action" value="upload" /><br />';
175 echo '<input type="hidden" name="draftpath" value="'.s($draftpath).'" /><br />';
176 echo '<input type="hidden" name="savepath" value="'.s($savepath).'" /><br />';
177 echo '<input type="hidden" name="repo_id" value="'.s($repo_id).'" /><br />';
178 echo '<input type="submit" value="'.s(get_string('upload', 'repository')).'" />';
179 echo '</form>';
180 } else {
181 if (!empty($list['path'])) {
182 foreach ($list['path'] as $p) {
183 //echo '<form method="post" style="display:inline">';
184 //echo '<input type="hidden" name="p" value="'.s($p['path']).'"';
185 //echo '<input type="hidden" name="action" value="list"';
186 //echo '<input type="hidden" name="draftpath" value="'.s($draftpath).'" /><br />';
187 //echo '<input type="hidden" name="savepath" value="'.s($savepath).'" /><br />';
188 //echo '<input style="display:inline" type="submit" value="'.s($p['name']).'" />';
189 //echo '</form>';
191 $pathurl = new moodle_url($url, array(
192 'p'=>$p['path'],
193 'action'=>'list',
194 'draftpath'=>$draftpath,
195 'savepath'=>$savepath
197 echo '<strong>' . html_writer::link($pathurl, $p['name']) . '</strong>';
198 echo '<span> / </span>';
201 if (!empty($list['page'])) {
202 // TODO: need a better solution
203 $pagingurl = new moodle_url("$CFG->httpswwwroot/repository/filepicker.php?action=list&itemid=$itemid&ctx_id=$contextid&repo_id=$repo_id&course=$courseid");
204 echo $OUTPUT->paging_bar($list['total'], $list['page'] - 1, $list['perpage'], $pagingurl);
206 echo '<table>';
207 foreach ($list['list'] as $item) {
208 echo '<tr>';
209 echo '<td><img src="'.$item['thumbnail'].'" />';
210 echo '</td><td>';
211 if (!empty($item['url'])) {
212 echo html_writer::link($item['url'], $item['title'], array('target'=>'_blank'));
213 } else {
214 echo $item['title'];
216 echo '</td>';
217 echo '<td>';
218 if (!isset($item['children'])) {
219 echo '<form method="post">';
220 echo '<input type="hidden" name="fileurl" value="'.s($item['source']).'"/>';
221 echo '<input type="hidden" name="action" value="confirm"/>';
222 echo '<input type="hidden" name="draftpath" value="'.s($draftpath).'" /><br />';
223 echo '<input type="hidden" name="savepath" value="'.s($savepath).'" /><br />';
224 echo '<input type="hidden" name="filename" value="'.s($item['title']).'"/>';
225 echo '<input type="hidden" name="thumbnail" value="'.s($item['thumbnail']).'"/>';
226 echo '<input type="submit" value="'.s(get_string('select','repository')).'" />';
227 echo '</form>';
228 } else {
229 echo '<form method="post">';
230 echo '<input type="hidden" name="p" value="'.s($item['path']).'"/>';
231 echo '<input type="submit" value="'.s(get_string('enter', 'repository')).'" />';
232 echo '</form>';
234 echo '</td>';
235 echo '</tr>';
237 echo '</table>';
239 } else {
240 echo '<form method="post">';
241 echo '<input type="hidden" name="action" value="sign" />';
242 echo '<input type="hidden" name="repo_id" value="'.s($repo_id).'" />';
243 $repo->print_login();
244 echo '</form>';
246 echo $OUTPUT->footer();
247 break;
249 case 'download':
250 $thefile = $repo->get_file($fileurl, $filename);
251 $filesize = filesize($thefile['path']);
252 if (($maxbytes!=-1) && ($filesize>$maxbytes)) {
253 print_error('maxbytes');
255 if (!empty($thefile)) {
256 $record = new stdClass();
257 $record->filepath = $savepath;
258 $record->filename = $filename;
259 $record->component = 'user';
260 $record->filearea = 'draft';
261 $record->itemid = $itemid;
262 $record->license = '';
263 $record->author = '';
264 $record->source = $thefile['url'];
265 $info = repository::move_to_filepool($thefile['path'], $record);
266 redirect($home_url, get_string('downloadsucc', 'repository'));
267 } else {
268 print_error('cannotdownload', 'repository');
271 break;
273 case 'confirm':
274 echo $OUTPUT->header();
275 echo '<div><a href="'.me().'">'.get_string('back', 'repository').'</a></div>';
276 echo '<img src="'.$thumbnail.'" />';
277 echo '<form method="post">';
278 echo '<table>';
279 echo ' <tr>';
280 echo ' <td><label>'.get_string('filename', 'repository').'</label></td>';
281 echo ' <td><input type="text" name="filename" value="'.s($filename).'" /></td>';
282 echo ' <td><input type="hidden" name="fileurl" value="'.s($fileurl).'" /></td>';
283 echo ' <td><input type="hidden" name="action" value="download" /></td>';
284 echo ' <td><input type="hidden" name="itemid" value="'.s($itemid).'" /></td>';
285 echo ' </tr>';
286 echo '</table>';
287 echo '<div>';
288 // the save path
289 echo ' <input name="draftpath" type="hidden" value="'.s($draftpath).'" />';
290 echo ' <input name="savepath" type="hidden" value="'.s($savepath).'" />';
291 echo ' <input type="submit" value="'.s(get_string('download', 'repository')).'" />';
292 echo '</div>';
293 echo '</form>';
294 echo $OUTPUT->footer();
295 break;
297 default:
298 case 'plugins':
299 $params = array();
300 $params['context'] = array($user_context, get_system_context());
301 $params['currentcontext'] = $PAGE->context;
302 $params['return_types'] = FILE_INTERNAL;
304 $repos = repository::get_instances($params);
305 echo $OUTPUT->header();
306 echo html_writer::link($home_url->out(false), get_string('backtodraftfiles', 'repository'));
307 echo '<div>';
308 echo '<ul>';
309 foreach($repos as $repo) {
310 $info = $repo->get_meta();
312 $aurl = clone($url);
313 $aurl->params(array('savepath'=>$savepath, 'action' => 'list', 'repo_id' => $info->id, 'draftpath'=>$draftpath));
315 echo '<li>';
316 echo '<img src="'.$info->icon.'" alt="'.$info->name.'" width="16" height="16" /> ';
317 echo html_writer::link($aurl, $info->name);
318 echo '</li>';
320 echo '</ul>';
321 echo '</div>';
322 echo $OUTPUT->footer();
323 break;