-
-
Notifications
You must be signed in to change notification settings - Fork 167
Insert (Upload)
dr.dimitru edited this page Oct 12, 2016
·
33 revisions
Upload file to Server via DDP, RTC/DC or HTTP.
Param/Type | Description | Comment |
---|---|---|
settings {Object}
|
[REQUIRED] | See all options below |
settings.file {File} or {Object} or {String}
|
[REQUIRED] HTML5 files item
|
Ex.: From event: event.currentTarget.files[0]
Set to dataURI {String} for Base64 |
settings.isBase64 {Boolean}
|
Upload as base64 string, useful for data taken from canvas
|
[See Examples](https://github.com/VeliovGroup/Meteor-Files/wiki/Insert-(Upload)#upload-base64-string) |
settings.meta {Object}
|
Additional file-related data |
Ex.: ownerId , postId , etc.
|
settings.transport {String}
|
Must be set to
http or ddp
|
Note: upload via http is at least twice faster. HTTP will properly work only with "sticky sessions"
Default: ddp
|
settings.ddp {Object}
|
Custom DDP connection for upload. Object returned form DDP.connect()
|
By default Meteor (The default DDP connection)
|
settings.onStart {Function}
|
Callback, triggered when upload is started and validations was successful Arguments:
|
|
settings.onUploaded {Function}
|
Callback, triggered when upload is finished Arguments:
|
|
settings.onAbort {Function}
|
Callback, triggered when abort() method is calledArguments:
|
|
settings.onError {Function}
|
Callback, triggered when upload finished with error Arguments:
|
|
settings.onProgress {Function}
|
Callback, triggered after chunk is sent Arguments:
|
|
settings.onBeforeUpload {Function}
|
Callback, triggered right before upload is started Arguments:
|
Use to check file-type, extension, size, etc.
|
settings.streams {Number|dynamic}
|
Quantity of parallel upload streams |
dynamic is recommended
|
settings.chunkSize {Number|dynamic}
|
Chunk size for upload |
dynamic is recommended
|
settings.allowWebWorkers {Boolean}
|
Use WebWorkers (To avoid main thread blocking) whenever feature is available in browser |
Default: true
|
autoStart {Boolean}
|
Start upload immediately |
If set to false , you need manually call .start() method on returned class. Useful to set EventListeners, before starting upload. Default: true
|
insert()
method returns FileUpload
class instance. Note: same instance is used as context in all callback functions (see above)
Name/Type | Description | Comment |
---|---|---|
file {File}
|
Source file passed into insert() method
|
|
onPause {ReactiveVar}
|
Is upload process on the pause? | |
progress {ReactiveVar}
|
Upload progress in percents |
0 - 100
|
pause() {Function}
|
Pause upload process | |
continue() {Function}
|
Continue paused upload process | |
toggle() {Function}
|
Toggle continue /pause if upload in the progress
|
|
abort() {Function}
|
Abort current upload, then trigger onAbort callback
|
|
pipe() {Function}
|
Pipe data before upload |
All data must be in data URI scheme (*Base64*)Only for webrtc transport data represented as ArrayBuffer .
|
estimateTime {ReactiveVar}
|
Remaining upload time in milliseconds | |
estimateSpeed {ReactiveVar}
|
Current upload speed in bytes/second |
To convert into speed, take a look on filesize package, usage:
filesize(estimateSpeed, {bits: true}) + '/s';
|
state {ReactiveVar}
|
String, indicates current state of the upload |
|
Name | Description | Comment |
---|---|---|
start
|
Triggered when upload is started (before sending first byte) and validations was successful. Arguments:
|
|
data
|
Triggered after each chunk is read. Arguments:
|
Can be used to display previews or do something else with loaded file during upload. To get EOF use readEnd event
|
readEnd
|
Triggered after file is fully read by browser | Has no arguments |
progress
|
Triggered after each chunk is sent. Arguments:
|
|
pause
|
Triggered after upload process set to pause. Arguments:
|
|
continue
|
Triggered after upload process is continued from pause. Arguments:
|
|
abort
|
Triggered after upload is aborted. Arguments:
|
|
uploaded
|
Triggered when upload is finished. Arguments:
|
|
error
|
Triggered whenever upload has an error. Arguments:
|
|
end
|
Triggered at the very end of upload. Arguments:
|
When autoStart
is false
before calling .start()
you can "pipe" data through any function, data comes as Base64 string (DataURL). You must return Base64 string from piping function, for more info - see example below. Do not forget to change file name, extension and mime-type if required.
The fileData
object (see above):
-
size
{Number} - File size in bytes -
type
{String} -
mime
,mime-type
{String} -
ext
,extension
{String} -
name
{String} - File name
<template name="uploadForm">
{{#if currentFile}}
{{#with currentFile}
<span id="progress">{{progress}}%</span>
{{/with}}
{{else}}
<input id="fileInput" type="file" />
{{/if}}
</template>
Shared code:
this.Images = new FilesCollection({collectionName: 'Images'});
Client's code:
Template.uploadForm.onCreated(function () {
this.currentFile = new ReactiveVar(false);
});
Template.uploadForm.helpers({
currentFile: function () {
Template.instance().currentFile.get();
}
});
Template.uploadForm.events({
'change #fileInput': function (e, template) {
if (e.currentTarget.files && e.currentTarget.files[0]) {
// We upload only one file, in case
// there was multiple files selected
var file = e.currentTarget.files[0];
Images.insert({
file: file,
onStart: function () {
template.currentFile.set(this);
},
onUploaded: function (error, fileObj) {
if (error) {
alert('Error during upload: ' + error);
} else {
alert('File "' + fileObj.name + '" successfully uploaded');
}
template.currentFile.set(false);
},
streams: 'dynamic',
chunkSize: 'dynamic'
});
}
}
});
Template.uploadForm.events({
'change #fileInput': function (e, template) {
if (e.currentTarget.files && e.currentTarget.files[0]) {
// We upload only one file, in case
// multiple files were selected
Images.insert({
file: e.currentTarget.files[0],
streams: 'dynamic',
chunkSize: 'dynamic'
}, false).on('start', function () {
template.currentFile.set(this);
}).on('end', function (error, fileObj) {
if (error) {
alert('Error during upload: ' + error);
} else {
alert('File "' + fileObj.name + '" successfully uploaded');
}
template.currentFile.set(false);
}).start();
}
}
});
Template.uploadForm.events({
'change #fileInput': function (e, template) {
if (e.currentTarget.files && e.currentTarget.files[0]) {
var uploader = Images.insert({
file: e.currentTarget.files[0],
streams: 'dynamic',
chunkSize: 'dynamic'
}, false);
uploader.on('start', function () {
template.currentFile.set(this);
});
uploader.on('end', function (error, fileObj) {
template.currentFile.set(false);
});
uploader.on('uploaded', function (error, fileObj) {
if (!error) {
alert('File "' + fileObj.name + '" successfully uploaded');
}
});
uploader.on('error', function (error, fileObj) {
alert('Error during upload: ' + error);
});
uploader.start();
}
}
});
// As dataURI
Images.insert({
file: 'data:image/png,base64str…',
isBase64: true, // <— Mandatory
fileName: 'pic.png' // <— Mandatory
});
// As base64:
Images.insert({
file: 'image/png,base64str…',
isBase64: true, // <— Mandatory
fileName: 'pic.png' // <— Mandatory
});
// As plain base64:
Images.insert({
file: 'base64str…',
isBase64: true, // <— Mandatory
fileName: 'pic.png', // <— Mandatory
type: 'image/png' // <— Mandatory
});
Note: data flow in webrtc
transport uses ArrayBuffer, while ddp
and http
uses dataURI (Base64). webrtc
is available only on webrtc-data-channel branch.
var encrypt = function encrypt(data) {
return someHowEncryptAndReturnAsBase64(data);
};
var zip = function zip(data) {
return someHowZipAndReturnAsBase64(data);
};
Template.uploadForm.events({
'change #fileInput': function (e, template) {
if (e.currentTarget.files && e.currentTarget.files[0]) {
// We upload only one file, in case
// multiple files were selected
Images.insert({
file: e.currentTarget.files[0],
streams: 'dynamic',
chunkSize: 'dynamic'
}, false).pipe(encrypt).pipe(zip).start();
}
}
});
Meteor-Files | Support | Try ostr.io |
---|---|---|
If you found this package useful, — star it at GitHub and support our open source contributions with a monthly pledge, or submit a one-time donation via PayPal | Monitoring, Analytics, WebSec, Web-CRON and Pre-rendering for a website |