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