photo.js 13 KB

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