2011-05-25 09:08:15 +00:00
|
|
|
<?php
|
2018-01-21 18:33:59 +00:00
|
|
|
/**
|
|
|
|
* @file mod/attach.php
|
|
|
|
*/
|
2018-07-20 02:15:21 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-01-21 18:33:59 +00:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-10-17 12:19:58 +00:00
|
|
|
use Friendica\Util\Security;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-01-21 18:33:59 +00:00
|
|
|
require_once 'include/dba.php';
|
2011-05-25 09:08:15 +00:00
|
|
|
|
2018-01-21 18:33:59 +00:00
|
|
|
function attach_init(App $a)
|
|
|
|
{
|
|
|
|
if ($a->argc != 2) {
|
|
|
|
notice(L10n::t('Item not available.') . EOL);
|
2011-05-25 09:08:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$item_id = intval($a->argv[1]);
|
|
|
|
|
2011-07-01 00:35:35 +00:00
|
|
|
// Check for existence, which will also provide us the owner uid
|
|
|
|
|
2018-07-20 12:19:26 +00:00
|
|
|
$r = DBA::selectFirst('attach', [], ['id' => $item_id]);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Item was not found.'). EOL);
|
2011-05-25 09:08:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-17 19:30:41 +00:00
|
|
|
$sql_extra = Security::getPermissionsSQLByUserId($r['uid']);
|
2011-05-25 09:08:15 +00:00
|
|
|
|
|
|
|
// Now we'll see if we can access the attachment
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `attach` WHERE `id` = '%d' $sql_extra LIMIT 1",
|
2018-07-21 13:10:13 +00:00
|
|
|
DBA::escape($item_id)
|
2011-05-25 09:08:15 +00:00
|
|
|
);
|
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-21 18:33:59 +00:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2011-05-25 09:08:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-12 13:31:32 +00:00
|
|
|
// Use quotes around the filename to prevent a "multiple Content-Disposition"
|
|
|
|
// error in Chrome for filenames with commas in them
|
2011-05-25 09:08:15 +00:00
|
|
|
header('Content-type: ' . $r[0]['filetype']);
|
2013-05-04 00:17:56 +00:00
|
|
|
header('Content-length: ' . $r[0]['filesize']);
|
2018-01-21 18:33:59 +00:00
|
|
|
if (isset($_GET['attachment']) && $_GET['attachment'] === '0') {
|
2013-05-04 00:17:56 +00:00
|
|
|
header('Content-disposition: filename="' . $r[0]['filename'] . '"');
|
2018-01-21 18:33:59 +00:00
|
|
|
} else {
|
2013-05-04 00:17:56 +00:00
|
|
|
header('Content-disposition: attachment; filename="' . $r[0]['filename'] . '"');
|
2018-01-21 18:33:59 +00:00
|
|
|
}
|
2013-05-04 00:17:56 +00:00
|
|
|
|
2011-07-01 00:35:35 +00:00
|
|
|
echo $r[0]['data'];
|
2011-05-25 09:08:15 +00:00
|
|
|
killme();
|
|
|
|
// NOTREACHED
|
2013-01-12 13:31:32 +00:00
|
|
|
}
|