Browse Source

Replace Expires and caching headers by OC_Response functions

tags/v4.0.0beta
Bart Visscher 12 years ago
parent
commit
525306c1e2
6 changed files with 10 additions and 22 deletions
  1. 1
    3
      apps/files_sharing/get.php
  2. 3
    10
      apps/media/ajax/api.php
  3. 1
    3
      apps/media/tomahawk.php
  4. 1
    3
      files/download.php
  5. 1
    3
      lib/files.php
  6. 3
    0
      lib/response.php

+ 1
- 3
apps/files_sharing/get.php View File

@@ -67,9 +67,7 @@ if ($source !== false) {
//get time mimetype and set the headers
$mimetype = OC_Filesystem::getMimeType($source);
header("Content-Transfer-Encoding: binary");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Pragma: public");
OC_Response::disableCaching();
header('Content-Disposition: filename="'.basename($source).'"');
header("Content-Type: " . $mimetype);
header("Content-Length: " . OC_Filesystem::filesize($source));

+ 3
- 10
apps/media/ajax/api.php View File

@@ -111,18 +111,11 @@ if($arguments['action']){
OC_MEDIA_COLLECTION::registerPlay($songId);
header('Content-Type:'.$ftype);
// calc an offset of 24 hours
$offset = 3600 * 24;
// calc the string in GMT not localtime and add the offset
$expire = "Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
//output the HTTP header
header($expire);
header('Cache-Control: max-age=3600, must-revalidate');
header('Pragma: public');
OC_Response::enableCaching(3600 * 24); // 24 hour
header('Accept-Ranges: bytes');
header('Content-Length: '.OC_Filesystem::filesize($arguments['path']));
$gmt_mtime = gmdate('D, d M Y H:i:s', OC_Filesystem::filemtime($arguments['path']) ) . ' GMT';
header("Last-Modified: " . $gmt_mtime );
$mtime = OC_Filesystem::filemtime($arguments['path']);
OC_Response::setLastModifiedHeader($mtime);
OC_Filesystem::readfile($arguments['path']);
exit;

+ 1
- 3
apps/media/tomahawk.php View File

@@ -43,9 +43,7 @@ if(isset($_POST['play']) and $_POST['play']=='true'){
$song=OC_MEDIA_COLLECTION::getSong($_POST['song']);
$ftype=OC_Filesystem::getMimeType( $song['song_path'] );
header('Content-Type:'.$ftype);
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
OC_Response::disableCaching();
header('Content-Length: '.OC_Filesystem::filesize($song['song_path']));

OC_Filesystem::readfile($song['song_path']);

+ 1
- 3
files/download.php View File

@@ -41,9 +41,7 @@ $ftype=OC_Filesystem::getMimeType( $filename );

header('Content-Type:'.$ftype);
header('Content-Disposition: attachment; filename="'.basename($filename).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
OC_Response::disableCaching();
header('Content-Length: '.OC_Filesystem::filesize($filename));

@ob_end_clean();

+ 1
- 3
lib/files.php View File

@@ -91,9 +91,7 @@ class OC_Files {
if($zip or OC_Filesystem::is_readable($filename)){
header('Content-Disposition: attachment; filename="'.basename($filename).'"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
OC_Response::disableCaching();
if($zip){
header('Content-Type: application/zip');
header('Content-Length: ' . filesize($filename));

+ 3
- 0
lib/response.php View File

@@ -30,6 +30,9 @@ class OC_Response {
}

}
static public function disableCaching() {
self::enableCaching(0);
}

static public function setStatus($status) {
$protocol = $_SERVER['SERVER_PROTOCOL'];

Loading…
Cancel
Save