glowingbear-mainbox/js/imgur.js

123 lines
2.5 KiB
JavaScript
Raw Normal View History

2015-10-09 13:59:34 +02:00
(function() {
'use strict';
var weechat = angular.module('weechat');
weechat.factory('imgur', ['$rootScope', function($rootScope) {
2015-11-07 12:32:25 +01:00
var process = function(image, callback) {
2015-10-09 13:59:34 +02:00
// Is it an image?
if (!image || !image.type.match(/image.*/)) return;
// New file reader
var reader = new FileReader();
// When image is read
reader.onload = function (event) {
var image = event.target.result.split(',')[1];
2015-11-07 12:32:25 +01:00
upload(image, callback);
2015-10-09 13:59:34 +02:00
};
// Read image as data url
reader.readAsDataURL(image);
};
// Upload image to imgur from base64
2015-11-07 12:32:25 +01:00
var upload = function( base64img, callback ) {
2015-10-09 13:59:34 +02:00
// Set client ID (Glowing Bear)
var clientId = "164efef8979cd4b";
// Progress bar DOM elment
var progressBar = document.getElementById("imgur-upload-progress");
progressBar.style.width = '0';
2015-10-09 13:59:34 +02:00
// Create new form data
var fd = new FormData();
fd.append("image", base64img); // Append the file
fd.append("type", "base64"); // Set image type to base64
// Create new XMLHttpRequest
var xhttp = new XMLHttpRequest();
// Post request to imgur api
xhttp.open("POST", "https://api.imgur.com/3/image", true);
// Set headers
xhttp.setRequestHeader("Authorization", "Client-ID " + clientId);
xhttp.setRequestHeader("Accept", "application/json");
// Handler for response
xhttp.onload = function() {
progressBar.style.display = 'none';
2015-10-09 13:59:34 +02:00
// Check state and response status
if(xhttp.status === 200) {
2015-10-09 13:59:34 +02:00
// Get response text
var response = JSON.parse(xhttp.responseText);
2015-11-07 12:32:25 +01:00
// Send link as message
if( response.data && response.data.link ) {
2015-11-07 12:32:25 +01:00
if (callback && typeof(callback) === "function") {
callback(response.data.link);
}
} else {
showErrorMsg();
2015-11-07 12:32:25 +01:00
}
} else {
showErrorMsg();
2015-10-09 13:59:34 +02:00
}
};
if( "upload" in xhttp ) {
// Set progress
xhttp.upload.onprogress = function (event) {
// Check if we can compute progress
if (event.lengthComputable) {
// Complete in percent
var complete = (event.loaded / event.total * 100 | 0);
// Set progress bar width
progressBar.style.display = 'block';
progressBar.style.width = complete + '%';
}
};
}
2015-10-09 13:59:34 +02:00
// Send request with form data
xhttp.send(fd);
};
var showErrorMsg = function() {
// Show error msg
$rootScope.uploadError = true;
$rootScope.$apply();
// Hide after 5 seconds
setTimeout(function(){
// Hide error msg
$rootScope.uploadError = false;
$rootScope.$apply();
}, 5000);
};
2015-10-09 13:59:34 +02:00
return {
process: process
};
}]);
})();