photo.js 12 KB

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