blob: eaca0849f078bad0f3f66e41300b4af2efe44229 (
plain)
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
66
67
68
69
|
<?php
/**
* Tidypics Thumbnail
*
*/
include_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
// Get file GUID
$file_guid = (int) get_input('file_guid');
// Get file thumbnail size
$size = get_input('size');
// only 3 possibilities
if ($size != 'small' && $size != 'thumb') {
$size = 'large';
}
$error_image = '';
switch ($size) {
case 'thumb':
$error_image = "image_error_thumb.png";
break;
case 'small':
$error_image = "image_error_small.png";
break;
case 'large':
$error_image = "image_error_large.png";
break;
}
// Get file entity
$file = get_entity($file_guid);
if (!$file)
forward('mod/tidypics/graphics/' . $error_image);
if ($file->getSubtype() != "image")
forward('mod/tidypics/graphics/' . $error_image);
// Get filename
if ($size == "thumb") {
$thumbfile = $file->thumbnail;
} else if ($size == "small") {
$thumbfile = $file->smallthumb;
} else {
$thumbfile = $file->largethumb;
}
if (!$thumbfile)
forward('mod/tidypics/graphics/' . $error_image);
// create Elgg File object
$readfile = new ElggFile();
$readfile->owner_guid = $file->owner_guid;
$readfile->setFilename($thumbfile);
$contents = $readfile->grabFile();
// send error image if file could not be read
if (!$contents) {
forward('mod/tidypics/graphics/' . $error_image);
}
// Return the thumbnail and exit
$mime = $file->getMimeType();
header("Content-type: $mime");
echo $contents;
exit;
?>
|