<?php
// call it like the following
// https://example.com/get.php?path=e4YQYTfDTeW9xmA2sGEd9WL7PWomHoGgC4xrNKqI/be1da227fa380c8d057edbcf19cc8e14_pdf.pdf
$url = isset($_GET['path'])?$_GET['path']:null;
if (!$url) exit;
$content = file_get_contents("https://parsefiles.back4app.com/$url");
// from
// http://php.net/manual/de/function.mime-content-type.php
$mime_types = array(
'txt' => 'text/plain',
'htm' => 'text/html',
'html' => 'text/html',
'php' => 'text/html',
'css' => 'text/css',
'js' => 'application/javascript',
'json' => 'application/json',
'xml' => 'application/xml',
'swf' => 'application/x-shockwave-flash',
'flv' => 'video/x-flv',
// images
'png' => 'image/png',
'jpe' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'jpg' => 'image/jpeg',
'gif' => 'image/gif',
'bmp' => 'image/bmp',
'ico' => 'image/vnd.microsoft.icon',
'tiff' => 'image/tiff',
'tif' => 'image/tiff',
'svg' => 'image/svg+xml',
'svgz' => 'image/svg+xml',
// archives
'zip' => 'application/zip',
'rar' => 'application/x-rar-compressed',
'exe' => 'application/x-msdownload',
'msi' => 'application/x-msdownload',
'cab' => 'application/vnd.ms-cab-compressed',
// audio/video
'mp3' => 'audio/mpeg',
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
// adobe
'pdf' => 'application/pdf',
'psd' => 'image/vnd.adobe.photoshop',
'ai' => 'application/postscript',
'eps' => 'application/postscript',
'ps' => 'application/postscript',
// ms office
'doc' => 'application/msword',
'rtf' => 'application/rtf',
'xls' => 'application/vnd.ms-excel',
'ppt' => 'application/vnd.ms-powerpoint',
// open office
'odt' => 'application/vnd.oasis.opendocument.text',
'ods' => 'application/vnd.oasis.opendocument.spreadsheet',
);
$ext = strtolower(array_pop(explode('.', basename($url))));
if (array_key_exists($ext, $mime_types)) {
$mime = $mime_types[$ext];
} else {
$mime = 'application/octet-stream';
}
header("Content-Type: $mime");
if (isset($_GET['download'])) {
if ($_GET['download']) {
$download = $_GET['download'];
} else {
$download = $url;
}
header('Content-Disposition: attachment; filename="'. basename($download) .'"');
}
if ($content) {
die($content);
}
// pseudo-code
var data = {
filename: 'test.pdf',
file: File // File object
}
console.log(data.file.type); // === 'application/pdf'
new Parse.File(data.filename, data.file, data.file.type)
new Parse.File(data.filename, data.file, data.file.type)
new Parse.File(data.filename, data.file, 'text/pdf')
Please, let me know.
Best!
var file_obj = new Parse.File(
data.filename, data.file, 'application/pdf'
);