2011-05-25 11:08:15 +02:00
|
|
|
<?php
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
|
|
|
|
2011-07-01 02:35:35 +02:00
|
|
|
require_once('include/security.php');
|
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function attach_init(App $a) {
|
2011-05-25 11:08:15 +02:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($a->argc != 2) {
|
2011-05-25 11:08:15 +02:00
|
|
|
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)
|
|
|
|
);
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2011-05-25 11:08:15 +02:00
|
|
|
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)
|
|
|
|
);
|
|
|
|
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2011-05-25 11:08:15 +02:00
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-12 14:31:32 +01:00
|
|
|
// Use quotes around the filename to prevent a "multiple Content-Disposition"
|
|
|
|
// error in Chrome for filenames with commas in them
|
2011-05-25 11:08:15 +02:00
|
|
|
header('Content-type: ' . $r[0]['filetype']);
|
2013-05-04 02:17:56 +02:00
|
|
|
header('Content-length: ' . $r[0]['filesize']);
|
2017-03-21 17:02:59 +01:00
|
|
|
if(isset($_GET['attachment']) && $_GET['attachment'] === '0')
|
2013-05-04 02:17:56 +02:00
|
|
|
header('Content-disposition: filename="' . $r[0]['filename'] . '"');
|
|
|
|
else
|
|
|
|
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
|
2013-01-12 14:31:32 +01:00
|
|
|
}
|