-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload-thing-image.php
37 lines (29 loc) · 1.15 KB
/
load-thing-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
<?php
//-----------------------------------------------------------------
// Load image from DB, responding with the data and correct MIME type
//-----------------------------------------------------------------
require_once 'lib/utils.php';
//--------------------------------------------------------------------------
// ID of image should be in URL
$id = $_GET['id'] ?? null;
//--------------------------------------------------------------------------
$db = connectToDB();
// Get the image type and binary data
$query = 'SELECT image_type, image_data FROM things WHERE id=?';
try {
$stmt = $db->prepare($query);
$stmt->execute([$id]);
$thing = $stmt->fetch();
// Failed to get an image back?
if (!$thing) throw new Exception();
}
catch (Exception $e) {
// Failed, so 404
http_response_code(404);
die();
}
//--------------------------------------------------------------------------
// Got here, so all went well. Pass back the image data as a response
header('Content-type: ' . $thing['image_type']);
echo $thing['image_data'];
?>