123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- /**
- * @name Album Module
- * @description Takes care of every action an album can handle and execute.
- * @author Tobias Reich
- * @copyright 2014 by Tobias Reich
- */
- upload = {
- show: function(icon, text) {
- if (icon===undefined) icon = "upload";
- upload.close(true);
- $("body").append(build.uploadModal(icon, text));
- },
- setIcon: function(icon) {
- $(".upload_message a").remove();
- $(".upload_message").prepend("<a class='icon-" + icon + "'></a>");
- },
- setProgress: function(progress) {
- $(".progressbar div").css("width", progress + "%");
- },
- setText: function(text) {
- $(".progressbar").remove();
- $(".upload_message").append("<p>" + text + "</p>");
- },
- notify: function(title) {
- var popup;
- if (!window.webkitNotifications) return false;
- if (window.webkitNotifications.checkPermission()!==0) window.webkitNotifications.requestPermission();
- if (window.webkitNotifications.checkPermission()===0&&title) {
- popup = window.webkitNotifications.createNotification("", title, "You can now manage your new photo(s).");
- popup.show();
- }
- },
- start: {
- local: function(files) {
- var pre_progress = 0,
- formData = new FormData(),
- xhr = new XMLHttpRequest(),
- albumID = album.getID(),
- popup,
- progress;
- if (files.length<=0) return false;
- if (albumID===false) albumID = 0;
- formData.append("function", "upload");
- formData.append("albumID", albumID);
- for (var i = 0; i < files.length; i++) {
- if (files[i].type!=="image/jpeg"&&files[i].type!=="image/jpg"&&files[i].type!=="image/png"&&files[i].type!=="image/gif"&&files[i].type!=="image/webp") {
- loadingBar.show("error", "The file format of " + files[i].name + " is not supported.");
- return false;
- } else {
- formData.append(i, files[i]);
- }
- }
- upload.show();
- window.onbeforeunload = function() { return "Lychee is currently uploading!"; };
- xhr.open("POST", lychee.api_path);
- xhr.onload = function() {
- if (xhr.status===200) {
- upload.close();
- upload.notify("Upload complete");
- window.onbeforeunload = null;
- if (album.getID()===false) lychee.goto("0");
- else album.load(albumID);
- }
- };
- xhr.upload.onprogress = function(e) {
- if (e.lengthComputable) {
- progress = (e.loaded / e.total * 100 | 0);
- if (progress>pre_progress) {
- upload.setProgress(progress);
- pre_progress = progress;
- }
- if (progress>=100) {
- upload.setIcon("cog");
- upload.setText("Processing photos");
- }
- }
- };
- $("#upload_files").val("");
- xhr.send(formData);
- },
- url: function() {
- var albumID = album.getID(),
- params,
- extension,
- buttons,
- link;
- if (albumID===false) albumID = 0;
- buttons = [
- ["Import", function() {
- link = $(".message input.text").val();
- if (link&&link.length>3) {
- extension = link.split('.').pop();
- if (extension!=="jpeg"&&extension!=="jpg"&&extension!=="png"&&extension!=="gif"&&extension!=="webp") {
- loadingBar.show("error", "The file format of this link is not supported.");
- return false;
- }
- modal.close();
- upload.show("cog", "Importing from URL");
- params = "importUrl&url=" + escape(encodeURI(link)) + "&albumID=" + albumID;
- lychee.api(params, function(data) {
- upload.close();
- upload.notify("Import complete");
- if (album.getID()===false) lychee.goto("0");
- else album.load(albumID);
- if (data!==true) lychee.error(null, params, data);
- });
- } else loadingBar.show("error", "Link to short or too long. Please try another one!");
- }],
- ["Cancel", function() {}]
- ];
- modal.show("Import from Link", "Please enter the direct link to a photo to import it: <input class='text' type='text' placeholder='http://' value='http://'>", buttons);
- },
- server: function() {
- var albumID = album.getID(),
- params,
- buttons;
- if (albumID===false) albumID = 0;
- buttons = [
- ["Import", function() {
- modal.close();
- upload.show("cog", "Importing photos");
- params = "importServer&albumID=" + albumID;
- lychee.api(params, function(data) {
- upload.close();
- upload.notify("Import complete");
- if (data==="Notice: Import only contains albums!") {
- if (visible.albums()) lychee.load();
- else lychee.goto("");
- }
- else if (album.getID()===false) lychee.goto("0");
- else album.load(albumID);
- if (data==="Notice: Import only contains albums!") return true;
- else if (data==="Warning: Folder empty!") lychee.error("Folder empty. No photos imported!", params, data);
- else if (data!==true) lychee.error(null, params, data);
- });
- }],
- ["Cancel", function() {}]
- ];
- modal.show("Import from Server", "This action will import all photos and albums which are located in <b>'uploads/import/'</b> of your Lychee installation.", buttons);
- },
- dropbox: function() {
- var albumID = album.getID(),
- params;
- if (albumID===false) albumID = 0;
- lychee.loadDropbox(function() {
- Dropbox.choose({
- linkType: "direct",
- multiselect: true,
- success: function(files) {
- if (files.length>1) {
- for (var i = 0; i < files.length; i++) files[i] = files[i].link;
- } else files = files[0].link;
- upload.show("cog", "Importing photos");
- params = "importUrl&url=" + escape(files) + "&albumID=" + albumID;
- lychee.api(params, function(data) {
- upload.close();
- upload.notify("Import complete");
- if (album.getID()===false) lychee.goto("0");
- else album.load(albumID);
- if (data!==true) lychee.error(null, params, data);
- });
- }
- });
- });
- }
- },
- close: function(force) {
- if (force===true) {
- $(".upload_overlay").remove();
- } else {
- upload.setProgress(100);
- $(".upload_overlay").removeClass("fadeIn").css("opacity", 0);
- setTimeout(function() { $(".upload_overlay").remove() }, 300);
- }
- }
- };
|