photo.js 13 KB

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