streams/mod/attach.php

42 lines
826 B
PHP
Raw Normal View History

2011-05-25 09:08:15 +00:00
<?php
require_once('include/security.php');
2011-05-25 09:08:15 +00:00
function attach_init(&$a) {
2012-10-24 00:14:50 +00:00
if(argc() != 2) {
2011-05-25 09:08:15 +00:00
notice( t('Item not available.') . EOL);
return;
}
2012-10-24 00:14:50 +00:00
$hash = argv(1);
2011-05-25 09:08:15 +00:00
// Check for existence, which will also provide us the owner uid
2012-10-24 00:14:50 +00:00
$r = q("SELECT * FROM `attach` WHERE `hash` = '%s' LIMIT 1",
dbesc($hash)
2011-05-25 09:08:15 +00:00
);
if(! count($r)) {
notice( t('Item was not found.'). EOL);
return;
}
$sql_extra = permissions_sql($r[0]['uid']);
2011-05-25 09:08:15 +00:00
// Now we'll see if we can access the attachment
2012-10-24 00:14:50 +00:00
$r = q("SELECT * FROM `attach` WHERE hash = '%s' $sql_extra LIMIT 1",
dbesc($hash)
2011-05-25 09:08:15 +00:00
);
if(! count($r)) {
2011-05-25 09:08:15 +00:00
notice( t('Permission denied.') . EOL);
return;
}
header('Content-type: ' . $r[0]['filetype']);
header('Content-disposition: attachment; filename=' . $r[0]['filename']);
echo $r[0]['data'];
2011-05-25 09:08:15 +00:00
killme();
// NOTREACHED
}