photo.js 13 KB

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