photo.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  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. params = "duplicatePhoto&photoIDs=" + photoIDs;
  101. lychee.api(params, function(data) {
  102. if (data!==true) lychee.error(null, params, data);
  103. else album.load(album.getID(), false);
  104. });
  105. albums.refresh();
  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. params = "deletePhoto&photoIDs=" + photoIDs;
  137. lychee.api(params, function(data) {
  138. if (data!==true) lychee.error(null, params, data);
  139. });
  140. albums.refresh();
  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. params = "setPhotoAlbum&photoIDs=" + photoIDs + "&albumID=" + albumID;
  210. lychee.api(params, function(data) {
  211. if (data!==true) lychee.error(null, params, data);
  212. });
  213. },
  214. setStar: function(photoIDs) {
  215. var params;
  216. if (!photoIDs) return false;
  217. if (visible.photo()) {
  218. photo.json.star = (photo.json.star==0) ? 1 : 0;
  219. view.photo.star();
  220. }
  221. photoIDs.forEach(function(id, index, array) {
  222. album.json.content[id].star = (album.json.content[id].star==0) ? 1 : 0;
  223. view.album.content.star(id);
  224. });
  225. params = "setPhotoStar&photoIDs=" + photoIDs;
  226. lychee.api(params, function(data) {
  227. if (data!==true) lychee.error(null, params, data);
  228. });
  229. albums.refresh();
  230. },
  231. setPublic: function(photoID, e) {
  232. var params;
  233. if (photo.json.public==2) {
  234. 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() {}]]);
  235. return false;
  236. }
  237. if (visible.photo()) {
  238. photo.json.public = (photo.json.public==0) ? 1 : 0;
  239. view.photo.public();
  240. if (photo.json.public==1) contextMenu.sharePhoto(photoID, e);
  241. }
  242. album.json.content[photoID].public = (album.json.content[photoID].public==0) ? 1 : 0;
  243. view.album.content.public(photoID);
  244. params = "setPhotoPublic&photoID=" + photoID;
  245. lychee.api(params, function(data) {
  246. if (data!==true) lychee.error(null, params, data);
  247. });
  248. albums.refresh();
  249. },
  250. setDescription: function(photoID) {
  251. var oldDescription = photo.json.description.replace("'", "&apos;"),
  252. description,
  253. params,
  254. buttons;
  255. buttons = [
  256. ["Set Description", function() {
  257. // Get input
  258. description = $(".message input.text").val();
  259. // Remove html from input
  260. description = lychee.removeHTML(description);
  261. if (visible.photo()) {
  262. photo.json.description = description;
  263. view.photo.description();
  264. }
  265. params = "setPhotoDescription&photoID=" + photoID + "&description=" + escape(encodeURI(description));
  266. lychee.api(params, function(data) {
  267. if (data!==true) lychee.error(null, params, data);
  268. });
  269. }],
  270. ["Cancel", function() {}]
  271. ];
  272. modal.show("Set Description", "Enter a description for this photo: <input class='text' type='text' maxlength='800' placeholder='Description' value='" + oldDescription + "'>", buttons);
  273. },
  274. editTags: function(photoIDs) {
  275. var oldTags = "",
  276. tags = "",
  277. buttons;
  278. if (!photoIDs) return false;
  279. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  280. // Get tags
  281. if (visible.photo()) oldTags = photo.json.tags;
  282. if (visible.album()&&photoIDs.length===1) oldTags = album.json.content[photoIDs].tags;
  283. if (visible.album()&&photoIDs.length>1) {
  284. var same = true;
  285. photoIDs.forEach(function(id, index, array) {
  286. if(album.json.content[id].tags===album.json.content[photoIDs[0]].tags&&same===true) same = true;
  287. else same = false;
  288. });
  289. if (same) oldTags = album.json.content[photoIDs[0]].tags;
  290. }
  291. // Improve tags
  292. oldTags = oldTags.replace(/,/g, ', ');
  293. buttons = [
  294. ["Set Tags", function() {
  295. tags = $(".message input.text").val();
  296. photo.setTags(photoIDs, tags);
  297. }],
  298. ["Cancel", function() {}]
  299. ];
  300. 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);
  301. 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);
  302. },
  303. setTags: function(photoIDs, tags) {
  304. var params;
  305. if (!photoIDs) return false;
  306. if (photoIDs instanceof Array===false) photoIDs = [photoIDs];
  307. // Parse tags
  308. tags = tags.replace(/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g, ',');
  309. tags = tags.replace(/,$|^,|(\ ){0,}$/g, '');
  310. // Remove html from input
  311. tags = lychee.removeHTML(tags);
  312. if (visible.photo()) {
  313. photo.json.tags = tags;
  314. view.photo.tags();
  315. }
  316. photoIDs.forEach(function(id, index, array) {
  317. album.json.content[id].tags = tags;
  318. });
  319. params = "setPhotoTags&photoIDs=" + photoIDs + "&tags=" + tags;
  320. lychee.api(params, function(data) {
  321. if (data!==true) lychee.error(null, params, data);
  322. });
  323. },
  324. deleteTag: function(photoID, index) {
  325. var tags;
  326. // Remove
  327. tags = photo.json.tags.split(',');
  328. tags.splice(index, 1);
  329. // Save
  330. photo.json.tags = tags.toString();
  331. photo.setTags([photoID], photo.json.tags);
  332. },
  333. share: function(photoID, service) {
  334. var link = "",
  335. url = photo.getViewLink(photoID),
  336. filename = "unknown";
  337. switch (service) {
  338. case 0:
  339. link = "https://twitter.com/share?url=" + encodeURI(url);
  340. break;
  341. case 1:
  342. link = "http://www.facebook.com/sharer.php?u=" + encodeURI(url) + "&t=" + encodeURI(photo.json.title);
  343. break;
  344. case 2:
  345. link = "mailto:?subject=" + encodeURI(photo.json.title) + "&body=" + encodeURI(url);
  346. break;
  347. case 3:
  348. lychee.loadDropbox(function() {
  349. filename = photo.json.title + "." + photo.getDirectLink().split('.').pop();
  350. Dropbox.save(photo.getDirectLink(), filename);
  351. });
  352. break;
  353. default:
  354. link = "";
  355. break;
  356. }
  357. if (link.length>5) location.href = link;
  358. },
  359. isSmall: function() {
  360. var size = {
  361. width: false,
  362. height: false
  363. };
  364. if (photo.json.width<$(window).width()-60) size.width = true;
  365. if (photo.json.height<$(window).height()-100) size.height = true;
  366. if (size.width&&size.height) return true;
  367. else return false;
  368. },
  369. getArchive: function(photoID) {
  370. var link,
  371. url = "php/api.php?function=getPhotoArchive&photoID=" + photoID;
  372. if (location.href.indexOf("index.html")>0) link = location.href.replace(location.hash, "").replace("index.html", url);
  373. else link = location.href.replace(location.hash, "") + url;
  374. if (lychee.publicMode) link += "&password=" + password.value;
  375. location.href = link;
  376. },
  377. getDirectLink: function() {
  378. return $("#imageview #image").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
  379. },
  380. getViewLink: function(photoID) {
  381. var url = "view.php?p=" + photoID;
  382. if (location.href.indexOf("index.html")>0) return location.href.replace("index.html" + location.hash, url);
  383. else return location.href.replace(location.hash, url);
  384. }
  385. };