2011-05-25 11:08:15 +02:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
|
|
|
* @file mod/attach.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-11-08 04:57:46 +01:00
|
|
|
use Friendica\Database\DBM;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
require_once 'include/dba.php';
|
|
|
|
require_once 'include/security.php';
|
2011-05-25 11:08:15 +02:00
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
function attach_init(App $a)
|
|
|
|
{
|
|
|
|
if ($a->argc != 2) {
|
|
|
|
notice(L10n::t('Item not available.') . EOL);
|
2011-05-25 11:08:15 +02:00
|
|
|
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
|
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
$r = dba::selectFirst('attach', [], ['id' => $item_id]);
|
|
|
|
if (!DBM::is_result($r)) {
|
|
|
|
notice(L10n::t('Item was not found.'). EOL);
|
2011-05-25 11:08:15 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
$sql_extra = permissions_sql($r['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)
|
|
|
|
);
|
|
|
|
|
2018-01-21 19:33:59 +01:00
|
|
|
if (!DBM::is_result($r)) {
|
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-05-25 11:08:15 +02:00
|
|
|
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']);
|
2018-01-21 19:33: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'] . '"');
|
2018-01-21 19:33:59 +01:00
|
|
|
} else {
|
2013-05-04 02:17:56 +02:00
|
|
|
header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');
|
2018-01-21 19:33:59 +01:00
|
|
|
}
|
2013-05-04 02:17:56 +02:00
|
|
|
|
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
|
|
|
}
|