photo.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. /**
  2. * @name Photo Module
  3. * @description Takes care of every action a photo can handle and execute.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. photo = {
  8. json: null,
  9. getID: function() {
  10. var id;
  11. if (photo.json) id = photo.json.id;
  12. else id = $(".photo:hover, .photo.active").attr("data-id");
  13. if (id) return id;
  14. else return false;
  15. },
  16. load: function(photoID, albumID) {
  17. var params,
  18. checkPasswd;
  19. params = "getPhoto&photoID=" + photoID + "&albumID=" + albumID + "&password=" + password.value;
  20. lychee.api(params, function(data) {
  21. if (data==="Warning: Wrong password!") {
  22. checkPasswd = function() {
  23. if (password.value!=="") photo.load(photoID, albumID);
  24. else setTimeout(checkPasswd, 250);
  25. };
  26. checkPasswd();
  27. return false;
  28. }
  29. photo.json = data;
  30. if (!visible.photo()) view.photo.show();
  31. view.photo.init();
  32. lychee.imageview.show();
  33. setTimeout(function() { lychee.content.show() }, 300);
  34. });
  35. },
  36. parse: function() {
  37. if (!photo.json.title) photo.json.title = "Untitled";
  38. photo.json.url = lychee.upload_path_big + photo.json.url;
  39. },
  40. previous: function(animate) {
  41. var delay = 0;
  42. if (photo.getID()!==false&&
  43. album.json&&
  44. album.json.content[photo.getID()]&&
  45. album.json.content[photo.getID()].previousPhoto!=="") {
  46. if (animate===true) {
  47. delay = 200;
  48. $("#image").css({
  49. WebkitTransform: 'translateX(100%)',
  50. MozTransform: 'translateX(100%)',
  51. transform: 'translateX(100%)',
  52. opacity: 0
  53. });
  54. }
  55. setTimeout(function() {
  56. lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].previousPhoto)
  57. }, delay);
  58. }
  59. },
  60. next: function(animate) {
  61. var delay = 0;
  62. if (photo.getID()!==false&&
  63. album.json&&
  64. album.json.content[photo.getID()]&&
  65. album.json.content[photo.getID()].nextPhoto!=="") {
  66. if (animate===true) {
  67. delay = 200;
  68. $("#image").css({
  69. WebkitTransform: 'translateX(-100%)',
  70. MozTransform: 'translateX(-100%)',
  71. transform: 'translateX(-100%)',
  72. opacity: 0
  73. });
  74. }
  75. setTimeout(function() {
  76. lychee.goto(album.getID() + "/" + album.json.content[photo.getID()].nextPhoto);
  77. }, delay);
  78. }
  79. },
  80. delete: function(photoIDs) {
  81. var params,
  82. buttons,
  83. photoTitle;
  84. if (!photoIDs) return false;
  85. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  86. if (photoIDs.length===1) {
  87. // Get title if only one photo is selected
  88. if (visible.photo()) photoTitle = photo.json.title;
  89. else photoTitle = album.json.content[photoIDs].title;
  90. if (photoTitle==="") photoTitle = "Untitled";
  91. }
  92. buttons = [
  93. ["", function() {
  94. photoIDs.forEach(function(id, index, array) {
  95. // Change reference for the next and previous photo
  96. if (album.json.content[id].nextPhoto!==""||album.json.content[id].previousPhoto!=="") {
  97. nextPhoto = album.json.content[id].nextPhoto;
  98. previousPhoto = album.json.content[id].previousPhoto;
  99. album.json.content[previousPhoto].nextPhoto = nextPhoto;
  100. album.json.content[nextPhoto].previousPhoto = previousPhoto;
  101. }
  102. album.json.content[id] = null;
  103. view.album.content.delete(id);
  104. });
  105. // Only when search is not active
  106. if (!visible.albums()) lychee.goto(album.getID());
  107. params = "deletePhoto&photoIDs=" + photoIDs;
  108. lychee.api(params, function(data) {
  109. if (data!==true) lychee.error(null, params, data);
  110. });
  111. }],
  112. ["", function() {}]
  113. ];
  114. if (photoIDs.length===1) {
  115. buttons[0][0] = "Delete Photo";
  116. buttons[1][0] = "Keep Photo";
  117. modal.show("Delete Photo", "Are you sure you want to delete the photo '" + photoTitle + "'?<br>This action can't be undone!", buttons);
  118. } else {
  119. buttons[0][0] = "Delete Photos";
  120. buttons[1][0] = "Keep Photos";
  121. modal.show("Delete Photos", "Are you sure you want to delete all " + photoIDs.length + " selected photo?<br>This action can't be undone!", buttons);
  122. }
  123. },
  124. setTitle: function(photoIDs) {
  125. var oldTitle = "",
  126. newTitle,
  127. params,
  128. buttons;
  129. if (!photoIDs) return false;
  130. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  131. if (photoIDs.length===1) {
  132. // Get old title if only one photo is selected
  133. if (photo.json) oldTitle = photo.json.title;
  134. else if (album.json) oldTitle = album.json.content[photoIDs].title;
  135. oldTitle = oldTitle.replace("'", "&apos;");
  136. }
  137. buttons = [
  138. ["Set Title", function() {
  139. newTitle = $(".message input.text").val();
  140. if (visible.photo()) {
  141. photo.json.title = (newTitle==="") ? "Untitled" : newTitle;
  142. view.photo.title();
  143. }
  144. photoIDs.forEach(function(id, index, array) {
  145. album.json.content[id].title = newTitle;
  146. view.album.content.title(id);
  147. });
  148. params = "setPhotoTitle&photoIDs=" + photoIDs + "&title=" + escape(encodeURI(newTitle));
  149. lychee.api(params, function(data) {
  150. if (data!==true) lychee.error(null, params, data);
  151. });
  152. }],
  153. ["Cancel", function() {}]
  154. ];
  155. if (photoIDs.length===1) modal.show("Set Title", "Enter a new title for this photo: <input class='text' type='text' maxlength='30' placeholder='Title' value='" + oldTitle + "'>", buttons);
  156. else modal.show("Set Titles", "Enter a title for all " + photoIDs.length + " selected photos: <input class='text' type='text' maxlength='30' placeholder='Title' value=''>", buttons);
  157. },
  158. setAlbum: function(photoIDs, albumID) {
  159. var params,
  160. nextPhoto,
  161. previousPhoto;
  162. if (!photoIDs) return false;
  163. if (visible.photo) lychee.goto(album.getID());
  164. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  165. photoIDs.forEach(function(id, index, array) {
  166. // Change reference for the next and previous photo
  167. if (album.json.content[id].nextPhoto!==""||album.json.content[id].previousPhoto!=="") {
  168. nextPhoto = album.json.content[id].nextPhoto;
  169. previousPhoto = album.json.content[id].previousPhoto;
  170. album.json.content[previousPhoto].nextPhoto = nextPhoto;
  171. album.json.content[nextPhoto].previousPhoto = previousPhoto;
  172. }
  173. album.json.content[id] = null;
  174. view.album.content.delete(id);
  175. });
  176. params = "setPhotoAlbum&photoIDs=" + photoIDs + "&albumID=" + albumID;
  177. lychee.api(params, function(data) {
  178. if (data!==true) lychee.error(null, params, data);
  179. });
  180. },
  181. setStar: function(photoIDs) {
  182. var params;
  183. if (!photoIDs) return false;
  184. if (visible.photo()) {
  185. photo.json.star = (photo.json.star==0) ? 1 : 0;
  186. view.photo.star();
  187. }
  188. photoIDs.forEach(function(id, index, array) {
  189. album.json.content[id].star = (album.json.content[id].star==0) ? 1 : 0;
  190. view.album.content.star(id);
  191. });
  192. params = "setPhotoStar&photoIDs=" + photoIDs;
  193. lychee.api(params, function(data) {
  194. if (data!==true) lychee.error(null, params, data);
  195. });
  196. },
  197. setPublic: function(photoID, e) {
  198. var params;
  199. if (photo.json.public==2) {
  200. modal.show("Public Album", "This photo is located in a public album. To make this photo private or public, edit the visibility of the associated album.", [["Show Album", function() { lychee.goto(photo.json.original_album) }], ["Close", function() {}]]);
  201. return false;
  202. }
  203. if (visible.photo()) {
  204. photo.json.public = (photo.json.public==0) ? 1 : 0;
  205. view.photo.public();
  206. if (photo.json.public==1) contextMenu.sharePhoto(photoID, e);
  207. }
  208. album.json.content[photoID].public = (album.json.content[photoID].public==0) ? 1 : 0;
  209. view.album.content.public(photoID);
  210. params = "setPhotoPublic&photoID=" + photoID + "&url=" + photo.getViewLink(photoID);
  211. lychee.api(params, function(data) {
  212. if (data!==true) lychee.error(null, params, data);
  213. });
  214. },
  215. setDescription: function(photoID) {
  216. var oldDescription = photo.json.description.replace("'", "&apos;"),
  217. description,
  218. params,
  219. buttons;
  220. buttons = [
  221. ["Set Description", function() {
  222. description = $(".message input.text").val();
  223. if (visible.photo()) {
  224. photo.json.description = description;
  225. view.photo.description();
  226. }
  227. params = "setPhotoDescription&photoID=" + photoID + "&description=" + escape(description);
  228. lychee.api(params, function(data) {
  229. if (data!==true) lychee.error(null, params, data);
  230. });
  231. }],
  232. ["Cancel", function() {}]
  233. ];
  234. modal.show("Set Description", "Enter a description for this photo: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  235. },
  236. editTags: function(photoIDs) {
  237. var oldTags = "",
  238. tags = "";
  239. if (!photoIDs) return false;
  240. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  241. // Get tags
  242. if (visible.photo()) oldTags = photo.json.tags;
  243. if (visible.album()&&photoIDs.length===1) oldTags = album.json.content[photoIDs].tags;
  244. if (visible.album()&&photoIDs.length>1) {
  245. var same = true;
  246. photoIDs.forEach(function(id, index, array) {
  247. if(album.json.content[id].tags===album.json.content[photoIDs[0]].tags&&same===true) same = true;
  248. else same = false;
  249. });
  250. if (same) oldTags = album.json.content[photoIDs[0]].tags;
  251. }
  252. // Improve tags
  253. oldTags = oldTags.replace(/,/g, ', ');
  254. buttons = [
  255. ["Set Tags", function() {
  256. tags = $(".message input.text").val();
  257. photo.setTags(photoIDs, tags);
  258. }],
  259. ["Cancel", function() {}]
  260. ];
  261. if (photoIDs.length===1) modal.show("Set Tags", "Enter your tags for this photo. You can add multiple tags by separating them with a comma: <input class='text' type='text' maxlength='800' placeholder='Tags' value='" + oldTags + "'>", buttons);
  262. else modal.show("Set Tags", "Enter your tags for all " + photoIDs.length + " selected photos. Existing tags will be overwritten. You can add multiple tags by separating them with a comma: <input class='text' type='text' maxlength='800' placeholder='Tags' value='" + oldTags + "'>", buttons);
  263. },
  264. setTags: function(photoIDs, tags) {
  265. var params;
  266. if (!photoIDs) return false;
  267. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  268. // Parse tags
  269. tags = tags.replace(/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g, ',');
  270. tags = tags.replace(/,$|^,/g, '');
  271. if (visible.photo()) {
  272. photo.json.tags = tags;
  273. view.photo.tags();
  274. }
  275. photoIDs.forEach(function(id, index, array) {
  276. album.json.content[id].tags = tags;
  277. });
  278. params = "setPhotoTags&photoIDs=" + photoIDs + "&tags=" + tags;
  279. lychee.api(params, function(data) {
  280. if (data!==true) lychee.error(null, params, data);
  281. });
  282. },
  283. deleteTag: function(photoID, index) {
  284. var tags;
  285. // Remove
  286. tags = photo.json.tags.split(',');
  287. tags.splice(index, 1);
  288. // Save
  289. photo.json.tags = tags.toString();
  290. photo.setTags([photoID], photo.json.tags);
  291. },
  292. share: function(photoID, service) {
  293. var link = "",
  294. url = photo.getViewLink(photoID),
  295. filename = "unknown";
  296. switch (service) {
  297. case 0:
  298. link = "https://twitter.com/share?url=" + encodeURI(url);
  299. break;
  300. case 1:
  301. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(photo.json.title);
  302. break;
  303. case 2:
  304. link = "mailto:?subject=" + encodeURI(photo.json.title) + "&body=" + encodeURI(url);
  305. break;
  306. case 3:
  307. lychee.loadDropbox(function() {
  308. filename = photo.json.title + "." + photo.getDirectLink().split('.').pop();
  309. Dropbox.save(photo.getDirectLink(), filename);
  310. });
  311. break;
  312. default:
  313. link = "";
  314. break;
  315. }
  316. if (link.length>5) location.href = link;
  317. },
  318. isSmall: function() {
  319. var size = {
  320. width: false,
  321. height: false
  322. };
  323. if (photo.json.width<$(window).width()-60) size.width = true;
  324. if (photo.json.height<$(window).height()-100) size.height = true;
  325. if (size.width&&size.height) return true;
  326. else return false;
  327. },
  328. getArchive: function(photoID) {
  329. var link;
  330. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", "php/api.php?function=getPhotoArchive&photoID=" + photoID);
  331. else link = location.href.replace(location.hash, "") + "php/api.php?function=getPhotoArchive&photoID=" + photoID;
  332. if (lychee.publicMode) link += "&password=" + password.value;
  333. location.href = link;
  334. },
  335. getDirectLink: function() {
  336. return $("#imageview #image").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
  337. },
  338. getViewLink: function(photoID) {
  339. if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, "view.php?p=" + photoID);
  340. else return location.href.replace(location.hash, "view.php?p=" + photoID);
  341. }
  342. };