piskel/js/service/ImageUploadService.js

34 lines
1.1 KiB
JavaScript
Raw Normal View History

2013-09-07 19:50:43 +04:00
(function () {
var ns = $.namespace("pskl.service");
ns.ImageUploadService = function () {
this.serviceUrl_ = "http://screenletstore.appspot.com/__/upload";
};
ns.ImageUploadService.prototype.init = function () {
// service interface
2013-09-07 19:50:43 +04:00
};
/**
* Upload a base64 image data to distant service. If successful, will call provided callback with the image URL as first argument;
* @param {String} imageData base64 image data (such as the return value of canvas.toDataUrl())
* @param {Function} cbSuccess success callback. 1st argument will be the uploaded image URL
* @param {Function} cbError error callback
2013-09-07 19:50:43 +04:00
*/
ns.ImageUploadService.prototype.upload = function (imageData, cbSuccess, cbError) {
var xhr = new XMLHttpRequest();
var formData = new FormData();
formData.append('data', imageData);
xhr.open('POST', this.serviceUrl_, true);
xhr.onload = function (e) {
if (this.status == 200) {
var imageUrl = "http://screenletstore.appspot.com/img/" + this.responseText;
2013-09-07 19:50:43 +04:00
cbSuccess(imageUrl);
} else {
cbError();
}
};
xhr.send(formData);
};
2013-09-07 19:50:43 +04:00
})();