forked from changi67/tiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
banner_image.php
65 lines (54 loc) · 1.5 KB
/
banner_image.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* @package tikiwiki
*/
// (c) Copyright 2002-2013 by authors of the Tiki Wiki CMS Groupware Project
//
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// $Id$
// application to display an image from the database with
// option to resize the image dynamically creating a thumbnail on the fly.
if (!isset($_REQUEST["id"])) {
die;
}
$id = (int) $_REQUEST['id'];
$defaultCache = 'temp';
$bannercachefile = "$defaultCache/banner.$id";
if (is_file($bannercachefile) and (!isset($_REQUEST["reload"]))) {
$size = getimagesize($bannercachefile);
$type = $size['mime'];
header("Content-type: $type");
readfile($bannercachefile);
exit;
}
require_once ('tiki-setup.php');
$access->check_feature('feature_banners');
$bannercachefile = $prefs['tmpDir'];
if ($tikidomain) {
$bannercachefile .= "/$tikidomain";
}
$bannercachefile.= "/banner.". (int)$_REQUEST["id"];
if (is_file($bannercachefile) and (!isset($_REQUEST["reload"]))) {
$size = getimagesize($bannercachefile);
$type = $size['mime'];
} else {
$bannerlib = TikiLib::lib('banner');
$data = $bannerlib->get_banner($_REQUEST["id"]);
if (!$data) {
die;
}
$type = $data["imageType"];
$data = $data["imageData"];
if ($data) {
$fp = fopen($bannercachefile, "wb");
fputs($fp, $data);
fclose($fp);
}
}
header("Content-type: $type");
if (is_file($bannercachefile)) {
readfile($bannercachefile);
} else {
echo $data;
}