Add photo cache hooks
This commit is contained in:
parent
476bd7400d
commit
bd0fc8a2d7
@ -1,19 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
namespace Zotlabs\Module;
|
namespace Zotlabs\Module;
|
||||||
|
|
||||||
require_once('include/security.php');
|
require_once('include/security.php');
|
||||||
require_once('include/attach.php');
|
require_once('include/attach.php');
|
||||||
require_once('include/photo/photo_driver.php');
|
|
||||||
|
|
||||||
|
|
||||||
class Photo extends \Zotlabs\Web\Controller {
|
class Photo extends \Zotlabs\Web\Controller {
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
|
|
||||||
$prvcachecontrol = false;
|
|
||||||
$streaming = null;
|
$streaming = null;
|
||||||
$channel = null;
|
$channel = null;
|
||||||
$person = 0;
|
$person = 0;
|
||||||
|
$renew = false;
|
||||||
|
|
||||||
switch(argc()) {
|
switch(argc()) {
|
||||||
case 4:
|
case 4:
|
||||||
@ -30,6 +30,14 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$cache_mode = array(
|
||||||
|
'on' => false, // Cache off
|
||||||
|
'age' => 86400, // max-age
|
||||||
|
'exp' => true, // Use own max-age
|
||||||
|
'leak' => false // Do not allow non members use our cache
|
||||||
|
);
|
||||||
|
call_hooks('cache_mode_hook', $cache_mode);
|
||||||
|
|
||||||
$observer_xchan = get_observer_hash();
|
$observer_xchan = get_observer_hash();
|
||||||
$ismodified = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
|
$ismodified = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
|
||||||
|
|
||||||
@ -106,13 +114,14 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
License link: http://creativecommons.org/licenses/by/3.0/
|
License link: http://creativecommons.org/licenses/by/3.0/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
// @FIXME It seems this part doesn't work because we are not setting such cookie
|
||||||
$cookie_value = false;
|
$cookie_value = false;
|
||||||
if (isset($_COOKIE['devicePixelRatio'])) {
|
if (isset($_COOKIE['devicePixelRatio'])) {
|
||||||
$cookie_value = intval($_COOKIE['devicePixelRatio']);
|
$cookie_value = intval($_COOKIE['devicePixelRatio']);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Force revalidation of cache on next request
|
// Force revalidation of cache on next request
|
||||||
$cache_directive = 'no-cache';
|
// $prvcachecontrol = 'no-cache';
|
||||||
$status = 'no cookie';
|
$status = 'no cookie';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,27 +138,44 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
$resolution = 1;
|
$resolution = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("SELECT uid, photo_usage FROM photo WHERE resource_id = '%s' AND imgscale = %d LIMIT 1",
|
$r = q("SELECT uid, photo_usage, expires, display_path FROM photo WHERE resource_id = '%s' AND imgscale = %d LIMIT 1",
|
||||||
dbesc($photo),
|
dbesc($photo),
|
||||||
intval($resolution)
|
intval($resolution)
|
||||||
);
|
);
|
||||||
if($r) {
|
if($r) {
|
||||||
|
|
||||||
$allowed = (-1);
|
$allowed = (-1);
|
||||||
|
|
||||||
if(intval($r[0]['photo_usage'])) {
|
$u = intval($r[0]['photo_usage']);
|
||||||
|
if($u) {
|
||||||
$allowed = 1;
|
$allowed = 1;
|
||||||
if(intval($r[0]['photo_usage']) === PHOTO_COVER)
|
if($u === PHOTO_COVER)
|
||||||
if($resolution < PHOTO_RES_COVER_1200)
|
if($resolution < PHOTO_RES_COVER_1200)
|
||||||
$allowed = (-1);
|
$allowed = (-1);
|
||||||
if(intval($r[0]['photo_usage']) === PHOTO_PROFILE)
|
if($u === PHOTO_PROFILE)
|
||||||
if(! in_array($resolution,[4,5,6]))
|
if(! in_array($resolution,[4,5,6]))
|
||||||
$allowed = (-1);
|
$allowed = (-1);
|
||||||
|
if($u === PHOTO_CACHE) {
|
||||||
|
$origurl = $r[0]['display_path'];
|
||||||
|
// Cached image leak protection
|
||||||
|
if(! (local_channel() || $cache_mode['leak'])) {
|
||||||
|
header("Location: " . $origurl);
|
||||||
|
killme();
|
||||||
|
}
|
||||||
|
// Revalidate cache
|
||||||
|
if($cache_mode['on'] && strtotime($r[0]['expires']) - 60 < time()) {
|
||||||
|
$cache = array(
|
||||||
|
'url' => $origurl,
|
||||||
|
'uid' => $r[0]['uid']
|
||||||
|
);
|
||||||
|
call_hooks('cache_url_hook', $cache);
|
||||||
|
if(! $cache['status'])
|
||||||
|
http_status_exit(404,'not found');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($allowed === (-1)) {
|
if($allowed === (-1))
|
||||||
$allowed = attach_can_view($r[0]['uid'],$observer_xchan,$photo);
|
$allowed = attach_can_view($r[0]['uid'],$observer_xchan,$photo);
|
||||||
}
|
|
||||||
|
|
||||||
$channel = channelx_by_n($r[0]['uid']);
|
$channel = channelx_by_n($r[0]['uid']);
|
||||||
|
|
||||||
@ -162,14 +188,17 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
$exists = (($e) ? true : false);
|
$exists = (($e) ? true : false);
|
||||||
|
|
||||||
if($exists && $allowed) {
|
if($exists && $allowed) {
|
||||||
|
$expires = strtotime($e[0]['expires'] . 'Z');
|
||||||
$data = dbunescbin($e[0]['content']);
|
$data = dbunescbin($e[0]['content']);
|
||||||
$filesize = $e[0]['filesize'];
|
$filesize = $e[0]['filesize'];
|
||||||
$mimetype = $e[0]['mimetype'];
|
$mimetype = $e[0]['mimetype'];
|
||||||
$modified = strtotime($e[0]['edited'] . 'Z');
|
$modified = strtotime($e[0]['edited'] . 'Z');
|
||||||
if(intval($e[0]['os_storage']))
|
|
||||||
|
if(intval($e[0]['os_storage'])) {
|
||||||
$streaming = $data;
|
$streaming = $data;
|
||||||
|
}
|
||||||
if($e[0]['allow_cid'] != '' || $e[0]['allow_gid'] != '' || $e[0]['deny_gid'] != '' || $e[0]['deny_gid'] != '')
|
if($e[0]['allow_cid'] != '' || $e[0]['allow_gid'] != '' || $e[0]['deny_gid'] != '' || $e[0]['deny_gid'] != '')
|
||||||
$prvcachecontrol = true;
|
$prvcachecontrol = 'no-store, no-cache, must-revalidate';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if(! $allowed) {
|
if(! $allowed) {
|
||||||
@ -180,9 +209,9 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
http_status_exit(404,'not found');
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
http_status_exit(404,'not found');
|
||||||
}
|
}
|
||||||
|
|
||||||
header_remove('Pragma');
|
header_remove('Pragma');
|
||||||
@ -226,23 +255,13 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// @FIXME Seems never invoked
|
if(isset($prvcachecontrol)) {
|
||||||
// Writing in cachefile
|
|
||||||
if (isset($cachefile) && $cachefile != '') {
|
|
||||||
file_put_contents($cachefile, $data);
|
|
||||||
$modified = filemtime($cachefile);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
header("Content-type: " . $mimetype);
|
|
||||||
|
|
||||||
if($prvcachecontrol) {
|
|
||||||
|
|
||||||
// it is a private photo that they have no permission to view.
|
// it is a private photo that they have no permission to view.
|
||||||
// tell the browser not to cache it, in case they authenticate
|
// tell the browser not to cache it, in case they authenticate
|
||||||
// and subsequently have permission to see it
|
// and subsequently have permission to see it
|
||||||
|
|
||||||
header("Cache-Control: no-store, no-cache, must-revalidate");
|
header("Cache-Control: " . $prvcachecontrol);
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -255,18 +274,23 @@ class Photo extends \Zotlabs\Web\Controller {
|
|||||||
// This has performance considerations but we highly recommend you
|
// This has performance considerations but we highly recommend you
|
||||||
// leave it alone.
|
// leave it alone.
|
||||||
|
|
||||||
$cache = get_config('system','photo_cache_time', 86400); // 1 day by default
|
$maxage = $cache_mode['age'];
|
||||||
|
|
||||||
header("Expires: " . gmdate("D, d M Y H:i:s", time() + $cache) . " GMT");
|
if($cache_mode['exp'] || (! isset($expires)) || (isset($expires) && $expires - 60 < time()))
|
||||||
header("Cache-Control: max-age=" . $cache);
|
$expires = time() + $maxage;
|
||||||
|
else
|
||||||
|
$maxage = $expires - time();
|
||||||
|
|
||||||
|
header("Expires: " . gmdate("D, d M Y H:i:s", $expires) . " GMT");
|
||||||
|
header("Cache-Control: max-age=" . $maxage);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header("Content-type: " . $mimetype);
|
||||||
header("Last-Modified: " . gmdate("D, d M Y H:i:s", $modified) . " GMT");
|
header("Last-Modified: " . gmdate("D, d M Y H:i:s", $modified) . " GMT");
|
||||||
header("Content-Length: " . (isset($filesize) ? $filesize : strlen($data)));
|
header("Content-Length: " . (isset($filesize) ? $filesize : strlen($data)));
|
||||||
|
|
||||||
// If it's a file resource, stream it.
|
// If it's a file resource, stream it.
|
||||||
|
|
||||||
if($streaming && $channel) {
|
if($streaming && $channel) {
|
||||||
if(strpos($streaming,'store') !== false)
|
if(strpos($streaming,'store') !== false)
|
||||||
$istream = fopen($streaming,'rb');
|
$istream = fopen($streaming,'rb');
|
||||||
|
Reference in New Issue
Block a user