xref: /dokuwiki/inc/fetch.functions.php (revision 6ce3e5f8a126e9df9b0d5bd1cf43421c1fc9b86f)
17fb7960fSChristopher Smith<?php
27fb7960fSChristopher Smith/**
37fb7960fSChristopher Smith * Functions used by lib/exe/fetch.php
47fb7960fSChristopher Smith * (not included by other parts of dokuwiki)
57fb7960fSChristopher Smith */
67fb7960fSChristopher Smith
77fb7960fSChristopher Smith/**
87fb7960fSChristopher Smith * Set headers and send the file to the client
97fb7960fSChristopher Smith *
107fb7960fSChristopher Smith * The $cache parameter influences how long files may be kept in caches, the $public parameter
117fb7960fSChristopher Smith * influences if this caching may happen in public proxis or in the browser cache only FS#2734
127fb7960fSChristopher Smith *
137fb7960fSChristopher Smith * This function will abort the current script when a 304 is sent or file sending is handled
147fb7960fSChristopher Smith * through x-sendfile
157fb7960fSChristopher Smith *
167fb7960fSChristopher Smith * @author Andreas Gohr <andi@splitbrain.org>
177fb7960fSChristopher Smith * @author Ben Coburn <btcoburn@silicodon.net>
18499df7e5SGerry Weißbach * @author Gerry Weissbach <dokuwiki@gammaproduction.de>
1942ea7f44SGerrit Uitslag *
207fb7960fSChristopher Smith * @param string $file   local file to send
217fb7960fSChristopher Smith * @param string $mime   mime type of the file
227fb7960fSChristopher Smith * @param bool   $dl     set to true to force a browser download
237fb7960fSChristopher Smith * @param int    $cache  remaining cache time in seconds (-1 for $conf['cache'], 0 for no-cache)
247fb7960fSChristopher Smith * @param bool   $public is this a public ressource or a private one?
252fd6745dSGerry Weißbach * @param string $orig   original file to send - the file name will be used for the Content-Disposition
267fb7960fSChristopher Smith */
272fd6745dSGerry Weißbachfunction sendFile($file, $mime, $dl, $cache, $public = false, $orig = null) {
287fb7960fSChristopher Smith    global $conf;
297fb7960fSChristopher Smith    // send mime headers
307fb7960fSChristopher Smith    header("Content-Type: $mime");
317fb7960fSChristopher Smith
327fb7960fSChristopher Smith    // calculate cache times
337fb7960fSChristopher Smith    if($cache == -1) {
347fb7960fSChristopher Smith        $maxage  = max($conf['cachetime'], 3600); // cachetime or one hour
357fb7960fSChristopher Smith        $expires = time() + $maxage;
367fb7960fSChristopher Smith    } else if($cache > 0) {
377fb7960fSChristopher Smith        $maxage  = $cache; // given time
387fb7960fSChristopher Smith        $expires = time() + $maxage;
397fb7960fSChristopher Smith    } else { // $cache == 0
407fb7960fSChristopher Smith        $maxage  = 0;
417fb7960fSChristopher Smith        $expires = 0; // 1970-01-01
427fb7960fSChristopher Smith    }
437fb7960fSChristopher Smith
447fb7960fSChristopher Smith    // smart http caching headers
457fb7960fSChristopher Smith    if($maxage) {
467fb7960fSChristopher Smith        if($public) {
477fb7960fSChristopher Smith            // cache publically
487fb7960fSChristopher Smith            header('Expires: '.gmdate("D, d M Y H:i:s", $expires).' GMT');
497fb7960fSChristopher Smith            header('Cache-Control: public, proxy-revalidate, no-transform, max-age='.$maxage);
507fb7960fSChristopher Smith        } else {
517fb7960fSChristopher Smith            // cache in browser
527fb7960fSChristopher Smith            header('Expires: '.gmdate("D, d M Y H:i:s", $expires).' GMT');
537fb7960fSChristopher Smith            header('Cache-Control: private, no-transform, max-age='.$maxage);
547fb7960fSChristopher Smith        }
557fb7960fSChristopher Smith    } else {
567fb7960fSChristopher Smith        // no cache at all
577fb7960fSChristopher Smith        header('Expires: Thu, 01 Jan 1970 00:00:00 GMT');
587fb7960fSChristopher Smith        header('Cache-Control: no-cache, no-transform');
597fb7960fSChristopher Smith    }
607fb7960fSChristopher Smith
617fb7960fSChristopher Smith    //send important headers first, script stops here if '304 Not Modified' response
627fb7960fSChristopher Smith    $fmtime = @filemtime($file);
637fb7960fSChristopher Smith    http_conditionalRequest($fmtime);
647fb7960fSChristopher Smith
652fd6745dSGerry Weißbach    // Use the current $file if is $orig is not set.
662fd6745dSGerry Weißbach    if ( $orig == null ) {
672fd6745dSGerry Weißbach        $orig = $file;
682fd6745dSGerry Weißbach    }
692fd6745dSGerry Weißbach
707fb7960fSChristopher Smith    //download or display?
717fb7960fSChristopher Smith    if ($dl) {
72*6ce3e5f8SAndreas Gohr        header('Content-Disposition: attachment;' . rfc2231_encode(
73*6ce3e5f8SAndreas Gohr                'filename', \dokuwiki\Utf8\PhpString::basename($orig)) . ';'
74*6ce3e5f8SAndreas Gohr        );
757fb7960fSChristopher Smith    } else {
76*6ce3e5f8SAndreas Gohr        header('Content-Disposition: inline;' . rfc2231_encode(
77*6ce3e5f8SAndreas Gohr                'filename', \dokuwiki\Utf8\PhpString::basename($orig)) . ';'
78*6ce3e5f8SAndreas Gohr        );
797fb7960fSChristopher Smith    }
807fb7960fSChristopher Smith
817fb7960fSChristopher Smith    //use x-sendfile header to pass the delivery to compatible webservers
8240e0b444SDominik Eckelmann    http_sendfile($file);
837fb7960fSChristopher Smith
847fb7960fSChristopher Smith    // send file contents
857fb7960fSChristopher Smith    $fp = @fopen($file, "rb");
867fb7960fSChristopher Smith    if($fp) {
877fb7960fSChristopher Smith        http_rangeRequest($fp, filesize($file), $mime);
887fb7960fSChristopher Smith    } else {
897fb7960fSChristopher Smith        http_status(500);
907fb7960fSChristopher Smith        print "Could not read $file - bad permissions?";
917fb7960fSChristopher Smith    }
927fb7960fSChristopher Smith}
937fb7960fSChristopher Smith
947fb7960fSChristopher Smith/**
9504585e6cSGerry Weißbach * Try an rfc2231 compatible encoding. This ensures correct
9604585e6cSGerry Weißbach * interpretation of filenames outside of the ASCII set.
9704585e6cSGerry Weißbach * This seems to be needed for file names with e.g. umlauts that
9804585e6cSGerry Weißbach * would otherwise decode wrongly in IE.
9904585e6cSGerry Weißbach *
10004585e6cSGerry Weißbach * There is no additional checking, just the encoding and setting the key=value for usage in headers
10104585e6cSGerry Weißbach *
10204585e6cSGerry Weißbach * @author Gerry Weissbach <gerry.w@gammaproduction.de>
10304585e6cSGerry Weißbach * @param string $name      name of the field to be set in the header() call
10404585e6cSGerry Weißbach * @param string $value     value of the field to be set in the header() call
10504585e6cSGerry Weißbach * @param string $charset   used charset for the encoding of value
10604585e6cSGerry Weißbach * @param string $lang      language used.
10704585e6cSGerry Weißbach * @return string           in the format " name=value" for values WITHOUT special characters
10804585e6cSGerry Weißbach * @return string           in the format " name*=charset'lang'value" for values WITH special characters
10904585e6cSGerry Weißbach */
11004585e6cSGerry Weißbachfunction rfc2231_encode($name, $value, $charset='utf-8', $lang='en') {
11164159a61SAndreas Gohr    $internal = preg_replace_callback(
11264159a61SAndreas Gohr        '/[\x00-\x20*\'%()<>@,;:\\\\"\/[\]?=\x80-\xFF]/',
11364159a61SAndreas Gohr        function ($match) {
11464159a61SAndreas Gohr            return rawurlencode($match[0]);
11564159a61SAndreas Gohr        },
11664159a61SAndreas Gohr        $value
11764159a61SAndreas Gohr    );
11804585e6cSGerry Weißbach    if ( $value != $internal ) {
11904585e6cSGerry Weißbach        return ' '.$name.'*='.$charset."'".$lang."'".$internal;
12004585e6cSGerry Weißbach    } else {
12104585e6cSGerry Weißbach        return ' '.$name.'="'.$value.'"';
12204585e6cSGerry Weißbach    }
12304585e6cSGerry Weißbach}
12404585e6cSGerry Weißbach
12504585e6cSGerry Weißbach/**
1267fb7960fSChristopher Smith * Check for media for preconditions and return correct status code
1277fb7960fSChristopher Smith *
1287fb7960fSChristopher Smith * READ: MEDIA, MIME, EXT, CACHE
1297fb7960fSChristopher Smith * WRITE: MEDIA, FILE, array( STATUS, STATUSMESSAGE )
1307fb7960fSChristopher Smith *
1317fb7960fSChristopher Smith * @author Gerry Weissbach <gerry.w@gammaproduction.de>
13242ea7f44SGerrit Uitslag *
133f481fb8cSKlap-in * @param string $media  reference to the media id
134f481fb8cSKlap-in * @param string $file   reference to the file variable
135f481fb8cSKlap-in * @param string $rev
136f481fb8cSKlap-in * @param int    $width
137f481fb8cSKlap-in * @param int    $height
13842ea7f44SGerrit Uitslag * @return array as array(STATUS, STATUSMESSAGE)
1397fb7960fSChristopher Smith */
1407fb7960fSChristopher Smithfunction checkFileStatus(&$media, &$file, $rev = '', $width=0, $height=0) {
1417fb7960fSChristopher Smith    global $MIME, $EXT, $CACHE, $INPUT;
1427fb7960fSChristopher Smith
1437fb7960fSChristopher Smith    //media to local file
1443e7e6067SKlap-in    if(media_isexternal($media)) {
145cc036f74SKlap-in        //check token for external image and additional for resized and cached images
146cc036f74SKlap-in        if(media_get_token($media, $width, $height) !== $INPUT->str('tok')) {
1477fb7960fSChristopher Smith            return array(412, 'Precondition Failed');
1487fb7960fSChristopher Smith        }
1497fb7960fSChristopher Smith        //handle external images
1507fb7960fSChristopher Smith        if(strncmp($MIME, 'image/', 6) == 0) $file = media_get_from_URL($media, $EXT, $CACHE);
1517fb7960fSChristopher Smith        if(!$file) {
1527fb7960fSChristopher Smith            //download failed - redirect to original URL
1537fb7960fSChristopher Smith            return array(302, $media);
1547fb7960fSChristopher Smith        }
1557fb7960fSChristopher Smith    } else {
1567fb7960fSChristopher Smith        $media = cleanID($media);
1577fb7960fSChristopher Smith        if(empty($media)) {
1587fb7960fSChristopher Smith            return array(400, 'Bad request');
1597fb7960fSChristopher Smith        }
1607fb7960fSChristopher Smith        // check token for resized images
1617fb7960fSChristopher Smith        if (($width || $height) && media_get_token($media, $width, $height) !== $INPUT->str('tok')) {
1627fb7960fSChristopher Smith            return array(412, 'Precondition Failed');
1637fb7960fSChristopher Smith        }
1647fb7960fSChristopher Smith
1657fb7960fSChristopher Smith        //check permissions (namespace only)
1667fb7960fSChristopher Smith        if(auth_quickaclcheck(getNS($media).':X') < AUTH_READ) {
1677fb7960fSChristopher Smith            return array(403, 'Forbidden');
1687fb7960fSChristopher Smith        }
1697fb7960fSChristopher Smith        $file = mediaFN($media, $rev);
1707fb7960fSChristopher Smith    }
1717fb7960fSChristopher Smith
1727fb7960fSChristopher Smith    //check file existance
17379e79377SAndreas Gohr    if(!file_exists($file)) {
1747fb7960fSChristopher Smith        return array(404, 'Not Found');
1757fb7960fSChristopher Smith    }
1767fb7960fSChristopher Smith
1777fb7960fSChristopher Smith    return array(200, null);
1787fb7960fSChristopher Smith}
1797fb7960fSChristopher Smith
1807fb7960fSChristopher Smith/**
1817fb7960fSChristopher Smith * Returns the wanted cachetime in seconds
1827fb7960fSChristopher Smith *
1837fb7960fSChristopher Smith * Resolves named constants
1847fb7960fSChristopher Smith *
1857fb7960fSChristopher Smith * @author  Andreas Gohr <andi@splitbrain.org>
18642ea7f44SGerrit Uitslag *
18742ea7f44SGerrit Uitslag * @param string $cache
18842ea7f44SGerrit Uitslag * @return int cachetime in seconds
1897fb7960fSChristopher Smith */
1907fb7960fSChristopher Smithfunction calc_cache($cache) {
1917fb7960fSChristopher Smith    global $conf;
1927fb7960fSChristopher Smith
1937fb7960fSChristopher Smith    if(strtolower($cache) == 'nocache') return 0; //never cache
1947fb7960fSChristopher Smith    if(strtolower($cache) == 'recache') return $conf['cachetime']; //use standard cache
1957fb7960fSChristopher Smith    return -1; //cache endless
1967fb7960fSChristopher Smith}
197