photo.js 12 KB

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