2019-11-21 05:24:55 +01:00
|
|
|
const Uppy = require('@uppy/core');
|
|
|
|
const XHRUpload = require('@uppy/xhr-upload');
|
|
|
|
const ProgressBar = require('@uppy/progress-bar');
|
|
|
|
|
|
|
|
exports.make_upload_absolute = function (uri) {
|
2020-01-28 15:26:02 +01:00
|
|
|
if (uri.startsWith(compose.uploads_path)) {
|
2017-11-23 15:00:05 +01:00
|
|
|
// Rewrite the URI to a usable link
|
|
|
|
return compose.uploads_domain + uri;
|
|
|
|
}
|
|
|
|
return uri;
|
2019-11-21 05:24:55 +01:00
|
|
|
};
|
2017-11-23 15:00:05 +01:00
|
|
|
|
2018-02-13 23:26:19 +01:00
|
|
|
// Show the upload button only if the browser supports it.
|
|
|
|
exports.feature_check = function (upload_button) {
|
2019-11-09 02:48:01 +01:00
|
|
|
if (window.XMLHttpRequest && new XMLHttpRequest().upload) {
|
2018-02-13 23:26:19 +01:00
|
|
|
upload_button.removeClass("notdisplayed");
|
|
|
|
}
|
|
|
|
};
|
2020-04-17 17:37:06 +02:00
|
|
|
exports.get_translated_status = function (file) {
|
|
|
|
const status = i18n.t("Uploading __filename__…", {filename: file.name});
|
|
|
|
return "[" + status + "]()";
|
|
|
|
};
|
2018-02-13 23:26:19 +01:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
exports.get_item = function (key, config) {
|
|
|
|
if (!config) {
|
|
|
|
throw Error("Missing config");
|
|
|
|
}
|
|
|
|
if (config.mode === "compose") {
|
|
|
|
switch (key) {
|
|
|
|
case "textarea":
|
|
|
|
return $('#compose-textarea');
|
|
|
|
case "send_button":
|
|
|
|
return $('#compose-send-button');
|
|
|
|
case "send_status_identifier":
|
|
|
|
return '#compose-send-status';
|
|
|
|
case "send_status":
|
|
|
|
return $('#compose-send-status');
|
|
|
|
case "send_status_close_button":
|
|
|
|
return $('.compose-send-status-close');
|
|
|
|
case "send_status_message":
|
|
|
|
return $('#compose-error-msg');
|
|
|
|
case "file_input_identifier":
|
|
|
|
return "#file_input";
|
|
|
|
case "source":
|
|
|
|
return "compose-file-input";
|
|
|
|
case "drag_drop_container":
|
|
|
|
return $("#compose");
|
|
|
|
default:
|
|
|
|
throw Error(`Invalid key name for mode "${config.mode}"`);
|
|
|
|
}
|
|
|
|
} else if (config.mode === "edit") {
|
|
|
|
if (!config.row) {
|
|
|
|
throw Error("Missing row in config");
|
|
|
|
}
|
|
|
|
switch (key) {
|
|
|
|
case "textarea":
|
|
|
|
return $('#message_edit_content_' + config.row);
|
|
|
|
case "send_button":
|
|
|
|
return $('#message_edit_content_' + config.row).closest('#message_edit_form').find('.message_edit_save');
|
|
|
|
case "send_status_identifier":
|
|
|
|
return '#message-edit-send-status-' + config.row;
|
|
|
|
case "send_status":
|
|
|
|
return $('#message-edit-send-status-' + config.row);
|
|
|
|
case "send_status_close_button":
|
|
|
|
return $('#message-edit-send-status-' + config.row).find('.send-status-close');
|
|
|
|
case "send_status_message":
|
|
|
|
return $('#message-edit-send-status-' + config.row).find('.error-msg');
|
|
|
|
case "file_input_identifier":
|
|
|
|
return '#message_edit_file_input_' + config.row;
|
|
|
|
case "source":
|
|
|
|
return "message-edit-file-input";
|
|
|
|
case "drag_drop_container":
|
|
|
|
return $("#message_edit_form");
|
|
|
|
default:
|
|
|
|
throw Error(`Invalid key name for mode "${config.mode}"`);
|
|
|
|
}
|
|
|
|
} else {
|
2018-02-13 22:48:48 +01:00
|
|
|
throw Error("Invalid upload mode!");
|
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
};
|
2018-02-13 22:48:48 +01:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
exports.hide_upload_status = function (config) {
|
|
|
|
exports.get_item("send_button", config).prop("disabled", false);
|
|
|
|
exports.get_item("send_status", config).removeClass("alert-info").hide();
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.show_error_message = function (config, message) {
|
|
|
|
if (!message) {
|
|
|
|
message = i18n.t("An unknown error occurred.");
|
|
|
|
}
|
|
|
|
exports.get_item("send_button", config).prop("disabled", false);
|
|
|
|
exports.get_item("send_status", config).addClass("alert-error").removeClass("alert-info").show();
|
|
|
|
exports.get_item("send_status_message", config).text(message);
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.upload_files = function (uppy, config, files) {
|
|
|
|
if (files.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
2020-05-08 06:57:19 +02:00
|
|
|
if (page_params.max_file_upload_size_mib === 0) {
|
2019-11-21 05:24:55 +01:00
|
|
|
exports.show_error_message(config, i18n.t('File and image uploads have been disabled for this organization.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
exports.get_item("send_button", config).attr("disabled", "");
|
|
|
|
exports.get_item("send_status", config).addClass("alert-info").removeClass("alert-error").show();
|
|
|
|
exports.get_item("send_status_message", config).html($("<p>").text(i18n.t("Uploading…")));
|
|
|
|
exports.get_item("send_status_close_button", config).one('click', function () {
|
2020-03-08 11:13:57 +01:00
|
|
|
uppy.getFiles().forEach((file) => {
|
2020-04-17 17:37:06 +02:00
|
|
|
compose_ui.replace_syntax(exports.get_translated_status(file), "", exports.get_item("textarea", config));
|
2020-03-08 11:13:57 +01:00
|
|
|
});
|
|
|
|
compose_ui.autosize_textarea();
|
2019-11-21 05:24:55 +01:00
|
|
|
uppy.cancelAll();
|
2020-03-08 11:13:57 +01:00
|
|
|
exports.get_item("textarea", config).focus();
|
2019-11-21 05:24:55 +01:00
|
|
|
setTimeout(function () {
|
|
|
|
exports.hide_upload_status(config);
|
|
|
|
}, 500);
|
|
|
|
});
|
|
|
|
|
|
|
|
for (const file of files) {
|
|
|
|
try {
|
2020-04-17 17:37:06 +02:00
|
|
|
compose_ui.insert_syntax_and_focus(exports.get_translated_status(file), exports.get_item("textarea", config));
|
2019-11-21 05:24:55 +01:00
|
|
|
compose_ui.autosize_textarea();
|
|
|
|
uppy.addFile({
|
|
|
|
source: exports.get_item("source", config),
|
|
|
|
name: file.name,
|
|
|
|
type: file.type,
|
|
|
|
data: file,
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
// Errors are handled by info-visible and upload-error event callbacks.
|
2020-04-16 17:11:06 +02:00
|
|
|
break;
|
2018-04-14 11:48:22 +02:00
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
}
|
|
|
|
};
|
2018-04-14 11:48:22 +02:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
exports.setup_upload = function (config) {
|
|
|
|
const uppy = Uppy({
|
|
|
|
debug: false,
|
|
|
|
autoProceed: true,
|
|
|
|
restrictions: {
|
2020-05-08 06:57:19 +02:00
|
|
|
maxFileSize: page_params.max_file_upload_size_mib * 1024 * 1024,
|
2019-11-21 05:24:55 +01:00
|
|
|
},
|
|
|
|
locale: {
|
|
|
|
strings: {
|
|
|
|
exceedsSize: i18n.t('This file exceeds maximum allowed size of'),
|
|
|
|
failedToUpload: i18n.t('Failed to upload %{file}'),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
uppy.setMeta({
|
|
|
|
csrfmiddlewaretoken: csrf_token,
|
|
|
|
});
|
|
|
|
uppy.use(
|
|
|
|
XHRUpload, {
|
|
|
|
endpoint: '/json/user_uploads',
|
|
|
|
formData: true,
|
|
|
|
fieldName: 'file',
|
|
|
|
// Number of concurrent uploads
|
|
|
|
limit: 5,
|
|
|
|
locale: {
|
|
|
|
strings: {
|
|
|
|
timedOut: i18n.t('Upload stalled for %{seconds} seconds, aborting.'),
|
|
|
|
},
|
|
|
|
},
|
2019-10-25 23:55:37 +02:00
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
uppy.use(ProgressBar, {
|
|
|
|
target: exports.get_item("send_status_identifier", config),
|
|
|
|
hideAfterFinish: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
$("body").on("change", exports.get_item("file_input_identifier", config), (event) => {
|
|
|
|
const files = event.target.files;
|
|
|
|
exports.upload_files(uppy, config, files);
|
2020-04-09 20:19:37 +02:00
|
|
|
event.target.value = "";
|
2019-11-21 05:24:55 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
const drag_drop_container = exports.get_item("drag_drop_container", config);
|
|
|
|
drag_drop_container.on("dragover", (event) => event.preventDefault());
|
|
|
|
drag_drop_container.on("dragenter", (event) => event.preventDefault());
|
|
|
|
|
|
|
|
drag_drop_container.on("drop", (event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const files = event.originalEvent.dataTransfer.files;
|
|
|
|
exports.upload_files(uppy, config, files);
|
|
|
|
});
|
|
|
|
|
|
|
|
drag_drop_container.on("paste", (event) => {
|
|
|
|
const clipboard_data = event.clipboardData || event.originalEvent.clipboardData;
|
|
|
|
if (!clipboard_data) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const items = clipboard_data.items;
|
|
|
|
const files = [];
|
|
|
|
for (const item of items) {
|
|
|
|
if (item.kind !== "file") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const file = item.getAsFile();
|
|
|
|
files.push(file);
|
2018-02-13 22:39:51 +01:00
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
exports.upload_files(uppy, config, files);
|
|
|
|
});
|
2017-11-23 15:00:05 +01:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
uppy.on('upload-success', (file, response) => {
|
|
|
|
const uri = response.body.uri;
|
|
|
|
if (uri === undefined) {
|
2018-02-13 22:39:51 +01:00
|
|
|
return;
|
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
const split_uri = uri.split("/");
|
2019-11-02 00:06:25 +01:00
|
|
|
const filename = split_uri[split_uri.length - 1];
|
2019-11-21 05:24:55 +01:00
|
|
|
if (!compose_state.composing()) {
|
2018-02-13 22:39:51 +01:00
|
|
|
compose_actions.start('stream');
|
|
|
|
}
|
2020-06-11 14:32:12 +02:00
|
|
|
const absolute_uri = exports.make_upload_absolute(uri);
|
2019-11-21 05:24:55 +01:00
|
|
|
const filename_uri = "[" + filename + "](" + absolute_uri + ")";
|
2020-04-17 17:37:06 +02:00
|
|
|
compose_ui.replace_syntax(exports.get_translated_status(file), filename_uri, exports.get_item("textarea", config));
|
2018-02-13 22:39:51 +01:00
|
|
|
compose_ui.autosize_textarea();
|
2019-11-21 05:24:55 +01:00
|
|
|
});
|
2018-04-05 04:29:21 +02:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
uppy.on('complete', () => {
|
2020-04-14 16:16:49 +02:00
|
|
|
let uploads_in_progress = false;
|
2020-07-02 01:39:34 +02:00
|
|
|
uppy.getFiles().forEach((file) => {
|
2020-04-14 16:16:49 +02:00
|
|
|
if (file.progress.uploadComplete) {
|
|
|
|
// The uploaded files should be removed since uppy don't allow files in the store
|
|
|
|
// to be re-uploaded again.
|
|
|
|
uppy.removeFile(file.id);
|
|
|
|
} else {
|
|
|
|
// Happens when user tries to upload files when there is already an existing batch
|
|
|
|
// being uploaded. So when the first batch of files complete, the second batch would
|
|
|
|
// still be in progress.
|
|
|
|
uploads_in_progress = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-04-16 18:22:43 +02:00
|
|
|
const has_errors = exports.get_item("send_status", config).hasClass("alert-error");
|
|
|
|
if (!uploads_in_progress && !has_errors) {
|
2020-04-14 16:16:49 +02:00
|
|
|
setTimeout(function () {
|
|
|
|
exports.hide_upload_status(config);
|
|
|
|
}, 500);
|
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
});
|
2017-11-23 15:00:05 +01:00
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
uppy.on('info-visible', () => {
|
|
|
|
const info = uppy.getState().info;
|
|
|
|
if (info.type === "error" && info.message === "No Internet connection") {
|
|
|
|
// server_events already handles the case of no internet.
|
|
|
|
return;
|
2018-02-13 23:29:17 +01:00
|
|
|
}
|
2019-11-21 05:24:55 +01:00
|
|
|
|
|
|
|
if (info.type === "error" && info.details === "Upload Error") {
|
|
|
|
// The server errors come under 'Upload Error'. But we can't handle them
|
|
|
|
// here because info object don't contain response.body.msg received from
|
|
|
|
// the server. Server errors are hence handled by on('upload-error').
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (info.type === "error") {
|
|
|
|
// The remaining errors are mostly frontend errors like file being too large
|
|
|
|
// for upload.
|
|
|
|
uppy.cancelAll();
|
|
|
|
exports.show_error_message(config, info.message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
uppy.on('upload-error', (file, error, response) => {
|
|
|
|
const message = response ? response.body.msg : null;
|
|
|
|
uppy.cancelAll();
|
|
|
|
exports.show_error_message(config, message);
|
2020-04-17 17:37:06 +02:00
|
|
|
compose_ui.replace_syntax(exports.get_translated_status(file), "", exports.get_item("textarea", config));
|
2020-03-07 12:54:07 +01:00
|
|
|
compose_ui.autosize_textarea();
|
2019-11-21 05:24:55 +01:00
|
|
|
});
|
|
|
|
|
2020-03-07 12:44:17 +01:00
|
|
|
uppy.on('restriction-failed', (file) => {
|
2020-04-17 17:37:06 +02:00
|
|
|
compose_ui.replace_syntax(exports.get_translated_status(file), "", exports.get_item("textarea", config));
|
2020-03-07 12:44:17 +01:00
|
|
|
compose_ui.autosize_textarea();
|
|
|
|
});
|
|
|
|
|
2019-11-21 05:24:55 +01:00
|
|
|
return uppy;
|
2018-02-13 22:39:51 +01:00
|
|
|
};
|
|
|
|
|
2019-10-25 09:45:13 +02:00
|
|
|
window.upload = exports;
|