2016-07-15 23:05:18 +00:00
|
|
|
import axios from 'axios';
|
2016-07-19 20:49:46 +00:00
|
|
|
import { createFile } from './files';
|
2016-07-15 23:05:18 +00:00
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
const textFileRegex = /(text\/|application\/json)/;
|
2017-04-13 18:39:03 +00:00
|
|
|
const s3BucketHttps = `https://s3-${process.env.AWS_REGION}.amazonaws.com/${process.env.S3_BUCKET}/`;
|
2017-03-16 04:34:14 +00:00
|
|
|
const ROOT_URL = process.env.API_URL;
|
2016-10-25 19:51:44 +00:00
|
|
|
const MAX_LOCAL_FILE_SIZE = 80000; // bytes, aka 80 KB
|
2016-07-15 23:05:18 +00:00
|
|
|
|
2016-08-25 04:18:28 +00:00
|
|
|
function localIntercept(file, options = {}) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
if (!options.readType) {
|
|
|
|
// const mime = file.type;
|
|
|
|
// const textType = a(_textTypes).any(type => {
|
|
|
|
// const re = new RegExp(type);
|
|
|
|
// return re.test(mime);
|
|
|
|
// });
|
|
|
|
// options.readType = textType ? 'readAsText' : 'readAsDataURL';
|
|
|
|
options.readType = 'readAsText'; // eslint-disable-line
|
|
|
|
}
|
|
|
|
const reader = new window.FileReader();
|
|
|
|
reader.onload = () => {
|
|
|
|
resolve(reader.result);
|
|
|
|
};
|
|
|
|
reader.onerror = () => {
|
|
|
|
reject(reader.result);
|
|
|
|
};
|
|
|
|
|
|
|
|
// run the reader
|
|
|
|
reader[options.readType](file);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-06 18:34:14 +00:00
|
|
|
export function dropzoneAcceptCallback(userId, file, done) {
|
2016-12-14 01:08:10 +00:00
|
|
|
return () => {
|
2016-08-25 04:18:28 +00:00
|
|
|
// for text files and small files
|
|
|
|
// check mime type
|
|
|
|
// if text, local interceptor
|
2016-10-25 19:51:44 +00:00
|
|
|
if (file.type.match(textFileRegex) && file.size < MAX_LOCAL_FILE_SIZE) {
|
2017-02-22 19:29:35 +00:00
|
|
|
localIntercept(file).then((result) => {
|
2016-08-25 04:18:28 +00:00
|
|
|
file.content = result; // eslint-disable-line
|
2016-10-24 20:33:16 +00:00
|
|
|
done('Uploading plaintext file locally.');
|
2016-08-25 04:18:28 +00:00
|
|
|
})
|
2017-02-22 19:29:35 +00:00
|
|
|
.catch((result) => {
|
2016-08-25 04:18:28 +00:00
|
|
|
done(`Failed to download file ${file.name}: ${result}`);
|
|
|
|
console.warn(file);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
file.postData = []; // eslint-disable-line
|
|
|
|
axios.post(`${ROOT_URL}/S3/sign`, {
|
|
|
|
name: file.name,
|
|
|
|
type: file.type,
|
|
|
|
size: file.size,
|
2017-04-06 18:34:14 +00:00
|
|
|
userId
|
2016-08-25 04:18:28 +00:00
|
|
|
// _csrf: document.getElementById('__createPostToken').value
|
|
|
|
},
|
|
|
|
{
|
|
|
|
withCredentials: true
|
|
|
|
})
|
2017-02-22 19:29:35 +00:00
|
|
|
.then((response) => {
|
2016-08-25 04:18:28 +00:00
|
|
|
file.custom_status = 'ready'; // eslint-disable-line
|
|
|
|
file.postData = response.data; // eslint-disable-line
|
|
|
|
file.s3 = response.data.key; // eslint-disable-line
|
|
|
|
file.previewTemplate.className += ' uploading'; // eslint-disable-line
|
|
|
|
done();
|
2016-07-19 20:49:46 +00:00
|
|
|
})
|
2017-02-22 19:29:35 +00:00
|
|
|
.catch((response) => {
|
2016-08-25 04:18:28 +00:00
|
|
|
file.custom_status = 'rejected'; // eslint-disable-line
|
|
|
|
if (response.data.responseText && response.data.responseText.message) {
|
|
|
|
done(response.data.responseText.message);
|
|
|
|
}
|
|
|
|
done('error preparing the upload');
|
|
|
|
});
|
|
|
|
}
|
2016-07-19 20:49:46 +00:00
|
|
|
};
|
2016-07-15 23:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function dropzoneSendingCallback(file, xhr, formData) {
|
2016-07-19 20:49:46 +00:00
|
|
|
return () => {
|
2016-10-25 19:51:44 +00:00
|
|
|
if (!file.type.match(textFileRegex) || file.size >= MAX_LOCAL_FILE_SIZE) {
|
2017-02-22 19:29:35 +00:00
|
|
|
Object.keys(file.postData).forEach((key) => {
|
2016-08-25 04:18:28 +00:00
|
|
|
formData.append(key, file.postData[key]);
|
|
|
|
});
|
|
|
|
formData.append('Content-type', '');
|
|
|
|
formData.append('Content-length', '');
|
|
|
|
formData.append('acl', 'public-read');
|
|
|
|
}
|
2016-07-19 20:49:46 +00:00
|
|
|
};
|
2016-07-15 23:05:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function dropzoneCompleteCallback(file) {
|
2016-07-19 20:49:46 +00:00
|
|
|
return (dispatch, getState) => { // eslint-disable-line
|
2016-10-25 19:51:44 +00:00
|
|
|
if ((!file.type.match(textFileRegex) || file.size >= MAX_LOCAL_FILE_SIZE) && file.status !== 'error') {
|
2016-08-25 04:18:28 +00:00
|
|
|
let inputHidden = '<input type="hidden" name="attachments[]" value="';
|
|
|
|
const json = {
|
2016-09-09 02:15:29 +00:00
|
|
|
url: `${s3BucketHttps}${file.postData.key}`,
|
2016-08-25 04:18:28 +00:00
|
|
|
originalFilename: file.name
|
|
|
|
};
|
2016-09-09 02:02:42 +00:00
|
|
|
// console.log(json, JSON.stringify(json), JSON.stringify(json).replace('"', '\\"'));
|
2016-08-25 04:18:28 +00:00
|
|
|
inputHidden += `${window.btoa(JSON.stringify(json))}" />`;
|
|
|
|
// document.getElementById('uploader').appendChild(inputHidden);
|
|
|
|
document.getElementById('uploader').innerHTML += inputHidden;
|
2016-07-19 20:49:46 +00:00
|
|
|
|
2016-08-25 04:18:28 +00:00
|
|
|
const formParams = {
|
|
|
|
name: file.name,
|
2016-09-09 02:02:42 +00:00
|
|
|
url: `${s3BucketHttps}${file.postData.key}`
|
2016-08-25 04:18:28 +00:00
|
|
|
};
|
|
|
|
createFile(formParams)(dispatch, getState);
|
2016-10-25 01:15:32 +00:00
|
|
|
} else if (file.content !== undefined) {
|
2016-08-25 04:18:28 +00:00
|
|
|
const formParams = {
|
|
|
|
name: file.name,
|
|
|
|
content: file.content
|
|
|
|
};
|
|
|
|
createFile(formParams)(dispatch, getState);
|
|
|
|
}
|
2016-07-15 23:05:18 +00:00
|
|
|
};
|
|
|
|
}
|