Skip to content
Snippets Groups Projects
Commit f50407e9 authored by echicken's avatar echicken :chicken:
Browse files

Optional content-disposition change.

If file type is known to ctrl/mime_types.ini,
and if files_inline is true in modopts.ini->[web],
and if it's not application/octet-stream,
set content-disposition to inline.
parent fe3f0a8d
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -3,6 +3,7 @@ var settings = load('modopts.js', 'web') || { web_directory: '../webv4' };
load(settings.web_directory + '/lib/init.js');
load(settings.web_lib + 'auth.js');
load(settings.web_lib + 'files.js');
require('filebase.js', 'FileBase');
var CHUNK_SIZE = 1024;
......@@ -41,8 +42,13 @@ if ((http_request.method === 'GET' || http_request.method === 'POST') &&
reply.error = 'Not enough credits to download this file';
break;
}
http_reply.header['Content-Type'] = 'application/octet-stream';
http_reply.header['Content-Disposition'] = 'attachment; filename="' + file.base + '.' + file.ext + '"';
var mt = settings.files_inline ? getMimeType(file) : 'application/octet-stream';
http_reply.header['Content-Type'] = mt;
if (mt === 'application/octet-stream') {
http_reply.header['Content-Disposition'] = 'attachment; filename="' + file.base + '.' + file.ext + '"';
} else {
http_reply.header['Content-Disposition'] = 'inline';
}
http_reply.header['Content-Encoding'] = 'binary';
http_reply.header['Content-Length'] = file_size(file.path);
var f = new File(file.path);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment