xref: /dokuwiki/inc/media.php (revision 322111f0870d88a59b71258ce8410ae378441533)
1<?php
2/**
3 * All output and handler function needed for the media management popup
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     Andreas Gohr <andi@splitbrain.org>
7 */
8
9if(!defined('DOKU_INC')) die('meh.');
10if(!defined('NL')) define('NL',"\n");
11
12/**
13 * Lists pages which currently use a media file selected for deletion
14 *
15 * References uses the same visual as search results and share
16 * their CSS tags except pagenames won't be links.
17 *
18 * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
19 */
20function media_filesinuse($data,$id){
21    global $lang;
22    echo '<h1>'.$lang['reference'].' <code>'.hsc(noNS($id)).'</code></h1>';
23    echo '<p>'.hsc($lang['ref_inuse']).'</p>';
24
25    $hidden=0; //count of hits without read permission
26    foreach($data as $row){
27        if(auth_quickaclcheck($row) >= AUTH_READ && isVisiblePage($row)){
28            echo '<div class="search_result">';
29            echo '<span class="mediaref_ref">'.hsc($row).'</span>';
30            echo '</div>';
31        }else
32            $hidden++;
33    }
34    if ($hidden){
35        print '<div class="mediaref_hidden">'.$lang['ref_hidden'].'</div>';
36    }
37}
38
39/**
40 * Handles the saving of image meta data
41 *
42 * @author Andreas Gohr <andi@splitbrain.org>
43 * @author Kate Arzamastseva <pshns@ukr.net>
44 */
45function media_metasave($id,$auth,$data){
46    if($auth < AUTH_UPLOAD) return false;
47    if(!checkSecurityToken()) return false;
48    global $lang;
49    global $conf;
50    $src = mediaFN($id);
51
52    $meta = new JpegMeta($src);
53    $meta->_parseAll();
54
55    foreach($data as $key => $val){
56        $val=trim($val);
57        if(empty($val)){
58            $meta->deleteField($key);
59        }else{
60            $meta->setField($key,$val);
61        }
62    }
63
64    $old = @filemtime($src);
65    if(!@file_exists(mediaFN($id, $old)) && @file_exists($src)) {
66        // add old revision to the attic
67        media_saveOldRevision($id);
68    }
69
70    if($meta->save()){
71        if($conf['fperm']) chmod($src, $conf['fperm']);
72
73        $new = @filemtime($src);
74        // add a log entry to the media changelog
75        addMediaLogEntry($new, $id, DOKU_CHANGE_TYPE_EDIT, $lang['media_meta_edited']);
76
77        msg($lang['metasaveok'],1);
78        return $id;
79    }else{
80        msg($lang['metasaveerr'],-1);
81        return false;
82    }
83}
84
85/**
86 * Display the form to edit image meta data
87 *
88 * @author Andreas Gohr <andi@splitbrain.org>
89 * @author Kate Arzamastseva <pshns@ukr.net>
90 */
91function media_metaform($id,$auth,$fullscreen = false){
92    global $lang, $config_cascade;
93
94    if($auth < AUTH_UPLOAD) {
95        echo '<div class="nothing">'.$lang['media_perm_upload'].'</div>'.NL;
96        return false;
97    }
98
99    // load the field descriptions
100    static $fields = null;
101    if(is_null($fields)){
102
103        foreach (array('default','local') as $config_group) {
104            if (empty($config_cascade['mediameta'][$config_group])) continue;
105            foreach ($config_cascade['mediameta'][$config_group] as $config_file) {
106                if(@file_exists($config_file)){
107                    include($config_file);
108                }
109            }
110        }
111    }
112
113    $src = mediaFN($id);
114
115    // output
116    if (!$fullscreen) {
117        echo '<h1>'.hsc(noNS($id)).'</h1>'.NL;
118        echo '<form action="'.DOKU_BASE.'lib/exe/mediamanager.php" accept-charset="utf-8" method="post" class="meta">'.NL;
119    } else {
120        echo '<form action="'.media_managerURL(array('tab_details' => 'view')).
121            '" accept-charset="utf-8" method="post" class="meta">'.NL;
122    }
123    formSecurityToken();
124    foreach($fields as $key => $field){
125        // get current value
126        $tags = array($field[0]);
127        if(is_array($field[3])) $tags = array_merge($tags,$field[3]);
128        $value = tpl_img_getTag($tags,'',$src);
129        $value = cleanText($value);
130
131        // prepare attributes
132        $p = array();
133        $p['class'] = 'edit';
134        $p['id']    = 'meta__'.$key;
135        $p['name']  = 'meta['.$field[0].']';
136
137        // put label
138        echo '<div class="metafield">';
139        echo '<label for="meta__'.$key.'">';
140        echo ($lang[$field[1]]) ? $lang[$field[1]] : $field[1];
141        echo ':</label>';
142
143        // put input field
144        if($field[2] == 'text'){
145            $p['value'] = $value;
146            $p['type']  = 'text';
147            $att = buildAttributes($p);
148            echo "<input $att/>".NL;
149        }else{
150            $att = buildAttributes($p);
151            echo "<textarea $att rows=\"6\" cols=\"50\">".formText($value).'</textarea>'.NL;
152        }
153        echo '</div>'.NL;
154    }
155    echo '<div class="buttons">'.NL;
156    echo '<input type="hidden" name="img" value="'.hsc($id).'" />'.NL;
157    if (!$fullscreen) $do = 'do';
158    else $do = 'mediado';
159    echo '<input name="'.$do.'[save]" type="submit" value="'.$lang['btn_save'].
160        '" title="'.$lang['btn_save'].' [S]" accesskey="s" class="button" />'.NL;
161    if (!$fullscreen)
162    echo '<input name="do[cancel]" type="submit" value="'.$lang['btn_cancel'].
163        '" title="'.$lang['btn_cancel'].' [C]" accesskey="c" class="button" />'.NL;
164    echo '</div>'.NL;
165    echo '</form>'.NL;
166}
167
168/**
169 * Convenience function to check if a media file is still in use
170 *
171 * @author Michael Klier <chi@chimeric.de>
172 */
173function media_inuse($id) {
174    global $conf;
175    $mediareferences = array();
176    if($conf['refcheck']){
177        $mediareferences = ft_mediause($id,$conf['refshow']);
178        if(!count($mediareferences)) {
179            return false;
180        } else {
181            return $mediareferences;
182        }
183    } else {
184        return false;
185    }
186}
187
188define('DOKU_MEDIA_DELETED', 1);
189define('DOKU_MEDIA_NOT_AUTH', 2);
190define('DOKU_MEDIA_INUSE', 4);
191define('DOKU_MEDIA_EMPTY_NS', 8);
192
193/**
194 * Handles media file deletions
195 *
196 * If configured, checks for media references before deletion
197 *
198 * @author Andreas Gohr <andi@splitbrain.org>
199 * @return int One of: 0,
200                       DOKU_MEDIA_DELETED,
201                       DOKU_MEDIA_DELETED | DOKU_MEDIA_EMPTY_NS,
202                       DOKU_MEDIA_NOT_AUTH,
203                       DOKU_MEDIA_INUSE
204 */
205function media_delete($id,$auth){
206    if($auth < AUTH_DELETE) return DOKU_MEDIA_NOT_AUTH;
207    if(media_inuse($id)) return DOKU_MEDIA_INUSE;
208
209    $file = mediaFN($id);
210
211    // trigger an event - MEDIA_DELETE_FILE
212    $data['id']   = $id;
213    $data['name'] = basename($file);
214    $data['path'] = $file;
215    $data['size'] = (@file_exists($file)) ? filesize($file) : 0;
216
217    $data['unl'] = false;
218    $data['del'] = false;
219    $evt = new Doku_Event('MEDIA_DELETE_FILE',$data);
220    if ($evt->advise_before()) {
221        $data['unl'] = @unlink($file);
222        if($data['unl']){
223            addMediaLogEntry(time(), $id, DOKU_CHANGE_TYPE_DELETE);
224            $data['del'] = io_sweepNS($id,'mediadir');
225        }
226    }
227    $evt->advise_after();
228    unset($evt);
229
230    if($data['unl'] && $data['del']){
231        return DOKU_MEDIA_DELETED | DOKU_MEDIA_EMPTY_NS;
232    }
233
234    return $data['unl'] ? DOKU_MEDIA_DELETED : 0;
235}
236
237/**
238 * Handles media file uploads
239 *
240 * @author Andreas Gohr <andi@splitbrain.org>
241 * @author Michael Klier <chi@chimeric.de>
242 * @return mixed false on error, id of the new file on success
243 */
244function media_upload($ns,$auth){
245    if(!checkSecurityToken()) return false;
246    global $lang;
247
248    // get file and id
249    $id   = $_POST['id'];
250    $file = $_FILES['upload'];
251    if(empty($id)) $id = $file['name'];
252
253    // check for errors (messages are done in lib/exe/mediamanager.php)
254    if($file['error']) return false;
255
256    // check extensions
257    list($fext,$fmime,$dl) = mimetype($file['name']);
258    list($iext,$imime,$dl) = mimetype($id);
259    if($fext && !$iext){
260        // no extension specified in id - read original one
261        $id   .= '.'.$fext;
262        $imime = $fmime;
263    }elseif($fext && $fext != $iext){
264        // extension was changed, print warning
265        msg(sprintf($lang['mediaextchange'],$fext,$iext));
266    }
267
268    $res = media_save(array('name' => $file['tmp_name'],
269                            'mime' => $imime,
270                            'ext'  => $iext), $ns.':'.$id,
271                      $_REQUEST['ow'], $auth, 'move_uploaded_file');
272    if (is_array($res)) {
273        msg($res[0], $res[1]);
274        return false;
275    }
276    return $res;
277}
278
279/**
280 * This generates an action event and delegates to _media_upload_action().
281 * Action plugins are allowed to pre/postprocess the uploaded file.
282 * (The triggered event is preventable.)
283 *
284 * Event data:
285 * $data[0]     fn_tmp: the temporary file name (read from $_FILES)
286 * $data[1]     fn: the file name of the uploaded file
287 * $data[2]     id: the future directory id of the uploaded file
288 * $data[3]     imime: the mimetype of the uploaded file
289 * $data[4]     overwrite: if an existing file is going to be overwritten
290 *
291 * @triggers MEDIA_UPLOAD_FINISH
292 */
293function media_save($file, $id, $ow, $auth, $move) {
294    if($auth < AUTH_UPLOAD) {
295        return array("You don't have permissions to upload files.", -1);
296    }
297
298    if (!isset($file['mime']) || !isset($file['ext'])) {
299        list($ext, $mime) = mimetype($id);
300        if (!isset($file['mime'])) {
301            $file['mime'] = $mime;
302        }
303        if (!isset($file['ext'])) {
304            $file['ext'] = $ext;
305        }
306    }
307
308    global $lang;
309
310    // get filename
311    $id   = cleanID($id,false,true);
312    $fn   = mediaFN($id);
313
314    // get filetype regexp
315    $types = array_keys(getMimeTypes());
316    $types = array_map(create_function('$q','return preg_quote($q,"/");'),$types);
317    $regex = join('|',$types);
318
319    // because a temp file was created already
320    if(!preg_match('/\.('.$regex.')$/i',$fn)) {
321        return array($lang['uploadwrong'],-1);
322    }
323
324    //check for overwrite
325    $overwrite = @file_exists($fn);
326    if($overwrite && (!$ow || $auth < AUTH_DELETE)) {
327        return array($lang['uploadexist'], 0);
328    }
329    // check for valid content
330    $ok = media_contentcheck($file['name'], $file['mime']);
331    if($ok == -1){
332        return array(sprintf($lang['uploadbadcontent'],'.' . $file['ext']),-1);
333    }elseif($ok == -2){
334        return array($lang['uploadspam'],-1);
335    }elseif($ok == -3){
336        return array($lang['uploadxss'],-1);
337    }
338
339    // prepare event data
340    $data[0] = $file['name'];
341    $data[1] = $fn;
342    $data[2] = $id;
343    $data[3] = $file['mime'];
344    $data[4] = $overwrite;
345    $data[5] = $move;
346
347    // trigger event
348    return trigger_event('MEDIA_UPLOAD_FINISH', $data, '_media_upload_action', true);
349}
350
351/**
352 * Callback adapter for media_upload_finish()
353 * @author Michael Klier <chi@chimeric.de>
354 */
355function _media_upload_action($data) {
356    // fixme do further sanity tests of given data?
357    if(is_array($data) && count($data)===6) {
358        return media_upload_finish($data[0], $data[1], $data[2], $data[3], $data[4], $data[5]);
359    } else {
360        return false; //callback error
361    }
362}
363
364/**
365 * Saves an uploaded media file
366 *
367 * @author Andreas Gohr <andi@splitbrain.org>
368 * @author Michael Klier <chi@chimeric.de>
369 * @author Kate Arzamastseva <pshns@ukr.net>
370 */
371function media_upload_finish($fn_tmp, $fn, $id, $imime, $overwrite, $move = 'move_uploaded_file') {
372    global $conf;
373    global $lang;
374
375    $old = @filemtime($fn);
376    if(!@file_exists(mediaFN($id, $old)) && @file_exists($fn)) {
377        // add old revision to the attic if missing
378        media_saveOldRevision($id);
379    }
380
381    // prepare directory
382    io_createNamespace($id, 'media');
383
384    if($move($fn_tmp, $fn)) {
385        $new = @filemtime($fn);
386        // Set the correct permission here.
387        // Always chmod media because they may be saved with different permissions than expected from the php umask.
388        // (Should normally chmod to $conf['fperm'] only if $conf['fperm'] is set.)
389        chmod($fn, $conf['fmode']);
390        msg($lang['uploadsucc'],1);
391        media_notify($id,$fn,$imime);
392        // add a log entry to the media changelog
393        if ($overwrite) {
394            addMediaLogEntry($new, $id, DOKU_CHANGE_TYPE_EDIT);
395        } else {
396            addMediaLogEntry($new, $id, DOKU_CHANGE_TYPE_CREATE, $lang['created']);
397        }
398        return $id;
399    }else{
400        return array($lang['uploadfail'],-1);
401    }
402}
403
404/**
405 * Moves the current version of media file to the media_attic
406 * directory
407 *
408 * @author Kate Arzamastseva <pshns@ukr.net>
409 * @param string $id
410 * @return int - revision date
411 */
412function media_saveOldRevision($id){
413    global $conf;
414    $oldf = mediaFN($id);
415    if(!@file_exists($oldf)) return '';
416    $date = filemtime($oldf);
417    $newf = mediaFN($id,$date);
418    io_makeFileDir($newf);
419    if(copy($oldf, $newf)) {
420        // Set the correct permission here.
421        // Always chmod media because they may be saved with different permissions than expected from the php umask.
422        // (Should normally chmod to $conf['fperm'] only if $conf['fperm'] is set.)
423        chmod($newf, $conf['fmode']);
424    }
425    return $date;
426}
427
428/**
429 * This function checks if the uploaded content is really what the
430 * mimetype says it is. We also do spam checking for text types here.
431 *
432 * We need to do this stuff because we can not rely on the browser
433 * to do this check correctly. Yes, IE is broken as usual.
434 *
435 * @author Andreas Gohr <andi@splitbrain.org>
436 * @link   http://www.splitbrain.org/blog/2007-02/12-internet_explorer_facilitates_cross_site_scripting
437 * @fixme  check all 26 magic IE filetypes here?
438 */
439function media_contentcheck($file,$mime){
440    global $conf;
441    if($conf['iexssprotect']){
442        $fh = @fopen($file, 'rb');
443        if($fh){
444            $bytes = fread($fh, 256);
445            fclose($fh);
446            if(preg_match('/<(script|a|img|html|body|iframe)[\s>]/i',$bytes)){
447                return -3;
448            }
449        }
450    }
451    if(substr($mime,0,6) == 'image/'){
452        $info = @getimagesize($file);
453        if($mime == 'image/gif' && $info[2] != 1){
454            return -1;
455        }elseif($mime == 'image/jpeg' && $info[2] != 2){
456            return -1;
457        }elseif($mime == 'image/png' && $info[2] != 3){
458            return -1;
459        }
460        # fixme maybe check other images types as well
461    }elseif(substr($mime,0,5) == 'text/'){
462        global $TEXT;
463        $TEXT = io_readFile($file);
464        if(checkwordblock()){
465            return -2;
466        }
467    }
468    return 0;
469}
470
471/**
472 * Send a notify mail on uploads
473 *
474 * @author Andreas Gohr <andi@splitbrain.org>
475 */
476function media_notify($id,$file,$mime){
477    global $lang;
478    global $conf;
479    global $INFO;
480    if(empty($conf['notify'])) return; //notify enabled?
481
482    $ip = clientIP();
483
484    $text = rawLocale('uploadmail');
485    $text = str_replace('@DATE@',dformat(),$text);
486    $text = str_replace('@BROWSER@',$_SERVER['HTTP_USER_AGENT'],$text);
487    $text = str_replace('@IPADDRESS@',$ip,$text);
488    $text = str_replace('@HOSTNAME@',gethostsbyaddrs($ip),$text);
489    $text = str_replace('@DOKUWIKIURL@',DOKU_URL,$text);
490    $text = str_replace('@USER@',$_SERVER['REMOTE_USER'],$text);
491    $text = str_replace('@MIME@',$mime,$text);
492    $text = str_replace('@MEDIA@',ml($id,'',true,'&',true),$text);
493    $text = str_replace('@SIZE@',filesize_h(filesize($file)),$text);
494
495    if(empty($conf['mailprefix'])) {
496        $subject = '['.$conf['title'].'] '.$lang['mail_upload'].' '.$id;
497    } else {
498        $subject = '['.$conf['mailprefix'].'] '.$lang['mail_upload'].' '.$id;
499    }
500
501    mail_send($conf['notify'],$subject,$text,$conf['mailfrom']);
502}
503
504/**
505 * List all files in a given Media namespace
506 */
507function media_filelist($ns,$auth=null,$jump='',$fullscreenview=false){
508    global $conf;
509    global $lang;
510    $ns = cleanID($ns);
511
512    // check auth our self if not given (needed for ajax calls)
513    if(is_null($auth)) $auth = auth_quickaclcheck("$ns:*");
514
515    if (!$fullscreenview) echo '<h1 id="media__ns">:'.hsc($ns).'</h1>'.NL;
516
517    if($auth < AUTH_READ){
518        // FIXME: print permission warning here instead?
519        echo '<div class="nothing">'.$lang['nothingfound'].'</div>'.NL;
520    }else{
521        if (!$fullscreenview) media_uploadform($ns, $auth);
522
523        $dir = utf8_encodeFN(str_replace(':','/',$ns));
524        $data = array();
525        search($data,$conf['mediadir'],'search_media',
526                array('showmsg'=>true,'depth'=>1),$dir);
527
528        if(!count($data)){
529            echo '<div class="nothing">'.$lang['nothingfound'].'</div>'.NL;
530        }else foreach($data as $item){
531            if (!$fullscreenview) media_printfile($item,$auth,$jump);
532            else if ($fullscreenview == 'thumbs') media_printfile_thumbs($item,$auth,$jump);
533        }
534    }
535    if (!$fullscreenview) media_searchform($ns);
536}
537
538/**
539 * Prints tabs for files list actions
540 *
541 * @author Kate Arzamastseva <pshns@ukr.net>
542 * @param string $selected - opened tab
543 */
544function media_tabs_files($selected=false){
545    global $lang;
546
547    echo '<div class="mediamanager-tabs" id="id-mediamanager-tabs">';
548    $tab = '<a href="'.media_managerURL(array('tab_files' => 'files')).
549        '" rel=".mediamanager-tab-files"';
550    if (!empty($selected) && $selected == 'files') $class = 'files selected';
551    else $class = 'files';
552    $tab .= ' class="'.$class.'" >'.$lang['mediaselect'].'</a>';
553    echo $tab;
554
555    $tab = '<a href="'.media_managerURL(array('tab_files' => 'upload')).
556        '" rel=".mediamanager-tab-upload"';
557    if (!empty($selected) && $selected == 'upload') $class = 'upload selected';
558    else $class = 'upload';
559    $tab .= ' class="'.$class.'" >'.$lang['media_uploadtab'].'</a>';
560    echo $tab;
561
562    $tab = '<a href="'.media_managerURL(array('tab_files' => 'search')).
563        '" rel=".mediamanager-tab-search"';
564    if (!empty($selected) && $selected == 'search') $class = 'search selected';
565    else $class = 'search';
566    $tab .= ' class="'.$class.'" >'.$lang['media_searchtab'].'</a>';
567    echo $tab;
568
569    echo '<div class="clearer"></div>';
570    echo '</div>';
571}
572
573/**
574 * Prints tabs for files details actions
575 *
576 * @author Kate Arzamastseva <pshns@ukr.net>
577 * @param string $selected - opened tab
578 */
579function media_tabs_details($selected=false){
580    global $lang;
581
582    echo '<div class="mediamanager-tabs" id="id-mediamanager-tabs-detail">';
583    $tab = '<a href="'.media_managerURL(array('tab_details' => 'view')).
584        '" rel=".mediamanager-tab-view"';
585    if (!empty($selected) && $selected == 'view') $class = 'view selected';
586    else $class = 'view';
587    $tab .= ' class="'.$class.'" >'.$lang['media_viewtab'].'</a>';
588    echo $tab;
589
590    $tab = '<a href="'.media_managerURL(array('tab_details' => 'edit')).
591        '" rel=".mediamanager-tab-edit"';
592    if (!empty($selected) && $selected == 'edit') $class = 'edit selected';
593    else $class = 'edit';
594    $tab .= ' class="'.$class.'" >'.$lang['media_edittab'].'</a>';
595    echo $tab;
596
597    $tab = '<a href="'.media_managerURL(array('tab_details' => 'history')).
598        '" rel=".mediamanager-tab-history"';
599    if (!empty($selected) && $selected == 'history') $class = 'history selected';
600    else $class = 'history';
601    $tab .= ' class="'.$class.'" >'.$lang['media_historytab'].'</a>';
602    echo $tab;
603
604    echo '<div class="clearer"></div>';
605    echo '</div>';
606}
607
608/**
609 * Prints options for the tab that displays a list of all files
610 *
611 * @author Kate Arzamastseva <pshns@ukr.net>
612 */
613function media_tab_files_options(){
614    global $lang;
615
616    echo '<div class="background-container">';
617    echo '<div id="id-mediamanager-tabs-files" style="display: inline;">';
618    echo '<a href="'.media_managerURL(array('view' => 'thumbs')).'"
619        rel=".mediamanager-files-thumbnails-tab" class="mediamanager-link-thumbnails">'.
620        $lang['media_thumbsview'].'</a>';
621    echo '<a href="'.media_managerURL(array('view' => 'list')).'"
622        rel=".mediamanager-files-list-tab" class="mediamanager-link-list"
623        title="View as list">'.$lang['media_listview'].'</a>';
624
625    echo '</div>';
626    echo '<div class="mediamanager-block-sort">'.$lang['media_sort'];
627    //select
628    echo '</div>';
629    echo '<div class="clearer"></div>';
630    echo '</div>';
631}
632
633/**
634 * Prints tab that displays a list of all files
635 *
636 * @author Kate Arzamastseva <pshns@ukr.net>
637 */
638function media_tab_files($ns,$auth=null,$jump='') {
639    global $lang;
640    if(is_null($auth)) $auth = auth_quickaclcheck("$ns:*");
641
642    echo '<div class="mediamanager-tab-files">';
643    media_tab_files_options();
644    echo '<div class="scroll-container">';
645
646    $view = $_REQUEST['view'];
647    if($auth < AUTH_READ){
648        echo '<div class="nothing">'.$lang['media_perm_read'].'</div>'.NL;
649    }else{
650        if ($view == 'list') {
651            echo '<ul class="mediamanager-file-list mediamanager-list" id="id-mediamanager-file-list">';
652        } else {
653            echo '<ul class="mediamanager-file-list mediamanager-thumbs" id="id-mediamanager-file-list">';
654        }
655        media_filelist($ns,$auth,$jump,'thumbs');
656        echo '</ul>';
657    }
658    echo '</div>';
659    echo '</div>';
660}
661
662/**
663 * Prints tab that displays uploading form
664 *
665 * @author Kate Arzamastseva <pshns@ukr.net>
666 */
667function media_tab_upload($ns,$auth=null,$jump='') {
668    global $lang;
669    if(is_null($auth)) $auth = auth_quickaclcheck("$ns:*");
670
671    echo '<div class="mediamanager-tab-upload"">';
672    echo '<div class="background-container">';
673    echo $lang['mediaupload'];
674    echo '</div>';
675
676    echo '<div class="scroll-container">';
677    media_uploadform($ns, $auth, true);
678    echo '</div>';
679    echo '</div>';
680}
681
682/**
683 * Prints tab that displays search form
684 *
685 * @author Kate Arzamastseva <pshns@ukr.net>
686 */
687function media_tab_search($ns,$auth=null) {
688    global $lang;
689
690    $do = $_REQUEST['mediado'];
691    $query = $_REQUEST['q'];
692    if (!$query) $query = '';
693
694    echo '<div class="mediamanager-tab-search">';
695    echo '<div class="background-container">';
696    echo $lang['media_search'];
697    echo'</div>';
698
699    echo '<div class="scroll-container">';
700    media_searchform($ns, $query, true);
701
702    if($do == 'searchlist'){
703        media_searchlist($query,$ns,$auth,true);
704    }
705    echo '</div>';
706    echo '</div>';
707}
708
709/**
710 * Prints tab that displays mediafile details
711 *
712 * @author Kate Arzamastseva <pshns@ukr.net>
713 */
714function media_tab_view($image, $ns, $auth=null) {
715    global $lang, $conf;
716    if(is_null($auth)) $auth = auth_quickaclcheck("$ns:*");
717
718    echo '<div class="mediamanager-tab-detail-view">';
719    echo '<div class="background-container">';
720    echo $image;
721    echo '</div>';
722
723    echo '<div class="scroll-container">';
724    $rev = (int) $_REQUEST['rev'];
725    media_preview($image, $auth, $rev);
726    media_details($image, $auth, $rev);
727    echo '</div>';
728    echo '</div>';
729}
730
731/**
732 * Prints tab that displays form for editing mediafile metadata
733 *
734 * @author Kate Arzamastseva <pshns@ukr.net>
735 */
736function media_tab_edit($image, $ns, $auth=null) {
737    global $lang;
738    if(is_null($auth)) $auth = auth_quickaclcheck("$ns:*");
739
740    echo '<div class="mediamanager-tab-detail-edit">';
741    echo '<div class="background-container">';
742    echo $lang['media_edit'];
743    echo '</div>';
744
745    echo '<div class="scroll-container">';
746    if ($image) {
747        list($ext, $mime) = mimetype($image);
748        if ($mime == 'image/jpeg') media_metaform($image,$auth,true);
749    }
750    echo '</div>';
751    echo '</div>';
752}
753
754/**
755 * Prints tab that displays mediafile revisions
756 *
757 * @author Kate Arzamastseva <pshns@ukr.net>
758 */
759function media_tab_history($image, $ns, $auth=null) {
760    global $lang;
761    if(is_null($auth)) $auth = auth_quickaclcheck("$ns:*");
762    $do = $_REQUEST['mediado'];
763
764    echo '<div class="mediamanager-tab-detail-history">';
765    echo '<div class="background-container">';
766    echo $lang['media_history'];
767    echo '</div>';
768
769    echo '<div class="scroll-container">';
770    if ($auth >= AUTH_READ && $image) {
771        if ($do == 'diff'){
772            media_diff($image, $ns, $auth);
773        } else {
774            $first = isset($_REQUEST['first']) ? intval($_REQUEST['first']) : 0;
775            html_revisions($first, $image);
776        }
777    } else {
778        echo '<div class="nothing">'.$lang['media_perm_read'].'</div>'.NL;
779    }
780    echo '</div>';
781    echo '</div>';
782}
783
784/**
785 * Prints mediafile details
786 *
787 * @author Kate Arzamastseva <pshns@ukr.net>
788 */
789function media_preview($image, $auth, $rev=false) {
790    global $lang;
791    if (!$image) return '';
792    if ($auth < AUTH_READ) {
793        echo '<div class="nothing">'.$lang['media_perm_read'].'</div>'.NL;
794        return '';
795    }
796    $info = getimagesize(mediaFN($image));
797    $w = (int) $info[0];
798
799    $more = '';
800    if ($rev) $more = "rev=$rev";
801    $src = ml($image, $more);
802    echo '<div class="mediamanager-preview">';
803    echo '<img src="'.$src.'" alt="" width="99%" style="max-width: '.$w.'px;" /><br /><br />';
804
805    $link = ml($image,$more,true,'&');
806
807    $form = new Doku_Form(array('action'=>$link, 'target'=>'_blank'));
808    $form->addElement(form_makeButton('submit','',$lang['mediaview']));
809    $form->printForm();
810
811    // delete button
812    if($auth >= AUTH_DELETE && !$rev){
813        $form = new Doku_Form(array('action'=>media_managerURL(array('delete' => $image))));
814        $form->addElement(form_makeButton('submit','',$lang['btn_delete']));
815        $form->printForm();
816
817        $form = new Doku_Form(array('action'=>media_managerURL()));
818        $form->addHidden('mediado','update');
819        $form->addElement(form_makeButton('submit','',$lang['media_update']));
820        $form->printForm();
821    }
822    echo '</div>';
823}
824
825/**
826 * Prints mediafile tags
827 *
828 * @author Kate Arzamastseva <pshns@ukr.net>
829 */
830function media_details($image, $auth, $rev=false) {
831    global $lang, $config_cascade;;
832
833    if (!$image) return '';
834    if ($auth < AUTH_READ) {
835        echo '<div class="nothing">'.$lang['media_perm_read'].'</div>'.NL;
836        return '';
837    }
838
839    // load the field descriptions
840    static $tags = null;
841    if(is_null($tags)){
842        foreach (array('default','local') as $config_group) {
843            if (empty($config_cascade['mediameta'][$config_group])) continue;
844            foreach ($config_cascade['mediameta'][$config_group] as $config_file) {
845                if(@file_exists($config_file)){
846                    include($config_file);
847                }
848            }
849        }
850    }
851
852    $src = mediaFN($image, $rev);
853    $meta = new JpegMeta($src);
854    echo '<dl class="img_tags">';
855    foreach($tags as $key => $tag){
856        $t = $tag[0];
857        if (!is_array($t)) $t = array($tag[0]);
858        $value = media_getTag($t, $meta, '-');
859        $value = cleanText($value);
860        echo '<dt>'.$lang[$tag[1]].':</dt><dd>';
861        if ($tag[2] == 'text') echo hsc($value);
862        if ($tag[2] == 'date') echo dformat($value);
863        echo '</dd>';
864    }
865    echo '</dl>';
866}
867
868/**
869 * Returns the requested EXIF/IPTC tag from the image meta
870 *
871 * @author Kate Arzamastseva <pshns@ukr.net>
872 * @param array $tags
873 * @param JpegMeta $meta
874 * @param string $alt
875 * @return string
876 */
877function media_getTag($tags,$meta,$alt=''){
878    if($meta === false) return $alt;
879    $info = $meta->getField($tags);
880    if($info == false) return $alt;
881    return $info;
882}
883
884/**
885 * Shows difference between two revisions of file
886 *
887 * @author Kate Arzamastseva <pshns@ukr.net>
888 */
889function media_diff($image, $ns, $auth) {
890    global $lang;
891    global $conf;
892
893    $rev1 = (int) $_REQUEST['rev'];
894
895    if(is_array($_REQUEST['rev2'])){
896        $rev1 = (int) $_REQUEST['rev2'][0];
897        $rev2 = (int) $_REQUEST['rev2'][1];
898
899        if(!$rev1){
900            $rev1 = $rev2;
901            unset($rev2);
902        }
903    }else{
904        $rev2 = (int) $_REQUEST['rev2'];
905    }
906    if($rev1 && $rev2){            // two specific revisions wanted
907        // make sure order is correct (older on the left)
908        if($rev1 < $rev2){
909            $l_rev = $rev1;
910            $r_rev = $rev2;
911        }else{
912            $l_rev = $rev2;
913            $r_rev = $rev1;
914        }
915    }elseif($rev1){                // single revision given, compare to current
916        $r_rev = '';
917        $l_rev = $rev1;
918    }else{                        // no revision was given, compare previous to current
919        $r_rev = '';
920        $revs = getRevisions($image, 0, 1, 8192, true);
921        $l_rev = $revs[0];
922    }
923    echo '<ul class="mediamanager-table-50"><li><div>';
924    media_preview($image, $auth, $l_rev);
925    echo '</div></li>';
926    echo '<li><div>';
927    media_preview($image, $auth, $r_rev);
928    echo '</div></li><li><div>';
929    media_details($image, $auth, $l_rev);
930    echo '</div></li>';
931    echo '<li><div>';
932    media_details($image, $auth, $r_rev);
933    echo '</div></li></ul>';
934}
935
936/**
937 * List all files found by the search request
938 *
939 * @author Tobias Sarnowski <sarnowski@cosmocode.de>
940 * @author Andreas Gohr <gohr@cosmocode.de>
941 * @author Kate Arzamastseva <pshns@ukr.net>
942 * @triggers MEDIA_SEARCH
943 */
944function media_searchlist($query,$ns,$auth=null,$fullscreen=false){
945    global $conf;
946    global $lang;
947
948    $ns = cleanID($ns);
949
950    if ($query) {
951        $evdata = array(
952                'ns'    => $ns,
953                'data'  => array(),
954                'query' => $query
955                );
956        $evt = new Doku_Event('MEDIA_SEARCH', $evdata);
957        if ($evt->advise_before()) {
958            $dir = utf8_encodeFN(str_replace(':','/',$evdata['ns']));
959            $pattern = '/'.preg_quote($evdata['query'],'/').'/i';
960            search($evdata['data'],
961                    $conf['mediadir'],
962                    'search_media',
963                    array('showmsg'=>false,'pattern'=>$pattern),
964                    $dir);
965        }
966        $evt->advise_after();
967        unset($evt);
968    }
969
970    if (!$fullscreen) {
971        echo '<h1 id="media__ns">'.sprintf($lang['searchmedia_in'],hsc($ns).':*').'</h1>'.NL;
972        media_searchform($ns,$query);
973    }
974
975    if(!count($evdata['data'])){
976        echo '<div class="nothing">'.$lang['nothingfound'].'</div>'.NL;
977    }else foreach($evdata['data'] as $item){
978        if (!$fullscreen) media_printfile($item,$item['perm'],'',true);
979        else media_printfile_thumbs($item,$item['perm'],'',true);
980    }
981}
982
983/**
984 * Print action links for a file depending on filetype
985 * and available permissions
986 */
987function media_fileactions($item,$auth){
988    global $lang;
989
990    // view button
991    $link = ml($item['id'],'',true);
992    echo ' <a href="'.$link.'" target="_blank"><img src="'.DOKU_BASE.'lib/images/magnifier.png" '.
993        'alt="'.$lang['mediaview'].'" title="'.$lang['mediaview'].'" class="btn" /></a>';
994
995    // no further actions if not writable
996    if(!$item['writable']) return;
997
998    // delete button
999    if($auth >= AUTH_DELETE){
1000        $link = DOKU_BASE.'lib/exe/mediamanager.php?delete='.rawurlencode($item['id']).
1001            '&amp;sectok='.getSecurityToken();
1002        echo ' <a href="'.$link.'" class="btn_media_delete" title="'.$item['id'].'">'.
1003            '<img src="'.DOKU_BASE.'lib/images/trash.png" alt="'.$lang['btn_delete'].'" '.
1004            'title="'.$lang['btn_delete'].'" class="btn" /></a>';
1005    }
1006
1007    // edit button
1008    if($auth >= AUTH_UPLOAD && $item['isimg'] && $item['meta']->getField('File.Mime') == 'image/jpeg'){
1009        $link = DOKU_BASE.'lib/exe/mediamanager.php?edit='.rawurlencode($item['id']);
1010        echo ' <a href="'.$link.'">'.
1011            '<img src="'.DOKU_BASE.'lib/images/pencil.png" alt="'.$lang['metaedit'].'" '.
1012            'title="'.$lang['metaedit'].'" class="btn" /></a>';
1013    }
1014
1015}
1016
1017/**
1018 * Formats and prints one file in the list
1019 */
1020function media_printfile($item,$auth,$jump,$display_namespace=false){
1021    global $lang;
1022    global $conf;
1023
1024    // Prepare zebra coloring
1025    // I always wanted to use this variable name :-D
1026    static $twibble = 1;
1027    $twibble *= -1;
1028    $zebra = ($twibble == -1) ? 'odd' : 'even';
1029
1030    // Automatically jump to recent action
1031    if($jump == $item['id']) {
1032        $jump = ' id="scroll__here" ';
1033    }else{
1034        $jump = '';
1035    }
1036
1037    // Prepare fileicons
1038    list($ext,$mime,$dl) = mimetype($item['file'],false);
1039    $class = preg_replace('/[^_\-a-z0-9]+/i','_',$ext);
1040    $class = 'select mediafile mf_'.$class;
1041
1042    // Prepare filename
1043    $file = utf8_decodeFN($item['file']);
1044
1045    // Prepare info
1046    $info = '';
1047    if($item['isimg']){
1048        $info .= (int) $item['meta']->getField('File.Width');
1049        $info .= '&#215;';
1050        $info .= (int) $item['meta']->getField('File.Height');
1051        $info .= ' ';
1052    }
1053    $info .= '<i>'.dformat($item['mtime']).'</i>';
1054    $info .= ' ';
1055    $info .= filesize_h($item['size']);
1056
1057    // output
1058    echo '<div class="'.$zebra.'"'.$jump.'>'.NL;
1059    if (!$display_namespace) {
1060        echo '<a name="h_:'.$item['id'].'" class="'.$class.'">'.hsc($file).'</a> ';
1061    } else {
1062        echo '<a name="h_:'.$item['id'].'" class="'.$class.'">'.hsc($item['id']).'</a><br/>';
1063    }
1064    echo '<span class="info">('.$info.')</span>'.NL;
1065    media_fileactions($item,$auth);
1066    echo '<div class="example" id="ex_'.str_replace(':','_',$item['id']).'">';
1067    echo $lang['mediausage'].' <code>{{:'.$item['id'].'}}</code>';
1068    echo '</div>';
1069    if($item['isimg']) media_printimgdetail($item);
1070    echo '<div class="clearer"></div>'.NL;
1071    echo '</div>'.NL;
1072}
1073
1074/**
1075 * Formats and prints one file in the list in the thumbnails view
1076 *
1077 * @author Kate Arzamastseva <pshns@ukr.net>
1078 */
1079function media_printfile_thumbs($item,$auth,$jump){
1080    global $lang;
1081    global $conf;
1082
1083    // Prepare filename
1084    $file = utf8_decodeFN($item['file']);
1085
1086    // output
1087    echo '<li><div>';
1088    if($item['isimg']) {
1089        media_printimgdetail($item, true);
1090    } else {
1091        echo '<a name="d_:'.$item['id'].'" class="image" title="'.$item['id'].'" href="'.
1092            media_managerURL(array('image' => hsc($item['id']))).'">';
1093        echo '<img src="'.DOKU_BASE.'lib/images/icon-file.png" width="90px" />';
1094        echo '</a>';
1095    }
1096    //echo '<input type=checkbox />';
1097    echo '<a href="'.media_managerURL(array('image' => hsc($item['id']))).'" name=
1098        "h_:'.$item['id'].'" class="name">'.hsc($file).'</a>';
1099    if($item['isimg']){
1100        $size = '';
1101        $size .= (int) $item['meta']->getField('File.Width');
1102        $size .= '&#215;';
1103        $size .= (int) $item['meta']->getField('File.Height');
1104        echo '<span class="size">'.$size.'</span>';
1105    } else {
1106        echo '<span class="size">&nbsp;</span>';
1107    }
1108    $date = dformat($item['mtime']);
1109    echo '<span class="date">'.$date.'</span>';
1110    $filesize = filesize_h($item['size']);
1111    echo '<span class="filesize">'.$filesize.'</span>';
1112    echo '<div class="clearer"></div>';
1113    echo '</div></li>'.NL;
1114}
1115
1116/**
1117 * Prints a thumbnail and metainfos
1118 */
1119function media_printimgdetail($item, $fullscreen=false){
1120    // prepare thumbnail
1121    if (!$fullscreen) $size = 120;
1122    else $size = 90;
1123    $w = (int) $item['meta']->getField('File.Width');
1124    $h = (int) $item['meta']->getField('File.Height');
1125    if($w>$size || $h>$size){
1126        if (!$fullscreen) {
1127            $ratio = $item['meta']->getResizeRatio($size);
1128        } else {
1129            $ratio = $item['meta']->getResizeRatio($size,$size);
1130        }
1131        $w = floor($w * $ratio);
1132        $h = floor($h * $ratio);
1133    }
1134    $src = ml($item['id'],array('w'=>$w,'h'=>$h));
1135    $p = array();
1136    $p['width']  = $w;
1137    if (!$fullscreen) $p['height'] = $h;
1138    $p['alt']    = $item['id'];
1139    $p['class']  = 'thumb';
1140    $att = buildAttributes($p);
1141
1142    // output
1143    if ($fullscreen) {
1144        echo '<a name="d_:'.$item['id'].'" class="image" title="'.$item['id'].'" href="'.
1145            media_managerURL(array('image' => hsc($item['id']))).'">';
1146        echo '<img src="'.$src.'" '.$att.' />';
1147        echo '</a>';
1148        return 1;
1149    }
1150
1151    echo '<div class="detail">';
1152    echo '<div class="thumb">';
1153    echo '<a name="d_:'.$item['id'].'" class="select">';
1154    echo '<img src="'.$src.'" '.$att.' />';
1155    echo '</a>';
1156    echo '</div>';
1157
1158    // read EXIF/IPTC data
1159    $t = $item['meta']->getField(array('IPTC.Headline','xmp.dc:title'));
1160    $d = $item['meta']->getField(array('IPTC.Caption','EXIF.UserComment',
1161                'EXIF.TIFFImageDescription',
1162                'EXIF.TIFFUserComment'));
1163    if(utf8_strlen($d) > 250) $d = utf8_substr($d,0,250).'...';
1164    $k = $item['meta']->getField(array('IPTC.Keywords','IPTC.Category','xmp.dc:subject'));
1165
1166    // print EXIF/IPTC data
1167    if($t || $d || $k ){
1168        echo '<p>';
1169        if($t) echo '<strong>'.htmlspecialchars($t).'</strong><br />';
1170        if($d) echo htmlspecialchars($d).'<br />';
1171        if($t) echo '<em>'.htmlspecialchars($k).'</em>';
1172        echo '</p>';
1173    }
1174    echo '</div>';
1175}
1176
1177/**
1178 * Build link based on the current, adding/rewriting
1179 * parameters
1180 *
1181 * @author Kate Arzamastseva <pshns@ukr.net>
1182 * @param array $params
1183 * @param string $amp - separator
1184 * @return string - link
1185 */
1186function media_managerURL($params=false, $amp='&') {
1187    global $conf;
1188    global $ID;
1189
1190    $url = $_SERVER['REQUEST_URI'];
1191
1192    $urlArray = explode('?', $url, 2);
1193    $gets = @$urlArray[1];
1194    parse_str($gets, $gets);
1195
1196    if ($gets['edit']) $gets['image'] = $gets['edit'];
1197    unset($gets['edit']);
1198    unset($gets['sectok']);
1199    unset($gets['delete']);
1200    unset($gets['rev']);
1201    unset($gets['mediado']);
1202
1203    if ($params) {
1204        foreach ($params as $k => $v) {
1205            $gets[$k] = $v;
1206        }
1207    }
1208    unset($gets['id']);
1209    if ($gets['delete']) {
1210        unset($gets['image']);
1211        unset($gets['tab_details']);
1212    }
1213
1214    return wl($ID,$gets,false,$amp);
1215}
1216
1217/**
1218 * Print the media upload form if permissions are correct
1219 *
1220 * @author Andreas Gohr <andi@splitbrain.org>
1221 * @author Kate Arzamastseva <pshns@ukr.net>
1222 */
1223function media_uploadform($ns, $auth, $fullscreen = false){
1224    global $lang;
1225
1226    if($auth < AUTH_UPLOAD) {
1227        echo '<div class="nothing">'.$lang['media_perm_upload'].'</div>'.NL;
1228        return;
1229    }
1230
1231    $update = false;
1232    $id = '';
1233    if ($auth >= AUTH_DELETE && $fullscreen && $_REQUEST['mediado'] == 'update') {
1234        $update = true;
1235        $id = cleanID($_REQUEST['image']);
1236    }
1237
1238    // The default HTML upload form
1239    $params = array('id'      => 'dw__upload',
1240                    'enctype' => 'multipart/form-data');
1241    if (!$fullscreen) $params['action'] = DOKU_BASE.'lib/exe/mediamanager.php';
1242    else $params['action'] = media_managerURL(array('tab_files' => 'files'));
1243
1244    $form = new Doku_Form($params);
1245    if (!$fullscreen) $form->addElement('<div class="upload">' . $lang['mediaupload'] . '</div>');
1246    $form->addElement(formSecurityToken());
1247    $form->addHidden('ns', hsc($ns));
1248    $form->addElement(form_makeOpenTag('p'));
1249    $form->addElement(form_makeFileField('upload', $lang['txt_upload'].':', 'upload__file'));
1250    $form->addElement(form_makeCloseTag('p'));
1251    $form->addElement(form_makeOpenTag('p'));
1252    $form->addElement(form_makeTextField('id', $id, $lang['txt_filename'].':', 'upload__name'));
1253    $form->addElement(form_makeButton('submit', '', $lang['btn_upload']));
1254    $form->addElement(form_makeCloseTag('p'));
1255
1256    if($auth >= AUTH_DELETE){
1257        $form->addElement(form_makeOpenTag('p'));
1258        $attrs = array();
1259        if ($update) $attrs['checked'] = 'checked';
1260        $form->addElement(form_makeCheckboxField('ow', 1, $lang['txt_overwrt'], 'dw__ow', 'check', $attrs));
1261        $form->addElement(form_makeCloseTag('p'));
1262    }
1263    html_form('upload', $form);
1264
1265    // prepare flashvars for multiupload
1266    $opt = array(
1267            'L_gridname'  => $lang['mu_gridname'] ,
1268            'L_gridsize'  => $lang['mu_gridsize'] ,
1269            'L_gridstat'  => $lang['mu_gridstat'] ,
1270            'L_namespace' => $lang['mu_namespace'] ,
1271            'L_overwrite' => $lang['txt_overwrt'],
1272            'L_browse'    => $lang['mu_browse'],
1273            'L_upload'    => $lang['btn_upload'],
1274            'L_toobig'    => $lang['mu_toobig'],
1275            'L_ready'     => $lang['mu_ready'],
1276            'L_done'      => $lang['mu_done'],
1277            'L_fail'      => $lang['mu_fail'],
1278            'L_authfail'  => $lang['mu_authfail'],
1279            'L_progress'  => $lang['mu_progress'],
1280            'L_filetypes' => $lang['mu_filetypes'],
1281            'L_info'      => $lang['mu_info'],
1282            'L_lasterr'   => $lang['mu_lasterr'],
1283
1284            'O_ns'        => ":$ns",
1285            'O_backend'   => 'mediamanager.php?'.session_name().'='.session_id(),
1286            'O_maxsize'   => php_to_byte(ini_get('upload_max_filesize')),
1287            'O_extensions'=> join('|',array_keys(getMimeTypes())),
1288            'O_overwrite' => ($auth >= AUTH_DELETE),
1289            'O_sectok'    => getSecurityToken(),
1290            'O_authtok'   => auth_createToken(),
1291            );
1292    $var = buildURLparams($opt);
1293    // output the flash uploader
1294    ?>
1295        <div id="dw__flashupload" style="display:none">
1296        <div class="upload"><?php echo $lang['mu_intro']?></div>
1297        <?php echo html_flashobject('multipleUpload.swf','500','190',null,$opt); ?>
1298        </div>
1299        <?php
1300}
1301
1302/**
1303 * Print the search field form
1304 *
1305 * @author Tobias Sarnowski <sarnowski@cosmocode.de>
1306 * @author Kate Arzamastseva <pshns@ukr.net>
1307 */
1308function media_searchform($ns,$query='',$fullscreen=false){
1309    global $lang;
1310
1311    // The default HTML search form
1312    $params = array('id' => 'dw__mediasearch');
1313    if (!$fullscreen) $params['action'] = DOKU_BASE.'lib/exe/mediamanager.php';
1314    else $params['action'] = media_managerURL();
1315    $form = new Doku_Form($params);
1316    if (!$fullscreen) $form->addElement('<div class="upload">' . $lang['mediasearch'] . '</div>');
1317    $form->addElement(formSecurityToken());
1318    $form->addHidden('ns', $ns);
1319    if (!$fullscreen) $form->addHidden('do', 'searchlist');
1320    else $form->addHidden('mediado', 'searchlist');
1321    $form->addElement(form_makeOpenTag('p'));
1322    $form->addElement(form_makeTextField('q', $query,$lang['searchmedia'],'','',array('title'=>sprintf($lang['searchmedia_in'],hsc($ns).':*'))));
1323    $form->addElement(form_makeButton('submit', '', $lang['btn_search']));
1324    $form->addElement(form_makeCloseTag('p'));
1325    html_form('searchmedia', $form);
1326}
1327
1328/**
1329 * Build a tree outline of available media namespaces
1330 *
1331 * @author Andreas Gohr <andi@splitbrain.org>
1332 */
1333function media_nstree($ns){
1334    global $conf;
1335    global $lang;
1336
1337    // currently selected namespace
1338    $ns  = cleanID($ns);
1339    if(empty($ns)){
1340        global $ID;
1341        $ns = dirname(str_replace(':','/',$ID));
1342        if($ns == '.') $ns ='';
1343    }
1344    $ns  = utf8_encodeFN(str_replace(':','/',$ns));
1345
1346    $data = array();
1347    search($data,$conf['mediadir'],'search_index',array('ns' => $ns, 'nofiles' => true));
1348
1349    // wrap a list with the root level around the other namespaces
1350    $item = array( 'level' => 0, 'id' => '',
1351            'open' =>'true', 'label' => '['.$lang['mediaroot'].']');
1352
1353    echo '<ul class="idx">';
1354    echo media_nstree_li($item);
1355    echo media_nstree_item($item);
1356    echo html_buildlist($data,'idx','media_nstree_item','media_nstree_li');
1357    echo '</li>';
1358    echo '</ul>';
1359}
1360
1361/**
1362 * Userfunction for html_buildlist
1363 *
1364 * Prints a media namespace tree item
1365 *
1366 * @author Andreas Gohr <andi@splitbrain.org>
1367 */
1368function media_nstree_item($item){
1369    $pos   = strrpos($item['id'], ':');
1370    $label = substr($item['id'], $pos > 0 ? $pos + 1 : 0);
1371    if(!$item['label']) $item['label'] = $label;
1372
1373    $ret  = '';
1374    if (!($_REQUEST['do'] == 'media'))
1375    $ret .= '<a href="'.DOKU_BASE.'lib/exe/mediamanager.php?ns='.idfilter($item['id']).'" class="idx_dir">';
1376    else $ret .= '<a href="'.media_managerURL(array('ns' => idfilter($item['id']))).'" class="idx_dir">';
1377    $ret .= $item['label'];
1378    $ret .= '</a>';
1379    return $ret;
1380}
1381
1382/**
1383 * Userfunction for html_buildlist
1384 *
1385 * Prints a media namespace tree item opener
1386 *
1387 * @author Andreas Gohr <andi@splitbrain.org>
1388 */
1389function media_nstree_li($item){
1390    $class='media level'.$item['level'];
1391    if($item['open']){
1392        $class .= ' open';
1393        $img   = DOKU_BASE.'lib/images/minus.gif';
1394        $alt   = '&minus;';
1395    }else{
1396        $class .= ' closed';
1397        $img   = DOKU_BASE.'lib/images/plus.gif';
1398        $alt   = '+';
1399    }
1400    // TODO: only deliver an image if it actually has a subtree...
1401    return '<li class="'.$class.'">'.
1402        '<img src="'.$img.'" alt="'.$alt.'" />';
1403}
1404
1405/**
1406 * Resizes the given image to the given size
1407 *
1408 * @author  Andreas Gohr <andi@splitbrain.org>
1409 */
1410function media_resize_image($file, $ext, $w, $h=0){
1411    global $conf;
1412
1413    $info = @getimagesize($file); //get original size
1414    if($info == false) return $file; // that's no image - it's a spaceship!
1415
1416    if(!$h) $h = round(($w * $info[1]) / $info[0]);
1417
1418    // we wont scale up to infinity
1419    if($w > 2000 || $h > 2000) return $file;
1420
1421    //cache
1422    $local = getCacheName($file,'.media.'.$w.'x'.$h.'.'.$ext);
1423    $mtime = @filemtime($local); // 0 if not exists
1424
1425    if( $mtime > filemtime($file) ||
1426            media_resize_imageIM($ext,$file,$info[0],$info[1],$local,$w,$h) ||
1427            media_resize_imageGD($ext,$file,$info[0],$info[1],$local,$w,$h) ){
1428        if($conf['fperm']) chmod($local, $conf['fperm']);
1429        return $local;
1430    }
1431    //still here? resizing failed
1432    return $file;
1433}
1434
1435/**
1436 * Crops the given image to the wanted ratio, then calls media_resize_image to scale it
1437 * to the wanted size
1438 *
1439 * Crops are centered horizontally but prefer the upper third of an vertical
1440 * image because most pics are more interesting in that area (rule of thirds)
1441 *
1442 * @author  Andreas Gohr <andi@splitbrain.org>
1443 */
1444function media_crop_image($file, $ext, $w, $h=0){
1445    global $conf;
1446
1447    if(!$h) $h = $w;
1448    $info = @getimagesize($file); //get original size
1449    if($info == false) return $file; // that's no image - it's a spaceship!
1450
1451    // calculate crop size
1452    $fr = $info[0]/$info[1];
1453    $tr = $w/$h;
1454    if($tr >= 1){
1455        if($tr > $fr){
1456            $cw = $info[0];
1457            $ch = (int) $info[0]/$tr;
1458        }else{
1459            $cw = (int) $info[1]*$tr;
1460            $ch = $info[1];
1461        }
1462    }else{
1463        if($tr < $fr){
1464            $cw = (int) $info[1]*$tr;
1465            $ch = $info[1];
1466        }else{
1467            $cw = $info[0];
1468            $ch = (int) $info[0]/$tr;
1469        }
1470    }
1471    // calculate crop offset
1472    $cx = (int) ($info[0]-$cw)/2;
1473    $cy = (int) ($info[1]-$ch)/3;
1474
1475    //cache
1476    $local = getCacheName($file,'.media.'.$cw.'x'.$ch.'.crop.'.$ext);
1477    $mtime = @filemtime($local); // 0 if not exists
1478
1479    if( $mtime > filemtime($file) ||
1480            media_crop_imageIM($ext,$file,$info[0],$info[1],$local,$cw,$ch,$cx,$cy) ||
1481            media_resize_imageGD($ext,$file,$cw,$ch,$local,$cw,$ch,$cx,$cy) ){
1482        if($conf['fperm']) chmod($local, $conf['fperm']);
1483        return media_resize_image($local,$ext, $w, $h);
1484    }
1485
1486    //still here? cropping failed
1487    return media_resize_image($file,$ext, $w, $h);
1488}
1489
1490/**
1491 * Download a remote file and return local filename
1492 *
1493 * returns false if download fails. Uses cached file if available and
1494 * wanted
1495 *
1496 * @author  Andreas Gohr <andi@splitbrain.org>
1497 * @author  Pavel Vitis <Pavel.Vitis@seznam.cz>
1498 */
1499function media_get_from_URL($url,$ext,$cache){
1500    global $conf;
1501
1502    // if no cache or fetchsize just redirect
1503    if ($cache==0)           return false;
1504    if (!$conf['fetchsize']) return false;
1505
1506    $local = getCacheName(strtolower($url),".media.$ext");
1507    $mtime = @filemtime($local); // 0 if not exists
1508
1509    //decide if download needed:
1510    if( ($mtime == 0) ||                           // cache does not exist
1511            ($cache != -1 && $mtime < time()-$cache)   // 'recache' and cache has expired
1512      ){
1513        if(media_image_download($url,$local)){
1514            return $local;
1515        }else{
1516            return false;
1517        }
1518    }
1519
1520    //if cache exists use it else
1521    if($mtime) return $local;
1522
1523    //else return false
1524    return false;
1525}
1526
1527/**
1528 * Download image files
1529 *
1530 * @author Andreas Gohr <andi@splitbrain.org>
1531 */
1532function media_image_download($url,$file){
1533    global $conf;
1534    $http = new DokuHTTPClient();
1535    $http->max_bodysize = $conf['fetchsize'];
1536    $http->timeout = 25; //max. 25 sec
1537    $http->header_regexp = '!\r\nContent-Type: image/(jpe?g|gif|png)!i';
1538
1539    $data = $http->get($url);
1540    if(!$data) return false;
1541
1542    $fileexists = @file_exists($file);
1543    $fp = @fopen($file,"w");
1544    if(!$fp) return false;
1545    fwrite($fp,$data);
1546    fclose($fp);
1547    if(!$fileexists and $conf['fperm']) chmod($file, $conf['fperm']);
1548
1549    // check if it is really an image
1550    $info = @getimagesize($file);
1551    if(!$info){
1552        @unlink($file);
1553        return false;
1554    }
1555
1556    return true;
1557}
1558
1559/**
1560 * resize images using external ImageMagick convert program
1561 *
1562 * @author Pavel Vitis <Pavel.Vitis@seznam.cz>
1563 * @author Andreas Gohr <andi@splitbrain.org>
1564 */
1565function media_resize_imageIM($ext,$from,$from_w,$from_h,$to,$to_w,$to_h){
1566    global $conf;
1567
1568    // check if convert is configured
1569    if(!$conf['im_convert']) return false;
1570
1571    // prepare command
1572    $cmd  = $conf['im_convert'];
1573    $cmd .= ' -resize '.$to_w.'x'.$to_h.'!';
1574    if ($ext == 'jpg' || $ext == 'jpeg') {
1575        $cmd .= ' -quality '.$conf['jpg_quality'];
1576    }
1577    $cmd .= " $from $to";
1578
1579    @exec($cmd,$out,$retval);
1580    if ($retval == 0) return true;
1581    return false;
1582}
1583
1584/**
1585 * crop images using external ImageMagick convert program
1586 *
1587 * @author Andreas Gohr <andi@splitbrain.org>
1588 */
1589function media_crop_imageIM($ext,$from,$from_w,$from_h,$to,$to_w,$to_h,$ofs_x,$ofs_y){
1590    global $conf;
1591
1592    // check if convert is configured
1593    if(!$conf['im_convert']) return false;
1594
1595    // prepare command
1596    $cmd  = $conf['im_convert'];
1597    $cmd .= ' -crop '.$to_w.'x'.$to_h.'+'.$ofs_x.'+'.$ofs_y;
1598    if ($ext == 'jpg' || $ext == 'jpeg') {
1599        $cmd .= ' -quality '.$conf['jpg_quality'];
1600    }
1601    $cmd .= " $from $to";
1602
1603    @exec($cmd,$out,$retval);
1604    if ($retval == 0) return true;
1605    return false;
1606}
1607
1608/**
1609 * resize or crop images using PHP's libGD support
1610 *
1611 * @author Andreas Gohr <andi@splitbrain.org>
1612 * @author Sebastian Wienecke <s_wienecke@web.de>
1613 */
1614function media_resize_imageGD($ext,$from,$from_w,$from_h,$to,$to_w,$to_h,$ofs_x=0,$ofs_y=0){
1615    global $conf;
1616
1617    if($conf['gdlib'] < 1) return false; //no GDlib available or wanted
1618
1619    // check available memory
1620    if(!is_mem_available(($from_w * $from_h * 4) + ($to_w * $to_h * 4))){
1621        return false;
1622    }
1623
1624    // create an image of the given filetype
1625    if ($ext == 'jpg' || $ext == 'jpeg'){
1626        if(!function_exists("imagecreatefromjpeg")) return false;
1627        $image = @imagecreatefromjpeg($from);
1628    }elseif($ext == 'png') {
1629        if(!function_exists("imagecreatefrompng")) return false;
1630        $image = @imagecreatefrompng($from);
1631
1632    }elseif($ext == 'gif') {
1633        if(!function_exists("imagecreatefromgif")) return false;
1634        $image = @imagecreatefromgif($from);
1635    }
1636    if(!$image) return false;
1637
1638    if(($conf['gdlib']>1) && function_exists("imagecreatetruecolor") && $ext != 'gif'){
1639        $newimg = @imagecreatetruecolor ($to_w, $to_h);
1640    }
1641    if(!$newimg) $newimg = @imagecreate($to_w, $to_h);
1642    if(!$newimg){
1643        imagedestroy($image);
1644        return false;
1645    }
1646
1647    //keep png alpha channel if possible
1648    if($ext == 'png' && $conf['gdlib']>1 && function_exists('imagesavealpha')){
1649        imagealphablending($newimg, false);
1650        imagesavealpha($newimg,true);
1651    }
1652
1653    //keep gif transparent color if possible
1654    if($ext == 'gif' && function_exists('imagefill') && function_exists('imagecolorallocate')) {
1655        if(function_exists('imagecolorsforindex') && function_exists('imagecolortransparent')) {
1656            $transcolorindex = @imagecolortransparent($image);
1657            if($transcolorindex >= 0 ) { //transparent color exists
1658                $transcolor = @imagecolorsforindex($image, $transcolorindex);
1659                $transcolorindex = @imagecolorallocate($newimg, $transcolor['red'], $transcolor['green'], $transcolor['blue']);
1660                @imagefill($newimg, 0, 0, $transcolorindex);
1661                @imagecolortransparent($newimg, $transcolorindex);
1662            }else{ //filling with white
1663                $whitecolorindex = @imagecolorallocate($newimg, 255, 255, 255);
1664                @imagefill($newimg, 0, 0, $whitecolorindex);
1665            }
1666        }else{ //filling with white
1667            $whitecolorindex = @imagecolorallocate($newimg, 255, 255, 255);
1668            @imagefill($newimg, 0, 0, $whitecolorindex);
1669        }
1670    }
1671
1672    //try resampling first
1673    if(function_exists("imagecopyresampled")){
1674        if(!@imagecopyresampled($newimg, $image, 0, 0, $ofs_x, $ofs_y, $to_w, $to_h, $from_w, $from_h)) {
1675            imagecopyresized($newimg, $image, 0, 0, $ofs_x, $ofs_y, $to_w, $to_h, $from_w, $from_h);
1676        }
1677    }else{
1678        imagecopyresized($newimg, $image, 0, 0, $ofs_x, $ofs_y, $to_w, $to_h, $from_w, $from_h);
1679    }
1680
1681    $okay = false;
1682    if ($ext == 'jpg' || $ext == 'jpeg'){
1683        if(!function_exists('imagejpeg')){
1684            $okay = false;
1685        }else{
1686            $okay = imagejpeg($newimg, $to, $conf['jpg_quality']);
1687        }
1688    }elseif($ext == 'png') {
1689        if(!function_exists('imagepng')){
1690            $okay = false;
1691        }else{
1692            $okay =  imagepng($newimg, $to);
1693        }
1694    }elseif($ext == 'gif') {
1695        if(!function_exists('imagegif')){
1696            $okay = false;
1697        }else{
1698            $okay = imagegif($newimg, $to);
1699        }
1700    }
1701
1702    // destroy GD image ressources
1703    if($image) imagedestroy($image);
1704    if($newimg) imagedestroy($newimg);
1705
1706    return $okay;
1707}
1708
1709/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
1710